CreatureLib/CInterface/Battling/TurnChoices.cpp

38 lines
2.1 KiB
C++
Raw Normal View History

2020-03-11 11:22:13 +00:00
#include "../../src/Battling/TurnChoices/AttackTurnChoice.hpp"
#include "../../src/Battling/TurnChoices/FleeTurnChoice.hpp"
#include "../../src/Battling/TurnChoices/PassTurnChoice.hpp"
#include "../../src/Battling/TurnChoices/SwitchTurnChoice.hpp"
#include "../Core.hpp"
2020-03-11 11:22:13 +00:00
using namespace CreatureLib::Battling;
2022-04-02 10:33:26 +00:00
export_func AttackTurnChoice* CreatureLib_AttackTurnChoice_Construct(Creature* user, LearnedAttack* attack,
u8 sideIndex, u8 targetIndex) {
2020-03-11 11:22:13 +00:00
return new AttackTurnChoice(user, attack, CreatureIndex(sideIndex, targetIndex));
}
2022-04-02 10:33:26 +00:00
export_func void CreatureLib_AttackTurnChoice_Destruct(AttackTurnChoice* p) { delete p; }
export_func FleeTurnChoice* CreatureLib_FleeTurnChoice_Construct(Creature* user) { return new FleeTurnChoice(user); }
export_func void CreatureLib_FleeTurnChoice_Destruct(AttackTurnChoice* p) { delete p; }
export_func PassTurnChoice* CreatureLib_PassTurnChoice_Construct(Creature* user) { return new PassTurnChoice(user); }
export_func void CreatureLib_PassTurnChoice_Destruct(AttackTurnChoice* p) { delete p; }
export_func SwitchTurnChoice* CreatureLib_SwitchTurnChoice_Construct(Creature* user, Creature* newCreature) {
2020-03-11 11:22:13 +00:00
return new SwitchTurnChoice(user, newCreature);
}
2022-04-02 10:33:26 +00:00
export_func void CreatureLib_SwitchTurnChoice_Destruct(AttackTurnChoice* p) { delete p; }
2020-03-11 11:22:13 +00:00
SIMPLE_GET_FUNC(BaseTurnChoice, GetKind, TurnChoiceKind)
BORROWED_GET_FUNC(BaseTurnChoice, GetUser, Creature*)
2020-03-11 11:22:13 +00:00
BORROWED_GET_FUNC(AttackTurnChoice, GetAttack, LearnedAttack*)
2020-03-11 11:22:13 +00:00
SIMPLE_GET_FUNC(AttackTurnChoice, GetKind, TurnChoiceKind)
2022-04-02 10:33:26 +00:00
export_func u8 CreatureLib_AttackTurnChoice_GetPriority(i8& out, AttackTurnChoice* p) { Try(out = p->GetPriority()); }
SMART_GET_FUNC(AttackTurnChoice, GetAttackScript, BattleScript*)
2022-04-02 10:33:26 +00:00
export_func u8 CreatureLib_AttackTurnChoice_GetTargetSideIndex(const AttackTurnChoice* p) {
2020-03-11 11:22:13 +00:00
return p->GetTarget().GetSideIndex();
}
2022-04-02 10:33:26 +00:00
export_func u8 CreatureLib_AttackTurnChoice_GetTargetCreatureIndex(const AttackTurnChoice* p) {
2020-03-11 11:22:13 +00:00
return p->GetTarget().GetCreatureIndex();
}
OPTIONAL_GET_FUNC(SwitchTurnChoice, GetNewCreature, Creature*)