1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/client/CGameInfo.h

83 lines
1.8 KiB
C
Raw Normal View History

#ifndef __CGAMEINFO_H__
#define __CGAMEINFO_H__
2009-05-20 13:08:56 +03:00
#include "../global.h"
2010-12-17 20:47:07 +02:00
#include "../lib/ConstTransitivePtr.h"
/*
* CGameInfo.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 CMapHandler;
class CArtHandler;
class CHeroHandler;
class CCreatureHandler;
class CSpellHandler;
class CBuildingHandler;
class CObjectHandler;
class CSoundHandler;
class CMusicHandler;
class CDefObjInfoHandler;
class CTownHandler;
class CGeneralTextHandler;
class CConsoleHandler;
class CCursorHandler;
class CGameState;
2009-06-20 04:40:52 +03:00
class CVideoPlayer;
//a class for non-mechanical client GUI classes
class CClientState
{
public:
CSoundHandler * soundh;
CMusicHandler * musich;
CConsoleHandler * consoleh;
CCursorHandler * curh;
CVideoPlayer * videoh;
};
struct Mapa;
/// CGameInfo class
/// for allowing different functions for accessing game informations
class CGameInfo
{
ConstTransitivePtr<CGameState> state; //don't touch it in client's code
public:
ConstTransitivePtr<CArtHandler> arth;
ConstTransitivePtr<CHeroHandler> heroh;
ConstTransitivePtr<CCreatureHandler> creh;
ConstTransitivePtr<CSpellHandler> spellh;
ConstTransitivePtr<CObjectHandler> objh;
ConstTransitivePtr<CDefObjInfoHandler> dobjinfo;
2010-12-17 20:47:07 +02:00
CGeneralTextHandler * generaltexth;
CMapHandler * mh;
ConstTransitivePtr<CBuildingHandler> buildh;
2010-12-17 20:47:07 +02:00
CTownHandler * townh;
//CTownHandler * townh;
void setFromLib();
friend class CClient;
friend void initVillagesCapitols(Mapa * map);
CGameInfo();
};
//
2010-12-17 20:47:07 +02:00
// public:
//
2010-12-17 20:47:07 +02:00
// ConstTransitivePtr<CGeneralTextHandler> generaltexth;
#endif // __CGAMEINFO_H__