| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004 |
- /*
- * BattleInterface.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 "BattleInterface.h"
- #include "BattleAnimationClasses.h"
- #include "BattleActionsController.h"
- #include "BattleInterfaceClasses.h"
- #include "CreatureAnimation.h"
- #include "BattleProjectileController.h"
- #include "BattleEffectsController.h"
- #include "BattleObstacleController.h"
- #include "BattleSiegeController.h"
- #include "BattleFieldController.h"
- #include "BattleControlPanel.h"
- #include "BattleStacksController.h"
- #include "BattleRenderer.h"
- #include "../CGameInfo.h"
- #include "../CMessage.h"
- #include "../CMusicHandler.h"
- #include "../CPlayerInterface.h"
- #include "../gui/Canvas.h"
- #include "../gui/CCursorHandler.h"
- #include "../gui/CGuiHandler.h"
- #include "../windows/CAdvmapInterface.h"
- #include "../../CCallback.h"
- #include "../../lib/CStack.h"
- #include "../../lib/CConfigHandler.h"
- #include "../../lib/CGeneralTextHandler.h"
- #include "../../lib/CHeroHandler.h"
- #include "../../lib/CondSh.h"
- #include "../../lib/mapObjects/CGTownInstance.h"
- #include "../../lib/NetPacks.h"
- #include "../../lib/UnlockGuard.h"
- CondSh<BattleAction *> BattleInterface::givenCommand(nullptr);
- BattleInterface::BattleInterface(const CCreatureSet *army1, const CCreatureSet *army2,
- const CGHeroInstance *hero1, const CGHeroInstance *hero2,
- const SDL_Rect & myRect,
- std::shared_ptr<CPlayerInterface> att,
- std::shared_ptr<CPlayerInterface> defen,
- std::shared_ptr<CPlayerInterface> spectatorInt)
- : attackingHeroInstance(hero1)
- , defendingHeroInstance(hero2)
- , animCount(0)
- , attackerInt(att)
- , defenderInt(defen)
- , curInt(att)
- , myTurn(false)
- , moveSoundHander(-1)
- , bresult(nullptr)
- {
- OBJ_CONSTRUCTION;
- for ( auto & event : animationEvents)
- event.setn(false);
- if(spectatorInt)
- {
- curInt = spectatorInt;
- }
- else if(!curInt)
- {
- //May happen when we are defending during network MP game -> attacker interface is just not present
- curInt = defenderInt;
- }
- pos = myRect;
- strongInterest = true;
- givenCommand.setn(nullptr);
- //hot-seat -> check tactics for both players (defender may be local human)
- if(attackerInt && attackerInt->cb->battleGetTacticDist())
- tacticianInterface = attackerInt;
- else if(defenderInt && defenderInt->cb->battleGetTacticDist())
- tacticianInterface = defenderInt;
- //if we found interface of player with tactics, then enter tactics mode
- tacticsMode = static_cast<bool>(tacticianInterface);
- //create stack queue
- 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, *this);
- if(!embedQueue)
- {
- if (settings["battle"]["showQueue"].Bool())
- pos.y += queue->pos.h / 2; //center whole window
- queue->moveTo(Point(pos.x, pos.y - queue->pos.h));
- }
- CPlayerInterface::battleInt = this;
- //initializing armies
- this->army1 = army1;
- this->army2 = army2;
- const CGTownInstance *town = curInt->cb->battleGetDefendedTown();
- if(town && town->hasFort())
- siegeController.reset(new BattleSiegeController(*this, town));
- controlPanel = std::make_shared<BattleControlPanel>(*this, Point(0, 556));
- projectilesController.reset(new BattleProjectileController(*this));
- fieldController.reset( new BattleFieldController(*this));
- stacksController.reset( new BattleStacksController(*this));
- actionsController.reset( new BattleActionsController(*this));
- effectsController.reset(new BattleEffectsController(*this));
- //loading hero animations
- if(hero1) // attacking hero
- {
- std::string battleImage;
- if(!hero1->type->battleImage.empty())
- {
- battleImage = hero1->type->battleImage;
- }
- else
- {
- if(hero1->sex)
- battleImage = hero1->type->heroClass->imageBattleFemale;
- else
- battleImage = hero1->type->heroClass->imageBattleMale;
- }
- attackingHero = std::make_shared<BattleHero>(battleImage, false, hero1->tempOwner, hero1->tempOwner == curInt->playerID ? hero1 : nullptr, *this);
- }
- if(hero2) // defending hero
- {
- std::string battleImage;
- if(!hero2->type->battleImage.empty())
- {
- battleImage = hero2->type->battleImage;
- }
- else
- {
- if(hero2->sex)
- battleImage = hero2->type->heroClass->imageBattleFemale;
- else
- battleImage = hero2->type->heroClass->imageBattleMale;
- }
- defendingHero = std::make_shared<BattleHero>(battleImage, true, hero2->tempOwner, hero2->tempOwner == curInt->playerID ? hero2 : nullptr, *this);
- }
- obstacleController.reset(new BattleObstacleController(*this));
- if(tacticsMode)
- tacticNextStack(nullptr);
- CCS->musich->stopMusic();
- setAnimationCondition(EAnimationEvents::OPENING, true);
- battleIntroSoundChannel = CCS->soundh->playSoundFromSet(CCS->soundh->battleIntroSounds);
- auto onIntroPlayed = [&]()
- {
- if(LOCPLINT->battleInt)
- {
- CCS->musich->playMusicFromSet("battle", true, true);
- setAnimationCondition(EAnimationEvents::OPENING, false);
- activateStack();
- battleIntroSoundChannel = -1;
- }
- };
- CCS->soundh->setCallback(battleIntroSoundChannel, onIntroPlayed);
- addUsedEvents(RCLICK | MOVE | KEYBOARD);
- queue->update();
- controlPanel->blockUI(true);
- }
- BattleInterface::~BattleInterface()
- {
- CPlayerInterface::battleInt = nullptr;
- givenCommand.cond.notify_all(); //that two lines should make any stacksController->getActiveStack() waiting thread to finish
- assert(!active);
- if (active) //dirty fix for #485
- deactivate();
- if (adventureInt && adventureInt->selection)
- {
- //FIXME: this should be moved to adventureInt which should restore correct track based on selection/active player
- const auto & terrain = *(LOCPLINT->cb->getTile(adventureInt->selection->visitablePos())->terType);
- CCS->musich->playMusicFromSet("terrain", terrain.name, true, false);
- }
- // may happen if user decided to close game while in battle
- if (getAnimationCondition(EAnimationEvents::ACTION) == true)
- logGlobal->error("Shutting down BattleInterface during animation playback!");
- setAnimationCondition(EAnimationEvents::ACTION, false);
- }
- void BattleInterface::setPrintCellBorders(bool set)
- {
- Settings cellBorders = settings.write["battle"]["cellBorders"];
- cellBorders->Bool() = set;
- fieldController->redrawBackgroundWithHexes();
- GH.totalRedraw();
- }
- void BattleInterface::setPrintStackRange(bool set)
- {
- Settings stackRange = settings.write["battle"]["stackRange"];
- stackRange->Bool() = set;
- fieldController->redrawBackgroundWithHexes();
- GH.totalRedraw();
- }
- void BattleInterface::setPrintMouseShadow(bool set)
- {
- Settings shadow = settings.write["battle"]["mouseShadow"];
- shadow->Bool() = set;
- }
- void BattleInterface::activate()
- {
- controlPanel->activate();
- if (curInt->isAutoFightOn)
- return;
- CIntObject::activate();
- if (attackingHero)
- attackingHero->activate();
- if (defendingHero)
- defendingHero->activate();
- fieldController->activate();
- if (settings["battle"]["showQueue"].Bool())
- queue->activate();
- LOCPLINT->cingconsole->activate();
- }
- void BattleInterface::deactivate()
- {
- controlPanel->deactivate();
- CIntObject::deactivate();
- fieldController->deactivate();
- if (attackingHero)
- attackingHero->deactivate();
- if (defendingHero)
- defendingHero->deactivate();
- if (settings["battle"]["showQueue"].Bool())
- queue->deactivate();
- LOCPLINT->cingconsole->deactivate();
- }
- void BattleInterface::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)
- {
- actionsController->enterCreatureCastingMode();
- }
- else if(key.keysym.sym == SDLK_ESCAPE)
- {
- if(getAnimationCondition(EAnimationEvents::OPENING) == true)
- CCS->soundh->stopSound(battleIntroSoundChannel);
- else
- actionsController->endCastingSpell();
- }
- }
- void BattleInterface::mouseMoved(const SDL_MouseMotionEvent &event)
- {
- BattleHex selectedHex = fieldController->getHoveredHex();
- actionsController->handleHex(selectedHex, MOVE);
- controlPanel->mouseMoved(event);
- }
- void BattleInterface::clickRight(tribool down, bool previousState)
- {
- if (!down)
- {
- actionsController->endCastingSpell();
- }
- }
- void BattleInterface::stackReset(const CStack * stack)
- {
- stacksController->stackReset(stack);
- }
- void BattleInterface::stackAdded(const CStack * stack)
- {
- stacksController->stackAdded(stack, false);
- }
- void BattleInterface::stackRemoved(uint32_t stackID)
- {
- stacksController->stackRemoved(stackID);
- fieldController->redrawBackgroundWithHexes();
- queue->update();
- }
- void BattleInterface::stackActivated(const CStack *stack)
- {
- stacksController->stackActivated(stack);
- }
- void BattleInterface::stackMoved(const CStack *stack, std::vector<BattleHex> destHex, int distance, bool teleport)
- {
- if (teleport)
- stacksController->stackTeleported(stack, destHex, distance);
- else
- stacksController->stackMoved(stack, destHex, distance);
- }
- void BattleInterface::stacksAreAttacked(std::vector<StackAttackedInfo> attackedInfos)
- {
- stacksController->stacksAreAttacked(attackedInfos);
- std::array<int, 2> killedBySide = {0, 0};
- int targets = 0;
- for(const StackAttackedInfo & attackedInfo : attackedInfos)
- {
- ++targets;
- ui8 side = attackedInfo.defender->side;
- killedBySide.at(side) += attackedInfo.amountKilled;
- }
- for(ui8 side = 0; side < 2; side++)
- {
- if(killedBySide.at(side) > killedBySide.at(1-side))
- setHeroAnimation(side, EHeroAnimType::DEFEAT);
- else if(killedBySide.at(side) < killedBySide.at(1-side))
- setHeroAnimation(side, EHeroAnimType::VICTORY);
- }
- }
- void BattleInterface::stackAttacking( const StackAttackInfo & attackInfo )
- {
- stacksController->stackAttacking(attackInfo);
- }
- void BattleInterface::newRoundFirst( int round )
- {
- waitForAnimationCondition(EAnimationEvents::OPENING, false);
- }
- void BattleInterface::newRound(int number)
- {
- controlPanel->console->addText(CGI->generaltexth->allTexts[412]);
- }
- void BattleInterface::giveCommand(EActionType action, BattleHex tile, si32 additional)
- {
- const CStack * actor = nullptr;
- if(action != EActionType::HERO_SPELL && action != EActionType::RETREAT && action != EActionType::SURRENDER)
- {
- actor = stacksController->getActiveStack();
- }
- auto side = curInt->cb->playerToSide(curInt->playerID);
- if(!side)
- {
- logGlobal->error("Player %s is not in battle", curInt->playerID.getStr());
- return;
- }
- auto ba = new BattleAction(); //is deleted in CPlayerInterface::stacksController->getActiveStack()()
- ba->side = side.get();
- ba->actionType = action;
- ba->aimToHex(tile);
- ba->actionSubtype = additional;
- sendCommand(ba, actor);
- }
- void BattleInterface::sendCommand(BattleAction *& command, const CStack * actor)
- {
- command->stackNumber = actor ? actor->unitId() : ((command->side == BattleSide::ATTACKER) ? -1 : -2);
- if(!tacticsMode)
- {
- logGlobal->trace("Setting command for %s", (actor ? actor->nodeName() : "hero"));
- myTurn = false;
- stacksController->setActiveStack(nullptr);
- givenCommand.setn(command);
- }
- else
- {
- curInt->cb->battleMakeTacticAction(command);
- vstd::clear_pointer(command);
- stacksController->setActiveStack(nullptr);
- //next stack will be activated when action ends
- }
- }
- const CGHeroInstance * BattleInterface::getActiveHero()
- {
- const CStack *attacker = stacksController->getActiveStack();
- if(!attacker)
- {
- return nullptr;
- }
- if(attacker->side == BattleSide::ATTACKER)
- {
- return attackingHeroInstance;
- }
- return defendingHeroInstance;
- }
- void BattleInterface::hexLclicked(int whichOne)
- {
- actionsController->handleHex(whichOne, LCLICK);
- }
- void BattleInterface::stackIsCatapulting(const CatapultAttack & ca)
- {
- if (siegeController)
- siegeController->stackIsCatapulting(ca);
- }
- void BattleInterface::gateStateChanged(const EGateState state)
- {
- if (siegeController)
- siegeController->gateStateChanged(state);
- }
- void BattleInterface::battleFinished(const BattleResult& br)
- {
- bresult = &br;
- assert(getAnimationCondition(EAnimationEvents::ACTION) == false);
- waitForAnimationCondition(EAnimationEvents::ACTION, false);
- stacksController->setActiveStack(nullptr);
- displayBattleFinished();
- }
- void BattleInterface::displayBattleFinished()
- {
- CCS->curh->changeGraphic(ECursor::ADVENTURE,0);
- if(settings["session"]["spectate"].Bool() && settings["session"]["spectate-skip-battle-result"].Bool())
- {
- close();
- return;
- }
- GH.pushInt(std::make_shared<BattleResultWindow>(*bresult, *(this->curInt)));
- curInt->waitWhileDialog(); // Avoid freeze when AI end turn after battle. Check bug #1897
- CPlayerInterface::battleInt = nullptr;
- }
- void BattleInterface::spellCast(const BattleSpellCast * sc)
- {
- controlPanel->blockUI(true);
- const SpellID spellID = sc->spellID;
- const CSpell * spell = spellID.toSpell();
- auto targetedTile = sc->tile;
- assert(spell);
- if(!spell)
- return;
- const std::string & castSoundPath = spell->getCastSound();
- if (!castSoundPath.empty())
- {
- auto group = spell->animationInfo.projectile.empty() ?
- EAnimationEvents::HIT:
- EAnimationEvents::BEFORE_HIT;//FIXME: should be on projectile spawning
- executeOnAnimationCondition(group, true, [=]() {
- CCS->soundh->playSound(castSoundPath);
- });
- }
- if ( sc->activeCast )
- {
- const CStack * casterStack = curInt->cb->battleGetStackByID(sc->casterStack);
- if(casterStack != nullptr )
- {
- executeOnAnimationCondition(EAnimationEvents::BEFORE_HIT, true, [=]()
- {
- stacksController->addNewAnim(new CastAnimation(*this, casterStack, targetedTile, curInt->cb->battleGetStackByPos(targetedTile), spell));
- displaySpellCast(spellID, casterStack->getPosition());
- });
- }
- else
- {
- auto hero = sc->side ? defendingHero : attackingHero;
- assert(hero);
- executeOnAnimationCondition(EAnimationEvents::BEFORE_HIT, true, [=]()
- {
- stacksController->addNewAnim(new HeroCastAnimation(*this, hero, targetedTile, curInt->cb->battleGetStackByPos(targetedTile), spell));
- });
- }
- }
- executeOnAnimationCondition(EAnimationEvents::HIT, true, [=](){
- displaySpellHit(spellID, targetedTile);
- });
- //queuing affect animation
- for(auto & elem : sc->affectedCres)
- {
- auto stack = curInt->cb->battleGetStackByID(elem, false);
- assert(stack);
- if(stack)
- {
- executeOnAnimationCondition(EAnimationEvents::HIT, true, [=](){
- if (spellID == SpellID::BLOODLUST)
- stacksController->addNewAnim( ColorTransformAnimation::bloodlustAnimation(*this, stack, spell));
- else if (spellID == SpellID::STONE_GAZE)
- stacksController->addNewAnim( ColorTransformAnimation::petrifyAnimation(*this, stack, spell));
- else
- displaySpellEffect(spellID, stack->getPosition());
- });
- }
- }
- for(auto & elem : sc->reflectedCres)
- {
- auto stack = curInt->cb->battleGetStackByID(elem, false);
- assert(stack);
- executeOnAnimationCondition(EAnimationEvents::HIT, true, [=](){
- effectsController->displayEffect(EBattleEffect::MAGIC_MIRROR, stack->getPosition());
- });
- }
- for(auto & elem : sc->resistedCres)
- {
- auto stack = curInt->cb->battleGetStackByID(elem, false);
- assert(stack);
- executeOnAnimationCondition(EAnimationEvents::HIT, true, [=](){
- effectsController->displayEffect(EBattleEffect::RESISTANCE, stack->getPosition());
- });
- }
- //mana absorption
- if (sc->manaGained > 0)
- {
- Point leftHero = Point(15, 30) + pos;
- Point rightHero = Point(755, 30) + pos;
- bool side = sc->side;
- executeOnAnimationCondition(EAnimationEvents::AFTER_HIT, true, [=](){
- stacksController->addNewAnim(new PointEffectAnimation(*this, "", side ? "SP07_A.DEF" : "SP07_B.DEF", leftHero));
- stacksController->addNewAnim(new PointEffectAnimation(*this, "", side ? "SP07_B.DEF" : "SP07_A.DEF", rightHero));
- });
- }
- }
- void BattleInterface::battleStacksEffectsSet(const SetStackEffect & sse)
- {
- if(stacksController->getActiveStack() != nullptr)
- fieldController->redrawBackgroundWithHexes();
- }
- void BattleInterface::setHeroAnimation(ui8 side, EHeroAnimType phase)
- {
- if(side == BattleSide::ATTACKER)
- {
- if(attackingHero)
- attackingHero->setPhase(phase);
- }
- else
- {
- if(defendingHero)
- defendingHero->setPhase(phase);
- }
- }
- void BattleInterface::displayBattleLog(const std::vector<MetaString> & battleLog)
- {
- for(const auto & line : battleLog)
- {
- std::string formatted = line.toString();
- boost::algorithm::trim(formatted);
- if(!controlPanel->console->addText(formatted))
- logGlobal->warn("Too long battle log line");
- }
- }
- void BattleInterface::displaySpellAnimationQueue(const CSpell::TAnimationQueue & q, BattleHex destinationTile, bool isHit)
- {
- for(const CSpell::TAnimation & animation : q)
- {
- if(animation.pause > 0)
- stacksController->addNewAnim(new DummyAnimation(*this, animation.pause));
- else
- {
- int flags = 0;
- if (isHit)
- flags |= PointEffectAnimation::FORCE_ON_TOP;
- if (animation.verticalPosition == VerticalPosition::BOTTOM)
- flags |= PointEffectAnimation::ALIGN_TO_BOTTOM;
- if (!destinationTile.isValid())
- flags |= PointEffectAnimation::SCREEN_FILL;
- if (!destinationTile.isValid())
- stacksController->addNewAnim(new PointEffectAnimation(*this, "", animation.resourceName, flags));
- else
- stacksController->addNewAnim(new PointEffectAnimation(*this, "", animation.resourceName, destinationTile, flags));
- }
- }
- }
- void BattleInterface::displaySpellCast(SpellID spellID, BattleHex destinationTile)
- {
- const CSpell * spell = spellID.toSpell();
- if(spell)
- displaySpellAnimationQueue(spell->animationInfo.cast, destinationTile, false);
- }
- void BattleInterface::displaySpellEffect(SpellID spellID, BattleHex destinationTile)
- {
- const CSpell *spell = spellID.toSpell();
- if(spell)
- displaySpellAnimationQueue(spell->animationInfo.affect, destinationTile, false);
- }
- void BattleInterface::displaySpellHit(SpellID spellID, BattleHex destinationTile)
- {
- const CSpell * spell = spellID.toSpell();
- if(spell)
- displaySpellAnimationQueue(spell->animationInfo.hit, destinationTile, true);
- }
- void BattleInterface::setAnimSpeed(int set)
- {
- Settings speed = settings.write["battle"]["animationSpeed"];
- speed->Float() = float(set) / 100;
- }
- int BattleInterface::getAnimSpeed() const
- {
- if(settings["session"]["spectate"].Bool() && !settings["session"]["spectate-battle-speed"].isNull())
- return static_cast<int>(vstd::round(settings["session"]["spectate-battle-speed"].Float() *100));
- return static_cast<int>(vstd::round(settings["battle"]["animationSpeed"].Float() *100));
- }
- CPlayerInterface *BattleInterface::getCurrentPlayerInterface() const
- {
- return curInt.get();
- }
- void BattleInterface::trySetActivePlayer( PlayerColor player )
- {
- if ( attackerInt && attackerInt->playerID == player )
- curInt = attackerInt;
- if ( defenderInt && defenderInt->playerID == player )
- curInt = defenderInt;
- }
- void BattleInterface::activateStack()
- {
- stacksController->activateStack();
- const CStack * s = stacksController->getActiveStack();
- if(!s)
- return;
- myTurn = true;
- queue->update();
- fieldController->redrawBackgroundWithHexes();
- actionsController->activateStack();
- GH.fakeMouseMove();
- }
- void BattleInterface::endAction(const BattleAction* action)
- {
- const CStack *stack = curInt->cb->battleGetStackByID(action->stackNumber);
- stacksController->endAction(action);
- queue->update();
- //stack ended movement in tactics phase -> select the next one
- if (tacticsMode)
- tacticNextStack(stack);
- //we have activated next stack after sending request that has been just realized -> blockmap due to movement has changed
- if(action->actionType == EActionType::HERO_SPELL)
- fieldController->redrawBackgroundWithHexes();
- }
- void BattleInterface::hideQueue()
- {
- Settings showQueue = settings.write["battle"]["showQueue"];
- showQueue->Bool() = false;
- queue->deactivate();
- if (!queue->embedded)
- {
- moveBy(Point(0, -queue->pos.h / 2));
- GH.totalRedraw();
- }
- }
- void BattleInterface::showQueue()
- {
- Settings showQueue = settings.write["battle"]["showQueue"];
- showQueue->Bool() = true;
- queue->activate();
- if (!queue->embedded)
- {
- moveBy(Point(0, +queue->pos.h / 2));
- GH.totalRedraw();
- }
- }
- void BattleInterface::startAction(const BattleAction* action)
- {
- if(action->actionType == EActionType::END_TACTIC_PHASE)
- {
- controlPanel->tacticPhaseEnded();
- return;
- }
- const CStack *stack = curInt->cb->battleGetStackByID(action->stackNumber);
- if (stack)
- {
- queue->update();
- }
- else
- {
- assert(action->actionType == EActionType::HERO_SPELL); //only cast spell is valid action without acting stack number
- }
- stacksController->startAction(action);
- redraw(); // redraw after deactivation, including proper handling of hovered hexes
- if(action->actionType == EActionType::HERO_SPELL) //when hero casts spell
- return;
- if (!stack)
- {
- logGlobal->error("Something wrong with stackNumber in actionStarted. Stack number: %d", action->stackNumber);
- return;
- }
- effectsController->startAction(action);
- }
- void BattleInterface::tacticPhaseEnd()
- {
- stacksController->setActiveStack(nullptr);
- tacticsMode = false;
- }
- static bool immobile(const CStack *s)
- {
- return !s->Speed(0, true); //should bound stacks be immobile?
- }
- void BattleInterface::tacticNextStack(const CStack * current)
- {
- if (!current)
- current = stacksController->getActiveStack();
- //no switching stacks when the current one is moving
- assert(getAnimationCondition(EAnimationEvents::ACTION) == false);
- waitForAnimationCondition(EAnimationEvents::ACTION, false);
- TStacks stacksOfMine = tacticianInterface->cb->battleGetStacks(CBattleCallback::ONLY_MINE);
- vstd::erase_if (stacksOfMine, &immobile);
- if (stacksOfMine.empty())
- {
- tacticPhaseEnd();
- return;
- }
- auto it = vstd::find(stacksOfMine, current);
- if (it != stacksOfMine.end() && ++it != stacksOfMine.end())
- stackActivated(*it);
- else
- stackActivated(stacksOfMine.front());
- }
- void BattleInterface::obstaclePlaced(const std::vector<std::shared_ptr<const CObstacleInstance>> oi)
- {
- obstacleController->obstaclePlaced(oi);
- }
- const CGHeroInstance *BattleInterface::currentHero() const
- {
- if (attackingHeroInstance && attackingHeroInstance->tempOwner == curInt->playerID)
- return attackingHeroInstance;
- if (defendingHeroInstance && defendingHeroInstance->tempOwner == curInt->playerID)
- return defendingHeroInstance;
- return nullptr;
- }
- InfoAboutHero BattleInterface::enemyHero() const
- {
- InfoAboutHero ret;
- if (attackingHeroInstance->tempOwner == curInt->playerID)
- curInt->cb->getHeroInfo(defendingHeroInstance, ret);
- else
- curInt->cb->getHeroInfo(attackingHeroInstance, ret);
- return ret;
- }
- void BattleInterface::requestAutofightingAIToTakeAction()
- {
- assert(curInt->isAutoFightOn);
- boost::thread aiThread([&]()
- {
- auto ba = make_unique<BattleAction>(curInt->autofightingAI->activeStack(stacksController->getActiveStack()));
- if(curInt->cb->battleIsFinished())
- {
- return; // battle finished with spellcast
- }
- if (curInt->isAutoFightOn)
- {
- if (tacticsMode)
- {
- // Always end tactics mode. Player interface is blocked currently, so it's not possible that
- // the AI can take any action except end tactics phase (AI actions won't be triggered)
- //TODO implement the possibility that the AI will be triggered for further actions
- //TODO any solution to merge tactics phase & normal phase in the way it is handled by the player and battle interface?
- stacksController->setActiveStack(nullptr);
- tacticsMode = false;
- }
- else
- {
- givenCommand.setn(ba.release());
- }
- }
- else
- {
- boost::unique_lock<boost::recursive_mutex> un(*CPlayerInterface::pim);
- activateStack();
- }
- });
- aiThread.detach();
- }
- void BattleInterface::showAll(SDL_Surface *to)
- {
- show(to);
- }
- void BattleInterface::show(SDL_Surface *to)
- {
- Canvas canvas(to);
- assert(to);
- SDL_Rect buf;
- SDL_GetClipRect(to, &buf);
- SDL_SetClipRect(to, &pos);
- ++animCount;
- fieldController->renderBattlefield(canvas);
- stacksController->update();
- SDL_SetClipRect(to, &buf); //restoring previous clip_rect
- showInterface(to);
- }
- void BattleInterface::collectRenderableObjects(BattleRenderer & renderer)
- {
- if (attackingHero)
- {
- renderer.insert(EBattleFieldLayer::HEROES, BattleHex(0),[this](BattleRenderer::RendererRef canvas)
- {
- attackingHero->render(canvas);
- });
- }
- if (defendingHero)
- {
- renderer.insert(EBattleFieldLayer::HEROES, BattleHex(GameConstants::BFIELD_WIDTH-1),[this](BattleRenderer::RendererRef canvas)
- {
- defendingHero->render(canvas);
- });
- }
- }
- void BattleInterface::showInterface(SDL_Surface * to)
- {
- //showing in-game console
- LOCPLINT->cingconsole->show(to);
- controlPanel->showAll(to);
- Rect posWithQueue = Rect(pos.x, pos.y, 800, 600);
- if (settings["battle"]["showQueue"].Bool())
- {
- if (!queue->embedded)
- {
- posWithQueue.y -= queue->pos.h;
- posWithQueue.h += queue->pos.h;
- }
- queue->showAll(to);
- }
- //printing border around interface
- if (screen->w != 800 || screen->h !=600)
- {
- CMessage::drawBorder(curInt->playerID,to,posWithQueue.w + 28, posWithQueue.h + 28, posWithQueue.x-14, posWithQueue.y-15);
- }
- }
- void BattleInterface::castThisSpell(SpellID spellID)
- {
- actionsController->castThisSpell(spellID);
- }
- void BattleInterface::setAnimationCondition( EAnimationEvents event, bool state)
- {
- logAnim->debug("setAnimationCondition: %d -> %s", static_cast<int>(event), state ? "ON" : "OFF");
- size_t index = static_cast<size_t>(event);
- animationEvents[index].setn(state);
- for (auto it = awaitingEvents.begin(); it != awaitingEvents.end();)
- {
- if (it->event == event && it->eventState == state)
- {
- it->action();
- it = awaitingEvents.erase(it);
- }
- else
- ++it;
- }
- }
- bool BattleInterface::getAnimationCondition( EAnimationEvents event)
- {
- size_t index = static_cast<size_t>(event);
- return animationEvents[index].get();
- }
- void BattleInterface::waitForAnimationCondition( EAnimationEvents event, bool state)
- {
- auto unlockPim = vstd::makeUnlockGuard(*CPlayerInterface::pim);
- size_t index = static_cast<size_t>(event);
- animationEvents[index].waitUntil(state);
- }
- void BattleInterface::executeOnAnimationCondition( EAnimationEvents event, bool state, const AwaitingAnimationAction & action)
- {
- awaitingEvents.push_back({action, event, state});
- }
|