2017-07-13 11:26:03 +03:00
|
|
|
/*
|
|
|
|
* RegisterTypes.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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
2009-03-07 15:55:56 +00:00
|
|
|
|
2014-02-27 20:42:17 +00:00
|
|
|
#include "../NetPacks.h"
|
2018-01-05 20:21:07 +03:00
|
|
|
#include "../NetPacksLobby.h"
|
2014-02-27 20:42:17 +00:00
|
|
|
#include "../VCMI_Lib.h"
|
|
|
|
#include "../CArtHandler.h"
|
2023-06-02 21:47:37 +03:00
|
|
|
#include "../CCreatureSet.h"
|
2015-12-02 21:39:53 +02:00
|
|
|
#include "../CPlayerState.h"
|
2014-02-27 20:42:17 +00:00
|
|
|
#include "../CHeroHandler.h"
|
|
|
|
#include "../CTownHandler.h"
|
|
|
|
#include "../CModHandler.h" //needed?
|
2023-06-02 21:47:37 +03:00
|
|
|
#include "../mapObjectConstructors/CRewardableConstructor.h"
|
|
|
|
#include "../mapObjectConstructors/CommonConstructors.h"
|
2023-06-06 18:32:53 +03:00
|
|
|
#include "../mapObjectConstructors/CBankInstanceConstructor.h"
|
2023-06-07 00:17:39 +03:00
|
|
|
#include "../mapObjectConstructors/HillFortInstanceConstructor.h"
|
2023-06-08 00:04:13 +03:00
|
|
|
#include "../mapObjectConstructors/ShipyardInstanceConstructor.h"
|
2023-06-07 00:17:39 +03:00
|
|
|
#include "../mapObjectConstructors/ShrineInstanceConstructor.h"
|
2014-06-05 19:52:14 +03:00
|
|
|
#include "../mapObjects/MapObjects.h"
|
2023-04-30 05:29:34 +04:00
|
|
|
#include "../mapObjects/CGTownBuilding.h"
|
2023-06-02 21:47:37 +03:00
|
|
|
#include "../mapObjects/ObjectTemplate.h"
|
2017-06-24 16:42:05 +02:00
|
|
|
#include "../battle/CObstacleInstance.h"
|
2023-04-30 17:35:15 +03:00
|
|
|
#include "../bonuses/CBonusSystemNode.h"
|
2023-04-30 16:52:48 +03:00
|
|
|
#include "../bonuses/Limiters.h"
|
|
|
|
#include "../bonuses/Updaters.h"
|
2023-04-30 17:35:15 +03:00
|
|
|
#include "../bonuses/Propagators.h"
|
2017-07-20 07:08:49 +03:00
|
|
|
#include "../CStack.h"
|
2009-04-15 14:03:31 +00:00
|
|
|
|
2022-07-26 16:07:42 +03:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
|
2016-09-10 03:32:40 +03:00
|
|
|
class BinarySerializer;
|
|
|
|
class BinaryDeserializer;
|
|
|
|
class CTypeList;
|
|
|
|
|
2012-08-10 15:16:42 +00:00
|
|
|
template<typename Serializer>
|
2014-03-07 13:21:09 +00:00
|
|
|
void registerTypesMapObjects1(Serializer &s)
|
2011-12-13 21:23:17 +00:00
|
|
|
{
|
2014-02-19 01:04:27 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2014-03-07 13:21:09 +00:00
|
|
|
// Adventure map objects
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<IObjectInterface, CGObjectInstance>();
|
|
|
|
|
|
|
|
// Non-armed objects
|
|
|
|
s.template registerType<CGObjectInstance, CGTeleport>();
|
2015-03-08 16:11:23 +03:00
|
|
|
s.template registerType<CGTeleport, CGMonolith>();
|
|
|
|
s.template registerType<CGMonolith, CGSubterraneanGate>();
|
|
|
|
s.template registerType<CGMonolith, CGWhirlpool>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CGObjectInstance, CGSignBottle>();
|
|
|
|
s.template registerType<CGObjectInstance, CGScholar>();
|
|
|
|
s.template registerType<CGObjectInstance, CGObservatory>();
|
|
|
|
s.template registerType<CGObjectInstance, CGKeys>();
|
|
|
|
s.template registerType<CGKeys, CGKeymasterTent>();
|
|
|
|
s.template registerType<CGKeys, CGBorderGuard>(); s.template registerType<IQuestObject, CGBorderGuard>();
|
|
|
|
s.template registerType<CGBorderGuard, CGBorderGate>();
|
|
|
|
s.template registerType<CGObjectInstance, CGBoat>();
|
|
|
|
s.template registerType<CGObjectInstance, CGMagi>();
|
|
|
|
s.template registerType<CGObjectInstance, CGSirens>();
|
2023-06-07 01:55:21 +03:00
|
|
|
s.template registerType<CGObjectInstance, CGShipyard>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CGObjectInstance, CGDenOfthieves>();
|
|
|
|
s.template registerType<CGObjectInstance, CGLighthouse>();
|
2022-06-28 11:05:30 +03:00
|
|
|
s.template registerType<CGObjectInstance, CGTerrainPatch>();
|
2023-06-06 19:19:30 +03:00
|
|
|
s.template registerType<CGObjectInstance, HillFort>();
|
2023-04-27 00:18:43 +04:00
|
|
|
s.template registerType<CGObjectInstance, CGMarket>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CGMarket, CGBlackMarket>();
|
|
|
|
s.template registerType<CGMarket, CGUniversity>();
|
|
|
|
s.template registerType<CGObjectInstance, CGHeroPlaceholder>();
|
|
|
|
|
|
|
|
s.template registerType<CGObjectInstance, CArmedInstance>(); s.template registerType<CBonusSystemNode, CArmedInstance>(); s.template registerType<CCreatureSet, CArmedInstance>();
|
|
|
|
|
|
|
|
// Armed objects
|
2023-06-07 01:55:21 +03:00
|
|
|
s.template registerType<CArmedInstance, CGHeroInstance>(); s.template registerType<CArtifactSet, CGHeroInstance>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CArmedInstance, CGDwelling>();
|
2023-06-07 01:55:21 +03:00
|
|
|
s.template registerType<CGDwelling, CGTownInstance>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CArmedInstance, CGPandoraBox>();
|
|
|
|
s.template registerType<CGPandoraBox, CGEvent>();
|
|
|
|
s.template registerType<CArmedInstance, CGCreature>();
|
|
|
|
s.template registerType<CArmedInstance, CGGarrison>();
|
|
|
|
s.template registerType<CArmedInstance, CGArtifact>();
|
|
|
|
s.template registerType<CArmedInstance, CGResource>();
|
|
|
|
s.template registerType<CArmedInstance, CGMine>();
|
|
|
|
s.template registerType<CArmedInstance, CBank>();
|
|
|
|
s.template registerType<CArmedInstance, CGSeerHut>(); s.template registerType<IQuestObject, CGSeerHut>();
|
|
|
|
s.template registerType<CGSeerHut, CGQuestGuard>();
|
2014-03-07 13:21:09 +00:00
|
|
|
}
|
2014-02-19 01:04:27 +00:00
|
|
|
|
2014-06-04 20:43:54 +03:00
|
|
|
template<typename Serializer>
|
|
|
|
void registerTypesMapObjectTypes(Serializer &s)
|
|
|
|
{
|
2014-06-05 14:19:47 +03:00
|
|
|
s.template registerType<AObjectTypeHandler, CRewardableConstructor>();
|
2014-06-14 18:42:13 +03:00
|
|
|
s.template registerType<AObjectTypeHandler, CHeroInstanceConstructor>();
|
|
|
|
s.template registerType<AObjectTypeHandler, CTownInstanceConstructor>();
|
|
|
|
s.template registerType<AObjectTypeHandler, CDwellingInstanceConstructor>();
|
2014-06-22 13:39:40 +03:00
|
|
|
s.template registerType<AObjectTypeHandler, CBankInstanceConstructor>();
|
2023-04-18 17:27:39 +04:00
|
|
|
s.template registerType<AObjectTypeHandler, BoatInstanceConstructor>();
|
2023-04-28 05:16:10 +04:00
|
|
|
s.template registerType<AObjectTypeHandler, MarketInstanceConstructor>();
|
2014-06-14 18:42:13 +03:00
|
|
|
s.template registerType<AObjectTypeHandler, CObstacleConstructor>();
|
2023-06-07 00:17:39 +03:00
|
|
|
s.template registerType<AObjectTypeHandler, ShrineInstanceConstructor>();
|
2023-06-08 00:04:13 +03:00
|
|
|
s.template registerType<AObjectTypeHandler, ShipyardInstanceConstructor>();
|
2023-06-07 00:17:39 +03:00
|
|
|
s.template registerType<AObjectTypeHandler, HillFortInstanceConstructor>();
|
2014-06-04 20:43:54 +03:00
|
|
|
|
|
|
|
#define REGISTER_GENERIC_HANDLER(TYPENAME) s.template registerType<AObjectTypeHandler, CDefaultObjectTypeHandler<TYPENAME> >()
|
|
|
|
|
|
|
|
REGISTER_GENERIC_HANDLER(CGObjectInstance);
|
|
|
|
REGISTER_GENERIC_HANDLER(CCartographer);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGArtifact);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGBlackMarket);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGBoat);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGBorderGate);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGBorderGuard);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGCreature);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGDenOfthieves);
|
2014-06-28 17:19:53 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGDwelling);
|
2014-06-04 20:43:54 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGEvent);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGGarrison);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGHeroPlaceholder);
|
2014-06-17 14:57:47 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGHeroInstance);
|
2014-06-04 20:43:54 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGKeymasterTent);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGLighthouse);
|
2022-06-28 11:05:30 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGTerrainPatch);
|
2014-06-04 20:43:54 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGMagi);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGMarket);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGMine);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGObelisk);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGObservatory);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGPandoraBox);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGQuestGuard);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGResource);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGScholar);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGSeerHut);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGShipyard);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGShrine);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGSignBottle);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGSirens);
|
2015-03-08 16:11:23 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGMonolith);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGSubterraneanGate);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGWhirlpool);
|
2014-06-28 17:19:53 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGTownInstance);
|
2014-06-04 20:43:54 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(CGUniversity);
|
|
|
|
REGISTER_GENERIC_HANDLER(CGWitchHut);
|
2023-06-06 19:19:30 +03:00
|
|
|
REGISTER_GENERIC_HANDLER(HillFort);
|
2014-06-04 20:43:54 +03:00
|
|
|
|
|
|
|
#undef REGISTER_GENERIC_HANDLER
|
2017-09-11 01:12:43 +12:00
|
|
|
|
2017-09-19 10:08:28 +12:00
|
|
|
s.template registerType<IUpdater, GrowsWithLevelUpdater>();
|
|
|
|
s.template registerType<IUpdater, TimesHeroLevelUpdater>();
|
2017-09-19 11:43:13 +12:00
|
|
|
s.template registerType<IUpdater, TimesStackLevelUpdater>();
|
2022-08-22 15:32:54 +04:00
|
|
|
s.template registerType<IUpdater, OwnerUpdater>();
|
2023-02-18 21:01:32 +03:00
|
|
|
s.template registerType<IUpdater, ArmyMovementUpdater>();
|
2018-04-01 23:17:34 +12:00
|
|
|
|
|
|
|
s.template registerType<ILimiter, AnyOfLimiter>();
|
|
|
|
s.template registerType<ILimiter, NoneOfLimiter>();
|
2021-03-23 17:47:07 +03:00
|
|
|
s.template registerType<ILimiter, OppositeSideLimiter>();
|
2017-09-11 01:12:43 +12:00
|
|
|
//new types (other than netpacks) must register here
|
|
|
|
//order of type registration is critical for loading old savegames
|
2014-06-04 20:43:54 +03:00
|
|
|
}
|
|
|
|
|
2014-03-07 13:21:09 +00:00
|
|
|
template<typename Serializer>
|
|
|
|
void registerTypesMapObjects2(Serializer &s)
|
|
|
|
{
|
2014-02-19 01:04:27 +00:00
|
|
|
//Other object-related
|
|
|
|
s.template registerType<IObjectInterface, CGTownBuilding>();
|
|
|
|
s.template registerType<CGTownBuilding, CTownBonus>();
|
2023-04-30 05:29:34 +04:00
|
|
|
s.template registerType<CGTownBuilding, COPWBonus>();
|
|
|
|
s.template registerType<CGTownBuilding, CTownRewardableBuilding>();
|
2011-12-13 21:23:17 +00:00
|
|
|
|
2014-06-05 14:19:47 +03:00
|
|
|
s.template registerType<CGObjectInstance, CRewardableObject>();
|
2014-02-19 01:04:27 +00:00
|
|
|
|
2017-06-30 23:39:37 +03:00
|
|
|
s.template registerType<CGObjectInstance, CTeamVisited>();
|
|
|
|
s.template registerType<CTeamVisited, CGWitchHut>();
|
|
|
|
s.template registerType<CTeamVisited, CGShrine>();
|
|
|
|
s.template registerType<CTeamVisited, CCartographer>();
|
|
|
|
s.template registerType<CTeamVisited, CGObelisk>();
|
2014-02-19 01:04:27 +00:00
|
|
|
|
|
|
|
//s.template registerType<CQuest>();
|
|
|
|
//s.template registerType<IQuestObject>();
|
|
|
|
|
|
|
|
//end of objects
|
2012-05-18 20:50:16 +00:00
|
|
|
|
2014-02-19 01:04:27 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Bonus system
|
2014-03-07 13:21:09 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////
|
2014-02-19 01:04:27 +00:00
|
|
|
//s.template registerType<IPropagator>();
|
|
|
|
s.template registerType<IPropagator, CPropagatorNodeType>();
|
|
|
|
|
|
|
|
// Limiters
|
|
|
|
//s.template registerType<ILimiter>();
|
2018-04-01 23:17:34 +12:00
|
|
|
s.template registerType<ILimiter, AllOfLimiter>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<ILimiter, CCreatureTypeLimiter>();
|
|
|
|
s.template registerType<ILimiter, HasAnotherBonusLimiter>();
|
2018-04-17 14:59:30 +02:00
|
|
|
s.template registerType<ILimiter, CreatureTerrainLimiter>();
|
2023-04-09 04:36:16 +03:00
|
|
|
s.template registerType<ILimiter, FactionLimiter>();
|
2023-04-06 18:28:02 +03:00
|
|
|
s.template registerType<ILimiter, CreatureLevelLimiter>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<ILimiter, CreatureAlignmentLimiter>();
|
|
|
|
s.template registerType<ILimiter, RankRangeLimiter>();
|
2023-03-28 02:14:18 +03:00
|
|
|
s.template registerType<ILimiter, UnitOnHexLimiter>();
|
2014-03-07 13:21:09 +00:00
|
|
|
|
2014-02-19 01:04:27 +00:00
|
|
|
// s.template registerType<CBonusSystemNode>();
|
|
|
|
s.template registerType<CBonusSystemNode, CArtifact>();
|
|
|
|
s.template registerType<CArtifact, CGrowingArtifact>();
|
|
|
|
s.template registerType<CBonusSystemNode, CCreature>();
|
|
|
|
s.template registerType<CBonusSystemNode, CStackInstance>();
|
|
|
|
s.template registerType<CStackInstance, CCommanderInstance>();
|
|
|
|
s.template registerType<CBonusSystemNode, PlayerState>();
|
|
|
|
s.template registerType<CBonusSystemNode, TeamState>();
|
|
|
|
//s.template registerType<CGameState>(); //TODO
|
|
|
|
//s.template registerType<CArmedInstance>();
|
|
|
|
s.template registerType<CBonusSystemNode, CStack>();
|
|
|
|
s.template registerType<CBonusSystemNode, BattleInfo>();
|
|
|
|
//s.template registerType<QuestInfo>();
|
|
|
|
s.template registerType<CBonusSystemNode, CArtifactInstance>();
|
|
|
|
s.template registerType<CArtifactInstance, CCombinedArtifactInstance>();
|
|
|
|
|
|
|
|
//s.template registerType<CObstacleInstance>();
|
|
|
|
s.template registerType<CObstacleInstance, SpellCreatedObstacle>();
|
2011-12-13 21:23:17 +00:00
|
|
|
}
|
2012-08-10 15:16:42 +00:00
|
|
|
template<typename Serializer>
|
2014-02-24 19:57:33 +00:00
|
|
|
void registerTypesClientPacks1(Serializer &s)
|
2011-12-13 21:23:17 +00:00
|
|
|
{
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPack, CPackForClient>();
|
|
|
|
|
|
|
|
s.template registerType<CPackForClient, PackageApplied>();
|
|
|
|
s.template registerType<CPackForClient, SystemMessage>();
|
|
|
|
s.template registerType<CPackForClient, PlayerBlocked>();
|
2017-06-02 03:34:50 +03:00
|
|
|
s.template registerType<CPackForClient, PlayerCheated>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, YourTurn>();
|
|
|
|
s.template registerType<CPackForClient, SetResources>();
|
|
|
|
s.template registerType<CPackForClient, SetPrimSkill>();
|
|
|
|
s.template registerType<CPackForClient, SetSecSkill>();
|
|
|
|
s.template registerType<CPackForClient, HeroVisitCastle>();
|
|
|
|
s.template registerType<CPackForClient, ChangeSpells>();
|
|
|
|
s.template registerType<CPackForClient, SetMana>();
|
|
|
|
s.template registerType<CPackForClient, SetMovePoints>();
|
|
|
|
s.template registerType<CPackForClient, FoWChange>();
|
|
|
|
s.template registerType<CPackForClient, SetAvailableHeroes>();
|
|
|
|
s.template registerType<CPackForClient, GiveBonus>();
|
|
|
|
s.template registerType<CPackForClient, ChangeObjPos>();
|
|
|
|
s.template registerType<CPackForClient, PlayerEndsGame>();
|
2022-09-30 23:08:37 +04:00
|
|
|
s.template registerType<CPackForClient, PlayerReinitInterface>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, RemoveBonus>();
|
|
|
|
s.template registerType<CPackForClient, UpdateArtHandlerLists>();
|
|
|
|
s.template registerType<CPackForClient, UpdateMapEvents>();
|
|
|
|
s.template registerType<CPackForClient, UpdateCastleEvents>();
|
2016-09-08 19:29:15 +03:00
|
|
|
s.template registerType<CPackForClient, ChangeFormation>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, RemoveObject>();
|
|
|
|
s.template registerType<CPackForClient, TryMoveHero>();
|
|
|
|
s.template registerType<CPackForClient, NewStructures>();
|
|
|
|
s.template registerType<CPackForClient, RazeStructures>();
|
|
|
|
s.template registerType<CPackForClient, SetAvailableCreatures>();
|
|
|
|
s.template registerType<CPackForClient, SetHeroesInTown>();
|
|
|
|
s.template registerType<CPackForClient, HeroRecruited>();
|
|
|
|
s.template registerType<CPackForClient, GiveHero>();
|
|
|
|
s.template registerType<CPackForClient, NewTurn>();
|
|
|
|
s.template registerType<CPackForClient, InfoWindow>();
|
|
|
|
s.template registerType<CPackForClient, SetObjectProperty>();
|
2014-02-24 19:57:33 +00:00
|
|
|
s.template registerType<CPackForClient, AdvmapSpellCast>();
|
|
|
|
s.template registerType<CPackForClient, OpenWindow>();
|
|
|
|
s.template registerType<CPackForClient, NewObject>();
|
|
|
|
s.template registerType<CPackForClient, NewArtifact>();
|
|
|
|
s.template registerType<CPackForClient, AddQuest>();
|
|
|
|
s.template registerType<CPackForClient, SetAvailableArtifacts>();
|
|
|
|
s.template registerType<CPackForClient, CenterView>();
|
|
|
|
s.template registerType<CPackForClient, HeroVisit>();
|
|
|
|
s.template registerType<CPackForClient, SetCommanderProperty>();
|
2014-04-11 22:49:25 +03:00
|
|
|
s.template registerType<CPackForClient, ChangeObjectVisitors>();
|
2015-02-26 17:15:17 +03:00
|
|
|
s.template registerType<CPackForClient, ShowWorldViewEx>();
|
2016-09-08 00:24:05 +03:00
|
|
|
s.template registerType<CPackForClient, PrepareHeroLevelUp>();
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 17:58:30 +03:00
|
|
|
s.template registerType<CPackForClient, EntitiesChanged>();
|
2014-02-24 19:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Serializer>
|
|
|
|
void registerTypesClientPacks2(Serializer &s)
|
|
|
|
{
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, BattleStart>();
|
|
|
|
s.template registerType<CPackForClient, BattleNextRound>();
|
|
|
|
s.template registerType<CPackForClient, BattleSetActiveStack>();
|
|
|
|
s.template registerType<CPackForClient, BattleResult>();
|
2023-04-06 19:34:07 +04:00
|
|
|
s.template registerType<CPackForClient, BattleResultAccepted>();
|
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 17:58:30 +03:00
|
|
|
s.template registerType<CPackForClient, BattleLogMessage>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, BattleStackMoved>();
|
|
|
|
s.template registerType<CPackForClient, BattleAttack>();
|
|
|
|
s.template registerType<CPackForClient, StartAction>();
|
|
|
|
s.template registerType<CPackForClient, EndAction>();
|
|
|
|
s.template registerType<CPackForClient, BattleSpellCast>();
|
|
|
|
s.template registerType<CPackForClient, SetStackEffect>();
|
|
|
|
s.template registerType<CPackForClient, BattleTriggerEffect>();
|
2016-02-13 17:40:31 +03:00
|
|
|
s.template registerType<CPackForClient, BattleUpdateGateState>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, BattleSetStackProperty>();
|
|
|
|
s.template registerType<CPackForClient, StacksInjured>();
|
|
|
|
s.template registerType<CPackForClient, BattleResultsApplied>();
|
2017-07-20 07:08:49 +03:00
|
|
|
s.template registerType<CPackForClient, BattleUnitsChanged>();
|
|
|
|
s.template registerType<CPackForClient, BattleObstaclesChanged>();
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, CatapultAttack>();
|
|
|
|
|
|
|
|
s.template registerType<CPackForClient, Query>();
|
|
|
|
s.template registerType<Query, HeroLevelUp>();
|
|
|
|
s.template registerType<Query, CommanderLevelUp>();
|
|
|
|
s.template registerType<Query, BlockingDialog>();
|
|
|
|
s.template registerType<Query, GarrisonDialog>();
|
|
|
|
s.template registerType<Query, ExchangeDialog>();
|
2015-03-08 16:37:33 +03:00
|
|
|
s.template registerType<Query, TeleportDialog>();
|
2017-06-06 07:53:51 +03:00
|
|
|
s.template registerType<Query, MapObjectSelectDialog>();
|
2011-12-13 21:23:17 +00:00
|
|
|
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPackForClient, CGarrisonOperationPack>();
|
|
|
|
s.template registerType<CGarrisonOperationPack, ChangeStackCount>();
|
|
|
|
s.template registerType<CGarrisonOperationPack, SetStackType>();
|
|
|
|
s.template registerType<CGarrisonOperationPack, EraseStack>();
|
|
|
|
s.template registerType<CGarrisonOperationPack, SwapStacks>();
|
|
|
|
s.template registerType<CGarrisonOperationPack, InsertNewStack>();
|
|
|
|
s.template registerType<CGarrisonOperationPack, RebalanceStacks>();
|
|
|
|
|
|
|
|
s.template registerType<CPackForClient, CArtifactOperationPack>();
|
|
|
|
s.template registerType<CArtifactOperationPack, PutArtifact>();
|
|
|
|
s.template registerType<CArtifactOperationPack, EraseArtifact>();
|
|
|
|
s.template registerType<CArtifactOperationPack, MoveArtifact>();
|
|
|
|
s.template registerType<CArtifactOperationPack, AssembledArtifact>();
|
|
|
|
s.template registerType<CArtifactOperationPack, DisassembledArtifact>();
|
2022-11-06 23:41:29 +02:00
|
|
|
s.template registerType<CArtifactOperationPack, BulkMoveArtifacts>();
|
2014-02-19 01:04:27 +00:00
|
|
|
|
2018-01-05 20:21:07 +03:00
|
|
|
s.template registerType<CPackForClient, SaveGameClient>();
|
|
|
|
s.template registerType<CPackForClient, PlayerMessageClient>();
|
2021-11-28 15:57:38 +03:00
|
|
|
s.template registerType<CGarrisonOperationPack, BulkRebalanceStacks>();
|
|
|
|
s.template registerType<CGarrisonOperationPack, BulkSmartRebalanceStacks>();
|
2011-12-13 21:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Serializer>
|
2014-02-24 19:57:33 +00:00
|
|
|
void registerTypesServerPacks(Serializer &s)
|
2011-12-13 21:23:17 +00:00
|
|
|
{
|
2014-02-19 01:04:27 +00:00
|
|
|
s.template registerType<CPack, CPackForServer>();
|
|
|
|
s.template registerType<CPackForServer, EndTurn>();
|
|
|
|
s.template registerType<CPackForServer, DismissHero>();
|
|
|
|
s.template registerType<CPackForServer, MoveHero>();
|
|
|
|
s.template registerType<CPackForServer, ArrangeStacks>();
|
|
|
|
s.template registerType<CPackForServer, DisbandCreature>();
|
|
|
|
s.template registerType<CPackForServer, BuildStructure>();
|
|
|
|
s.template registerType<CPackForServer, RecruitCreatures>();
|
|
|
|
s.template registerType<CPackForServer, UpgradeCreature>();
|
|
|
|
s.template registerType<CPackForServer, GarrisonHeroSwap>();
|
|
|
|
s.template registerType<CPackForServer, ExchangeArtifacts>();
|
|
|
|
s.template registerType<CPackForServer, AssembleArtifacts>();
|
|
|
|
s.template registerType<CPackForServer, BuyArtifact>();
|
|
|
|
s.template registerType<CPackForServer, TradeOnMarketplace>();
|
|
|
|
s.template registerType<CPackForServer, SetFormation>();
|
|
|
|
s.template registerType<CPackForServer, HireHero>();
|
|
|
|
s.template registerType<CPackForServer, BuildBoat>();
|
|
|
|
s.template registerType<CPackForServer, QueryReply>();
|
|
|
|
s.template registerType<CPackForServer, MakeAction>();
|
|
|
|
s.template registerType<CPackForServer, MakeCustomAction>();
|
|
|
|
s.template registerType<CPackForServer, DigWithHero>();
|
|
|
|
s.template registerType<CPackForServer, CastAdvSpell>();
|
|
|
|
s.template registerType<CPackForServer, CastleTeleportHero>();
|
|
|
|
s.template registerType<CPackForServer, SaveGame>();
|
|
|
|
s.template registerType<CPackForServer, PlayerMessage>();
|
2021-11-28 15:57:38 +03:00
|
|
|
s.template registerType<CPackForServer, BulkSplitStack>();
|
|
|
|
s.template registerType<CPackForServer, BulkMergeStacks>();
|
|
|
|
s.template registerType<CPackForServer, BulkSmartSplitStack>();
|
|
|
|
s.template registerType<CPackForServer, BulkMoveArmy>();
|
2022-11-06 23:41:29 +02:00
|
|
|
s.template registerType<CPackForServer, BulkExchangeArtifacts>();
|
2023-04-08 00:41:55 +03:00
|
|
|
s.template registerType<CPackForServer, EraseArtifactByClient>();
|
2011-12-13 21:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Serializer>
|
2018-01-05 20:21:07 +03:00
|
|
|
void registerTypesLobbyPacks(Serializer &s)
|
2011-12-13 21:23:17 +00:00
|
|
|
{
|
2018-01-05 20:21:07 +03:00
|
|
|
s.template registerType<CPack, CPackForLobby>();
|
|
|
|
s.template registerType<CPackForLobby, CLobbyPackToPropagate>();
|
|
|
|
s.template registerType<CPackForLobby, CLobbyPackToServer>();
|
|
|
|
|
|
|
|
// Any client can sent
|
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyClientConnected>();
|
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyClientDisconnected>();
|
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyChatMessage>();
|
|
|
|
// Only host client send
|
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyGuiAction>();
|
2022-09-29 21:08:05 +04:00
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyEndGame>();
|
2018-01-05 20:21:07 +03:00
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyStartGame>();
|
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyChangeHost>();
|
|
|
|
// Only server send
|
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyUpdateState>();
|
2022-09-23 15:02:19 +04:00
|
|
|
s.template registerType<CLobbyPackToPropagate, LobbyShowMessage>();
|
2018-01-05 20:21:07 +03:00
|
|
|
|
|
|
|
// For client with permissions
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbyChangePlayerOption>();
|
|
|
|
// Only for host client
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbySetMap>();
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbySetCampaign>();
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbySetCampaignMap>();
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbySetCampaignBonus>();
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbySetPlayer>();
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbySetTurnTime>();
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbySetDifficulty>();
|
|
|
|
s.template registerType<CLobbyPackToServer, LobbyForceSetPlayer>();
|
2011-12-13 21:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Serializer>
|
2013-02-23 16:05:32 +00:00
|
|
|
void registerTypes(Serializer &s)
|
2011-12-13 21:23:17 +00:00
|
|
|
{
|
2014-03-07 13:21:09 +00:00
|
|
|
registerTypesMapObjects1(s);
|
|
|
|
registerTypesMapObjects2(s);
|
2014-06-04 20:43:54 +03:00
|
|
|
registerTypesMapObjectTypes(s);
|
2014-02-24 19:57:33 +00:00
|
|
|
registerTypesClientPacks1(s);
|
|
|
|
registerTypesClientPacks2(s);
|
|
|
|
registerTypesServerPacks(s);
|
2018-01-05 20:21:07 +03:00
|
|
|
registerTypesLobbyPacks(s);
|
2012-08-10 15:16:42 +00:00
|
|
|
}
|
2013-02-23 16:05:32 +00:00
|
|
|
|
2014-02-24 19:57:33 +00:00
|
|
|
#ifndef INSTANTIATE_REGISTER_TYPES_HERE
|
2014-12-21 17:27:50 +03:00
|
|
|
|
2016-09-10 03:32:40 +03:00
|
|
|
extern template DLL_LINKAGE void registerTypes<BinaryDeserializer>(BinaryDeserializer & s);
|
|
|
|
extern template DLL_LINKAGE void registerTypes<BinarySerializer>(BinarySerializer & s);
|
2013-02-23 16:05:32 +00:00
|
|
|
extern template DLL_LINKAGE void registerTypes<CTypeList>(CTypeList & s);
|
2014-12-21 17:27:50 +03:00
|
|
|
|
2013-02-23 19:16:14 +00:00
|
|
|
#endif
|
|
|
|
|
2022-07-26 16:07:42 +03:00
|
|
|
|
|
|
|
VCMI_LIB_NAMESPACE_END
|