2011-12-14 00:23:17 +03:00
|
|
|
#pragma once
|
2009-05-19 21:23:04 +03:00
|
|
|
|
2009-04-15 17:03:31 +03:00
|
|
|
/*
|
|
|
|
* VCMI_Lib.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
2009-04-16 14:14:13 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
class CArtHandler;
|
|
|
|
class CHeroHandler;
|
|
|
|
class CCreatureHandler;
|
|
|
|
class CSpellHandler;
|
|
|
|
class CBuildingHandler;
|
|
|
|
class CObjectHandler;
|
|
|
|
class CDefObjInfoHandler;
|
|
|
|
class CTownHandler;
|
|
|
|
class CGeneralTextHandler;
|
2012-08-10 16:07:53 +03:00
|
|
|
class CModHandler;
|
2013-03-06 21:49:56 +03:00
|
|
|
class IBonusTypeHandler;
|
|
|
|
class CBonusTypeHandler;
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2011-02-22 13:52:36 +02:00
|
|
|
/// Loads and constructs several handlers
|
2011-12-14 00:23:17 +03:00
|
|
|
class DLL_LINKAGE LibClasses
|
2009-04-16 14:14:13 +03:00
|
|
|
{
|
2013-03-06 21:49:56 +03:00
|
|
|
CBonusTypeHandler * bth;
|
2013-04-21 15:49:26 +03:00
|
|
|
|
2013-01-03 15:19:20 +03:00
|
|
|
void callWhenDeserializing(); //should be called only by serialize !!!
|
|
|
|
void makeNull(); //sets all handler pointers to null
|
2009-04-16 14:14:13 +03:00
|
|
|
public:
|
2011-09-02 04:09:53 +03:00
|
|
|
bool IS_AI_ENABLED; //VLC is the only object visible from both CMT and GeniusAI
|
2013-03-06 21:49:56 +03:00
|
|
|
|
|
|
|
const IBonusTypeHandler * getBth() const;
|
2013-04-21 15:49:26 +03:00
|
|
|
|
2009-04-16 14:14:13 +03:00
|
|
|
CArtHandler * arth;
|
|
|
|
CHeroHandler * heroh;
|
|
|
|
CCreatureHandler * creh;
|
|
|
|
CSpellHandler * spellh;
|
|
|
|
CObjectHandler * objh;
|
|
|
|
CDefObjInfoHandler * dobjinfo;
|
|
|
|
CTownHandler * townh;
|
|
|
|
CGeneralTextHandler * generaltexth;
|
2012-08-10 16:07:53 +03:00
|
|
|
CModHandler * modh;
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2009-06-23 11:14:49 +03:00
|
|
|
LibClasses(); //c-tor, loads .lods and NULLs handlers
|
2012-04-08 04:15:18 +03:00
|
|
|
~LibClasses();
|
2009-04-16 14:14:13 +03:00
|
|
|
void init(); //uses standard config file
|
|
|
|
void clear(); //deletes all handlers and its data
|
2013-01-03 15:19:20 +03:00
|
|
|
|
2012-08-02 14:03:26 +03:00
|
|
|
|
2012-12-12 14:13:57 +03:00
|
|
|
void loadFilesystem();// basic initialization. should be called before init()
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2013-01-03 15:19:20 +03:00
|
|
|
|
2009-04-16 14:14:13 +03:00
|
|
|
template <typename Handler> void serialize(Handler &h, const int version)
|
|
|
|
{
|
2013-03-06 21:49:56 +03:00
|
|
|
h & heroh & arth & creh & townh & objh & dobjinfo & spellh & modh & IS_AI_ENABLED;
|
|
|
|
h & bth;
|
2009-04-16 14:14:13 +03:00
|
|
|
if(!h.saving)
|
|
|
|
{
|
2010-02-12 17:04:01 +02:00
|
|
|
callWhenDeserializing();
|
2009-04-16 14:14:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
extern DLL_LINKAGE LibClasses * VLC;
|
2009-04-16 14:14:13 +03:00
|
|
|
|
2013-04-11 18:58:01 +03:00
|
|
|
DLL_LINKAGE void preinitDLL(CConsoleHandler *Console);
|
2012-12-12 14:13:57 +03:00
|
|
|
DLL_LINKAGE void loadDLLClasses();
|
|
|
|
|