#include "TargetSelection.h"
#include "BattleState.h"
+#include "../common/TargetingMode.h"
namespace battle {
}
}
+
+void TargetSelection::ReadMode(const common::TargetingMode &tm) {
+ if (tm.TargetsEnemy()) {
+ SelectEnemies();
+ } else {
+ SelectHeroes();
+ }
+ if (tm.TargetsSingle()) {
+ SelectSingle();
+ } else if (tm.TargetsMultiple()) {
+ SelectMultiple();
+ }
+}
+
+
void TargetSelection::SelectEnemies() {
if (TargetsEnemies()) return;
enemy = true;
#include "../BattleState.h"
#include "../../app/Application.h"
#include "../../app/Input.h"
+#include "../../common/Item.h"
#include "../../geometry/operators.h"
#include <stdexcept>
using app::Application;
using app::Input;
+using common::Item;
using geometry::Point;
using geometry::Vector;
battle->GetAttackTypeMenu().Select(AttackChoice::SWORD);
}
+ Hero &hero(battle->ActiveHero());
+ AttackChoice &ac(hero.GetAttackChoice());
if (input.JustPressed(Input::ACTION_A)) {
switch (battle->GetAttackTypeMenu().Selected()) {
case AttackChoice::SWORD:
- // TODO: detect single/multiple/all attack mode
- battle->ActiveHero().GetAttackChoice().Selection().SetSingle();
- battle->ActiveHero().GetAttackChoice().Selection().Reset();
- ctrl->PushState(new SelectTarget(battle, this, &battle->ActiveHero().GetAttackChoice().Selection(), battle->Res().weaponTargetCursor));
+ if (hero.HasWeapon()) {
+ if (hero.Weapon()->GetTargetingMode().TargetsAll()) {
+ ac.SetType(AttackChoice::SWORD);
+ battle->NextHero();
+ break;
+ } else {
+ ac.Selection().ReadMode(hero.Weapon()->GetTargetingMode());
+ }
+ } else {
+ ac.Selection().SetSingle();
+ }
+ ac.Selection().Reset();
+ ctrl->PushState(new SelectTarget(battle, this, &ac.Selection(), battle->Res().weaponTargetCursor));
break;
case AttackChoice::MAGIC:
+ // TODO: detect single/multiple/all attack mode
if (battle->ActiveHero().CanUseMagic()) {
ctrl->PushState(new SelectSpell(battle, this));
}
break;
case AttackChoice::DEFEND:
- battle->ActiveHero().GetAttackChoice().SetType(AttackChoice::DEFEND);
+ ac.SetType(AttackChoice::DEFEND);
battle->NextHero();
break;
case AttackChoice::IKARI:
throw std::logic_error("selected invalid attack type");
}
} else if (input.JustPressed(Input::ACTION_B)) {
- battle->ActiveHero().GetAttackChoice().Reset();
+ ac.Reset();
battle->PreviousHero();
if (battle->BeforeFirstHero()) {
ctrl->ChangeState(new SelectMoveAction(battle));
} else {
- battle->ActiveHero().GetAttackChoice().Reset();
+ ac.Reset();
}
}