| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 | /* * GenericEvents.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 "GenericEvents.h"#include "../../LuaStack.h"#include "../../LuaCallWrapper.h"#include "../Registry.h"#include "SubscriptionRegistryProxy.h"namespace scripting{namespace api{namespace events{using ::events::GameResumed;using ::events::PlayerGotTurn;using ::events::TurnStarted;VCMI_REGISTER_SCRIPT_API(GameResumedProxy, "events.GameResumed");VCMI_REGISTER_SCRIPT_API(PlayerGotTurnProxy, "events.PlayerGotTurn");VCMI_REGISTER_SCRIPT_API(TurnStartedProxy, "events.TurnStarted");const std::vector<GameResumedProxy::RegType> GameResumedProxy::REGISTER = {};const std::vector<GameResumedProxy::CustomRegType> GameResumedProxy::REGISTER_CUSTOM ={	{		"subscribeBefore",		&SubscriptionRegistryProxy<GameResumedProxy>::subscribeBefore,		true	},	{		"subscribeAfter",		&SubscriptionRegistryProxy<GameResumedProxy>::subscribeAfter,		true	}};const std::vector<PlayerGotTurnProxy::RegType> PlayerGotTurnProxy::REGISTER ={	{		"getPlayer",		LuaCallWrapper<PlayerGotTurn>::createFunctor(&PlayerGotTurn::getPlayerIndex)	},	{		"setPlayer",		LuaCallWrapper<PlayerGotTurn>::createFunctor(&PlayerGotTurn::setPlayerIndex)	},};const std::vector<PlayerGotTurnProxy::CustomRegType> PlayerGotTurnProxy::REGISTER_CUSTOM ={	{		"subscribeBefore",		&SubscriptionRegistryProxy<PlayerGotTurnProxy>::subscribeBefore,		true	},	{		"subscribeAfter",		&SubscriptionRegistryProxy<PlayerGotTurnProxy>::subscribeAfter,		true	}};const std::vector<TurnStartedProxy::RegType> TurnStartedProxy::REGISTER = {};const std::vector<TurnStartedProxy::CustomRegType> TurnStartedProxy::REGISTER_CUSTOM ={	{		"subscribeBefore",		&SubscriptionRegistryProxy<TurnStartedProxy>::subscribeBefore,		true	},	{		"subscribeAfter",		&SubscriptionRegistryProxy<TurnStartedProxy>::subscribeAfter,		true	}};}}}
 |