mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-02 22:05:43 +02:00
Added move constructors for minimum required Bonus system`s classes
This commit is contained in:
parent
d188b86a50
commit
629922f43e
@ -2924,6 +2924,25 @@ PlayerState::PlayerState()
|
|||||||
setNodeType(PLAYER);
|
setNodeType(PLAYER);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PlayerState::PlayerState(PlayerState && other):
|
||||||
|
CBonusSystemNode(std::move(other)),
|
||||||
|
color(other.color),
|
||||||
|
human(other.human),
|
||||||
|
team(other.team),
|
||||||
|
resources(other.resources),
|
||||||
|
enteredWinningCheatCode(other.enteredWinningCheatCode),
|
||||||
|
enteredLosingCheatCode(other.enteredLosingCheatCode),
|
||||||
|
status(other.status),
|
||||||
|
daysWithoutCastle(other.daysWithoutCastle)
|
||||||
|
{
|
||||||
|
std::swap(visitedObjects, other.visitedObjects);
|
||||||
|
std::swap(heroes, other.heroes);
|
||||||
|
std::swap(towns, other.towns);
|
||||||
|
std::swap(availableHeroes, other.availableHeroes);
|
||||||
|
std::swap(dwellings, other.dwellings);
|
||||||
|
std::swap(quests, other.quests);
|
||||||
|
}
|
||||||
|
|
||||||
std::string PlayerState::nodeName() const
|
std::string PlayerState::nodeName() const
|
||||||
{
|
{
|
||||||
return "Player " + (color.getNum() < VLC->generaltexth->capColors.size() ? VLC->generaltexth->capColors[color.getNum()] : boost::lexical_cast<std::string>(color));
|
return "Player " + (color.getNum() < VLC->generaltexth->capColors.size() ? VLC->generaltexth->capColors[color.getNum()] : boost::lexical_cast<std::string>(color));
|
||||||
@ -3223,6 +3242,15 @@ TeamState::TeamState()
|
|||||||
setNodeType(TEAM);
|
setNodeType(TEAM);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TeamState::TeamState(TeamState && other):
|
||||||
|
CBonusSystemNode(std::move(other)),
|
||||||
|
id(other.id)
|
||||||
|
{
|
||||||
|
std::swap(players, other.players);
|
||||||
|
std::swap(fogOfWarMap, other.fogOfWarMap);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
CRandomGenerator & CGameState::getRandomGenerator()
|
CRandomGenerator & CGameState::getRandomGenerator()
|
||||||
{
|
{
|
||||||
//logGlobal->traceStream() << "Fetching CGameState::rand with seed " << rand.nextInt();
|
//logGlobal->traceStream() << "Fetching CGameState::rand with seed " << rand.nextInt();
|
||||||
|
@ -35,6 +35,8 @@ public:
|
|||||||
boost::optional<ui8> daysWithoutCastle;
|
boost::optional<ui8> daysWithoutCastle;
|
||||||
|
|
||||||
PlayerState();
|
PlayerState();
|
||||||
|
PlayerState(PlayerState && other);
|
||||||
|
|
||||||
std::string nodeName() const override;
|
std::string nodeName() const override;
|
||||||
|
|
||||||
template <typename Handler> void serialize(Handler &h, const int version)
|
template <typename Handler> void serialize(Handler &h, const int version)
|
||||||
@ -56,6 +58,7 @@ public:
|
|||||||
std::vector<std::vector<std::vector<ui8> > > fogOfWarMap; //true - visible, false - hidden
|
std::vector<std::vector<std::vector<ui8> > > fogOfWarMap; //true - visible, false - hidden
|
||||||
|
|
||||||
TeamState();
|
TeamState();
|
||||||
|
TeamState(TeamState && other);
|
||||||
|
|
||||||
template <typename Handler> void serialize(Handler &h, const int version)
|
template <typename Handler> void serialize(Handler &h, const int version)
|
||||||
{
|
{
|
||||||
|
@ -709,6 +709,26 @@ CBonusSystemNode::CBonusSystemNode() : bonuses(true), exportedBonuses(true), nod
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CBonusSystemNode::CBonusSystemNode(CBonusSystemNode && other):
|
||||||
|
bonuses(other.bonuses),
|
||||||
|
exportedBonuses(other.exportedBonuses),
|
||||||
|
nodeType(other.nodeType),
|
||||||
|
description(other.description),
|
||||||
|
cachedLast(0)
|
||||||
|
{
|
||||||
|
//todo: move constructor for bonuslist
|
||||||
|
bonuses.belongsToTree = true;
|
||||||
|
exportedBonuses.belongsToTree = true;
|
||||||
|
|
||||||
|
std::swap(parents, other.parents);
|
||||||
|
std::swap(children, other.children);
|
||||||
|
|
||||||
|
//TODO: move cache
|
||||||
|
|
||||||
|
//cachedBonuses
|
||||||
|
//cachedRequests
|
||||||
|
}
|
||||||
|
|
||||||
CBonusSystemNode::~CBonusSystemNode()
|
CBonusSystemNode::~CBonusSystemNode()
|
||||||
{
|
{
|
||||||
detachFromAll();
|
detachFromAll();
|
||||||
|
@ -495,6 +495,7 @@ public:
|
|||||||
return bonuses.end();
|
return bonuses.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
friend class CBonusSystemNode;
|
||||||
//friend inline std::vector<Bonus*>::iterator range_begin(BonusList & x);
|
//friend inline std::vector<Bonus*>::iterator range_begin(BonusList & x);
|
||||||
//friend inline std::vector<Bonus*>::iterator range_end(BonusList & x);
|
//friend inline std::vector<Bonus*>::iterator range_end(BonusList & x);
|
||||||
};
|
};
|
||||||
@ -647,8 +648,8 @@ private:
|
|||||||
const TBonusListPtr getAllBonusesWithoutCaching(const CSelector &selector, const CSelector &limit, const CBonusSystemNode *root = nullptr) const;
|
const TBonusListPtr getAllBonusesWithoutCaching(const CSelector &selector, const CSelector &limit, const CBonusSystemNode *root = nullptr) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
explicit CBonusSystemNode();
|
explicit CBonusSystemNode();
|
||||||
|
CBonusSystemNode(CBonusSystemNode && other);
|
||||||
virtual ~CBonusSystemNode();
|
virtual ~CBonusSystemNode();
|
||||||
|
|
||||||
void limitBonuses(const BonusList &allBonuses, BonusList &out) const; //out will bo populed with bonuses that are not limited here
|
void limitBonuses(const BonusList &allBonuses, BonusList &out) const; //out will bo populed with bonuses that are not limited here
|
||||||
|
Loading…
x
Reference in New Issue
Block a user