2017-06-24 15:51:07 +02:00
|
|
|
/*
|
|
|
|
* CCallbackBase.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
|
2017-06-28 23:09:35 +02:00
|
|
|
#include "../GameConstants.h"
|
2017-06-24 15:51:07 +02:00
|
|
|
|
2017-08-11 19:03:05 +02:00
|
|
|
#define RETURN_IF_NOT_BATTLE(X) if(!duringBattle()) {logGlobal->error("%s called when no battle!", __FUNCTION__); return X; }
|
2017-06-26 18:50:35 +02:00
|
|
|
|
2017-06-24 15:51:07 +02:00
|
|
|
class CGameState;
|
|
|
|
struct BattleInfo;
|
|
|
|
|
|
|
|
class CBattleInfoEssentials;
|
|
|
|
|
|
|
|
//Basic class for various callbacks (interfaces called by players to get info about game and so forth)
|
|
|
|
class DLL_LINKAGE CCallbackBase
|
|
|
|
{
|
2017-06-26 18:50:35 +02:00
|
|
|
const BattleInfo * battle; //battle to which the player is engaged, nullptr if none or not applicable
|
2017-06-24 15:51:07 +02:00
|
|
|
|
|
|
|
const BattleInfo * getBattle() const;
|
|
|
|
|
|
|
|
protected:
|
2017-06-26 18:50:35 +02:00
|
|
|
CGameState * gs;
|
2017-06-24 15:51:07 +02:00
|
|
|
boost::optional<PlayerColor> player; // not set gives access to all information, otherwise callback provides only information "visible" for player
|
|
|
|
|
2017-06-26 18:50:35 +02:00
|
|
|
CCallbackBase(CGameState * GS, boost::optional<PlayerColor> Player);
|
2017-06-24 15:51:07 +02:00
|
|
|
CCallbackBase();
|
|
|
|
|
2017-06-26 18:50:35 +02:00
|
|
|
void setBattle(const BattleInfo * B);
|
2017-06-24 15:51:07 +02:00
|
|
|
bool duringBattle() const;
|
|
|
|
|
|
|
|
public:
|
|
|
|
boost::optional<PlayerColor> getPlayerID() const;
|
|
|
|
|
|
|
|
friend class CBattleInfoEssentials;
|
|
|
|
};
|
|
|
|
|