CreatureLib/src/Battling/Models/BattleSide.cpp

92 lines
3.0 KiB
C++
Raw Normal View History

2019-10-17 12:33:25 +00:00
#include "BattleSide.hpp"
#include "../EventHooks/EventDataClasses.hpp"
#include "Battle.hpp"
using namespace CreatureLib::Battling;
2020-04-04 15:03:06 +00:00
bool BattleSide::AllChoicesSet() const noexcept { return _choicesSet == _creaturesPerSide; }
bool BattleSide::AllPossibleSlotsFilled() const {
2020-07-28 15:22:43 +00:00
try {
for (size_t i = 0; i < _creatures.Count(); i++) {
auto c = _creatures[i];
if (!c.HasValue() || c.GetValue()->IsFainted()) {
2020-07-28 15:22:43 +00:00
if (_battle->CanSlotBeFilled(_index, i))
return false;
}
}
2020-07-28 15:22:43 +00:00
} catch (const std::exception& e) {
THROW("Exception during AllPossibleSlotsFilled check: '" << e.what() << "'.");
}
return true;
}
2020-04-04 15:03:06 +00:00
void BattleSide::ResetChoices() noexcept {
_choicesSet = 0;
for (uint8_t i = 0; i < _creaturesPerSide; i++) {
_choices[i] = nullptr;
}
}
void BattleSide::SetChoice(BaseTurnChoice* choice) {
EnsureNotNull(choice)
2020-07-28 15:22:43 +00:00
try {
for (size_t i = 0; i < _creatures.Count(); i++) {
auto& c = _creatures[i];
if (!c.HasValue()) {
continue;
}
if (c.GetValue() == choice->GetUser()) {
2020-07-28 15:22:43 +00:00
_choices[i] = std::shared_ptr<BaseTurnChoice>(choice);
_choicesSet++;
return;
}
}
} catch (const std::exception& e) {
THROW("Error during setting choice: '" << e.what() << "'.");
2020-07-28 15:22:43 +00:00
}
THROW("User not found");
}
void BattleSide::SetCreature(ArbUt::OptionalBorrowedPtr<Creature> creature, uint8_t index) {
auto old = _creatures[index];
if (old.HasValue()) {
old.GetValue()->SetOnBattleField(false);
}
_creatures[index] = creature.GetValue();
if (!creature.HasValue()) {
return;
}
creature.GetValue()->SetBattleData(_battle, this);
creature.GetValue()->SetOnBattleField(true);
for (auto* side : _battle->GetSides()) {
if (side == this) {
2019-12-14 11:40:50 +00:00
continue;
}
2020-08-07 08:38:35 +00:00
for (const auto& c : side->GetCreatures()) {
if (c.HasValue()) {
c.GetValue()->MarkOpponentAsSeen(creature.GetValue());
creature.GetValue()->MarkOpponentAsSeen(c.GetValue());
2019-12-14 11:40:50 +00:00
}
}
}
_battle->TriggerEventListener<SwitchEvent>(CreatureIndex(this->_index, index), creature.GetValue());
}
2019-11-02 12:57:43 +00:00
2020-06-02 11:06:24 +00:00
bool BattleSide::CreatureOnSide(const ArbUt::BorrowedPtr<Creature>& creature) const {
return std::find(_creatures.begin(), _creatures.end(), creature.GetRaw()) != _creatures.end();
2019-11-02 12:57:43 +00:00
}
const ArbUt::OptionalBorrowedPtr<Creature>& BattleSide::GetCreature(uint8_t index) const { return _creatures[index]; }
2020-05-26 16:31:06 +00:00
void BattleSide::GetActiveScripts(ArbUt::List<ScriptWrapper>& scripts) {
2020-04-23 21:23:58 +00:00
scripts.Append(ScriptWrapper::FromSet(&_volatile));
_battle->GetActiveScripts(scripts);
}
size_t BattleSide::ScriptCount() const { return _battle->ScriptCount() + 1; }
uint8_t BattleSide::GetRandomCreatureIndex() {
// TODO: Consider adding parameter to only get index for available creatures.
return _battle->GetRandom()->Get(_creaturesPerSide);
}