2008-12-26 17:00:34 +02:00
|
|
|
#ifndef __NETPACKS_H__
|
|
|
|
#define __NETPACKS_H__
|
2008-07-26 09:39:44 +03:00
|
|
|
#include "../global.h"
|
2009-05-20 13:08:56 +03:00
|
|
|
#include "CGameState.h"
|
2008-09-29 00:01:49 +03:00
|
|
|
#include "BattleAction.h"
|
2009-02-04 15:40:54 +02:00
|
|
|
#include "HeroBonus.h"
|
2009-03-07 00:11:17 +02:00
|
|
|
#include <set>
|
2009-02-04 15:40:54 +02:00
|
|
|
|
2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* NetPacks.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
class CClient;
|
|
|
|
class CGameState;
|
2009-03-09 12:37:49 +02:00
|
|
|
class CGameHandler;
|
|
|
|
class CConnection;
|
2009-03-07 00:11:17 +02:00
|
|
|
|
|
|
|
struct CPack
|
2008-07-26 16:57:32 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
ui16 type;
|
|
|
|
|
|
|
|
CPack(){};
|
2009-03-07 17:54:12 +02:00
|
|
|
virtual ~CPack(){};
|
2009-03-07 00:11:17 +02:00
|
|
|
ui16 getType() const{return type;}
|
2009-03-07 00:25:19 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
2008-07-28 15:44:08 +03:00
|
|
|
{
|
2009-03-07 17:54:12 +02:00
|
|
|
tlog1 << "CPack serialized... this should not happen!\n";
|
2008-07-28 15:44:08 +03:00
|
|
|
}
|
2009-03-09 12:37:49 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs)
|
|
|
|
{};
|
2008-07-26 16:57:32 +03:00
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
|
|
|
|
struct CPackForClient : public CPack
|
2008-07-26 16:57:32 +03:00
|
|
|
{
|
2009-03-09 12:37:49 +02:00
|
|
|
CPackForClient(){type = 1;};
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2009-03-09 12:37:49 +02:00
|
|
|
CGameState* GS(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
void applyFirstCl(CClient *cl)//called before applying to gs
|
2009-03-09 12:37:49 +02:00
|
|
|
{};
|
2009-03-07 00:25:19 +02:00
|
|
|
void applyCl(CClient *cl)//called after applying to gs
|
2009-03-09 12:37:49 +02:00
|
|
|
{};
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CPackForServer : public CPack
|
|
|
|
{
|
|
|
|
CConnection *c;
|
|
|
|
CGameState* GS(CGameHandler *gh);
|
|
|
|
CPackForServer()
|
2009-03-07 00:25:19 +02:00
|
|
|
{
|
2009-03-09 12:37:49 +02:00
|
|
|
type = 2;
|
|
|
|
c = NULL;
|
|
|
|
};
|
|
|
|
|
2009-05-24 00:37:33 +03:00
|
|
|
bool applyGh(CGameHandler *gh);//called after applying to gs
|
2008-07-26 16:57:32 +03:00
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2009-03-09 12:37:49 +02:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct Query : public CPackForClient
|
2008-08-13 03:44:31 +03:00
|
|
|
{
|
|
|
|
ui32 id;
|
|
|
|
};
|
2009-02-03 07:28:05 +02:00
|
|
|
|
2009-07-09 22:15:22 +03:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct MetaString : public CPack //2001 helper for object scrips
|
2009-02-03 07:28:05 +02:00
|
|
|
{
|
2009-07-09 22:15:22 +03:00
|
|
|
private:
|
|
|
|
enum EMessage {TEXACT_STRING, TLOCAL_STRING, TNUMBER, TREPLACE_ESTRING, TREPLACE_LSTRING, TREPLACE_NUMBER};
|
|
|
|
public:
|
2009-03-14 13:25:25 +02:00
|
|
|
enum {GENERAL_TXT=1, XTRAINFO_TXT, OBJ_NAMES, RES_NAMES, ART_NAMES, ARRAY_TXT, CRE_PL_NAMES, CREGENS, MINE_NAMES,
|
2010-02-02 01:30:03 +02:00
|
|
|
MINE_EVNTS, ADVOB_TXT, ART_EVNTS, SPELL_NAME, SEC_SKILL_NAME, CRE_SING_NAMES, CREGENS4, COLOR};
|
2009-07-09 22:15:22 +03:00
|
|
|
|
|
|
|
std::vector<ui8> message; //vector of EMessage
|
|
|
|
|
|
|
|
std::vector<std::pair<ui8,ui32> > localStrings; //pairs<text handler type, text number>; types: 1 - generaltexthandler->all; 2 - objh->xtrainfo; 3 - objh->names; 4 - objh->restypes; 5 - arth->artifacts[id].name; 6 - generaltexth->arraytxt; 7 - creh->creatures[os->subID].namePl; 8 - objh->creGens; 9 - objh->mines[ID].first; 10 - objh->mines[ID].second; 11 - objh->advobtxt
|
|
|
|
std::vector<std::string> exactStrings;
|
|
|
|
std::vector<si32> numbers;
|
2009-02-03 07:28:05 +02:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-07-09 22:15:22 +03:00
|
|
|
h & exactStrings & localStrings & message & numbers;
|
2009-02-03 07:28:05 +02:00
|
|
|
}
|
2009-03-14 13:25:25 +02:00
|
|
|
void addTxt(ui8 type, ui32 serial)
|
|
|
|
{
|
2009-07-09 22:15:22 +03:00
|
|
|
message.push_back(TLOCAL_STRING);
|
|
|
|
localStrings.push_back(std::pair<ui8,ui32>(type, serial));
|
2009-03-14 13:25:25 +02:00
|
|
|
}
|
2009-02-03 07:28:05 +02:00
|
|
|
MetaString& operator<<(const std::pair<ui8,ui32> &txt)
|
|
|
|
{
|
2009-07-09 22:15:22 +03:00
|
|
|
message.push_back(TLOCAL_STRING);
|
|
|
|
localStrings.push_back(txt);
|
2009-02-03 07:28:05 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
MetaString& operator<<(const std::string &txt)
|
|
|
|
{
|
2009-07-09 22:15:22 +03:00
|
|
|
message.push_back(TEXACT_STRING);
|
|
|
|
exactStrings.push_back(txt);
|
2009-02-03 07:28:05 +02:00
|
|
|
return *this;
|
|
|
|
}
|
2009-07-09 22:15:22 +03:00
|
|
|
MetaString& operator<<(int txt)
|
|
|
|
{
|
|
|
|
message.push_back(TNUMBER);
|
|
|
|
numbers.push_back(txt);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
void addReplacement(ui8 type, ui32 serial)
|
|
|
|
{
|
|
|
|
message.push_back(TREPLACE_LSTRING);
|
|
|
|
localStrings.push_back(std::pair<ui8,ui32>(type, serial));
|
|
|
|
}
|
|
|
|
void addReplacement(const std::string &txt)
|
|
|
|
{
|
|
|
|
message.push_back(TREPLACE_ESTRING);
|
|
|
|
exactStrings.push_back(txt);
|
|
|
|
}
|
|
|
|
void addReplacement(int txt)
|
|
|
|
{
|
|
|
|
message.push_back(TREPLACE_NUMBER);
|
|
|
|
numbers.push_back(txt);
|
|
|
|
}
|
2009-09-16 19:16:57 +03:00
|
|
|
DLL_EXPORT std::string buildList () const;
|
2009-02-03 07:28:05 +02:00
|
|
|
void clear()
|
|
|
|
{
|
2009-07-09 22:15:22 +03:00
|
|
|
exactStrings.clear();
|
|
|
|
localStrings.clear();
|
2009-02-03 07:28:05 +02:00
|
|
|
message.clear();
|
2009-07-09 22:15:22 +03:00
|
|
|
numbers.clear();
|
2009-02-03 07:28:05 +02:00
|
|
|
}
|
2009-07-09 22:15:22 +03:00
|
|
|
DLL_EXPORT void toString(std::string &dst) const;
|
|
|
|
void getLocalString(const std::pair<ui8,ui32> &txt, std::string &dst) const;
|
2009-02-03 07:28:05 +02:00
|
|
|
|
2009-07-09 22:15:22 +03:00
|
|
|
MetaString()
|
|
|
|
{
|
|
|
|
type = 2001;
|
|
|
|
}
|
2009-02-03 07:28:05 +02:00
|
|
|
};
|
|
|
|
|
2009-03-09 12:37:49 +02:00
|
|
|
/***********************************************************************************************************/
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
struct PackageApplied : public CPackForClient //94
|
|
|
|
{
|
|
|
|
PackageApplied() {type = 94;}
|
|
|
|
PackageApplied(ui8 Result) : result(Result) {type = 94;}
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
|
|
|
ui8 result; //0 - something went wrong, request hasn't been realized; 1 - OK
|
|
|
|
ui32 packType; //type id of applied package
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-07-31 23:27:44 +03:00
|
|
|
h & result & packType;
|
2009-04-16 03:28:54 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SystemMessage : public CPackForClient //95
|
2008-07-26 09:39:44 +03:00
|
|
|
{
|
2009-03-09 12:37:49 +02:00
|
|
|
SystemMessage(const std::string Text) : text(Text){type = 95;};
|
2009-03-07 00:11:17 +02:00
|
|
|
SystemMessage(){type = 95;};
|
|
|
|
void applyCl(CClient *cl);
|
2008-07-26 09:39:44 +03:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
std::string text;
|
2009-03-07 00:25:19 +02:00
|
|
|
|
2008-07-26 09:39:44 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-03-07 00:25:19 +02:00
|
|
|
h & text;
|
2008-07-26 09:39:44 +03:00
|
|
|
}
|
2008-08-10 07:46:16 +03:00
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2009-08-04 02:53:18 +03:00
|
|
|
struct PlayerBlocked : public CPackForClient //96
|
|
|
|
{
|
|
|
|
PlayerBlocked(){type = 96;};
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
|
|
|
enum EReason { UPCOMING_BATTLE };
|
|
|
|
|
|
|
|
ui8 reason;
|
|
|
|
ui8 player;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & reason & player;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct YourTurn : public CPackForClient //100
|
|
|
|
{
|
|
|
|
YourTurn(){type = 100;};
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-10 07:46:16 +03:00
|
|
|
ui8 player;
|
2008-07-26 09:39:44 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-03-07 00:25:19 +02:00
|
|
|
h & player;
|
2008-07-26 09:39:44 +03:00
|
|
|
}
|
2008-08-10 07:46:16 +03:00
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
|
|
|
|
struct SetResource : public CPackForClient //102
|
2008-07-31 00:27:15 +03:00
|
|
|
{
|
|
|
|
SetResource(){type = 102;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2008-07-31 00:27:15 +03:00
|
|
|
|
|
|
|
ui8 player, resid;
|
|
|
|
si32 val;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & player & resid & val;
|
|
|
|
}
|
|
|
|
};
|
2009-11-28 03:42:08 +02:00
|
|
|
struct SetResources : public CPackForClient //104
|
|
|
|
{
|
|
|
|
SetResources(){res.resize(RESOURCE_QUANTITY);type = 104;};
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
|
|
|
|
ui8 player;
|
|
|
|
std::vector<si32> res; //res[resid] => res amount
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & player & res;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
|
|
|
|
struct SetPrimSkill : public CPackForClient //105
|
2008-08-04 18:56:36 +03:00
|
|
|
{
|
|
|
|
SetPrimSkill(){type = 105;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-04 18:56:36 +03:00
|
|
|
ui8 abs; //0 - changes by value; 1 - sets to value
|
|
|
|
si32 id;
|
2009-08-16 18:39:18 +03:00
|
|
|
ui16 which;
|
|
|
|
si64 val;
|
2008-08-04 18:56:36 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & abs & id & which & val;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetSecSkill : public CPackForClient //106
|
2008-08-13 03:44:31 +03:00
|
|
|
{
|
|
|
|
SetSecSkill(){type = 106;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-13 03:44:31 +03:00
|
|
|
ui8 abs; //0 - changes by value; 1 - sets to value
|
|
|
|
si32 id;
|
|
|
|
ui16 which, val;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & abs & id & which & val;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct HeroVisitCastle : public CPackForClient //108
|
2008-08-13 12:28:06 +03:00
|
|
|
{
|
|
|
|
HeroVisitCastle(){flags=0;type = 108;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-13 12:28:06 +03:00
|
|
|
ui8 flags; //1 - start, 2 - garrison
|
|
|
|
ui32 tid, hid;
|
|
|
|
|
|
|
|
bool start() //if hero is entering castle (if false - leaving)
|
|
|
|
{
|
|
|
|
return flags & 1;
|
|
|
|
}
|
|
|
|
bool garrison() //if hero is entering/leaving garrison (if false - it's only visiting hero)
|
|
|
|
{
|
|
|
|
return flags & 2;
|
|
|
|
}
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & flags & tid & hid;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct ChangeSpells : public CPackForClient //109
|
2008-09-12 11:51:46 +03:00
|
|
|
{
|
|
|
|
ChangeSpells(){type = 109;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-09-12 11:51:46 +03:00
|
|
|
ui8 learn; //1 - gives spell, 0 - takes
|
|
|
|
ui32 hid;
|
|
|
|
std::set<ui32> spells;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & learn & hid & spells;
|
|
|
|
}
|
|
|
|
};
|
2008-10-19 02:20:48 +03:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetMana : public CPackForClient //110
|
2008-10-19 02:20:48 +03:00
|
|
|
{
|
|
|
|
SetMana(){type = 110;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
|
|
|
|
2009-07-18 00:53:28 +03:00
|
|
|
si32 hid, val;
|
2008-10-19 02:20:48 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & val & hid;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetMovePoints : public CPackForClient //111
|
2008-10-19 02:20:48 +03:00
|
|
|
{
|
|
|
|
SetMovePoints(){type = 111;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-10-19 02:20:48 +03:00
|
|
|
ui32 hid, val;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & val & hid;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct FoWChange : public CPackForClient //112
|
2008-10-19 02:20:48 +03:00
|
|
|
{
|
|
|
|
FoWChange(){type = 112;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-10-19 02:20:48 +03:00
|
|
|
std::set<int3> tiles;
|
|
|
|
ui8 player, mode; //mode==0 - hide, mode==1 - reveal
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-03-28 22:13:26 +02:00
|
|
|
h & tiles & player & mode;
|
2008-10-19 02:20:48 +03:00
|
|
|
}
|
|
|
|
};
|
2008-10-26 22:58:34 +02:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetAvailableHeroes : public CPackForClient //113
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
2008-11-01 00:41:22 +02:00
|
|
|
SetAvailableHeroes(){type = 113;flags=0;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-10-26 22:58:34 +02:00
|
|
|
ui8 player;
|
2009-02-09 18:18:48 +02:00
|
|
|
si32 hid1, hid2;
|
2008-11-01 00:41:22 +02:00
|
|
|
ui8 flags; //1 - reset army of hero1; 2 - reset army of hero 2
|
2008-10-26 22:58:34 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2008-11-01 00:41:22 +02:00
|
|
|
h & player & hid1 & hid2 & flags;
|
2008-10-26 22:58:34 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct GiveBonus : public CPackForClient //115
|
2009-02-03 07:28:05 +02:00
|
|
|
{
|
2010-02-10 04:56:00 +02:00
|
|
|
GiveBonus(ui8 Who = 0)
|
|
|
|
{
|
|
|
|
who = Who;
|
|
|
|
type = 115;
|
|
|
|
}
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-02-03 07:28:05 +02:00
|
|
|
|
2010-02-10 04:56:00 +02:00
|
|
|
enum {HERO, PLAYER};
|
|
|
|
ui8 who; //who receives bonus, uses enum above
|
|
|
|
ui32 id; //hero or player id
|
2009-02-04 15:40:54 +02:00
|
|
|
HeroBonus bonus;
|
2009-02-03 07:28:05 +02:00
|
|
|
MetaString bdescr;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2010-02-10 04:56:00 +02:00
|
|
|
h & bonus & id & bdescr & who;
|
2009-02-03 07:28:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct ChangeObjPos : public CPackForClient //116
|
2009-02-20 12:36:15 +02:00
|
|
|
{
|
|
|
|
ChangeObjPos(){type = 116;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyFirstCl(CClient *cl);
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-02-20 12:36:15 +02:00
|
|
|
|
|
|
|
ui32 objid;
|
|
|
|
int3 nPos;
|
|
|
|
ui8 flags; //bit flags: 1 - redraw
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & objid & nPos & flags;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-01-29 22:52:45 +02:00
|
|
|
struct PlayerEndsGame : public CPackForClient //117
|
|
|
|
{
|
|
|
|
PlayerEndsGame()
|
|
|
|
{
|
|
|
|
type = 117;
|
|
|
|
}
|
|
|
|
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
|
|
|
|
ui8 player;
|
|
|
|
ui8 victory;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & player & victory;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-02-10 04:56:00 +02:00
|
|
|
struct RemoveBonus : public CPackForClient //118
|
|
|
|
{
|
|
|
|
RemoveBonus(ui8 Who = 0)
|
|
|
|
{
|
|
|
|
who = Who;
|
|
|
|
type = 118;
|
|
|
|
}
|
|
|
|
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
|
|
|
|
enum {HERO, PLAYER};
|
|
|
|
ui8 who; //who receives bonus, uses enum above
|
|
|
|
ui32 whoID; //hero or player id
|
|
|
|
|
|
|
|
//vars to identify bonus: its source
|
|
|
|
ui8 source;
|
|
|
|
ui32 id; //source id
|
|
|
|
|
|
|
|
//used locally: copy of removed bonus
|
|
|
|
HeroBonus bonus;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & source & id & who & whoID;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct RemoveObject : public CPackForClient //500
|
2008-08-02 00:41:38 +03:00
|
|
|
{
|
2008-08-13 07:41:11 +03:00
|
|
|
RemoveObject(){type = 500;};
|
|
|
|
RemoveObject(si32 ID){id = ID;type = 500;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyFirstCl(CClient *cl);
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-02 00:41:38 +03:00
|
|
|
si32 id;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & id;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct TryMoveHero : public CPackForClient //501
|
2008-07-28 15:44:08 +03:00
|
|
|
{
|
2009-12-28 06:08:24 +02:00
|
|
|
TryMoveHero(){type = 501;humanKnows=false;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyFirstCl(CClient *cl);
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 17:54:12 +02:00
|
|
|
void applyGs(CGameState *gs);
|
2008-07-28 15:44:08 +03:00
|
|
|
|
2009-07-03 22:57:14 +03:00
|
|
|
enum EResult
|
|
|
|
{
|
2009-07-19 04:00:19 +03:00
|
|
|
FAILED, SUCCESS, TELEPORTATION, RESERVED___, BLOCKING_VISIT, EMBARK, DISEMBARK
|
2009-07-03 22:57:14 +03:00
|
|
|
};
|
|
|
|
|
2008-07-28 15:44:08 +03:00
|
|
|
ui32 id, movePoints;
|
2009-07-03 22:57:14 +03:00
|
|
|
ui8 result; //uses EResult
|
2008-07-28 15:44:08 +03:00
|
|
|
int3 start, end;
|
|
|
|
std::set<int3> fowRevealed; //revealed tiles
|
|
|
|
|
2009-12-28 06:08:24 +02:00
|
|
|
bool humanKnows; //used locally during applying to client
|
|
|
|
|
2008-07-28 15:44:08 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & id & result & start & end & movePoints & fowRevealed;
|
|
|
|
}
|
2008-07-30 20:51:19 +03:00
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetGarrisons : public CPackForClient //502
|
2008-07-31 16:21:42 +03:00
|
|
|
{
|
|
|
|
SetGarrisons(){type = 502;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-07-31 16:21:42 +03:00
|
|
|
std::map<ui32,CCreatureSet> garrs;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & garrs;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct NewStructures : public CPackForClient //504
|
2008-08-01 14:21:15 +03:00
|
|
|
{
|
2008-08-10 07:46:16 +03:00
|
|
|
NewStructures(){type = 504;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-09-22 17:27:46 +03:00
|
|
|
DLL_EXPORT virtual void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-01 14:21:15 +03:00
|
|
|
si32 tid;
|
2008-08-10 07:46:16 +03:00
|
|
|
std::set<si32> bid;
|
|
|
|
si16 builded;
|
2008-08-01 14:21:15 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2008-08-10 07:46:16 +03:00
|
|
|
h & tid & bid & builded;
|
2008-08-01 14:21:15 +03:00
|
|
|
}
|
2009-09-22 17:27:46 +03:00
|
|
|
};
|
2009-09-24 20:54:02 +03:00
|
|
|
struct RazeStructures : public CPackForClient //505
|
2009-09-22 17:27:46 +03:00
|
|
|
{
|
|
|
|
RazeStructures() {type = 505;};
|
|
|
|
void applyCl (CClient *cl);
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
|
2009-09-24 20:54:02 +03:00
|
|
|
si32 tid;
|
|
|
|
std::set<si32> bid;
|
|
|
|
si16 destroyed;
|
|
|
|
|
2009-09-22 17:27:46 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-09-24 20:54:02 +03:00
|
|
|
h & tid & bid & destroyed;
|
2009-09-22 17:27:46 +03:00
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetAvailableCreatures : public CPackForClient //506
|
2008-08-01 14:21:15 +03:00
|
|
|
{
|
2008-08-10 07:46:16 +03:00
|
|
|
SetAvailableCreatures(){type = 506;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-01 14:21:15 +03:00
|
|
|
si32 tid;
|
2009-07-06 22:41:27 +03:00
|
|
|
std::vector<std::pair<ui32, std::vector<ui32> > > creatures;
|
2008-08-01 14:21:15 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2008-08-10 07:46:16 +03:00
|
|
|
h & tid & creatures;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetHeroesInTown : public CPackForClient //508
|
2008-08-16 11:47:41 +03:00
|
|
|
{
|
|
|
|
SetHeroesInTown(){type = 508;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-16 11:47:41 +03:00
|
|
|
si32 tid, visiting, garrison; //id of town, visiting hero, hero in garrison
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & tid & visiting & garrison;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetHeroArtifacts : public CPackForClient //509
|
2008-08-20 22:02:48 +03:00
|
|
|
{
|
|
|
|
SetHeroArtifacts(){type = 509;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-04-04 01:34:31 +03:00
|
|
|
DLL_EXPORT void setArtAtPos(ui16 pos, int art);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-20 22:02:48 +03:00
|
|
|
si32 hid;
|
|
|
|
std::vector<ui32> artifacts; //hero's artifacts from bag
|
|
|
|
std::map<ui16,ui32> artifWorn; //map<position,artifact_id>; positions: 0 - head; 1 - shoulders; 2 - neck; 3 - right hand; 4 - left hand; 5 - torso; 6 - right ring; 7 - left ring; 8 - feet; 9 - misc1; 10 - misc2; 11 - misc3; 12 - misc4; 13 - mach1; 14 - mach2; 15 - mach3; 16 - mach4; 17 - spellbook; 18 - misc5
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & hid & artifacts & artifWorn;
|
|
|
|
}
|
2009-04-04 01:34:31 +03:00
|
|
|
|
|
|
|
std::vector<HeroBonus*> gained, lost; //used locally as hlp when applying
|
2009-03-09 12:37:49 +02:00
|
|
|
};
|
2008-12-27 03:01:59 +02:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct HeroRecruited : public CPackForClient //515
|
2008-10-26 22:58:34 +02:00
|
|
|
{
|
|
|
|
HeroRecruited(){type = 515;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-10-26 22:58:34 +02:00
|
|
|
si32 hid, tid; //subID of hero
|
|
|
|
int3 tile;
|
|
|
|
ui8 player;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & hid & tid & tile & player;
|
|
|
|
}
|
|
|
|
};
|
2009-02-14 21:12:40 +02:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct GiveHero : public CPackForClient //516
|
2009-02-14 21:12:40 +02:00
|
|
|
{
|
|
|
|
GiveHero(){type = 516;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyFirstCl(CClient *cl);
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2009-02-14 21:12:40 +02:00
|
|
|
ui32 id; //object id
|
|
|
|
ui8 player;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & id & player;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-06 22:41:27 +03:00
|
|
|
struct OpenWindow : public CPackForClient //517
|
2009-06-16 14:18:14 +03:00
|
|
|
{
|
2009-07-06 22:41:27 +03:00
|
|
|
OpenWindow(){type = 517;};
|
2009-06-16 14:18:14 +03:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
2010-02-10 04:56:00 +02:00
|
|
|
enum EWindow {EXCHANGE_WINDOW, RECRUITMENT_FIRST, RECRUITMENT_ALL, SHIPYARD_WINDOW, THIEVES_GUILD, PUZZLE_MAP};
|
2009-07-06 22:41:27 +03:00
|
|
|
ui8 window;
|
|
|
|
ui32 id1, id2;
|
2009-06-16 14:18:14 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-07-06 22:41:27 +03:00
|
|
|
h & window & id1 & id2;
|
2009-06-16 14:18:14 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-26 06:33:13 +03:00
|
|
|
struct NewObject : public CPackForClient //518
|
|
|
|
{
|
|
|
|
NewObject(){type = 518;};
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
|
|
|
|
ui32 ID, subID;
|
|
|
|
int3 pos;
|
|
|
|
|
|
|
|
int id; //used internally
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & ID & subID & pos;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct NewTurn : public CPackForClient //101
|
2008-08-10 07:46:16 +03:00
|
|
|
{
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-10 07:46:16 +03:00
|
|
|
struct Hero
|
|
|
|
{
|
|
|
|
ui32 id, move, mana; //id is a general serial id
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & id & move & mana;
|
|
|
|
}
|
|
|
|
bool operator<(const Hero&h)const{return id < h.id;}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::set<Hero> heroes; //updates movement and mana points
|
2009-11-28 03:42:08 +02:00
|
|
|
//std::vector<SetResources> res;//resource list
|
|
|
|
std::map<ui8, std::vector<si32> > res; //player ID => resource value[res_id]
|
|
|
|
std::vector<SetAvailableCreatures> cres;//creatures to be placed in towns
|
2008-08-10 07:46:16 +03:00
|
|
|
ui32 day;
|
|
|
|
bool resetBuilded;
|
|
|
|
|
|
|
|
NewTurn(){type = 101;};
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & heroes & cres & res & day & resetBuilded;
|
2008-08-01 14:21:15 +03:00
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
|
|
|
|
struct Component : public CPack //2002 helper for object scrips informations
|
2008-07-31 00:27:15 +03:00
|
|
|
{
|
2010-02-02 19:05:03 +02:00
|
|
|
enum {PRIM_SKILL, SEC_SKILL, RESOURCE, CREATURE, ARTIFACT, EXPERIENCE, SPELL, MORALE=8, LUCK, BUILDING, HERO, FLAG};
|
2009-03-09 21:40:43 +02:00
|
|
|
ui16 id, subtype; //id uses ^^^ enums, when id==EXPPERIENCE subtype==0 means exp points and subtype==1 levels)
|
2008-07-31 00:27:15 +03:00
|
|
|
si32 val; // + give; - take
|
|
|
|
si16 when; // 0 - now; +x - within x days; -x - per x days
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2008-07-31 13:35:22 +03:00
|
|
|
h & id & subtype & val & when;
|
2008-07-31 00:27:15 +03:00
|
|
|
}
|
|
|
|
Component(){type = 2002;};
|
2008-07-31 13:35:22 +03:00
|
|
|
Component(ui16 Type, ui16 Subtype, si32 Val, si16 When):id(Type),subtype(Subtype),val(Val),when(When){type = 2002;};
|
2008-07-31 00:27:15 +03:00
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct InfoWindow : public CPackForClient //103 - displays simple info window
|
2008-07-31 00:27:15 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
2008-07-31 00:27:15 +03:00
|
|
|
MetaString text;
|
|
|
|
std::vector<Component> components;
|
|
|
|
ui8 player;
|
2009-04-22 21:48:56 +03:00
|
|
|
ui16 soundID;
|
2008-07-31 00:27:15 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-04-22 21:48:56 +03:00
|
|
|
h & text & components & player & soundID;
|
2008-07-31 00:27:15 +03:00
|
|
|
}
|
2009-04-22 21:48:56 +03:00
|
|
|
InfoWindow() {
|
|
|
|
type = 103;
|
|
|
|
soundID = 0;
|
|
|
|
};
|
2008-07-30 20:51:19 +03:00
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetObjectProperty : public CPackForClient//1001
|
2008-07-30 20:51:19 +03:00
|
|
|
{
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-07-30 15:49:45 +03:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-07-30 20:51:19 +03:00
|
|
|
ui32 id;
|
2009-02-14 21:12:40 +02:00
|
|
|
ui8 what; //1 - owner; 2 - blockvis; 3 - first stack count; 4 - visitors; 5 - visited; 6 - ID (if 34 then also def is replaced)
|
2008-07-30 20:51:19 +03:00
|
|
|
ui32 val;
|
|
|
|
SetObjectProperty(){type = 1001;};
|
|
|
|
SetObjectProperty(ui32 ID, ui8 What, ui32 Val):id(ID),what(What),val(Val){type = 1001;};
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & id & what & val;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetHoverName : public CPackForClient//1002
|
2008-07-30 20:51:19 +03:00
|
|
|
{
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-07-30 20:51:19 +03:00
|
|
|
ui32 id;
|
|
|
|
MetaString name;
|
|
|
|
SetHoverName(){type = 1002;};
|
|
|
|
SetHoverName(ui32 ID, MetaString& Name):id(ID),name(Name){type = 1002;};
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & id & name;
|
|
|
|
}
|
2008-08-04 18:56:36 +03:00
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct HeroLevelUp : public Query//2000
|
2008-08-04 18:56:36 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-13 03:44:31 +03:00
|
|
|
si32 heroid;
|
2008-08-04 18:56:36 +03:00
|
|
|
ui8 primskill, level;
|
2008-08-13 03:44:31 +03:00
|
|
|
std::vector<ui16> skills;
|
2008-08-04 18:56:36 +03:00
|
|
|
|
|
|
|
HeroLevelUp(){type = 2000;};
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2008-08-13 03:44:31 +03:00
|
|
|
h & id & heroid & primskill & level & skills;
|
2008-08-04 18:56:36 +03:00
|
|
|
}
|
|
|
|
};
|
2008-08-13 03:44:31 +03:00
|
|
|
|
2009-09-21 12:00:33 +03:00
|
|
|
struct TradeComponents : public CPackForClient, public CPackForServer
|
|
|
|
{
|
2009-09-25 07:05:01 +03:00
|
|
|
///used to handle info about components available in shops
|
2009-09-21 12:00:33 +03:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
|
|
|
|
si32 heroid;
|
|
|
|
ui32 objectid;
|
2009-09-25 07:05:01 +03:00
|
|
|
std::map<ui16, Component> available, chosen, bought;
|
2009-09-21 12:00:33 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-10-03 14:16:42 +03:00
|
|
|
h & heroid & objectid & available & chosen & bought;
|
2009-09-21 12:00:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2009-04-11 04:32:50 +03:00
|
|
|
//A dialog that requires making decision by player - it may contain components to choose between or has yes/no options
|
|
|
|
//Client responds with QueryReply, where answer: 0 - cancel pressed, choice doesn't matter; 1/2/... - first/second/... component selected and OK pressed
|
|
|
|
//Until sending reply player won't be allowed to take any actions
|
|
|
|
struct BlockingDialog : public Query//2003
|
2008-08-13 03:44:31 +03:00
|
|
|
{
|
2009-04-11 04:32:50 +03:00
|
|
|
enum {ALLOW_CANCEL = 1, SELECTION = 2};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
2008-08-13 03:44:31 +03:00
|
|
|
MetaString text;
|
|
|
|
std::vector<Component> components;
|
|
|
|
ui8 player;
|
2009-04-11 04:32:50 +03:00
|
|
|
ui8 flags;
|
2009-04-22 21:48:56 +03:00
|
|
|
ui16 soundID;
|
2008-08-13 03:44:31 +03:00
|
|
|
|
2009-04-11 04:32:50 +03:00
|
|
|
bool cancel() const
|
2008-08-13 03:44:31 +03:00
|
|
|
{
|
2009-04-11 04:32:50 +03:00
|
|
|
return flags & ALLOW_CANCEL;
|
|
|
|
}
|
|
|
|
bool selection() const
|
|
|
|
{
|
|
|
|
return flags & SELECTION;
|
2008-08-13 03:44:31 +03:00
|
|
|
}
|
2008-08-22 15:21:09 +03:00
|
|
|
|
2009-04-11 04:32:50 +03:00
|
|
|
BlockingDialog(bool yesno, bool Selection)
|
|
|
|
{
|
2009-04-14 13:46:42 +03:00
|
|
|
type = 2003;
|
|
|
|
flags = 0;
|
2009-04-22 21:48:56 +03:00
|
|
|
soundID = 0;
|
2009-04-11 04:32:50 +03:00
|
|
|
if(yesno) flags |= ALLOW_CANCEL;
|
|
|
|
if(Selection) flags |= SELECTION;
|
|
|
|
}
|
|
|
|
BlockingDialog()
|
|
|
|
{
|
|
|
|
type = 2003;
|
2009-04-14 13:46:42 +03:00
|
|
|
flags = 0;
|
2009-04-22 21:48:56 +03:00
|
|
|
soundID = 0;
|
2009-04-11 04:32:50 +03:00
|
|
|
};
|
2008-08-22 15:21:09 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-04-22 21:48:56 +03:00
|
|
|
h & id & text & components & player & flags & soundID;
|
2008-08-22 15:21:09 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-04-12 03:58:41 +03:00
|
|
|
struct GarrisonDialog : public Query//2004
|
|
|
|
{
|
|
|
|
GarrisonDialog(){type = 2004;}
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
si32 objid, hid;
|
2009-09-09 20:49:03 +03:00
|
|
|
bool removableUnits;
|
2009-04-12 03:58:41 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-09-09 20:49:03 +03:00
|
|
|
h & id & objid & hid & removableUnits;
|
2009-04-12 03:58:41 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-08-04 18:56:36 +03:00
|
|
|
struct BattleInfo;
|
2009-03-07 00:11:17 +02:00
|
|
|
struct BattleStart : public CPackForClient//3000
|
2008-08-04 18:56:36 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
BattleStart(){type = 3000;};
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-04 18:56:36 +03:00
|
|
|
BattleInfo * info;
|
|
|
|
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & info;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct BattleNextRound : public CPackForClient//3001
|
|
|
|
{
|
|
|
|
BattleNextRound(){type = 3001;};
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-04 18:56:36 +03:00
|
|
|
si32 round;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & round;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct BattleSetActiveStack : public CPackForClient//3002
|
2008-08-04 18:56:36 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
BattleSetActiveStack(){type = 3002;};
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-04 18:56:36 +03:00
|
|
|
ui32 stack;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & stack;
|
|
|
|
}
|
|
|
|
};
|
2009-03-07 00:11:17 +02:00
|
|
|
struct BattleResult : public CPackForClient//3003
|
2008-08-04 18:56:36 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
BattleResult(){type = 3003;};
|
|
|
|
void applyFirstCl(CClient *cl);
|
2009-03-07 19:08:40 +02:00
|
|
|
void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2008-08-04 18:56:36 +03:00
|
|
|
ui8 result; //0 - normal victory; 1 - escape; 2 - surrender
|
|
|
|
ui8 winner; //0 - attacker, 1 - defender, [2 - draw (should be possible?)]
|
2009-09-24 16:23:52 +03:00
|
|
|
std::map<ui32,si32> casualties[2]; //first => casualties of attackers - map crid => number
|
2008-08-04 18:56:36 +03:00
|
|
|
ui32 exp[2]; //exp for attacker and defender
|
|
|
|
std::set<ui32> artifacts; //artifacts taken from loser to winner
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2008-09-08 14:32:16 +03:00
|
|
|
h & result & winner & casualties[0] & casualties[1] & exp & artifacts;
|
2008-08-04 18:56:36 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct BattleStackMoved : public CPackForClient//3004
|
2008-08-05 02:04:15 +03:00
|
|
|
{
|
2009-03-31 23:47:53 +03:00
|
|
|
ui32 stack, tile;
|
|
|
|
ui8 ending, distance;
|
2008-09-29 00:01:49 +03:00
|
|
|
BattleStackMoved(){type = 3004;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyFirstCl(CClient *cl);
|
2009-03-07 19:08:40 +02:00
|
|
|
void applyGs(CGameState *gs);
|
2008-08-05 02:04:15 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-03-31 23:47:53 +03:00
|
|
|
h & stack & tile & ending & distance;
|
2008-08-05 02:04:15 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct BattleStackAttacked : public CPackForClient//3005
|
2008-08-09 02:02:32 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
BattleStackAttacked(){flags = 0; type = 3005;};
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
2009-09-15 15:20:11 +03:00
|
|
|
ui32 stackAttacked, attackerID;
|
2008-08-09 02:02:32 +03:00
|
|
|
ui32 newAmount, newHP, killedAmount, damageAmount;
|
2009-03-21 14:49:58 +02:00
|
|
|
ui8 flags; //1 - is stack killed; 2 - is there special effect to be shown;
|
2008-10-18 14:41:24 +03:00
|
|
|
ui32 effect; //set only if flag 2 is present
|
2008-08-09 02:02:32 +03:00
|
|
|
|
2009-03-24 23:28:17 +02:00
|
|
|
bool killed() const//if target stack was killed
|
2008-08-09 02:02:32 +03:00
|
|
|
{
|
|
|
|
return flags & 1;
|
|
|
|
}
|
2009-03-24 23:28:17 +02:00
|
|
|
bool isEffect() const//if target stack was killed
|
2008-10-18 14:41:24 +03:00
|
|
|
{
|
|
|
|
return flags & 2;
|
|
|
|
}
|
2008-08-09 02:02:32 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-09-15 15:20:11 +03:00
|
|
|
h & stackAttacked & attackerID & newAmount & newHP & flags & killedAmount & damageAmount & effect;
|
2008-08-09 02:02:32 +03:00
|
|
|
}
|
2009-03-21 14:49:58 +02:00
|
|
|
bool operator<(const BattleStackAttacked &b) const
|
|
|
|
{
|
|
|
|
return stackAttacked < b.stackAttacked;
|
|
|
|
}
|
2008-08-09 02:02:32 +03:00
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct BattleAttack : public CPackForClient//3006
|
2008-08-09 02:02:32 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
BattleAttack(){flags = 0; type = 3006;};
|
|
|
|
void applyFirstCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
2009-03-21 14:49:58 +02:00
|
|
|
std::set<BattleStackAttacked> bsa;
|
2008-08-09 02:02:32 +03:00
|
|
|
ui32 stackAttacking;
|
|
|
|
ui8 flags;
|
|
|
|
|
|
|
|
bool shot()//distance attack - decrease number of shots
|
|
|
|
{
|
|
|
|
return flags & 1;
|
|
|
|
}
|
2008-09-12 11:51:46 +03:00
|
|
|
bool counter()//is it counterattack?
|
|
|
|
{
|
|
|
|
return flags & 2;
|
|
|
|
}
|
2009-03-21 14:49:58 +02:00
|
|
|
bool lucky()
|
|
|
|
{
|
|
|
|
return flags & 4;
|
|
|
|
}
|
|
|
|
bool unlucky()
|
2008-08-09 02:02:32 +03:00
|
|
|
{
|
2009-03-21 14:49:58 +02:00
|
|
|
//TODO: support?
|
|
|
|
return flags & 8;
|
2008-08-09 02:02:32 +03:00
|
|
|
}
|
2009-03-21 14:49:58 +02:00
|
|
|
//bool killed() //if target stack was killed
|
|
|
|
//{
|
|
|
|
// return bsa.killed();
|
|
|
|
//}
|
2008-08-09 02:02:32 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & bsa & stackAttacking & flags;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct StartAction : public CPackForClient//3007
|
2008-09-29 00:01:49 +03:00
|
|
|
{
|
|
|
|
StartAction(){type = 3007;};
|
|
|
|
StartAction(const BattleAction &act){ba = act; type = 3007;};
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyFirstCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
|
|
|
|
BattleAction ba;
|
2008-09-29 00:01:49 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & ba;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct EndAction : public CPackForClient//3008
|
2008-10-18 14:41:24 +03:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
EndAction(){type = 3008;};
|
|
|
|
void applyCl(CClient *cl);
|
2009-03-07 00:25:19 +02:00
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-05-12 06:35:51 +03:00
|
|
|
struct SpellCast : public CPackForClient//3009
|
2008-10-18 14:41:24 +03:00
|
|
|
{
|
2009-05-12 06:35:51 +03:00
|
|
|
SpellCast(){type = 3009;};
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
2009-11-08 16:44:58 +02:00
|
|
|
si32 dmgToDisplay; //this amount will be displayed as amount of damage dealt by spell
|
2009-05-12 06:35:51 +03:00
|
|
|
ui8 side; //which hero did cast spell: 0 - attacker, 1 - defender
|
2009-08-06 17:02:21 +03:00
|
|
|
ui32 id; //id of spell
|
|
|
|
ui8 skill; //caster's skill level
|
2008-10-18 14:41:24 +03:00
|
|
|
ui16 tile; //destination tile (may not be set in some global/mass spells
|
2009-07-26 15:15:38 +03:00
|
|
|
std::vector<ui32> resisted; //ids of creatures that resisted this spell
|
2009-08-04 20:05:49 +03:00
|
|
|
std::set<ui32> affectedCres; //ids of creatures affected by this spell, generally used if spell does not set any effect (like dispel or cure)
|
2008-10-18 14:41:24 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-11-08 16:44:58 +02:00
|
|
|
h & dmgToDisplay & side & id & skill & tile & resisted & affectedCres;
|
2008-10-18 14:41:24 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct SetStackEffect : public CPackForClient //3010
|
2008-11-09 00:29:19 +02:00
|
|
|
{
|
2009-03-07 00:11:17 +02:00
|
|
|
SetStackEffect(){type = 3010;};
|
2009-03-07 00:25:19 +02:00
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-03-07 00:11:17 +02:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
2009-08-06 17:02:21 +03:00
|
|
|
std::set<ui32> stacks; //affected stacks (IDs)
|
|
|
|
CStack::StackEffect effect; //type of effect
|
2008-11-09 00:29:19 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-03-21 14:49:58 +02:00
|
|
|
h & stacks & effect;
|
2008-11-09 00:29:19 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
struct StacksInjured : public CPackForClient //3011
|
|
|
|
{
|
|
|
|
StacksInjured(){type = 3011;}
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
|
|
|
std::set<BattleStackAttacked> stacks;
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & stacks;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-08-04 02:53:18 +03:00
|
|
|
struct BattleResultsApplied : public CPackForClient //3012
|
|
|
|
{
|
|
|
|
BattleResultsApplied(){type = 3012;}
|
|
|
|
|
|
|
|
ui8 player1, player2;
|
|
|
|
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & player1 & player2;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-08-04 20:05:49 +03:00
|
|
|
struct StacksHealedOrResurrected : public CPackForClient //3013
|
|
|
|
{
|
|
|
|
StacksHealedOrResurrected(){type = 3013;}
|
|
|
|
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-08-05 15:46:08 +03:00
|
|
|
void applyCl(CClient *cl);
|
2009-08-04 20:05:49 +03:00
|
|
|
|
|
|
|
struct HealInfo
|
|
|
|
{
|
|
|
|
ui32 stackID;
|
2009-08-05 15:46:08 +03:00
|
|
|
ui32 healedHP;
|
2010-01-29 18:35:05 +02:00
|
|
|
ui8 lowLevelResurrection; //in case this stack is resurrected by this heal, it will be marked as SUMMONED
|
2009-08-04 20:05:49 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2010-01-29 18:35:05 +02:00
|
|
|
h & stackID & healedHP & lowLevelResurrection;
|
2009-08-04 20:05:49 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<HealInfo> healedStacks;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & healedStacks;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-08-19 13:59:42 +03:00
|
|
|
struct ObstaclesRemoved : public CPackForClient //3014
|
|
|
|
{
|
|
|
|
ObstaclesRemoved(){type = 3014;}
|
|
|
|
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
|
|
|
std::set<si32> obstacles; //uniqueIDs of removed obstacles
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & obstacles;
|
|
|
|
}
|
2009-09-01 16:54:13 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CatapultAttack : public CPackForClient //3015
|
|
|
|
{
|
|
|
|
CatapultAttack(){type = 3015;}
|
|
|
|
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
2009-09-24 16:44:55 +03:00
|
|
|
std::set< std::pair< std::pair< ui8, si16 >, ui8> > attackedParts; // < <attackedPartOfWall, attacked hex >, damageDealt>
|
2009-09-07 15:30:10 +03:00
|
|
|
//attackedPartOfWall; //[0] - keep, [1] - bottom tower, [2] - bottom wall, [3] - below gate, [4] - over gate, [5] - upper wall, [6] - uppert tower, [7] - gate;
|
|
|
|
//damageDealt;
|
|
|
|
|
2009-09-24 16:44:55 +03:00
|
|
|
int attacker; //if -1, then a spell caused this
|
2009-09-01 16:54:13 +03:00
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-09-24 16:44:55 +03:00
|
|
|
h & attackedParts & attacker;
|
2009-09-01 16:54:13 +03:00
|
|
|
}
|
2009-09-05 17:10:26 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct BattleStacksRemoved : public CPackForClient //3016
|
|
|
|
{
|
|
|
|
BattleStacksRemoved(){type = 3016;}
|
|
|
|
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
|
|
|
std::set<ui32> stackIDs; //IDs of removed stacks
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & stackIDs;
|
|
|
|
}
|
2009-08-19 13:59:42 +03:00
|
|
|
};
|
|
|
|
|
2009-03-07 00:11:17 +02:00
|
|
|
struct ShowInInfobox : public CPackForClient //107
|
2008-08-04 18:56:36 +03:00
|
|
|
{
|
|
|
|
ShowInInfobox(){type = 107;};
|
|
|
|
ui8 player;
|
|
|
|
Component c;
|
|
|
|
MetaString text;
|
|
|
|
|
2009-03-07 00:25:19 +02:00
|
|
|
void applyCl(CClient *cl);
|
2008-08-04 18:56:36 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & player & c & text;
|
|
|
|
}
|
2008-12-26 17:00:34 +02:00
|
|
|
};
|
2009-03-09 12:37:49 +02:00
|
|
|
|
2009-09-21 12:00:33 +03:00
|
|
|
|
2009-03-09 12:37:49 +02:00
|
|
|
/***********************************************************************************************************/
|
|
|
|
|
|
|
|
struct CloseServer : public CPackForServer
|
|
|
|
{
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct EndTurn : public CPackForServer
|
|
|
|
{
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DismissHero : public CPackForServer
|
|
|
|
{
|
|
|
|
DismissHero(){};
|
2009-03-28 02:38:48 +02:00
|
|
|
DismissHero(si32 HID) : hid(HID) {};
|
2009-03-09 12:37:49 +02:00
|
|
|
si32 hid;
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & hid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MoveHero : public CPackForServer
|
|
|
|
{
|
|
|
|
MoveHero(){};
|
|
|
|
MoveHero(const int3 &Dest, si32 HID) : dest(Dest), hid(HID){};
|
|
|
|
int3 dest;
|
|
|
|
si32 hid;
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & dest & hid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ArrangeStacks : public CPackForServer
|
|
|
|
{
|
|
|
|
ArrangeStacks(){};
|
|
|
|
ArrangeStacks(ui8 W, ui8 P1, ui8 P2, si32 ID1, si32 ID2, si32 VAL)
|
|
|
|
:what(W),p1(P1),p2(P2),id1(ID1),id2(ID2),val(VAL) {};
|
|
|
|
|
|
|
|
ui8 what; //1 - swap; 2 - merge; 3 - split
|
|
|
|
ui8 p1, p2; //positions of first and second stack
|
|
|
|
si32 id1, id2; //ids of objects with garrison
|
|
|
|
si32 val;
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & what & p1 & p2 & id1 & id2 & val;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DisbandCreature : public CPackForServer
|
|
|
|
{
|
|
|
|
DisbandCreature(){};
|
|
|
|
DisbandCreature(ui8 Pos, si32 ID):pos(Pos),id(ID){};
|
|
|
|
ui8 pos; //stack pos
|
|
|
|
si32 id; //object id
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & pos & id;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BuildStructure : public CPackForServer
|
|
|
|
{
|
|
|
|
BuildStructure(){};
|
2009-04-15 13:20:47 +03:00
|
|
|
BuildStructure(si32 TID, si32 BID):bid(BID),tid(TID){};
|
2009-03-09 12:37:49 +02:00
|
|
|
si32 bid, tid; //structure and town ids
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & tid & bid;
|
|
|
|
}
|
|
|
|
};
|
2009-09-22 17:27:46 +03:00
|
|
|
struct RazeStructure : public BuildStructure
|
|
|
|
{
|
|
|
|
RazeStructure(){};
|
|
|
|
//RazeStructure(si32 TID, si32 BID):bid(BID),tid(TID){};
|
2009-03-09 12:37:49 +02:00
|
|
|
|
2009-09-22 17:27:46 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
|
|
|
};
|
2009-03-09 12:37:49 +02:00
|
|
|
struct RecruitCreatures : public CPackForServer
|
|
|
|
{
|
|
|
|
RecruitCreatures(){};
|
|
|
|
RecruitCreatures(si32 TID, si32 CRID, si32 Amount):tid(TID),crid(CRID),amount(Amount){};
|
|
|
|
si32 tid; //town id
|
|
|
|
ui32 crid, amount;//creature ID and amount
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & tid & crid & amount;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct UpgradeCreature : public CPackForServer
|
|
|
|
{
|
|
|
|
UpgradeCreature(){};
|
|
|
|
UpgradeCreature(ui8 Pos, si32 ID, si32 CRID):pos(Pos),id(ID), cid(CRID){};
|
|
|
|
ui8 pos; //stack pos
|
|
|
|
si32 id; //object id
|
|
|
|
si32 cid; //id of type to which we want make upgrade
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & pos & id & cid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GarrisonHeroSwap : public CPackForServer
|
|
|
|
{
|
|
|
|
GarrisonHeroSwap(){};
|
|
|
|
GarrisonHeroSwap(si32 TID):tid(TID){};
|
|
|
|
si32 tid;
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & tid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ExchangeArtifacts : public CPackForServer
|
|
|
|
{
|
|
|
|
ExchangeArtifacts(){};
|
|
|
|
ExchangeArtifacts(si32 H1, si32 H2, ui16 S1, ui16 S2)
|
|
|
|
:hid1(H1),hid2(H2),slot1(S1),slot2(S2){};
|
|
|
|
si32 hid1, hid2;
|
|
|
|
ui16 slot1, slot2;
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & hid1 & hid2 & slot1 & slot2;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BuyArtifact : public CPackForServer
|
|
|
|
{
|
|
|
|
BuyArtifact(){};
|
|
|
|
BuyArtifact(si32 HID, si32 AID):hid(HID),aid(AID){};
|
|
|
|
si32 hid, aid; //hero and artifact id
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & hid & aid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TradeOnMarketplace : public CPackForServer
|
|
|
|
{
|
|
|
|
TradeOnMarketplace(){};
|
|
|
|
TradeOnMarketplace(ui8 Player, ui8 Mode, /*si32 ID, */ui32 R1, ui32 R2, ui32 Val)
|
|
|
|
:player(Player),mode(Mode),/*id(ID),*/r1(R1),r2(R2),val(Val){};
|
|
|
|
ui8 player;
|
|
|
|
ui8 mode;//0 - res<->res;
|
|
|
|
//si32 id; //object id
|
|
|
|
ui32 r1, r2; //mode 0: r1 - sold resource, r2 - bought res
|
|
|
|
ui32 val; //units of sold resource
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & player & mode & /*id & */r1 & r2 & val;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SetFormation : public CPackForServer
|
|
|
|
{
|
|
|
|
SetFormation(){};
|
|
|
|
SetFormation(si32 HID, ui8 Formation):hid(HID),formation(Formation){};
|
|
|
|
si32 hid;
|
|
|
|
ui8 formation;
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & hid & formation;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct HireHero : public CPackForServer
|
|
|
|
{
|
|
|
|
HireHero(){};
|
|
|
|
HireHero(si32 HID, si32 TID):hid(HID),tid(TID){};
|
|
|
|
si32 hid, tid; //available hero serial and town id
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & hid & tid;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-07-26 06:33:13 +03:00
|
|
|
struct BuildBoat : public CPackForServer
|
|
|
|
{
|
|
|
|
BuildBoat(){};
|
|
|
|
si32 objid; //where player wants to buy a boat
|
|
|
|
|
|
|
|
bool applyGh(CGameHandler *gh);
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & objid;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-03-09 12:37:49 +02:00
|
|
|
struct QueryReply : public CPackForServer
|
|
|
|
{
|
2009-08-04 02:53:18 +03:00
|
|
|
QueryReply(){type = 6000;};
|
|
|
|
QueryReply(ui32 QID, ui32 Answer):qid(QID),answer(Answer){type = 6000;};
|
2009-03-09 12:37:49 +02:00
|
|
|
ui32 qid, answer; //hero and artifact id
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & qid & answer;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MakeAction : public CPackForServer
|
|
|
|
{
|
|
|
|
MakeAction(){};
|
2009-03-09 21:40:43 +02:00
|
|
|
MakeAction(const BattleAction &BA):ba(BA){};
|
2009-03-09 12:37:49 +02:00
|
|
|
BattleAction ba;
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & ba;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct MakeCustomAction : public CPackForServer
|
|
|
|
{
|
|
|
|
MakeCustomAction(){};
|
2009-03-20 20:51:48 +02:00
|
|
|
MakeCustomAction(const BattleAction &BA):ba(BA){};
|
2009-03-09 12:37:49 +02:00
|
|
|
BattleAction ba;
|
|
|
|
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & ba;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/***********************************************************************************************************/
|
|
|
|
|
2009-03-28 20:46:20 +02:00
|
|
|
struct SaveGame : public CPackForClient, public CPackForServer
|
|
|
|
{
|
|
|
|
SaveGame(){};
|
|
|
|
SaveGame(const std::string &Fname) :fname(Fname){};
|
|
|
|
std::string fname;
|
|
|
|
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
void applyGs(CGameState *gs){};
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-28 20:46:20 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & fname;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-03-09 12:37:49 +02:00
|
|
|
struct PlayerMessage : public CPackForClient, public CPackForServer //513
|
|
|
|
{
|
|
|
|
PlayerMessage(){CPackForClient::type = 513;};
|
|
|
|
PlayerMessage(ui8 Player, const std::string &Text)
|
|
|
|
:player(Player),text(Text)
|
|
|
|
{CPackForClient::type = 513;};
|
|
|
|
void applyCl(CClient *cl);
|
|
|
|
void applyGs(CGameState *gs){};
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-03-09 12:37:49 +02:00
|
|
|
|
|
|
|
ui8 player;
|
|
|
|
std::string text;
|
|
|
|
|
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & text & player;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct SetSelection : public CPackForClient, public CPackForServer //514
|
|
|
|
{
|
|
|
|
SetSelection(){CPackForClient::type = 514;};
|
|
|
|
DLL_EXPORT void applyGs(CGameState *gs);
|
2009-04-16 03:28:54 +03:00
|
|
|
bool applyGh(CGameHandler *gh);
|
2009-08-30 15:47:40 +03:00
|
|
|
void applyCl(CClient *cl);
|
2009-03-09 12:37:49 +02:00
|
|
|
|
|
|
|
ui8 player;
|
|
|
|
ui32 id;
|
|
|
|
|
2009-08-11 10:50:29 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
|
|
|
h & id & player;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-08-13 04:03:11 +03:00
|
|
|
struct CenterView : public CPackForClient//515
|
2009-08-11 10:50:29 +03:00
|
|
|
{
|
2009-08-13 04:03:11 +03:00
|
|
|
CenterView(){CPackForClient::type = 515;};
|
2009-08-11 10:50:29 +03:00
|
|
|
void applyCl(CClient *cl);
|
|
|
|
|
|
|
|
ui8 player;
|
2009-08-13 04:03:11 +03:00
|
|
|
int3 pos;
|
|
|
|
ui32 focusTime; //ms
|
2009-08-11 10:50:29 +03:00
|
|
|
|
2009-03-09 12:37:49 +02:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2009-08-13 04:03:11 +03:00
|
|
|
h & pos & player & focusTime;
|
2009-03-09 12:37:49 +02:00
|
|
|
}
|
2010-02-06 15:49:14 +02:00
|
|
|
};
|
|
|
|
|
2009-08-11 10:50:29 +03:00
|
|
|
|
2009-05-12 06:35:51 +03:00
|
|
|
#endif //__NETPACKS_H__
|