| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /*
- * CGameHandler.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
- #include "../../lib/GameConstants.h"
- VCMI_LIB_NAMESPACE_BEGIN
- class CGHeroInstance;
- class CGTownInstance;
- class CConnection;
- class MetaString;
- VCMI_LIB_NAMESPACE_END
- class CGameHandler;
- enum class ECurrentChatVote : int8_t
- {
- NONE = -1,
- SIMTURNS_ALLOW,
- SIMTURNS_FORCE,
- SIMTURNS_ABORT,
- TIMER_PROLONG,
- };
- class PlayerMessageProcessor
- {
- CGameHandler * gameHandler;
- ECurrentChatVote currentVote = ECurrentChatVote::NONE;
- int currentVoteParameter = 0;
- std::set<PlayerColor> awaitingPlayers;
- void executeCheatCode(const std::string & cheatName, PlayerColor player, ObjectInstanceID currObj, const std::vector<std::string> & arguments );
- bool handleCheatCode(const std::string & cheatFullCommand, PlayerColor player, ObjectInstanceID currObj);
- void handleCommand(PlayerColor player, const std::string & message);
- void cheatGiveSpells(PlayerColor player, const CGHeroInstance * hero);
- void cheatBuildTown(PlayerColor player, const CGTownInstance * town);
- void cheatGiveArmy(PlayerColor player, const CGHeroInstance * hero, std::vector<std::string> words);
- void cheatGiveMachines(PlayerColor player, const CGHeroInstance * hero);
- void cheatGiveArtifacts(PlayerColor player, const CGHeroInstance * hero, std::vector<std::string> words);
- void cheatLevelup(PlayerColor player, const CGHeroInstance * hero, std::vector<std::string> words);
- void cheatExperience(PlayerColor player, const CGHeroInstance * hero, std::vector<std::string> words);
- void cheatMovement(PlayerColor player, const CGHeroInstance * hero, std::vector<std::string> words);
- void cheatResources(PlayerColor player, std::vector<std::string> words);
- void cheatVictory(PlayerColor player);
- void cheatDefeat(PlayerColor player);
- void cheatMapReveal(PlayerColor player, bool reveal);
- void cheatPuzzleReveal(PlayerColor player);
- void cheatMaxLuck(PlayerColor player, const CGHeroInstance * hero);
- void cheatMaxMorale(PlayerColor player, const CGHeroInstance * hero);
- void cheatFly(PlayerColor player, const CGHeroInstance * hero);
- void commandExit(PlayerColor player, const std::vector<std::string> & words);
- void commandKick(PlayerColor player, const std::vector<std::string> & words);
- void commandSave(PlayerColor player, const std::vector<std::string> & words);
- void commandCheaters(PlayerColor player, const std::vector<std::string> & words);
- void commandHelp(PlayerColor player, const std::vector<std::string> & words);
- void commandVote(PlayerColor player, const std::vector<std::string> & words);
- void finishVoting();
- void abortVoting();
- void startVoting(PlayerColor initiator, ECurrentChatVote what, int parameter);
- public:
- PlayerMessageProcessor(CGameHandler * gameHandler);
- /// incoming NetPack handling
- void playerMessage(PlayerColor player, const std::string & message, ObjectInstanceID currObj);
- /// Send message to specific client with "System" as sender
- void sendSystemMessage(std::shared_ptr<CConnection> connection, const MetaString & message);
- void sendSystemMessage(std::shared_ptr<CConnection> connection, const std::string & message);
- /// Send message to all players with "System" as sender
- void broadcastSystemMessage(MetaString message);
- void broadcastSystemMessage(const std::string & message);
- /// Send message from specific player to all other players
- void broadcastMessage(PlayerColor playerSender, const std::string & message);
- template <typename Handler> void serialize(Handler &h)
- {
- }
- };
|