X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FSelectIkari.cpp;h=5c1a27a4ee76a781c4fc79ad1143495ac96bfe36;hb=8d3de02319380b5142ac4c88bf54999d4027dba9;hp=3c11164ffcb8ede50fdba1c53c9661cb89c79734;hpb=b782e097508340f375a06f0f293775eb86c3df9c;p=l2e.git diff --git a/src/battle/states/SelectIkari.cpp b/src/battle/states/SelectIkari.cpp index 3c11164..5c1a27a 100644 --- a/src/battle/states/SelectIkari.cpp +++ b/src/battle/states/SelectIkari.cpp @@ -8,15 +8,19 @@ #include "SelectIkari.h" #include "SelectAttackType.h" +#include "SelectTarget.h" #include "../BattleState.h" #include "../../app/Application.h" #include "../../app/Input.h" +#include "../../common/Ikari.h" +#include "../../common/Item.h" #include "../../geometry/Point.h" #include "../../geometry/operators.h" #include "../../graphics/Frame.h" using app::Application; using app::Input; +using common::Ikari; using geometry::Point; using geometry::Vector; using graphics::Frame; @@ -32,7 +36,11 @@ void SelectIkari::ExitState(Application &c, SDL_Surface *screen) { } void SelectIkari::ResumeState(Application &ctrl, SDL_Surface *screen) { - + if (battle->ActiveHero().GetAttackChoice().Selection().HasSelected()) { + battle->ActiveHero().GetAttackChoice().SetType(AttackChoice::IKARI); + battle->ActiveHero().GetAttackChoice().SetItem(battle->ActiveHero().IkariMenu().Selected()); + ctrl.PopState(); + } } void SelectIkari::PauseState(Application &ctrl, SDL_Surface *screen) { @@ -45,28 +53,47 @@ void SelectIkari::Resize(int width, int height) { } -void SelectIkari::HandleInput(const Input &input) { +void SelectIkari::HandleEvents(const Input &input) { if (input.JustPressed(Input::ACTION_A)) { - // TODO: switch to target select - if (battle->GetIkariMenu().SelectedIsEnabled()) { - battle->NextHero(); - ctrl->PopState(); + if (battle->ActiveHero().IkariMenu().SelectedIsEnabled() && battle->ActiveHero().IkariMenu().Selected()->HasIkari()) { + AttackChoice &ac(battle->ActiveHero().GetAttackChoice()); + const Ikari *ikari(battle->ActiveHero().IkariMenu().Selected()->GetIkari()); + ac.Selection().Reset(); + if (ikari->GetTargetingMode().TargetsAlly()) { + ac.Selection().SelectHeroes(); + } else { + ac.Selection().SelectEnemies(); + } + if (ikari->GetTargetingMode().TargetsAll()) { + ac.SetType(AttackChoice::MAGIC); + // TODO: remove item from inventory + ac.SetItem(battle->ActiveHero().IkariMenu().Selected()); + battle->NextHero(); + ctrl->PopState(); + } else { + if (ikari->GetTargetingMode().TargetsSingle()) { + ac.Selection().SetSingle(); + } else { + ac.Selection().SetMultiple(); + } + ctrl->PushState(new SelectTarget(battle, parent, &ac.Selection(), ikari->IsMagical() ? battle->Res().magicTargetCursor : battle->Res().weaponTargetCursor)); + } } } if (input.JustPressed(Input::ACTION_B)) { ctrl->PopState(); // return control to parent } if (input.JustPressed(Input::PAD_UP)) { - battle->GetIkariMenu().PreviousRow(); + battle->ActiveHero().IkariMenu().PreviousRow(); } if (input.JustPressed(Input::PAD_RIGHT)) { - battle->GetIkariMenu().NextItem(); + battle->ActiveHero().IkariMenu().NextItem(); } if (input.JustPressed(Input::PAD_DOWN)) { - battle->GetIkariMenu().NextRow(); + battle->ActiveHero().IkariMenu().NextRow(); } if (input.JustPressed(Input::PAD_LEFT)) { - battle->GetIkariMenu().PreviousItem(); + battle->ActiveHero().IkariMenu().PreviousItem(); } } @@ -85,7 +112,7 @@ void SelectIkari::Render(SDL_Surface *screen) { void SelectIkari::RenderFrame(SDL_Surface *screen, const Vector &offset) { const Frame *frame(battle->Res().selectFrame); Point position(frame->BorderWidth(), frame->BorderHeight()); - int width(battle->BackgroundWidth() - 2 * frame->BorderWidth()); + int width(battle->Width() - 2 * frame->BorderWidth()); int height(battle->Res().normalFont->CharHeight() * 13); frame->Draw(screen, position + offset, width, height); } @@ -103,7 +130,7 @@ void SelectIkari::RenderMenu(SDL_Surface *screen, const Vector &offset) { Point position( 2 * res.selectFrame->BorderWidth() + res.normalFont->CharWidth(), 2 * res.selectFrame->BorderHeight() + 2 * res.normalFont->CharHeight()); - battle->GetIkariMenu().Draw(screen, position + offset); + battle->ActiveHero().IkariMenu().Draw(screen, position + offset); } }