116 lines
2.8 KiB
C++
116 lines
2.8 KiB
C++
/*
|
|
* PVVMUD a 3D MUD
|
|
* Copyright (C) 1998-1999 Programvareverkstedet (pvv@pvv.org)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
#ifndef _CLISRVMESSAGE_H
|
|
#define _CLISRVMESSAGE_H
|
|
|
|
#include "msgsrvcli.H"
|
|
#include "msgworld.H"
|
|
#include "msgmsg.H"
|
|
#include "msgactionlist.H"
|
|
#include "pvvmudclient.H"
|
|
|
|
class CMsgHelloCli: public CMsgHello {
|
|
public:
|
|
CMsgHelloCli();
|
|
static CMsgHelloCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgServerInfoCli: public CMsgServerInfo {
|
|
public:
|
|
CMsgServerInfoCli();
|
|
static CMsgServerInfoCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgByeCli: public CMsgBye {
|
|
public:
|
|
CMsgByeCli();
|
|
static CMsgByeCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
//class CMsgGeometryObjectCli: public CMsgGeometryObject {
|
|
//public:
|
|
// CMsgGeometryObjectCli();
|
|
// static CMsgGeometryObjectCli * createMsg();
|
|
// virtual int executeMsg();
|
|
//};
|
|
|
|
//class CMsgGeoObjRemoveCli: public CMsgGeoObjRemove {
|
|
//public:
|
|
// CMsgGeoObjRemoveCli();
|
|
// static CMsgGeoObjRemoveCli * createMsg();
|
|
// virtual int executeMsg();
|
|
//};
|
|
|
|
//class CMsgUpdatePositionCli: public CMsgUpdatePosition {
|
|
//public:
|
|
// CMsgUpdatePositionCli();
|
|
// static CMsgUpdatePositionCli * createMsg();
|
|
// virtual int executeMsg();
|
|
//};
|
|
|
|
//class CMsgUpdateDirectionCli: public CMsgUpdateDirection {
|
|
//public:
|
|
// CMsgUpdateDirectionCli();
|
|
// static CMsgUpdateDirectionCli * createMsg();
|
|
// virtual int executeMsg();
|
|
//};
|
|
|
|
class CMsgCommandCli: public CMsgCommand {
|
|
public:
|
|
CMsgCommandCli();
|
|
static CMsgCommandCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgViewpointCli: public CMsgViewpoint {
|
|
public:
|
|
CMsgViewpointCli();
|
|
static CMsgViewpointCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgMsgCli: public CMsgMsg {
|
|
public:
|
|
CMsgMsgCli();
|
|
static CMsgMsgCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgActionListCli: public CMsgActionList {
|
|
public:
|
|
CMsgActionListCli();
|
|
static CMsgActionListCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgPlayerInfoCli: public CMsgPlayerInfo {
|
|
public:
|
|
CMsgPlayerInfoCli();
|
|
static CMsgPlayerInfoCli * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
|
|
#endif // _CLISRVMESSAGE_H
|
|
|