mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
a1a5bc28c2
Mixed line endings cause problems when exporting patches with git-format-patch and then trying to "git am" a patch with mixed and non-matching line endings. In such a situation git will fail to apply the patch. This commit runs the dos2unix tools on the remaining files with CRLF (\r\n) line endings to convert them to line-feeds (\n) only. Files that are Windows specific like *.vcxproj and *.props files were not converted. Closes: #3073
92 lines
2.9 KiB
C++
92 lines
2.9 KiB
C++
/*
|
|
* CQuery.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
|
|
|
|
struct CPack;
|
|
|
|
VCMI_LIB_NAMESPACE_END
|
|
|
|
class CObjectVisitQuery;
|
|
class QueriesProcessor;
|
|
class CQuery;
|
|
class CGameHandler;
|
|
|
|
using QueryPtr = std::shared_ptr<CQuery>;
|
|
|
|
// This class represents any kind of prolonged interaction that may need to do something special after it is over.
|
|
// It does not necessarily has to be "query" requiring player action, it can be also used internally within server.
|
|
// Examples:
|
|
// - all kinds of blocking dialog windows
|
|
// - battle
|
|
// - object visit
|
|
// - hero movement
|
|
// Queries can cause another queries, forming a stack of queries for each player. Eg: hero movement -> object visit -> dialog.
|
|
class CQuery
|
|
{
|
|
public:
|
|
std::vector<PlayerColor> players; //players that are affected (often "blocked") by query
|
|
QueryID queryID;
|
|
|
|
CQuery(CGameHandler * gh);
|
|
|
|
virtual bool blocksPack(const CPack *pack) const; //query can block attempting actions by player. Eg. he can't move hero during the battle.
|
|
|
|
virtual bool endsByPlayerAnswer() const; //query is removed after player gives answer (like dialogs)
|
|
virtual void onAdding(PlayerColor color); //called just before query is pushed on stack
|
|
virtual void onAdded(PlayerColor color); //called right after query is pushed on stack
|
|
virtual void onRemoval(PlayerColor color); //called after query is removed from stack
|
|
virtual void onExposure(QueryPtr topQuery);//called when query immediately above is removed and this is exposed (becomes top)
|
|
virtual std::string toString() const;
|
|
|
|
virtual void notifyObjectAboutRemoval(const CObjectVisitQuery &objectVisit) const;
|
|
|
|
virtual void setReply(std::optional<int32_t> reply);
|
|
|
|
virtual ~CQuery();
|
|
protected:
|
|
QueriesProcessor * owner;
|
|
CGameHandler * gh;
|
|
void addPlayer(PlayerColor color);
|
|
bool blockAllButReply(const CPack * pack) const;
|
|
};
|
|
|
|
std::ostream &operator<<(std::ostream &out, const CQuery &query);
|
|
std::ostream &operator<<(std::ostream &out, QueryPtr query);
|
|
|
|
class CDialogQuery : public CQuery
|
|
{
|
|
public:
|
|
CDialogQuery(CGameHandler * owner);
|
|
virtual bool endsByPlayerAnswer() const override;
|
|
virtual bool blocksPack(const CPack *pack) const override;
|
|
void setReply(std::optional<int32_t> reply) override;
|
|
protected:
|
|
std::optional<ui32> answer;
|
|
};
|
|
|
|
class CGenericQuery : public CQuery
|
|
{
|
|
public:
|
|
CGenericQuery(CGameHandler * gh, PlayerColor color, std::function<void(std::optional<int32_t>)> Callback);
|
|
|
|
bool blocksPack(const CPack * pack) const override;
|
|
bool endsByPlayerAnswer() const override;
|
|
void onExposure(QueryPtr topQuery) override;
|
|
void setReply(std::optional<int32_t> reply) override;
|
|
void onRemoval(PlayerColor color) override;
|
|
private:
|
|
std::function<void(std::optional<int32_t>)> callback;
|
|
std::optional<int32_t> reply;
|
|
};
|