| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031 | 
							- #ifndef __NETPACKS_H__
 
- #define __NETPACKS_H__
 
- #include <boost/unordered_set.hpp>
 
- #include "../global.h"
 
- #include "BattleAction.h"
 
- #include "HeroBonus.h"
 
- #include <set>
 
- #include "CCreatureSet.h"
 
- #include "CMapInfo.h"
 
- #include "../StartInfo.h"
 
- #include "ConstTransitivePtr.h"
 
- #include "../int3.h"
 
- /*
 
-  * 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
 
-  *
 
-  */
 
- class CClient;
 
- class CGameState;
 
- class CGameHandler;
 
- class CConnection;
 
- class CCampaignState;
 
- class CArtifact;
 
- class CSelectionScreen;
 
- class CGObjectInstance;
 
- class CArtifactInstance;
 
- //class CMapInfo;
 
- struct ArtSlotInfo;
 
- struct CPack
 
- {
 
- 	ui16 type;
 
- 	CPack(){};
 
- 	virtual ~CPack(){};
 
- 	ui16 getType() const{return type;}
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		tlog1 << "CPack serialized... this should not happen!\n";
 
- 	}
 
- 	DLL_EXPORT void applyGs(CGameState *gs)
 
- 	{};
 
- };
 
- struct CPackForClient : public CPack
 
- {
 
- 	CPackForClient(){type = 1;};
 
- 	CGameState* GS(CClient *cl);
 
- 	void applyFirstCl(CClient *cl)//called before applying to gs
 
- 	{};
 
- 	void applyCl(CClient *cl)//called after applying to gs
 
- 	{}; 
 
- };
 
- struct CPackForServer : public CPack
 
- {
 
- 	CConnection *c;
 
- 	CGameState* GS(CGameHandler *gh);
 
- 	CPackForServer()
 
- 	{
 
- 		type = 2; 
 
- 		c = NULL;
 
- 	};
 
- 	bool applyGh(CGameHandler *gh);//called after applying to gs
 
- };
 
- struct Query : public CPackForClient
 
- {
 
- 	ui32 id;
 
- };
 
- struct MetaString : public CPack //2001 helper for object scrips
 
- {
 
- private:
 
- 	enum EMessage {TEXACT_STRING, TLOCAL_STRING, TNUMBER, TREPLACE_ESTRING, TREPLACE_LSTRING, TREPLACE_NUMBER, TREPLACE_PLUSNUMBER};
 
- public:
 
- 	enum {GENERAL_TXT=1, XTRAINFO_TXT, OBJ_NAMES, RES_NAMES, ART_NAMES, ARRAY_TXT, CRE_PL_NAMES, CREGENS, MINE_NAMES, 
 
- 		MINE_EVNTS, ADVOB_TXT, ART_EVNTS, SPELL_NAME, SEC_SKILL_NAME, CRE_SING_NAMES, CREGENS4, COLOR, ART_DESCR};
 
- 	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;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & exactStrings & localStrings & message & numbers;
 
- 	}
 
- 	void addTxt(ui8 type, ui32 serial)
 
- 	{
 
- 		message.push_back(TLOCAL_STRING);
 
- 		localStrings.push_back(std::pair<ui8,ui32>(type, serial));
 
- 	}
 
- 	MetaString& operator<<(const std::pair<ui8,ui32> &txt)
 
- 	{
 
- 		message.push_back(TLOCAL_STRING);
 
- 		localStrings.push_back(txt);
 
- 		return *this;
 
- 	}
 
- 	MetaString& operator<<(const std::string &txt)
 
- 	{
 
- 		message.push_back(TEXACT_STRING);
 
- 		exactStrings.push_back(txt);
 
- 		return *this;
 
- 	}
 
- 	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);
 
- 	}
 
- 	void addReplacement2(int txt)
 
- 	{
 
- 		message.push_back(TREPLACE_PLUSNUMBER);
 
- 		numbers.push_back(txt);
 
- 	}
 
- 	DLL_EXPORT void addCreReplacement(TCreature id, TQuantity count); //adds sing or plural name;
 
- 	DLL_EXPORT void addReplacement(const CStackBasicDescriptor &stack); //adds sing or plural name;
 
- 	DLL_EXPORT std::string buildList () const;
 
- 	void clear()
 
- 	{
 
- 		exactStrings.clear();
 
- 		localStrings.clear();
 
- 		message.clear();
 
- 		numbers.clear();
 
- 	}
 
- 	DLL_EXPORT void toString(std::string &dst) const;
 
- 	DLL_EXPORT std::string toString() const;
 
- 	void getLocalString(const std::pair<ui8,ui32> &txt, std::string &dst) const;
 
- 	MetaString()
 
- 	{
 
- 		type = 2001;
 
- 	}
 
- }; 
 
- /***********************************************************************************************************/
 
- 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)
 
- 	{
 
- 		h & result & packType;
 
- 	}
 
- };
 
- struct SystemMessage : public CPackForClient //95
 
- {
 
- 	SystemMessage(const std::string Text) : text(Text){type = 95;};
 
- 	SystemMessage(){type = 95;};
 
- 	void applyCl(CClient *cl);
 
- 	std::string text;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & text;
 
- 	}
 
- };
 
- 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;
 
- 	}
 
- };
 
- struct YourTurn : public CPackForClient //100
 
- {
 
- 	YourTurn(){type = 100;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui8 player;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & player;
 
- 	}
 
- };
 
- struct SetResource : public CPackForClient //102
 
- {
 
- 	SetResource(){type = 102;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui8 player, resid;
 
- 	si32 val;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & player & resid & val;
 
- 	}
 
- }; 
 
-  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;
 
-  	}
 
-  };
 
- struct SetPrimSkill : public CPackForClient //105
 
- {
 
- 	SetPrimSkill(){type = 105;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui8 abs; //0 - changes by value; 1 - sets to value
 
- 	si32 id;
 
- 	ui16 which;
 
- 	si64 val;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & abs & id & which & val;
 
- 	}
 
- }; 
 
- struct SetSecSkill : public CPackForClient //106
 
- {
 
- 	SetSecSkill(){type = 106;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	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;
 
- 	}
 
- }; 
 
- struct HeroVisitCastle : public CPackForClient //108
 
- {
 
- 	HeroVisitCastle(){flags=0;type = 108;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui8 flags; //1 - start
 
- 	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;
 
- 	}
 
- }; 
 
- struct ChangeSpells : public CPackForClient //109
 
- {
 
- 	ChangeSpells(){type = 109;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	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;
 
- 	}
 
- }; 
 
- struct SetMana : public CPackForClient //110
 
- {
 
- 	SetMana(){type = 110;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	si32 hid, val;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & val & hid;
 
- 	}
 
- };
 
- struct SetMovePoints : public CPackForClient //111
 
- {
 
- 	SetMovePoints(){type = 111;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui32 hid, val;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & val & hid;
 
- 	}
 
- };
 
- struct FoWChange : public CPackForClient //112
 
- {
 
- 	FoWChange(){type = 112;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	boost::unordered_set<int3, struct ShashInt3 > tiles;
 
- 	ui8 player, mode; //mode==0 - hide, mode==1 - reveal
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & tiles & player & mode;
 
- 	}
 
- }; 
 
- struct SetAvailableHeroes : public CPackForClient //113
 
- {
 
- 	SetAvailableHeroes()
 
- 	{
 
- 		type = 113;
 
- 		for (int i = 0; i < AVAILABLE_HEROES_PER_PLAYER; i++)
 
- 			army[i].clear();
 
- 	}
 
- 	~SetAvailableHeroes()
 
- 	{
 
- 	}
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui8 player;
 
- 	si32 hid[AVAILABLE_HEROES_PER_PLAYER]; //-1 if no hero
 
- 	CSimpleArmy army[AVAILABLE_HEROES_PER_PLAYER];
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & player & hid & army;
 
- 	}
 
- };
 
- struct GiveBonus :  public CPackForClient //115
 
- {
 
- 	GiveBonus(ui8 Who = 0)
 
- 	{
 
- 		who = Who; 
 
- 		type = 115;
 
- 	}
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	enum {HERO, PLAYER, TOWN};
 
- 	ui8 who; //who receives bonus, uses enum above
 
- 	ui32 id; //hero. town or player id - whoever receives it
 
- 	Bonus bonus;
 
- 	MetaString bdescr;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & bonus & id & bdescr & who;
 
- 	}
 
- };
 
- struct ChangeObjPos : public CPackForClient //116
 
- {
 
- 	ChangeObjPos()
 
- 	{
 
- 		type = 116; 
 
- 		flags = 0;
 
- 	}
 
- 	void applyFirstCl(CClient *cl);
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui32 objid;
 
- 	int3 nPos;
 
- 	ui8 flags; //bit flags: 1 - redraw
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & objid & nPos & flags;
 
- 	}
 
- };
 
- 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;
 
- 	}
 
- };
 
- 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, TOWN};
 
- 	ui8 who; //who receives bonus, uses enum above
 
- 	ui32 whoID; //hero, town or player id - whoever loses bonus
 
- 	//vars to identify bonus: its source
 
- 	ui8 source;
 
- 	ui32 id; //source id
 
- 	//used locally: copy of removed bonus
 
- 	Bonus bonus;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & source & id & who & whoID;
 
- 	}
 
- };
 
- struct UpdateCampaignState : public CPackForClient //119
 
- {
 
- 	UpdateCampaignState()
 
- 	{
 
- 		type = 119;
 
- 	}
 
- 	CCampaignState *camp;
 
- 	void applyCl(CClient *cl);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & camp;
 
- 	}
 
- };
 
- struct RemoveObject : public CPackForClient //500
 
- {
 
- 	RemoveObject(){type = 500;};
 
- 	RemoveObject(si32 ID){id = ID;type = 500;};
 
- 	void applyFirstCl(CClient *cl);
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	si32 id;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id;
 
- 	}
 
- }; 
 
- struct TryMoveHero : public CPackForClient //501
 
- {
 
- 	TryMoveHero(){type = 501;humanKnows=false; attackedFrom = int3(-1, -1, -1);};
 
- 	void applyFirstCl(CClient *cl);
 
- 	void applyCl(CClient *cl);
 
- 	void applyGs(CGameState *gs);
 
- 	enum EResult
 
- 	{
 
- 		FAILED, SUCCESS, TELEPORTATION, RESERVED___, BLOCKING_VISIT, EMBARK, DISEMBARK
 
- 	};
 
- 	ui32 id, movePoints;
 
- 	ui8 result; //uses EResult
 
- 	int3 start, end; //h3m format
 
- 	boost::unordered_set<int3, ShashInt3> fowRevealed; //revealed tiles
 
- 	int3 attackedFrom; // Set when stepping into endangered tile.
 
- 	bool humanKnows; //used locally during applying to client
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id & result & start & end & movePoints & fowRevealed & attackedFrom;
 
- 	}
 
- };
 
- // struct SetGarrisons : public CPackForClient //502
 
- // {
 
- // 	SetGarrisons(){type = 502;};
 
- // 	void applyCl(CClient *cl);
 
- // 	DLL_EXPORT void applyGs(CGameState *gs);
 
- // 
 
- // 	std::map<ui32,CCreatureSet> garrs;
 
- // 
 
- // 	template <typename Handler> void serialize(Handler &h, const int version)
 
- // 	{
 
- // 		h & garrs;
 
- // 	}
 
- // }; 
 
- struct NewStructures : public CPackForClient //504
 
- {
 
- 	NewStructures(){type = 504;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT virtual void applyGs(CGameState *gs);
 
- 	si32 tid;
 
- 	std::set<si32> bid;
 
- 	si16 builded; 
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & tid & bid & builded;
 
- 	}
 
- };
 
- struct RazeStructures : public CPackForClient //505
 
- {
 
- 	RazeStructures() {type = 505;};
 
- 	void applyCl (CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	si32 tid;
 
- 	std::set<si32> bid;
 
- 	si16 destroyed; 
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & tid & bid & destroyed;
 
- 	}
 
- };
 
- struct SetAvailableCreatures : public CPackForClient //506
 
- {
 
- 	SetAvailableCreatures(){type = 506;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	si32 tid;
 
- 	std::vector<std::pair<ui32, std::vector<ui32> > > creatures;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & tid & creatures;
 
- 	}
 
- };  
 
- struct SetHeroesInTown : public CPackForClient //508
 
- {
 
- 	SetHeroesInTown(){type = 508;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	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;
 
- 	}
 
- };
 
- // struct SetHeroArtifacts : public CPackForClient //509
 
- // {
 
- // 	SetHeroArtifacts(){type = 509;};
 
- // 	void applyCl(CClient *cl);
 
- // 	DLL_EXPORT void applyGs(CGameState *gs);
 
- // 	DLL_EXPORT void setArtAtPos(ui16 pos, const CArtifact* art);
 
- // 
 
- // 	si32 hid;
 
- // 	std::vector<const CArtifact*> artifacts; //hero's artifacts from bag
 
- // 	std::map<ui16, const CArtifact*> 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;
 
- // 	}
 
- // 
 
- // 	std::vector<const CArtifact*> equiped, unequiped; //used locally
 
- // 	BonusList gained, lost; //used locally as hlp when applying
 
- // };   
 
- struct HeroRecruited : public CPackForClient //515
 
- {
 
- 	HeroRecruited(){type = 515;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	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;
 
- 	}
 
- };  
 
- struct GiveHero : public CPackForClient //516
 
- {
 
- 	GiveHero(){type = 516;};
 
- 	void applyFirstCl(CClient *cl);
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui32 id; //object id
 
- 	ui8 player;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id & player;
 
- 	}
 
- };  
 
- struct OpenWindow : public CPackForClient //517
 
- {
 
- 	OpenWindow(){type = 517;};
 
- 	void applyCl(CClient *cl);
 
- 	enum EWindow {EXCHANGE_WINDOW, RECRUITMENT_FIRST, RECRUITMENT_ALL, SHIPYARD_WINDOW, THIEVES_GUILD,
 
- 	              UNIVERSITY_WINDOW, HILL_FORT_WINDOW, MARKET_WINDOW, PUZZLE_MAP, TAVERN_WINDOW};
 
- 	ui8 window;
 
- 	ui32 id1, id2;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & window & id1 & id2;
 
- 	}
 
- };
 
- 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;
 
- 	}
 
- };
 
- struct SetAvailableArtifacts  : public CPackForClient //519
 
- {
 
- 	SetAvailableArtifacts(){type = 519;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	si32 id; //two variants: id < 0: set artifact pool for Artifact Merchants in towns; id >= 0: set pool for adv. map Black Market (id is the id of Black Market instance then)
 
- 	std::vector<const CArtifact *> arts;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id & arts;
 
- 	}
 
- };
 
- struct NewArtifact : public CPackForClient //520
 
- {
 
- 	NewArtifact(){type = 520;};
 
- 	//void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ConstTransitivePtr<CArtifactInstance> art;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & art;
 
- 	}
 
- };
 
- struct StackLocation
 
- {
 
- 	ConstTransitivePtr<CArmedInstance> army;
 
- 	TSlot slot;
 
- 	StackLocation()
 
- 	{
 
- 		slot = -1;
 
- 	}
 
- 	StackLocation(const CArmedInstance *Army, TSlot Slot)
 
- 	{
 
- 		army = const_cast<CArmedInstance*>(Army); //we are allowed here to const cast -> change will go through one of our packages... do not abuse!
 
- 		slot = Slot;
 
- 	}
 
- 	DLL_EXPORT const CStackInstance *getStack();
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & army & slot;
 
- 	}
 
- };
 
- struct CGarrisonOperationPack : CPackForClient
 
- {
 
- };
 
- struct CArtifactOperationPack : CPackForClient
 
- {
 
- };
 
- struct ChangeStackCount : CGarrisonOperationPack  //521
 
- {
 
- 	StackLocation sl;
 
- 	TQuantity count;
 
- 	ui8 absoluteValue; //if not -> count will be added (or subtracted if negative)
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & sl & count & absoluteValue;
 
- 	}
 
- };
 
- struct SetStackType : CGarrisonOperationPack  //522
 
- {
 
- 	StackLocation sl;
 
- 	CCreature *type;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & sl & type;
 
- 	}
 
- };
 
- struct EraseStack : CGarrisonOperationPack  //523
 
- {
 
- 	StackLocation sl;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & sl;
 
- 	}
 
- };
 
- struct SwapStacks : CGarrisonOperationPack  //524
 
- {
 
- 	StackLocation sl1, sl2;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & sl1 & sl2;
 
- 	}
 
- };
 
- struct InsertNewStack : CGarrisonOperationPack //525
 
- {
 
- 	StackLocation sl;
 
- 	CStackBasicDescriptor stack;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & sl & stack;
 
- 	}
 
- };
 
- //moves creatures from src stack to dst slot, may be used for merging/splittint/moving stacks
 
- struct RebalanceStacks : CGarrisonOperationPack  //526
 
- {
 
- 	StackLocation src, dst;
 
- 	TQuantity count;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & src & dst & count;
 
- 	}
 
- };
 
- typedef si32 TArtPos;
 
- struct ArtifactLocation
 
- {
 
- 	ConstTransitivePtr<CGHeroInstance> hero;
 
- 	TArtPos slot;
 
- 	ArtifactLocation()
 
- 	{
 
- 		slot = -1;
 
- 	}
 
- 	ArtifactLocation(const CGHeroInstance *Hero, TArtPos Slot)
 
- 	{
 
- 		hero = const_cast<CGHeroInstance*>(Hero); //we are allowed here to const cast -> change will go through one of our packages... do not abuse!
 
- 		slot = Slot;
 
- 	}
 
- 	DLL_EXPORT const CArtifactInstance *getArt() const;
 
- 	DLL_EXPORT CArtifactInstance *getArt();
 
- 	DLL_EXPORT const ArtSlotInfo *getSlot() const;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & hero & slot;
 
- 	}
 
- };
 
- struct PutArtifact : CArtifactOperationPack  //526
 
- {
 
- 	ArtifactLocation al;
 
- 	ConstTransitivePtr<CArtifactInstance> art;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & al & art;
 
- 	}
 
- };
 
- struct EraseArtifact : CArtifactOperationPack  //527
 
- {
 
- 	ArtifactLocation al;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & al;
 
- 	}
 
- };
 
- struct MoveArtifact : CArtifactOperationPack  //528
 
- {
 
- 	ArtifactLocation src, dst;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & src & dst;
 
- 	}
 
- };
 
- struct AssembledArtifact : CArtifactOperationPack  //529
 
- {
 
- 	ArtifactLocation al; //where assembly will be put
 
- 	CArtifact *builtArt;
 
- 	//std::vector<CArtifactInstance *> constituents;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & al & builtArt/* & constituents*/;
 
- 	}
 
- };
 
- struct DisassembledArtifact : CArtifactOperationPack  //530
 
- {
 
- 	ArtifactLocation al;
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & al;
 
- 	}
 
- };
 
- struct NewTurn : public CPackForClient //101
 
- {
 
- 	enum weekType {NORMAL, DOUBLE_GROWTH, BONUS_GROWTH, DEITYOFFIRE, PLAGUE, CUSTOM, NO_ACTION, NONE};
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	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
 
- 	//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
 
- 	ui32 day;
 
- 	bool resetBuilded;
 
- 	ui8 specialWeek; //weekType
 
- 	TCreature creatureid; //for creature weeks
 
- 	NewTurn(){type = 101;};
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & heroes & cres & res & day & resetBuilded & specialWeek & creatureid;
 
- 	}
 
- }; 
 
- struct Component : public CPack //2002 helper for object scrips informations
 
- {
 
- 	enum EComponentType {PRIM_SKILL, SEC_SKILL, RESOURCE, CREATURE, ARTIFACT, EXPERIENCE, SPELL, MORALE=8, LUCK, BUILDING, HERO, FLAG};
 
- 	ui16 id, subtype; //id uses ^^^ enums, when id==EXPPERIENCE subtype==0 means exp points and subtype==1 levels)
 
- 	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)
 
- 	{
 
- 		h & id & subtype & val & when;
 
- 	}
 
- 	Component()
 
- 	{
 
- 		type = 2002;
 
- 	}
 
- 	DLL_EXPORT explicit Component(const CStackBasicDescriptor &stack);
 
- 	Component(ui16 Type, ui16 Subtype, si32 Val, si16 When)
 
- 		:id(Type),subtype(Subtype),val(Val),when(When)
 
- 	{
 
- 		type = 2002;
 
- 	}
 
- };
 
- struct InfoWindow : public CPackForClient //103  - displays simple info window
 
- {
 
- 	void applyCl(CClient *cl);
 
- 	MetaString text;
 
- 	std::vector<Component> components;
 
- 	ui8 player;
 
- 	ui16 soundID;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & text & components & player & soundID;
 
- 	}
 
- 	InfoWindow() 
 
- 	{ 
 
- 		type = 103;
 
- 		soundID = 0; 
 
- 	}
 
- };
 
- namespace ObjProperty
 
- {
 
- 	//TODO: move non general properties out to the appropriate objs classes
 
- 	enum {OWNER = 1, BLOCKVIS = 2, PRIMARY_STACK_COUNT = 3, VISITORS = 4, VISITED = 5, ID = 6, AVAILABLE_CREATURE = 7, SUBID = 8};
 
- }
 
- struct SetObjectProperty : public CPackForClient//1001
 
- {
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	void applyCl(CClient *cl);
 
- 	ui32 id;
 
- 	ui8 what; //1 - owner; 2 - blockvis; 3 - first stack count; 4 - visitors; 5 - visited; 6 - ID (if 34 then also def is replaced)
 
- 	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;
 
- 	}
 
- };
 
- struct SetHoverName : public CPackForClient//1002
 
- {
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	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;
 
- 	}
 
- };
 
- struct HeroLevelUp : public Query//2000
 
- {
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	si32 heroid;
 
- 	ui8 primskill, level;
 
- 	std::vector<ui16> skills;
 
- 	HeroLevelUp(){type = 2000;};
 
- 	
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id & heroid & primskill & level & skills;
 
- 	}
 
- };
 
- struct TradeComponents : public CPackForClient, public CPackForServer
 
- {
 
- ///used to handle info about components available in shops
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	si32 heroid;
 
- 	ui32 objectid;
 
- 	std::map<ui16, Component> available, chosen, bought;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & heroid & objectid & available & chosen & bought;
 
- 	}
 
- };
 
- //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
 
- {
 
- 	enum {ALLOW_CANCEL = 1, SELECTION = 2};
 
- 	void applyCl(CClient *cl);
 
- 	MetaString text;
 
- 	std::vector<Component> components;
 
- 	ui8 player;
 
- 	ui8 flags;
 
- 	ui16 soundID;
 
- 	bool cancel() const
 
- 	{
 
- 		return flags & ALLOW_CANCEL;
 
- 	}
 
- 	bool selection() const
 
- 	{
 
- 		return flags & SELECTION;
 
- 	}
 
- 	BlockingDialog(bool yesno, bool Selection)
 
- 	{
 
- 		type = 2003;
 
- 		flags = 0;
 
- 		soundID = 0;
 
- 		if(yesno) flags |= ALLOW_CANCEL;
 
- 		if(Selection) flags |= SELECTION;
 
- 	}
 
- 	BlockingDialog()
 
- 	{
 
- 		type = 2003;
 
- 		flags = 0;
 
- 		soundID = 0;
 
- 	};
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id & text & components & player & flags & soundID;
 
- 	}
 
- };
 
- struct GarrisonDialog : public Query//2004
 
- {
 
- 	GarrisonDialog(){type = 2004;}
 
- 	void applyCl(CClient *cl);
 
- 	si32 objid, hid;
 
- 	bool removableUnits;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id & objid & hid & removableUnits;
 
- 	}
 
- };
 
- struct BattleInfo;
 
- struct BattleStart : public CPackForClient//3000
 
- {
 
- 	BattleStart(){type = 3000;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	BattleInfo * info;
 
- 	
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & info;
 
- 	}
 
- };
 
- struct BattleNextRound : public CPackForClient//3001
 
- {	
 
- 	BattleNextRound(){type = 3001;};
 
- 	void applyFirstCl(CClient *cl);
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs( CGameState *gs );
 
- 	si32 round;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & round;
 
- 	}
 
- };
 
- struct BattleSetActiveStack : public CPackForClient//3002
 
- {
 
- 	BattleSetActiveStack(){type = 3002;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui32 stack;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & stack;
 
- 	}
 
- };
 
- struct BattleResult : public CPackForClient//3003
 
- {
 
- 	BattleResult(){type = 3003;};
 
- 	void applyFirstCl(CClient *cl);
 
- 	void applyGs(CGameState *gs);
 
- 	ui8 result; //0 - normal victory; 1 - escape; 2 - surrender
 
- 	ui8 winner; //0 - attacker, 1 - defender, [2 - draw (should be possible?)]
 
- 	std::map<ui32,si32> casualties[2]; //first => casualties of attackers - map crid => number
 
- 	expType 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)
 
- 	{
 
- 		h & result & winner & casualties[0] & casualties[1] & exp & artifacts;
 
- 	}
 
- };
 
- struct BattleStackMoved : public CPackForClient//3004
 
- {
 
- 	ui32 stack;
 
- 	THex tile;
 
- 	ui8 ending, distance, teleporting;
 
- 	BattleStackMoved(){type = 3004;};
 
- 	void applyFirstCl(CClient *cl);
 
- 	void applyGs(CGameState *gs);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & stack & tile & ending & distance;
 
- 	}
 
- };
 
- struct StacksHealedOrResurrected : public CPackForClient //3013
 
- {
 
- 	StacksHealedOrResurrected(){type = 3013;}
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	void applyCl(CClient *cl);
 
- 	struct HealInfo
 
- 	{
 
- 		ui32 stackID;
 
- 		ui32 healedHP;
 
- 		ui8 lowLevelResurrection; //in case this stack is resurrected by this heal, it will be marked as SUMMONED
 
- 		template <typename Handler> void serialize(Handler &h, const int version)
 
- 		{
 
- 			h & stackID & healedHP & lowLevelResurrection;
 
- 		}
 
- 	};
 
- 	std::vector<HealInfo> healedStacks;
 
- 	ui8 lifeDrain; //if true, this heal is an effect of life drain
 
- 	si32 drainedFrom; //if life drain - then stack life was drain from
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & healedStacks & lifeDrain & drainedFrom;
 
- 	}
 
- };
 
- struct BattleStackAttacked : public CPackForClient//3005
 
- {
 
- 	BattleStackAttacked(){flags = 0; type = 3005;};
 
- 	void applyCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	ui32 stackAttacked, attackerID;
 
- 	ui32 newAmount, newHP, killedAmount, damageAmount;
 
- 	ui8 flags; //1 - is stack killed; 2 - is there special effect to be shown;
 
- 	ui32 effect; //set only if flag 2 is present
 
- 	std::vector<StacksHealedOrResurrected> healedStacks; //used when life drain
 
- 	bool killed() const//if target stack was killed
 
- 	{
 
- 		return flags & 1;
 
- 	}
 
- 	bool isEffect() const//if stack has been attacked by a spell
 
- 	{
 
- 		return flags & 2;
 
- 	}
 
- 	bool lifeDrain() const //if this attack involves life drain effect
 
- 	{
 
- 		return healedStacks.size() > 0;
 
- 	}
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & stackAttacked & attackerID & newAmount & newHP & flags & killedAmount & damageAmount & effect
 
- 			& healedStacks;
 
- 	}
 
- 	bool operator<(const BattleStackAttacked &b) const
 
- 	{
 
- 		return stackAttacked < b.stackAttacked;
 
- 	}
 
- };
 
- struct BattleAttack : public CPackForClient//3006
 
- {
 
- 	BattleAttack(){flags = 0; type = 3006;};
 
- 	void applyFirstCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	void applyCl(CClient *cl);
 
- 	std::vector<BattleStackAttacked> bsa;
 
- 	ui32 stackAttacking;
 
- 	ui8 flags;
 
- 	bool shot() const//distance attack - decrease number of shots
 
- 	{
 
- 		return flags & 1;
 
- 	}
 
- 	bool counter() const//is it counterattack?
 
- 	{
 
- 		return flags & 2;
 
- 	}
 
- 	bool lucky() const
 
- 	{
 
- 		return flags & 4;
 
- 	}
 
- 	bool unlucky() const
 
- 	{
 
- 		//TODO: support?
 
- 		return flags & 8;
 
- 	}
 
- 	//bool killed() //if target stack was killed
 
- 	//{
 
- 	//	return bsa.killed();
 
- 	//}
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & bsa & stackAttacking & flags;
 
- 	}
 
- };
 
- struct StartAction : public CPackForClient//3007
 
- {
 
- 	StartAction(){type = 3007;};
 
- 	StartAction(const BattleAction &act){ba = act; type = 3007;};
 
- 	void applyFirstCl(CClient *cl);
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	BattleAction ba;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & ba;
 
- 	}
 
- };
 
- struct EndAction : public CPackForClient//3008
 
- {
 
- 	EndAction(){type = 3008;};
 
- 	void applyCl(CClient *cl);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 	}
 
- };
 
- struct BattleSpellCast : public CPackForClient//3009
 
- {
 
- 	BattleSpellCast(){type = 3009;};
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	void applyCl(CClient *cl);
 
- 	si32 dmgToDisplay; //this amount will be displayed as amount of damage dealt by spell
 
- 	ui8 side; //which hero did cast spell: 0 - attacker, 1 - defender
 
- 	ui32 id; //id of spell
 
- 	ui8 skill; //caster's skill level
 
- 	ui16 tile; //destination tile (may not be set in some global/mass spells
 
- 	std::vector<ui32> resisted; //ids of creatures that resisted this spell
 
- 	std::set<ui32> affectedCres; //ids of creatures affected by this spell, generally used if spell does not set any effect (like dispel or cure)
 
- 	ui8 castedByHero; //if true - spell has been casted by hero, otherwise by a creature
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & dmgToDisplay & side & id & skill & tile & resisted & affectedCres & castedByHero;
 
- 	}
 
- };
 
- struct SetStackEffect : public CPackForClient //3010
 
- {
 
- 	SetStackEffect(){type = 3010;};
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	void applyCl(CClient *cl);
 
- 	std::vector<ui32> stacks; //affected stacks (IDs)
 
- 	std::vector<Bonus> effect; //bonuses to apply
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & stacks & effect;
 
- 	}
 
- };
 
- struct StacksInjured : public CPackForClient //3011
 
- {
 
- 	StacksInjured(){type = 3011;}
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	void applyCl(CClient *cl);
 
- 	std::vector<BattleStackAttacked> stacks;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & stacks;
 
- 	}
 
- };
 
- 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;
 
- 	}
 
- };
 
- 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;
 
- 	}
 
- };
 
- struct CatapultAttack : public CPackForClient //3015
 
- {
 
- 	CatapultAttack(){type = 3015;}
 
- 	DLL_EXPORT void applyGs(CGameState *gs);
 
- 	void applyCl(CClient *cl);
 
- 	std::set< std::pair< std::pair< ui8, si16 >, ui8> > attackedParts; // < <attackedPartOfWall, attacked hex >, damageDealt>
 
- 	//attackedPartOfWall; //[0] - keep, [1] - bottom tower, [2] - bottom wall, [3] - below gate, [4] - over gate, [5] - upper wall, [6] - uppert tower, [7] - gate;
 
- 	//damageDealt;
 
- 	int attacker; //if -1, then a spell caused this
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & attackedParts & attacker;
 
- 	}
 
- };
 
- 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;
 
- 	}
 
- };
 
- struct ShowInInfobox : public CPackForClient //107
 
- {
 
- 	ShowInInfobox(){type = 107;};
 
- 	ui8 player;
 
- 	Component c;
 
- 	MetaString text;
 
- 	void applyCl(CClient *cl);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & player & c & text;
 
- 	}
 
- };
 
- struct AdvmapSpellCast : public CPackForClient //108
 
- {
 
- 	AdvmapSpellCast(){type = 108;}
 
- 	const CGHeroInstance * caster;
 
- 	si32 spellID;
 
- 	void applyCl(CClient *cl);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & caster & spellID;
 
- 	}
 
- };
 
- /***********************************************************************************************************/
 
- struct CloseServer : public CPackForServer
 
- {
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{}
 
- };
 
- struct EndTurn : public CPackForServer
 
- {
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{}
 
- };
 
- struct DismissHero : public CPackForServer
 
- {
 
- 	DismissHero(){};
 
- 	DismissHero(si32 HID) : hid(HID) {};
 
- 	si32 hid;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	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;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & dest & hid;
 
- 	}
 
- };
 
- struct CastleTeleportHero : public CPackForServer
 
- {
 
- 	CastleTeleportHero(){};
 
- 	CastleTeleportHero(const si32 HID, si32 Dest, ui8 Source ) : dest(Dest), hid(HID), source(Source){};
 
- 	si32 dest;
 
- 	si32 hid;
 
- 	si8 source;//who give teleporting, 1=castle gate
 
- 	bool applyGh(CGameHandler *gh);
 
- 	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;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	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
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & pos & id;
 
- 	}
 
- };
 
- struct BuildStructure : public CPackForServer
 
- {
 
- 	BuildStructure(){};
 
- 	BuildStructure(si32 TID, si32 BID):bid(BID),tid(TID){};
 
- 	si32 bid, tid; //structure and town ids
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & tid & bid;
 
- 	}
 
- };
 
- struct RazeStructure : public BuildStructure
 
- {
 
- 	RazeStructure(){};
 
- 	//RazeStructure(si32 TID, si32 BID):bid(BID),tid(TID){};
 
- 	bool applyGh(CGameHandler *gh);
 
- };
 
- struct RecruitCreatures : public CPackForServer
 
- {
 
- 	RecruitCreatures(){};
 
- 	RecruitCreatures(si32 TID, si32 CRID, si32 Amount, si32 Level):tid(TID),crid(CRID),amount(Amount),level(Level){};
 
- 	si32 tid; //town id
 
- 	ui32 crid, amount;//creature ID and amount
 
- 	si32 level;//dwelling level to buy from, -1 if any
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & tid & crid & amount & level;
 
- 	}
 
- };
 
- 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
 
- 	bool applyGh(CGameHandler *gh);
 
- 	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; 
 
- 	bool applyGh(CGameHandler *gh);
 
- 	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;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & hid1 & hid2 & slot1 & slot2;
 
- 	}
 
- };
 
- struct AssembleArtifacts : public CPackForServer
 
- {
 
- 	AssembleArtifacts(){};
 
- 	AssembleArtifacts(si32 _heroID, ui16 _artifactSlot, bool _assemble, ui32 _assembleTo)
 
- 		: heroID(_heroID), artifactSlot(_artifactSlot), assemble(_assemble), assembleTo(_assembleTo){};
 
- 	si32 heroID;
 
- 	ui16 artifactSlot;
 
- 	bool assemble; // True to assemble artifact, false to disassemble.
 
- 	ui32 assembleTo; // Artifact to assemble into.
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & heroID & artifactSlot & assemble & assembleTo;
 
- 	}
 
- };
 
- struct BuyArtifact : public CPackForServer
 
- {
 
- 	BuyArtifact(){};
 
- 	BuyArtifact(si32 HID, si32 AID):hid(HID),aid(AID){};
 
- 	si32 hid, aid; //hero and artifact id
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & hid & aid;
 
- 	}
 
- };
 
- struct TradeOnMarketplace : public CPackForServer
 
- {
 
- 	TradeOnMarketplace(){};
 
- 	const CGObjectInstance *market;
 
- 	const CGHeroInstance *hero; //needed when trading artifacts / creatures
 
- 	ui8 mode;//enum EMarketMode
 
- 	ui32 r1, r2; //mode 0: r1 - sold resource, r2 - bought res (exception: when sacrificing art r1 is art id [todo: make r2 preferred slot?]
 
- 	ui32 val; //units of sold resource
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & market & hero & mode & r1 & r2 & val;
 
- 	}
 
- };
 
- struct SetFormation : public CPackForServer
 
- {
 
- 	SetFormation(){};
 
- 	SetFormation(si32 HID, ui8 Formation):hid(HID),formation(Formation){};
 
- 	si32 hid;
 
- 	ui8 formation;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	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 (tavern) id
 
- 	ui8 player;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & hid & tid & player;
 
- 	}
 
- };
 
- 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;
 
- 	}
 
- };
 
- struct QueryReply : public CPackForServer
 
- {
 
- 	QueryReply(){type = 6000;};
 
- 	QueryReply(ui32 QID, ui32 Answer):qid(QID),answer(Answer){type = 6000;};
 
- 	ui32 qid, answer; //hero and artifact id
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & qid & answer;
 
- 	}
 
- };
 
- struct MakeAction : public CPackForServer
 
- {
 
- 	MakeAction(){};
 
- 	MakeAction(const BattleAction &BA):ba(BA){};
 
- 	BattleAction ba;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & ba;
 
- 	}
 
- };
 
- struct MakeCustomAction : public CPackForServer
 
- {
 
- 	MakeCustomAction(){};
 
- 	MakeCustomAction(const BattleAction &BA):ba(BA){};
 
- 	BattleAction ba;
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & ba;
 
- 	}
 
- };
 
- struct DigWithHero : public CPackForServer
 
- {
 
- 	DigWithHero(){}
 
- 	si32 id; //digging hero id
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id;
 
- 	}
 
- };
 
- struct CastAdvSpell : public CPackForServer
 
- {
 
- 	CastAdvSpell(){}
 
- 	si32 hid; //hero id
 
- 	ui32 sid; //spell id
 
- 	int3 pos; //selected tile (not always used)
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & hid & sid & pos;
 
- 	}
 
- };
 
- /***********************************************************************************************************/
 
- 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){};
 
- 	bool applyGh(CGameHandler *gh);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & fname;
 
- 	}
 
- };
 
- 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){};
 
- 	bool applyGh(CGameHandler *gh);
 
- 	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);
 
- 	bool applyGh(CGameHandler *gh);
 
- 	void applyCl(CClient *cl);
 
- 	ui8 player;
 
- 	ui32 id;
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & id & player;
 
- 	}
 
- };
 
- struct CenterView : public CPackForClient//515
 
- {
 
- 	CenterView(){CPackForClient::type = 515;};
 
- 	void applyCl(CClient *cl);
 
- 	ui8 player;
 
- 	int3 pos;
 
- 	ui32 focusTime; //ms
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & pos & player & focusTime;
 
- 	}
 
- };
 
- /***********************************************************************************************************/
 
- struct CPackForSelectionScreen : public CPack
 
- {
 
- 	void apply(CSelectionScreen *selScreen){}; //that functions are implemented in CPreGame.cpp
 
- };
 
- class CPregamePackToPropagate  : public CPackForSelectionScreen
 
- {};
 
- class CPregamePackToHost  : public CPackForSelectionScreen
 
- {};
 
- struct ChatMessage : public CPregamePackToPropagate
 
- {
 
- 	std::string playerName, message;
 
- 	void apply(CSelectionScreen *selScreen);
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & playerName & message;
 
- 	}
 
- };
 
- struct QuitMenuWithoutStarting : public CPregamePackToPropagate
 
- {
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{}
 
- };
 
- struct PlayerJoined : public CPregamePackToHost
 
- {
 
- 	std::string playerName;
 
- 	ui8 connectionID;
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & playerName & connectionID;
 
- 	}
 
- };
 
- struct SelectMap : public CPregamePackToPropagate
 
- {
 
- 	const CMapInfo *mapInfo;
 
- 	bool free;
 
- 	SelectMap(const CMapInfo &src)
 
- 	{
 
- 		mapInfo = &src;
 
- 		free = false;
 
- 	}
 
- 	SelectMap()
 
- 	{
 
- 		mapInfo = NULL;
 
- 		free = true;
 
- 	}
 
- 	~SelectMap()
 
- 	{
 
- 		if(free)
 
- 			delete mapInfo;
 
- 	}
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & mapInfo;
 
- 	}
 
- };
 
- struct UpdateStartOptions : public CPregamePackToPropagate
 
- {
 
- 	StartInfo *options;
 
- 	bool free;
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	UpdateStartOptions(StartInfo &src)
 
- 	{
 
- 		options = &src;
 
- 		free = false;
 
- 	}
 
- 	UpdateStartOptions()
 
- 	{
 
- 		options = NULL;
 
- 		free = true;
 
- 	}
 
- 	~UpdateStartOptions()
 
- 	{
 
- 		if(free)
 
- 			delete options;
 
- 	}
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & options;
 
- 	}
 
- };
 
- struct PregameGuiAction : public CPregamePackToPropagate
 
- {
 
- 	enum {NO_TAB, OPEN_OPTIONS, OPEN_SCENARIO_LIST};
 
- 	ui8 action;
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & action;
 
- 	}
 
- };
 
- struct RequestOptionsChange : public CPregamePackToHost
 
- {
 
- 	enum {TOWN, HERO, BONUS};
 
- 	ui8 what;
 
- 	si8 direction; //-1 or +1 
 
- 	ui8 playerID;
 
- 	RequestOptionsChange(ui8 What, si8 Dir, ui8 Player)
 
- 		:what(What), direction(Dir), playerID(Player)
 
- 	{}
 
- 	RequestOptionsChange(){}
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & what & direction & playerID;
 
- 	}
 
- };
 
- struct PlayerLeft : public CPregamePackToPropagate
 
- {
 
- 	ui8 playerID;
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & playerID;
 
- 	}
 
- };
 
- struct PlayersNames : public CPregamePackToPropagate
 
- {
 
- public:
 
- 	std::map<ui32, std::string> playerNames;
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		h & playerNames;
 
- 	}
 
- };
 
- struct StartWithCurrentSettings : public CPregamePackToPropagate
 
- {
 
- public:
 
- 	void apply(CSelectionScreen *selScreen); //that functions are implemented in CPreGame.cpp
 
- 	template <typename Handler> void serialize(Handler &h, const int version)
 
- 	{
 
- 		//h & playerNames;
 
- 	}
 
- };
 
- #endif //__NETPACKS_H__
 
 
  |