120 lines
3.0 KiB
C++
120 lines
3.0 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 _WORLDSRVMESSAGE_H
|
|
#define _WORLDSRVMESSAGE_H
|
|
|
|
#include "msgsrvcli.H"
|
|
#include "msgworld.H"
|
|
|
|
class CMsgWorldSrvHello : public CMsgHello {
|
|
public:
|
|
CMsgWorldSrvHello();
|
|
static CMsgWorldSrvHello * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvGOSInfo : public CMsgGOSInfo {
|
|
public:
|
|
CMsgWorldSrvGOSInfo();
|
|
static CMsgWorldSrvGOSInfo * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvCommand : public CMsgCommand {
|
|
public:
|
|
CMsgWorldSrvCommand();
|
|
static CMsgWorldSrvCommand * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
/*
|
|
class CMsgWorldSrvCell : public CMsgCell {
|
|
public:
|
|
CMsgWorldSrvCell();
|
|
static CMsgWorldSrvCell * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvRemoveCell : public CMsgRemoveCell {
|
|
public:
|
|
CMsgWorldSrvRemoveCell();
|
|
static CMsgWorldSrvRemoveCell * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
*/
|
|
|
|
class CMsgWorldSrvObject : public CMsgObject {
|
|
public:
|
|
CMsgWorldSrvObject();
|
|
static CMsgWorldSrvObject * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvRemoveObject : public CMsgRemoveObject {
|
|
public:
|
|
CMsgWorldSrvRemoveObject();
|
|
static CMsgWorldSrvRemoveObject * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvPVCell : public CMsgPVCell {
|
|
public:
|
|
CMsgWorldSrvPVCell();
|
|
static CMsgWorldSrvPVCell * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvUpdatePosition : public CMsgUpdatePosition {
|
|
public:
|
|
CMsgWorldSrvUpdatePosition();
|
|
static CMsgWorldSrvUpdatePosition * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvUpdateDirection : public CMsgUpdateDirection {
|
|
public:
|
|
CMsgWorldSrvUpdateDirection();
|
|
static CMsgWorldSrvUpdateDirection * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvUpdateHierarchy : public CMsgUpdateHierarchy {
|
|
public:
|
|
CMsgWorldSrvUpdateHierarchy();
|
|
static CMsgWorldSrvUpdateHierarchy * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvPong : public CMsgPong {
|
|
public:
|
|
CMsgWorldSrvPong();
|
|
static CMsgWorldSrvPong * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
class CMsgWorldSrvRotate : public CMsgRotate {
|
|
public:
|
|
CMsgWorldSrvRotate();
|
|
static CMsgWorldSrvRotate * createMsg();
|
|
virtual int executeMsg();
|
|
};
|
|
|
|
#endif // _WORLDSRVMESSAGE_H
|