| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445 |
- /*
- * BattleWindow.cpp, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #include "StdInc.h"
- #include "BattleWindow.h"
- #include "BattleInterface.h"
- #include "BattleInterfaceClasses.h"
- #include "BattleFieldController.h"
- #include "BattleStacksController.h"
- #include "BattleActionsController.h"
- #include "../CGameInfo.h"
- #include "../CMessage.h"
- #include "../CPlayerInterface.h"
- #include "../CMusicHandler.h"
- #include "../gui/Canvas.h"
- #include "../gui/CCursorHandler.h"
- #include "../gui/CGuiHandler.h"
- #include "../windows/CSpellWindow.h"
- #include "../widgets/AdventureMapClasses.h"
- #include "../widgets/Buttons.h"
- #include "../widgets/Images.h"
- #include "../../CCallback.h"
- #include "../../lib/CGeneralTextHandler.h"
- #include "../../lib/mapObjects/CGHeroInstance.h"
- #include "../../lib/CStack.h"
- #include "../../lib/CConfigHandler.h"
- BattleWindow::BattleWindow(BattleInterface & owner):
- owner(owner)
- {
- OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
- pos.w = 800;
- pos.h = 600;
- pos = center();
- // create background for panel/ribbon at the bottom
- menuTactics = std::make_shared<CPicture>("COPLACBR.BMP", 0, 556);
- menuBattle = std::make_shared<CPicture>("CBAR.BMP", 0, 556);
- menuTactics->colorize(owner.curInt->playerID);
- menuBattle->colorize(owner.curInt->playerID);
- //preparing buttons and console
- bOptions = std::make_shared<CButton> (Point( 3, 5 + 556), "icm003.def", CGI->generaltexth->zelp[381], std::bind(&BattleWindow::bOptionsf,this), SDLK_o);
- bSurrender = std::make_shared<CButton> (Point( 54, 5 + 556), "icm001.def", CGI->generaltexth->zelp[379], std::bind(&BattleWindow::bSurrenderf,this), SDLK_s);
- bFlee = std::make_shared<CButton> (Point(105, 5 + 556), "icm002.def", CGI->generaltexth->zelp[380], std::bind(&BattleWindow::bFleef,this), SDLK_r);
- bAutofight = std::make_shared<CButton> (Point(158, 5 + 556), "icm004.def", CGI->generaltexth->zelp[382], std::bind(&BattleWindow::bAutofightf,this), SDLK_a);
- bSpell = std::make_shared<CButton> (Point(645, 5 + 556), "icm005.def", CGI->generaltexth->zelp[385], std::bind(&BattleWindow::bSpellf,this), SDLK_c);
- bWait = std::make_shared<CButton> (Point(696, 5 + 556), "icm006.def", CGI->generaltexth->zelp[386], std::bind(&BattleWindow::bWaitf,this), SDLK_w);
- bDefence = std::make_shared<CButton> (Point(747, 5 + 556), "icm007.def", CGI->generaltexth->zelp[387], std::bind(&BattleWindow::bDefencef,this), SDLK_d);
- bConsoleUp = std::make_shared<CButton> (Point(624, 5 + 556), "ComSlide.def", std::make_pair("", ""), std::bind(&BattleWindow::bConsoleUpf,this), SDLK_UP);
- bConsoleDown = std::make_shared<CButton>(Point(624, 24 + 556), "ComSlide.def", std::make_pair("", ""), std::bind(&BattleWindow::bConsoleDownf,this), SDLK_DOWN);
- bDefence->assignedKeys.insert(SDLK_SPACE);
- bConsoleUp->setImageOrder(0, 1, 0, 0);
- bConsoleDown->setImageOrder(2, 3, 2, 2);
- btactNext = std::make_shared<CButton>(Point(213, 4 + 556), "icm011.def", std::make_pair("", ""), [&]() { bTacticNextStack();}, SDLK_SPACE);
- btactEnd = std::make_shared<CButton>(Point(419, 4 + 556), "icm012.def", std::make_pair("", ""), [&](){ bTacticPhaseEnd();}, SDLK_RETURN);
- console = std::make_shared<BattleConsole>(menuBattle, Point(211, 4 + 556), Point(211, 4), Point(406,38));
- GH.statusbar = console;
- owner.console = console;
- owner.fieldController.reset( new BattleFieldController(owner));
- owner.fieldController->createHeroes();
- //create stack queue and adjust our own position
- bool embedQueue;
- std::string queueSize = settings["battle"]["queueSize"].String();
- if(queueSize == "auto")
- embedQueue = screen->h < 700;
- else
- embedQueue = screen->h < 700 || queueSize == "small";
- queue = std::make_shared<StackQueue>(embedQueue, owner);
- if(!embedQueue && settings["battle"]["showQueue"].Bool())
- {
- //re-center, taking into account stack queue position
- pos.y -= queue->pos.h;
- pos.h += queue->pos.h;
- pos = center();
- }
- if ( owner.tacticsMode )
- tacticPhaseStarted();
- else
- tacticPhaseEnded();
- addUsedEvents(RCLICK | KEYBOARD);
- }
- BattleWindow::~BattleWindow()
- {
- CPlayerInterface::battleInt = nullptr;
- }
- void BattleWindow::hideQueue()
- {
- Settings showQueue = settings.write["battle"]["showQueue"];
- showQueue->Bool() = false;
- queue->disable();
- if (!queue->embedded)
- {
- moveBy(Point(0, -queue->pos.h / 2));
- GH.totalRedraw();
- }
- }
- void BattleWindow::showQueue()
- {
- Settings showQueue = settings.write["battle"]["showQueue"];
- showQueue->Bool() = true;
- queue->enable();
- if (!queue->embedded)
- {
- moveBy(Point(0, +queue->pos.h / 2));
- GH.totalRedraw();
- }
- }
- void BattleWindow::updateQueue()
- {
- queue->update();
- }
- void BattleWindow::activate()
- {
- GH.statusbar = console;
- CIntObject::activate();
- LOCPLINT->cingconsole->activate();
- }
- void BattleWindow::deactivate()
- {
- CIntObject::deactivate();
- LOCPLINT->cingconsole->deactivate();
- }
- void BattleWindow::keyPressed(const SDL_KeyboardEvent & key)
- {
- if(key.keysym.sym == SDLK_q && key.state == SDL_PRESSED)
- {
- if(settings["battle"]["showQueue"].Bool()) //hide queue
- hideQueue();
- else
- showQueue();
- }
- else if(key.keysym.sym == SDLK_f && key.state == SDL_PRESSED)
- {
- owner.actionsController->enterCreatureCastingMode();
- }
- else if(key.keysym.sym == SDLK_ESCAPE)
- {
- if(owner.getAnimationCondition(EAnimationEvents::OPENING) == true)
- CCS->soundh->stopSound(owner.battleIntroSoundChannel);
- else
- owner.actionsController->endCastingSpell();
- }
- }
- void BattleWindow::clickRight(tribool down, bool previousState)
- {
- if (!down)
- owner.actionsController->endCastingSpell();
- }
- void BattleWindow::tacticPhaseStarted()
- {
- menuBattle->disable();
- console->disable();
- menuTactics->enable();
- btactNext->enable();
- btactEnd->enable();
- }
- void BattleWindow::tacticPhaseEnded()
- {
- menuBattle->enable();
- console->enable();
- menuTactics->disable();
- btactNext->disable();
- btactEnd->disable();
- }
- void BattleWindow::bOptionsf()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- CCS->curh->set(Cursor::Map::POINTER);
- GH.pushIntT<BattleOptionsWindow>(owner);
- }
- void BattleWindow::bSurrenderf()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- int cost = owner.curInt->cb->battleGetSurrenderCost();
- if(cost >= 0)
- {
- std::string enemyHeroName = owner.curInt->cb->battleGetEnemyHero().name;
- if(enemyHeroName.empty())
- {
- logGlobal->warn("Surrender performed without enemy hero, should not happen!");
- enemyHeroName = "#ENEMY#";
- }
- std::string surrenderMessage = boost::str(boost::format(CGI->generaltexth->allTexts[32]) % enemyHeroName % cost); //%s states: "I will accept your surrender and grant you and your troops safe passage for the price of %d gold."
- owner.curInt->showYesNoDialog(surrenderMessage, [this](){ reallySurrender(); }, nullptr);
- }
- }
- void BattleWindow::bFleef()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- if ( owner.curInt->cb->battleCanFlee() )
- {
- CFunctionList<void()> ony = std::bind(&BattleWindow::reallyFlee,this);
- owner.curInt->showYesNoDialog(CGI->generaltexth->allTexts[28], ony, nullptr); //Are you sure you want to retreat?
- }
- else
- {
- std::vector<std::shared_ptr<CComponent>> comps;
- std::string heroName;
- //calculating fleeing hero's name
- if (owner.attackingHeroInstance)
- if (owner.attackingHeroInstance->tempOwner == owner.curInt->cb->getMyColor())
- heroName = owner.attackingHeroInstance->name;
- if (owner.defendingHeroInstance)
- if (owner.defendingHeroInstance->tempOwner == owner.curInt->cb->getMyColor())
- heroName = owner.defendingHeroInstance->name;
- //calculating text
- auto txt = boost::format(CGI->generaltexth->allTexts[340]) % heroName; //The Shackles of War are present. %s can not retreat!
- //printing message
- owner.curInt->showInfoDialog(boost::to_string(txt), comps);
- }
- }
- void BattleWindow::reallyFlee()
- {
- owner.giveCommand(EActionType::RETREAT);
- CCS->curh->set(Cursor::Map::POINTER);
- }
- void BattleWindow::reallySurrender()
- {
- if (owner.curInt->cb->getResourceAmount(Res::GOLD) < owner.curInt->cb->battleGetSurrenderCost())
- {
- owner.curInt->showInfoDialog(CGI->generaltexth->allTexts[29]); //You don't have enough gold!
- }
- else
- {
- owner.giveCommand(EActionType::SURRENDER);
- CCS->curh->set(Cursor::Map::POINTER);
- }
- }
- void BattleWindow::bAutofightf()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- //Stop auto-fight mode
- if(owner.curInt->isAutoFightOn)
- {
- assert(owner.curInt->autofightingAI);
- owner.curInt->isAutoFightOn = false;
- logGlobal->trace("Stopping the autofight...");
- }
- else if(!owner.curInt->autofightingAI)
- {
- owner.curInt->isAutoFightOn = true;
- blockUI(true);
- auto ai = CDynLibHandler::getNewBattleAI(settings["server"]["friendlyAI"].String());
- ai->initBattleInterface(owner.curInt->env, owner.curInt->cb);
- ai->battleStart(owner.army1, owner.army2, int3(0,0,0), owner.attackingHeroInstance, owner.defendingHeroInstance, owner.curInt->cb->battleGetMySide());
- owner.curInt->autofightingAI = ai;
- owner.curInt->cb->registerBattleInterface(ai);
- owner.requestAutofightingAIToTakeAction();
- }
- }
- void BattleWindow::bSpellf()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- if (!owner.myTurn)
- return;
- auto myHero = owner.currentHero();
- if(!myHero)
- return;
- CCS->curh->set(Cursor::Map::POINTER);
- ESpellCastProblem::ESpellCastProblem spellCastProblem = owner.curInt->cb->battleCanCastSpell(myHero, spells::Mode::HERO);
- if(spellCastProblem == ESpellCastProblem::OK)
- {
- GH.pushIntT<CSpellWindow>(myHero, owner.curInt.get());
- }
- else if (spellCastProblem == ESpellCastProblem::MAGIC_IS_BLOCKED)
- {
- //TODO: move to spell mechanics, add more information to spell cast problem
- //Handle Orb of Inhibition-like effects -> we want to display dialog with info, why casting is impossible
- auto blockingBonus = owner.currentHero()->getBonusLocalFirst(Selector::type()(Bonus::BLOCK_ALL_MAGIC));
- if (!blockingBonus)
- return;
- if (blockingBonus->source == Bonus::ARTIFACT)
- {
- const auto artID = ArtifactID(blockingBonus->sid);
- //If we have artifact, put name of our hero. Otherwise assume it's the enemy.
- //TODO check who *really* is source of bonus
- std::string heroName = myHero->hasArt(artID) ? myHero->name : owner.enemyHero().name;
- //%s wields the %s, an ancient artifact which creates a p dead to all magic.
- LOCPLINT->showInfoDialog(boost::str(boost::format(CGI->generaltexth->allTexts[683])
- % heroName % CGI->artifacts()->getByIndex(artID)->getName()));
- }
- }
- }
- void BattleWindow::bWaitf()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- if (owner.stacksController->getActiveStack() != nullptr)
- owner.giveCommand(EActionType::WAIT);
- }
- void BattleWindow::bDefencef()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- if (owner.stacksController->getActiveStack() != nullptr)
- owner.giveCommand(EActionType::DEFEND);
- }
- void BattleWindow::bConsoleUpf()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- console->scrollUp();
- }
- void BattleWindow::bConsoleDownf()
- {
- if (owner.actionsController->spellcastingModeActive())
- return;
- console->scrollDown();
- }
- void BattleWindow::bTacticNextStack()
- {
- owner.tacticNextStack(nullptr);
- }
- void BattleWindow::bTacticPhaseEnd()
- {
- owner.tacticPhaseEnd();
- }
- void BattleWindow::blockUI(bool on)
- {
- bool canCastSpells = false;
- auto hero = owner.curInt->cb->battleGetMyHero();
- if(hero)
- {
- ESpellCastProblem::ESpellCastProblem spellcastingProblem = owner.curInt->cb->battleCanCastSpell(hero, spells::Mode::HERO);
- //if magic is blocked, we leave button active, so the message can be displayed after button click
- canCastSpells = spellcastingProblem == ESpellCastProblem::OK || spellcastingProblem == ESpellCastProblem::MAGIC_IS_BLOCKED;
- }
- bool canWait = owner.stacksController->getActiveStack() ? !owner.stacksController->getActiveStack()->waitedThisTurn : false;
- bOptions->block(on);
- bFlee->block(on || !owner.curInt->cb->battleCanFlee());
- bSurrender->block(on || owner.curInt->cb->battleGetSurrenderCost() < 0);
- // block only if during enemy turn and auto-fight is off
- // otherwise - crash on accessing non-exisiting active stack
- bAutofight->block(!owner.curInt->isAutoFightOn && !owner.stacksController->getActiveStack());
- if (owner.tacticsMode && btactEnd && btactNext)
- {
- btactNext->block(on);
- btactEnd->block(on);
- }
- else
- {
- bConsoleUp->block(on);
- bConsoleDown->block(on);
- }
- bSpell->block(on || owner.tacticsMode || !canCastSpells);
- bWait->block(on || owner.tacticsMode || !canWait);
- bDefence->block(on || owner.tacticsMode);
- }
- void BattleWindow::showAll(SDL_Surface *to)
- {
- CIntObject::showAll(to);
- if (screen->w != 800 || screen->h !=600)
- CMessage::drawBorder(owner.curInt->playerID, to, pos.w+28, pos.h+29, pos.x-14, pos.y-15);
- }
- void BattleWindow::show(SDL_Surface *to)
- {
- CIntObject::show(to);
- LOCPLINT->cingconsole->show(to);
- }
|