mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-02 22:05:43 +02:00
New features for players: * Loading for multiplayer. Any save could be used for multiplayer. * Restart for multiplayer. All clients will restart together. * Loading from single save. * Hotseat mixed with network game. Multiple players per client. * Now connection to server could be cancelled. * Return to menu on disconnections instead of crashes. * Restoring of last selected map, save or campaign on next run. TLDR on important changes in engine code: * UI: work with server separated from UI * UI: all explitic blitting replaced with IntObject's * UI: all new code use smart pointers instead of DISPOSE * Gameplay always start through lobby controlled by server. * Threads receiving netpacks now shared for lobby and gameplay. * Campaigns: heroes for crossover now serialized as JsonNode.
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/*
|
|
* TypesLobbyPacks.cpp, 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
|
|
*
|
|
*/
|
|
#include "StdInc.h"
|
|
#include "RegisterTypes.h"
|
|
|
|
#include "../mapping/CMapInfo.h"
|
|
#include "../StartInfo.h"
|
|
#include "../CGameState.h"
|
|
#include "../mapping/CMap.h"
|
|
#include "../CModHandler.h"
|
|
#include "../mapObjects/CObjectHandler.h"
|
|
#include "../CCreatureHandler.h"
|
|
#include "../VCMI_Lib.h"
|
|
#include "../CArtHandler.h"
|
|
#include "../CHeroHandler.h"
|
|
#include "../spells/CSpellHandler.h"
|
|
#include "../CTownHandler.h"
|
|
#include "../mapping/CCampaignHandler.h"
|
|
#include "../NetPacks.h"
|
|
#include "../mapObjects/CObjectClassesHandler.h"
|
|
#include "../rmg/CMapGenOptions.h"
|
|
|
|
#include "../serializer/BinaryDeserializer.h"
|
|
#include "../serializer/BinarySerializer.h"
|
|
#include "../serializer/CTypeList.h"
|
|
|
|
template void registerTypesLobbyPacks<BinaryDeserializer>(BinaryDeserializer & s);
|
|
template void registerTypesLobbyPacks<BinarySerializer>(BinarySerializer & s);
|
|
template void registerTypesLobbyPacks<CTypeList>(CTypeList & s);
|
|
|