Basic layout for turn execution
This commit is contained in:
@@ -1,5 +1,24 @@
|
||||
#include "TurnHandler.hpp"
|
||||
|
||||
void CreatureLib::Battling::TurnHandler::RunTurn(CreatureLib::Battling::ChoiceQueue &queue) {
|
||||
while (queue.HasNext()){
|
||||
ExecuteChoice(queue.Dequeue());
|
||||
}
|
||||
}
|
||||
|
||||
void CreatureLib::Battling::TurnHandler::ExecuteChoice(const CreatureLib::Battling::BaseTurnChoice *choice) {
|
||||
switch (choice->GetKind()){
|
||||
case TurnChoiceKind::Pass: return;
|
||||
case TurnChoiceKind::Attack:
|
||||
return ExecuteAttackChoice(static_cast<const AttackTurnChoice*>(choice));
|
||||
case TurnChoiceKind::Item:
|
||||
case TurnChoiceKind::Switch:
|
||||
case TurnChoiceKind::RunAway:
|
||||
throw "Not implemented";
|
||||
}
|
||||
}
|
||||
|
||||
void CreatureLib::Battling::TurnHandler::ExecuteAttackChoice(const CreatureLib::Battling::AttackTurnChoice *choice) {
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user