CBattleInterface.cpp 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663
  1. #include "StdInc.h"
  2. #include "CBattleInterface.h"
  3. #include "../CGameInfo.h"
  4. #include "../UIFramework/SDL_Extensions.h"
  5. #include "../CAdvmapInterface.h"
  6. #include "../CAnimation.h"
  7. #include "../../lib/CObjectHandler.h"
  8. #include "../../lib/CHeroHandler.h"
  9. #include "../CDefHandler.h"
  10. #include "../../lib/CSpellHandler.h"
  11. #include "../CMusicHandler.h"
  12. #include "../CMessage.h"
  13. #include "../../CCallback.h"
  14. #include "../../lib/BattleState.h"
  15. #include "../../lib/CGeneralTextHandler.h"
  16. #include "CCreatureAnimation.h"
  17. #include "../Graphics.h"
  18. #include "../CSpellWindow.h"
  19. #include "../../lib/CConfigHandler.h"
  20. #include "../../lib/CondSh.h"
  21. #include "../../lib/NetPacks.h"
  22. #include "../CPlayerInterface.h"
  23. #include "../CCreatureWindow.h"
  24. #include "../CVideoHandler.h"
  25. #include "../../lib/CTownHandler.h"
  26. #include "../../lib/Mapping/CMap.h"
  27. #include "CBattleAnimations.h"
  28. #include "CBattleInterfaceClasses.h"
  29. #include "../UIFramework/CCursorHandler.h"
  30. #include "../UIFramework/CGuiHandler.h"
  31. #ifndef __GNUC__
  32. const double M_PI = 3.14159265358979323846;
  33. #else
  34. #define _USE_MATH_DEFINES
  35. #include <cmath>
  36. #endif
  37. #include "../../lib/UnlockGuard.h"
  38. using namespace boost::assign;
  39. const time_t CBattleInterface::HOVER_ANIM_DELTA = 1;
  40. /*
  41. * CBattleInterface.cpp, part of VCMI engine
  42. *
  43. * Authors: listed in file AUTHORS in main folder
  44. *
  45. * License: GNU General Public License v2.0 or later
  46. * Full text of license available in license.txt file, in main folder
  47. *
  48. */
  49. extern SDL_Surface * screen;
  50. CondSh<bool> CBattleInterface::animsAreDisplayed;
  51. struct CMP_stack2
  52. {
  53. inline bool operator ()(const CStack& a, const CStack& b)
  54. {
  55. return (a.Speed())>(b.Speed());
  56. }
  57. } cmpst2 ;
  58. static void transformPalette(SDL_Surface * surf, double rCor, double gCor, double bCor)
  59. {
  60. SDL_Color * colorsToChange = surf->format->palette->colors;
  61. for(int g=0; g<surf->format->palette->ncolors; ++g)
  62. {
  63. if((colorsToChange+g)->b != 132 &&
  64. (colorsToChange+g)->g != 231 &&
  65. (colorsToChange+g)->r != 255) //it's not yellow border
  66. {
  67. (colorsToChange+g)->r = static_cast<double>((colorsToChange+g)->r) * rCor;
  68. (colorsToChange+g)->g = static_cast<double>((colorsToChange+g)->g) * gCor;
  69. (colorsToChange+g)->b = static_cast<double>((colorsToChange+g)->b) * bCor;
  70. }
  71. }
  72. }
  73. //////////////////////
  74. void CBattleInterface::addNewAnim(CBattleAnimation * anim)
  75. {
  76. pendingAnims.push_back( std::make_pair(anim, false) );
  77. animsAreDisplayed.setn(true);
  78. }
  79. CBattleInterface::CBattleInterface(const CCreatureSet * army1, const CCreatureSet * army2, CGHeroInstance *hero1, CGHeroInstance *hero2, const SDL_Rect & myRect, CPlayerInterface * att, CPlayerInterface * defen)
  80. : queue(NULL), attackingHeroInstance(hero1), defendingHeroInstance(hero2), animCount(0),
  81. activeStack(NULL), stackToActivate(NULL), selectedStack(NULL), mouseHoveredStack(-1), lastMouseHoveredStackAnimationTime(-1), previouslyHoveredHex(-1),
  82. currentlyHoveredHex(-1), attackingHex(-1), tacticianInterface(NULL), stackCanCastSpell(false), creatureCasting(false), spellDestSelectMode(false), spellSelMode(NO_LOCATION), spellToCast(NULL), sp(NULL),
  83. siegeH(NULL), attackerInt(att), defenderInt(defen), curInt(att), animIDhelper(0),
  84. givenCommand(NULL), myTurn(false), resWindow(NULL), moveStarted(false), moveSh(-1), bresult(NULL)
  85. {
  86. OBJ_CONSTRUCTION;
  87. if(!curInt) curInt = LOCPLINT; //may happen when we are defending during network MP game
  88. animsAreDisplayed.setn(false);
  89. pos = myRect;
  90. strongInterest = true;
  91. givenCommand = new CondSh<BattleAction *>(NULL);
  92. if(attackerInt && attackerInt->cb->battleGetTacticDist()) //hotseat -> check tactics for both players (defender may be local human)
  93. tacticianInterface = attackerInt;
  94. else if(defenderInt && defenderInt->cb->battleGetTacticDist())
  95. tacticianInterface = defenderInt;
  96. tacticsMode = tacticianInterface; //if we found interface of player with tactics, then enter tactics mode
  97. //create stack queue
  98. bool embedQueue = screen->h < 700;
  99. queue = new CStackQueue(embedQueue, this);
  100. if(!embedQueue)
  101. {
  102. if(settings["battle"]["showQueue"].Bool())
  103. pos.y += queue->pos.h / 2; //center whole window
  104. queue->moveTo(Point(pos.x, pos.y - queue->pos.h));
  105. // queue->pos.x = pos.x;
  106. // queue->pos.y = pos.y - queue->pos.h;
  107. // pos.h += queue->pos.h;
  108. // center();
  109. }
  110. queue->update();
  111. //preparing siege info
  112. const CGTownInstance * town = curInt->cb->battleGetDefendedTown();
  113. if(town && town->hasFort())
  114. {
  115. siegeH = new SiegeHelper(town, this);
  116. }
  117. curInt->battleInt = this;
  118. //initializing armies
  119. this->army1 = army1;
  120. this->army2 = army2;
  121. std::vector<const CStack*> stacks = curInt->cb->battleGetAllStacks();
  122. BOOST_FOREACH(const CStack *s, stacks)
  123. {
  124. newStack(s);
  125. }
  126. //preparing menu background and terrain
  127. if(siegeH)
  128. {
  129. background = BitmapHandler::loadBitmap( siegeH->getSiegeName(0), false );
  130. ui8 siegeLevel = curInt->cb->battleGetSiegeLevel();
  131. if(siegeLevel >= 2) //citadel or castle
  132. {
  133. //print moat/mlip
  134. SDL_Surface * moat = BitmapHandler::loadBitmap( siegeH->getSiegeName(13) ),
  135. * mlip = BitmapHandler::loadBitmap( siegeH->getSiegeName(14) );
  136. auto & info = siegeH->town->town->clientInfo;
  137. Point moatPos(info.siegePositions[13].x, info.siegePositions[13].y);
  138. Point mlipPos(info.siegePositions[14].x, info.siegePositions[14].y);
  139. if(moat) //eg. tower has no moat
  140. blitAt(moat, moatPos.x,moatPos.y, background);
  141. if(mlip) //eg. tower has no mlip
  142. blitAt(mlip, mlipPos.x, mlipPos.y, background);
  143. SDL_FreeSurface(moat);
  144. SDL_FreeSurface(mlip);
  145. }
  146. }
  147. else
  148. {
  149. std::vector< std::string > & backref = graphics->battleBacks[ curInt->cb->battleGetBattlefieldType() ];
  150. background = BitmapHandler::loadBitmap(backref[ rand() % backref.size()], false );
  151. }
  152. //preparing menu background
  153. //graphics->blueToPlayersAdv(menu, hero1->tempOwner);
  154. //preparing graphics for displaying amounts of creatures
  155. amountNormal = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  156. CSDL_Ext::alphaTransform(amountNormal);
  157. transformPalette(amountNormal, 0.59, 0.19, 0.93);
  158. amountPositive = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  159. CSDL_Ext::alphaTransform(amountPositive);
  160. transformPalette(amountPositive, 0.18, 1.00, 0.18);
  161. amountNegative = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  162. CSDL_Ext::alphaTransform(amountNegative);
  163. transformPalette(amountNegative, 1.00, 0.18, 0.18);
  164. amountEffNeutral = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  165. CSDL_Ext::alphaTransform(amountEffNeutral);
  166. transformPalette(amountEffNeutral, 1.00, 1.00, 0.18);
  167. ////blitting menu background and terrain
  168. // blitAt(background, pos.x, pos.y);
  169. // blitAt(menu, pos.x, 556 + pos.y);
  170. //preparing buttons and console
  171. bOptions = new CAdventureMapButton (CGI->generaltexth->zelp[381].first, CGI->generaltexth->zelp[381].second, boost::bind(&CBattleInterface::bOptionsf,this), 3, 561, "icm003.def", SDLK_o);
  172. bSurrender = new CAdventureMapButton (CGI->generaltexth->zelp[379].first, CGI->generaltexth->zelp[379].second, boost::bind(&CBattleInterface::bSurrenderf,this), 54, 561, "icm001.def", SDLK_s);
  173. bFlee = new CAdventureMapButton (CGI->generaltexth->zelp[380].first, CGI->generaltexth->zelp[380].second, boost::bind(&CBattleInterface::bFleef,this), 105, 561, "icm002.def", SDLK_r);
  174. bFlee->block(!curInt->cb->battleCanFlee());
  175. bSurrender->block(curInt->cb->battleGetSurrenderCost() < 0);
  176. bAutofight = new CAdventureMapButton (CGI->generaltexth->zelp[382].first, CGI->generaltexth->zelp[382].second, boost::bind(&CBattleInterface::bAutofightf,this), 157, 561, "icm004.def", SDLK_a);
  177. bSpell = new CAdventureMapButton (CGI->generaltexth->zelp[385].first, CGI->generaltexth->zelp[385].second, boost::bind(&CBattleInterface::bSpellf,this), 645, 561, "icm005.def", SDLK_c);
  178. bSpell->block(true);
  179. bWait = new CAdventureMapButton (CGI->generaltexth->zelp[386].first, CGI->generaltexth->zelp[386].second, boost::bind(&CBattleInterface::bWaitf,this), 696, 561, "icm006.def", SDLK_w);
  180. bDefence = new CAdventureMapButton (CGI->generaltexth->zelp[387].first, CGI->generaltexth->zelp[387].second, boost::bind(&CBattleInterface::bDefencef,this), 747, 561, "icm007.def", SDLK_d);
  181. bDefence->assignedKeys.insert(SDLK_SPACE);
  182. bConsoleUp = new CAdventureMapButton (std::string(), std::string(), boost::bind(&CBattleInterface::bConsoleUpf,this), 624, 561, "ComSlide.def", SDLK_UP);
  183. bConsoleDown = new CAdventureMapButton (std::string(), std::string(), boost::bind(&CBattleInterface::bConsoleDownf,this), 624, 580, "ComSlide.def", SDLK_DOWN);
  184. bConsoleDown->setOffset(2);
  185. console = new CBattleConsole();
  186. console->pos.x += 211;
  187. console->pos.y += 560;
  188. console->pos.w = 406;
  189. console->pos.h = 38;
  190. if(tacticsMode)
  191. {
  192. btactNext = new CAdventureMapButton(std::string(), std::string(), boost::bind(&CBattleInterface::bTacticNextStack,this, (CStack*)NULL), 213, 560, "icm011.def", SDLK_SPACE);
  193. btactEnd = new CAdventureMapButton(std::string(), std::string(), boost::bind(&CBattleInterface::bEndTacticPhase,this), 419, 560, "icm012.def", SDLK_RETURN);
  194. bDefence->block(true);
  195. bWait->block(true);
  196. menu = BitmapHandler::loadBitmap("COPLACBR.BMP");
  197. }
  198. else
  199. {
  200. menu = BitmapHandler::loadBitmap("CBAR.BMP");
  201. btactEnd = btactNext = NULL;
  202. }
  203. graphics->blueToPlayersAdv(menu, curInt->playerID);
  204. //loading hero animations
  205. if(hero1) // attacking hero
  206. {
  207. std::string battleImage;
  208. if ( hero1->sex )
  209. battleImage = hero1->type->heroClass->imageBattleFemale;
  210. else
  211. battleImage = hero1->type->heroClass->imageBattleMale;
  212. attackingHero = new CBattleHero(battleImage, false, hero1->tempOwner, hero1->tempOwner == curInt->playerID ? hero1 : NULL, this);
  213. attackingHero->pos = genRect(attackingHero->dh->ourImages[0].bitmap->h, attackingHero->dh->ourImages[0].bitmap->w, pos.x - 43, pos.y - 19);
  214. }
  215. else
  216. {
  217. attackingHero = NULL;
  218. }
  219. if(hero2) // defending hero
  220. {
  221. std::string battleImage;
  222. if ( hero2->sex )
  223. battleImage = hero2->type->heroClass->imageBattleFemale;
  224. else
  225. battleImage = hero2->type->heroClass->imageBattleMale;
  226. defendingHero = new CBattleHero(battleImage, true, hero2->tempOwner, hero2->tempOwner == curInt->playerID ? hero2 : NULL, this);
  227. defendingHero->pos = genRect(defendingHero->dh->ourImages[0].bitmap->h, defendingHero->dh->ourImages[0].bitmap->w, pos.x + 693, pos.y - 19);
  228. }
  229. else
  230. {
  231. defendingHero = NULL;
  232. }
  233. //preparing cells and hexes
  234. cellBorder = BitmapHandler::loadBitmap("CCELLGRD.BMP");
  235. CSDL_Ext::alphaTransform(cellBorder);
  236. cellShade = BitmapHandler::loadBitmap("CCELLSHD.BMP");
  237. CSDL_Ext::alphaTransform(cellShade);
  238. for(int h = 0; h < GameConstants::BFIELD_SIZE; ++h)
  239. {
  240. CClickableHex *hex = new CClickableHex();
  241. hex->myNumber = h;
  242. hex->pos = hexPosition(h);
  243. hex->accessible = true;
  244. hex->myInterface = this;
  245. bfield.push_back(hex);
  246. }
  247. //locking occupied positions on batlefield
  248. BOOST_FOREACH(const CStack *s, stacks) //stacks gained at top of this function
  249. if(s->position >= 0) //turrets have position < 0
  250. bfield[s->position]->accessible = false;
  251. //loading projectiles for units
  252. BOOST_FOREACH(const CStack *s, stacks)
  253. {
  254. if(s->getCreature()->isShooting())
  255. {
  256. CDefHandler *&projectile = idToProjectile[s->getCreature()->idNumber];
  257. const CCreature * creature;//creature whose shots should be loaded
  258. if (s->getCreature()->idNumber == CreatureID::ARROW_TOWERS)
  259. creature = CGI->creh->creatures[siegeH->town->town->clientInfo.siegeShooter];
  260. else
  261. creature = s->getCreature();
  262. projectile = CDefHandler::giveDef(creature->animation.projectileImageName);
  263. if(projectile->ourImages.size() > 2) //add symmetric images
  264. {
  265. for(int k = projectile->ourImages.size()-2; k > 1; --k)
  266. {
  267. Cimage ci;
  268. ci.bitmap = CSDL_Ext::rotate01(projectile->ourImages[k].bitmap);
  269. ci.groupNumber = 0;
  270. ci.imName = std::string();
  271. projectile->ourImages.push_back(ci);
  272. }
  273. }
  274. for(size_t s = 0; s < projectile->ourImages.size(); ++s) //alpha transforming
  275. {
  276. CSDL_Ext::alphaTransform(projectile->ourImages[s].bitmap);
  277. }
  278. }
  279. }
  280. //preparing graphic with cell borders
  281. cellBorders = CSDL_Ext::newSurface(background->w, background->h, cellBorder);
  282. //copying palette
  283. for(int g=0; g<cellBorder->format->palette->ncolors; ++g) //we assume that cellBorders->format->palette->ncolors == 256
  284. {
  285. cellBorders->format->palette->colors[g] = cellBorder->format->palette->colors[g];
  286. }
  287. //palette copied
  288. for(int i=0; i<GameConstants::BFIELD_HEIGHT; ++i) //rows
  289. {
  290. for(int j=0; j<GameConstants::BFIELD_WIDTH-2; ++j) //columns
  291. {
  292. int x = 58 + (i%2==0 ? 22 : 0) + 44*j;
  293. int y = 86 + 42 * i;
  294. for(int cellX = 0; cellX < cellBorder->w; ++cellX)
  295. {
  296. for(int cellY = 0; cellY < cellBorder->h; ++cellY)
  297. {
  298. if(y+cellY < cellBorders->h && x+cellX < cellBorders->w)
  299. * ((Uint8*)cellBorders->pixels + (y+cellY) * cellBorders->pitch + (x+cellX)) |= * ((Uint8*)cellBorder->pixels + cellY * cellBorder->pitch + cellX);
  300. }
  301. }
  302. }
  303. }
  304. backgroundWithHexes = CSDL_Ext::newSurface(background->w, background->h, screen);
  305. //preparing obstacle defs
  306. auto obst = curInt->cb->battleGetAllObstacles();
  307. for(size_t t = 0; t < obst.size(); ++t)
  308. {
  309. const int ID = obst[t]->ID;
  310. if(obst[t]->obstacleType == CObstacleInstance::USUAL)
  311. {
  312. idToObstacle[ID] = CDefHandler::giveDef(obst[t]->getInfo().defName);
  313. for(size_t n = 0; n < idToObstacle[ID]->ourImages.size(); ++n)
  314. {
  315. SDL_SetColorKey(idToObstacle[ID]->ourImages[n].bitmap, SDL_SRCCOLORKEY, SDL_MapRGB(idToObstacle[ID]->ourImages[n].bitmap->format,0,255,255));
  316. }
  317. }
  318. else if(obst[t]->obstacleType == CObstacleInstance::ABSOLUTE_OBSTACLE)
  319. {
  320. idToAbsoluteObstacle[ID] = BitmapHandler::loadBitmap(obst[t]->getInfo().defName);
  321. }
  322. }
  323. quicksand = CDefHandler::giveDef("C17SPE1.DEF");
  324. landMine = CDefHandler::giveDef("C09SPF1.DEF");
  325. fireWall = CDefHandler::giveDef("C07SPF61");
  326. bigForceField[0] = CDefHandler::giveDef("C15SPE10.DEF");
  327. bigForceField[1] = CDefHandler::giveDef("C15SPE7.DEF");
  328. smallForceField[0] = CDefHandler::giveDef("C15SPE1.DEF");
  329. smallForceField[1] = CDefHandler::giveDef("C15SPE4.DEF");
  330. BOOST_FOREACH(auto hex, bfield)
  331. addChild(hex);
  332. if(tacticsMode)
  333. bTacticNextStack();
  334. CCS->musich->stopMusic();
  335. int channel = CCS->soundh->playSoundFromSet(CCS->soundh->battleIntroSounds);
  336. auto onIntroPlayed = []()
  337. {
  338. if (LOCPLINT->battleInt)
  339. CCS->musich->playMusicFromSet("battle", true);
  340. };
  341. CCS->soundh->setCallback(channel, onIntroPlayed);
  342. memset(stackCountOutsideHexes, 1, GameConstants::BFIELD_SIZE * sizeof(bool)); //initialize array with trues
  343. currentAction = INVALID;
  344. selectedAction = INVALID;
  345. addUsedEvents(RCLICK | MOVE | KEYBOARD);
  346. }
  347. CBattleInterface::~CBattleInterface()
  348. {
  349. curInt->battleInt = NULL;
  350. givenCommand->cond.notify_all(); //that two lines should make any activeStack waiting thread to finish
  351. if (active) //dirty fix for #485
  352. {
  353. deactivate();
  354. }
  355. SDL_FreeSurface(background);
  356. SDL_FreeSurface(menu);
  357. SDL_FreeSurface(amountNormal);
  358. SDL_FreeSurface(amountNegative);
  359. SDL_FreeSurface(amountPositive);
  360. SDL_FreeSurface(amountEffNeutral);
  361. SDL_FreeSurface(cellBorders);
  362. SDL_FreeSurface(backgroundWithHexes);
  363. delete bOptions;
  364. delete bSurrender;
  365. delete bFlee;
  366. delete bAutofight;
  367. delete bSpell;
  368. delete bWait;
  369. delete bDefence;
  370. BOOST_FOREACH(auto hex, bfield)
  371. delete hex;
  372. delete bConsoleUp;
  373. delete bConsoleDown;
  374. delete console;
  375. delete givenCommand;
  376. delete attackingHero;
  377. delete defendingHero;
  378. delete queue;
  379. SDL_FreeSurface(cellBorder);
  380. SDL_FreeSurface(cellShade);
  381. for(std::map< int, CCreatureAnimation * >::iterator g=creAnims.begin(); g!=creAnims.end(); ++g)
  382. delete g->second;
  383. for(std::map< int, CDefHandler * >::iterator g=idToProjectile.begin(); g!=idToProjectile.end(); ++g)
  384. delete g->second;
  385. for(std::map< int, CDefHandler * >::iterator g=idToObstacle.begin(); g!=idToObstacle.end(); ++g)
  386. delete g->second;
  387. delete quicksand;
  388. delete landMine;
  389. delete fireWall;
  390. delete smallForceField[0];
  391. delete smallForceField[1];
  392. delete bigForceField[0];
  393. delete bigForceField[1];
  394. delete siegeH;
  395. //TODO: play AI tracks if battle was during AI turn
  396. //if (!curInt->makingTurn)
  397. //CCS->musich->playMusicFromSet(CCS->musich->aiMusics, -1);
  398. if(adventureInt && adventureInt->selection)
  399. {
  400. int terrain = LOCPLINT->cb->getTile(adventureInt->selection->visitablePos())->terType;
  401. CCS->musich->playMusicFromSet("terrain", terrain, true);
  402. }
  403. }
  404. void CBattleInterface::setPrintCellBorders(bool set)
  405. {
  406. Settings cellBorders = settings.write["battle"]["cellBorders"];
  407. cellBorders->Bool() = set;
  408. redrawBackgroundWithHexes(activeStack);
  409. GH.totalRedraw();
  410. }
  411. void CBattleInterface::setPrintStackRange(bool set)
  412. {
  413. Settings stackRange = settings.write["battle"]["stackRange"];
  414. stackRange->Bool() = set;
  415. redrawBackgroundWithHexes(activeStack);
  416. GH.totalRedraw();
  417. }
  418. void CBattleInterface::setPrintMouseShadow(bool set)
  419. {
  420. Settings shadow = settings.write["battle"]["mouseShadow"];
  421. shadow->Bool() = set;
  422. }
  423. void CBattleInterface::activate()
  424. {
  425. CIntObject::activate();
  426. bOptions->activate();
  427. bSurrender->activate();
  428. bFlee->activate();
  429. bAutofight->activate();
  430. bSpell->activate();
  431. bWait->activate();
  432. bDefence->activate();
  433. BOOST_FOREACH(auto hex, bfield)
  434. hex->activate();
  435. if(attackingHero)
  436. attackingHero->activate();
  437. if(defendingHero)
  438. defendingHero->activate();
  439. if(settings["battle"]["showQueue"].Bool())
  440. queue->activate();
  441. if(tacticsMode)
  442. {
  443. btactNext->activate();
  444. btactEnd->activate();
  445. }
  446. else
  447. {
  448. bConsoleUp->activate();
  449. bConsoleDown->activate();
  450. }
  451. LOCPLINT->cingconsole->activate();
  452. }
  453. void CBattleInterface::deactivate()
  454. {
  455. CIntObject::deactivate();
  456. bOptions->deactivate();
  457. bSurrender->deactivate();
  458. bFlee->deactivate();
  459. bAutofight->deactivate();
  460. bSpell->deactivate();
  461. bWait->deactivate();
  462. bDefence->deactivate();
  463. BOOST_FOREACH(auto hex, bfield)
  464. hex->deactivate();
  465. if(attackingHero)
  466. attackingHero->deactivate();
  467. if(defendingHero)
  468. defendingHero->deactivate();
  469. if(settings["battle"]["showQueue"].Bool())
  470. queue->deactivate();
  471. if(tacticsMode)
  472. {
  473. btactNext->deactivate();
  474. btactEnd->deactivate();
  475. }
  476. else
  477. {
  478. bConsoleUp->deactivate();
  479. bConsoleDown->deactivate();
  480. }
  481. LOCPLINT->cingconsole->deactivate();
  482. }
  483. void CBattleInterface::showAll(SDL_Surface * to)
  484. {
  485. show(to);
  486. }
  487. void CBattleInterface::show(SDL_Surface * to)
  488. {
  489. std::vector<const CStack*> stacks = curInt->cb->battleGetAllStacks(); //used in a few places
  490. ++animCount;
  491. if(!to) //"evaluating" to
  492. to = screen;
  493. SDL_Rect buf;
  494. SDL_GetClipRect(to, &buf);
  495. SDL_SetClipRect(to, &pos);
  496. //printing background and hexes
  497. if(activeStack != NULL && creAnims[activeStack->ID]->getType() != CCreatureAnim::MOVING) //show everything with range
  498. {
  499. blitAt(backgroundWithHexes, pos.x, pos.y, to);
  500. }
  501. else
  502. {
  503. //showing background
  504. blitAt(background, pos.x, pos.y, to);
  505. if(settings["battle"]["cellBorders"].Bool())
  506. {
  507. CSDL_Ext::blit8bppAlphaTo24bpp(cellBorders, NULL, to, &pos);
  508. }
  509. //Blit absolute obstacles
  510. BOOST_FOREACH(auto &oi, curInt->cb->battleGetAllObstacles())
  511. if(oi->obstacleType == CObstacleInstance::ABSOLUTE_OBSTACLE)
  512. blitAt(imageOfObstacle(*oi), pos.x + oi->getInfo().width, pos.y + oi->getInfo().height, to);
  513. }
  514. //printing hovered cell
  515. for(int b=0; b<GameConstants::BFIELD_SIZE; ++b)
  516. {
  517. if(bfield[b]->strictHovered && bfield[b]->hovered)
  518. {
  519. if(previouslyHoveredHex == -1) previouslyHoveredHex = b; //something to start with
  520. if(currentlyHoveredHex == -1) currentlyHoveredHex = b; //something to start with
  521. if(currentlyHoveredHex != b) //repair hover info
  522. {
  523. previouslyHoveredHex = currentlyHoveredHex;
  524. currentlyHoveredHex = b;
  525. }
  526. //print shade
  527. if(spellToCast) //when casting spell
  528. {
  529. //calculating spell school level
  530. const CSpell & spToCast = *CGI->spellh->spells[spellToCast->additionalInfo];
  531. ui8 schoolLevel = 0;
  532. if (activeStack->attackerOwned)
  533. {
  534. if(attackingHeroInstance)
  535. schoolLevel = attackingHeroInstance->getSpellSchoolLevel(&spToCast);
  536. }
  537. else
  538. {
  539. if (defendingHeroInstance)
  540. schoolLevel = defendingHeroInstance->getSpellSchoolLevel(&spToCast);
  541. }
  542. //obtaining range and printing it
  543. auto shaded = spToCast.rangeInHexes(b, schoolLevel, curInt->cb->battleGetMySide());
  544. BOOST_FOREACH(auto shadedHex, shaded) //for spells with range greater then one hex
  545. {
  546. if(settings["battle"]["mouseShadow"].Bool() && (shadedHex % GameConstants::BFIELD_WIDTH != 0) && (shadedHex % GameConstants::BFIELD_WIDTH != 16))
  547. {
  548. int x = 14 + ((shadedHex/GameConstants::BFIELD_WIDTH)%2==0 ? 22 : 0) + 44*(shadedHex%GameConstants::BFIELD_WIDTH) + pos.x;
  549. int y = 86 + 42 * (shadedHex/GameConstants::BFIELD_WIDTH) + pos.y;
  550. SDL_Rect temp_rect = genRect(cellShade->h, cellShade->w, x, y);
  551. CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, to, &temp_rect);
  552. }
  553. }
  554. }
  555. else if(settings["battle"]["mouseShadow"].Bool()) //when not casting spell
  556. {//TODO: do not check it every frame
  557. if (activeStack) //highlight all attackable hexes
  558. {
  559. std::set<BattleHex> set = curInt->cb->battleGetAttackedHexes(activeStack, currentlyHoveredHex, attackingHex);
  560. BOOST_FOREACH(BattleHex hex, set)
  561. {
  562. int x = 14 + ((hex/GameConstants::BFIELD_WIDTH)%2==0 ? 22 : 0) + 44*(hex%GameConstants::BFIELD_WIDTH) + pos.x;
  563. int y = 86 + 42 * (hex/GameConstants::BFIELD_WIDTH) + pos.y;
  564. SDL_Rect temp_rect = genRect(cellShade->h, cellShade->w, x, y);
  565. CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, to, &temp_rect);
  566. }
  567. }
  568. //patch by ench0: show enemy stack movement shadow
  569. // activeStack == NULL means it is opponent's turn...
  570. if(activeStack && settings["battle"]["stackRange"].Bool())
  571. {
  572. // display the movement shadow of the stack at b (i.e. stack under mouse)
  573. const CStack * const shere = curInt->cb->battleGetStackByPos(b, false);
  574. if (shere && shere != activeStack && shere->alive())
  575. {
  576. std::vector<BattleHex> v = curInt->cb->battleGetAvailableHexes(shere, true );
  577. BOOST_FOREACH (BattleHex hex, v)
  578. {
  579. int x = 14 + ((hex / GameConstants::BFIELD_WIDTH ) % 2 == 0 ? 22 : 0) + 44 * (hex % GameConstants::BFIELD_WIDTH) + pos.x;
  580. int y = 86 + 42 * (hex / GameConstants::BFIELD_WIDTH) + pos.y;
  581. SDL_Rect temp_rect = genRect (cellShade->h, cellShade->w, x, y);
  582. CSDL_Ext::blit8bppAlphaTo24bpp (cellShade, NULL, to, &temp_rect);
  583. }
  584. }
  585. }
  586. //always highlight pointed hex
  587. int x = 14 + ((b/GameConstants::BFIELD_WIDTH)%2==0 ? 22 : 0) + 44*(b%GameConstants::BFIELD_WIDTH) + pos.x;
  588. int y = 86 + 42 * (b/GameConstants::BFIELD_WIDTH) + pos.y;
  589. SDL_Rect temp_rect = genRect(cellShade->h, cellShade->w, x, y);
  590. CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, to, &temp_rect);
  591. }
  592. }
  593. }
  594. SDL_SetClipRect(to, &buf); //restoring previous clip_rect
  595. //prevents blitting outside this window
  596. SDL_GetClipRect(to, &buf);
  597. SDL_SetClipRect(to, &pos);
  598. //preparing obstacles to be shown
  599. auto obstacles = curInt->cb->battleGetAllObstacles();
  600. std::multimap<BattleHex, int> hexToObstacle;
  601. for(size_t b = 0; b < obstacles.size(); ++b)
  602. {
  603. const auto &oi = obstacles[b];
  604. if(oi->obstacleType != CObstacleInstance::ABSOLUTE_OBSTACLE && oi->obstacleType != CObstacleInstance::MOAT)
  605. {
  606. //BattleHex position = CGI->heroh->obstacles.find(obstacles[b].ID)->second.getMaxBlocked(obstacles[b].pos);
  607. hexToObstacle.insert(std::make_pair(oi->pos, b));
  608. }
  609. }
  610. ////showing units //a lot of work...
  611. std::vector<const CStack *> stackAliveByHex[GameConstants::BFIELD_SIZE];
  612. //double loop because dead stacks should be printed first
  613. for (size_t i = 0; i < stacks.size(); i++)
  614. {
  615. const CStack *s = stacks[i];
  616. if(creAnims.find(s->ID) == creAnims.end()) //e.g. for summoned but not yet handled stacks
  617. continue;
  618. if(creAnims[s->ID]->getType() != CCreatureAnim::DEATH && s->position >= 0) //don't show turrets here
  619. stackAliveByHex[s->position].push_back(s);
  620. }
  621. std::vector<const CStack *> stackDeadByHex[GameConstants::BFIELD_SIZE];
  622. for (size_t i = 0; i < stacks.size(); i++)
  623. {
  624. const CStack *s = stacks[i];
  625. if(creAnims.find(s->ID) == creAnims.end()) //e.g. for summoned but not yet handled stacks
  626. continue;
  627. if(creAnims[s->ID]->getType() == CCreatureAnim::DEATH)
  628. stackDeadByHex[s->position].push_back(s);
  629. }
  630. //handle animations
  631. for(std::list<std::pair<CBattleAnimation *, bool> >::iterator it = pendingAnims.begin(); it != pendingAnims.end(); ++it)
  632. {
  633. if(!it->first) //this animation should be deleted
  634. continue;
  635. if(!it->second)
  636. {
  637. it->second = it->first->init();
  638. }
  639. if(it->second && it->first)
  640. it->first->nextFrame();
  641. }
  642. //delete anims
  643. int preSize = pendingAnims.size();
  644. for(std::list<std::pair<CBattleAnimation *, bool> >::iterator it = pendingAnims.begin(); it != pendingAnims.end(); ++it)
  645. {
  646. if(it->first == NULL)
  647. {
  648. pendingAnims.erase(it);
  649. it = pendingAnims.begin();
  650. break;
  651. }
  652. }
  653. if(preSize > 0 && pendingAnims.size() == 0)
  654. {
  655. //action finished, restore the interface
  656. if(!active)
  657. activate();
  658. bool changedStack = false;
  659. //activation of next stack
  660. if(pendingAnims.size() == 0 && stackToActivate != NULL)
  661. {
  662. activateStack();
  663. changedStack = true;
  664. }
  665. //anims ended
  666. animsAreDisplayed.setn(false);
  667. if(changedStack)
  668. {
  669. //we may have changed active interface (another side in hot-seat),
  670. // so we can't continue drawing with old setting. So we call ourselves again and end.
  671. SDL_SetClipRect(to, &buf); //restoring previous clip_rect
  672. show(to);
  673. return;
  674. }
  675. }
  676. for(int b=0; b<GameConstants::BFIELD_SIZE; ++b) //showing dead stacks
  677. {
  678. for(size_t v=0; v<stackDeadByHex[b].size(); ++v)
  679. {
  680. creAnims[stackDeadByHex[b][v]->ID]->nextFrame(to, creAnims[stackDeadByHex[b][v]->ID]->pos.x, creAnims[stackDeadByHex[b][v]->ID]->pos.y, creDir[stackDeadByHex[b][v]->ID], animCount, false); //increment always when moving, never if stack died
  681. }
  682. }
  683. std::vector<const CStack *> flyingStacks; //flying stacks should be displayed later, over other stacks and obstacles
  684. if (!siegeH)
  685. {
  686. for(int b = 0; b < GameConstants::BFIELD_SIZE; ++b) //showing alive stacks
  687. {
  688. showObstacles(&hexToObstacle, obstacles, b, to);
  689. showAliveStacks(stackAliveByHex, b, &flyingStacks, to);
  690. }
  691. }
  692. // Siege drawing
  693. else
  694. {
  695. for (int i = 0; i < 4; i++)
  696. {
  697. // xMin, xMax => go from hex x pos to hex x pos
  698. // yMin, yMax => go from hex y pos to hex y pos
  699. // xMove => 0: left side, 1: right side
  700. // xMoveDir => 0: decrement, 1: increment, alters every second hex line either xMin or xMax depending on xMove
  701. int xMin, xMax, yMin, yMax, xMove, xMoveDir = 0;
  702. switch (i)
  703. {
  704. // display units shown at the upper left side
  705. case 0:
  706. xMin = 0;
  707. yMin = 0;
  708. xMax = 11;
  709. yMax = 4;
  710. xMove = 1;
  711. break;
  712. // display wall/units shown at the upper wall area/right upper side
  713. case 1:
  714. xMin = 12;
  715. yMin = 0;
  716. xMax = 16;
  717. yMax = 4;
  718. xMove = 0;
  719. break;
  720. // display units shown at the lower wall area/right lower side
  721. case 2:
  722. xMin = 10;
  723. yMin = 5;
  724. xMax = 16;
  725. yMax = 10;
  726. xMove = 0;
  727. xMoveDir = 1;
  728. break;
  729. // display units shown at the left lower side
  730. case 3:
  731. xMin = 0;
  732. yMin = 5;
  733. xMax = 9;
  734. yMax = 10;
  735. xMove = 1;
  736. xMoveDir = 1;
  737. break;
  738. }
  739. int runNum = 0;
  740. for (int j = yMin; j <= yMax; j++)
  741. {
  742. if (runNum > 0)
  743. {
  744. if (xMin == xMax)
  745. xMax = xMin = ((runNum % 2) == 0) ? (xMin + (xMoveDir == 0 ? -1 : 1)) : xMin;
  746. else if (xMove == 1)
  747. xMax = ((runNum % 2) == 0) ? (xMax + (xMoveDir == 0 ? -1 : 1)) : xMax;
  748. else if (xMove == 0)
  749. xMin = ((runNum % 2) == 0) ? (xMin + (xMoveDir == 0 ? -1 : 1)) : xMin;
  750. }
  751. for (int k = xMin; k <= xMax; k++)
  752. {
  753. int hex = j * 17 + k;
  754. showObstacles(&hexToObstacle, obstacles, hex, to);
  755. showAliveStacks(stackAliveByHex, hex, &flyingStacks, to);
  756. showPieceOfWall(to, hex, stacks);
  757. }
  758. ++runNum;
  759. }
  760. }
  761. }
  762. for(size_t b = 0; b < flyingStacks.size(); ++b) //showing flying stacks
  763. showAliveStack(flyingStacks[b], to);
  764. //units shown
  765. // Show projectiles
  766. projectileShowHelper(to);
  767. //showing spell effects
  768. if(battleEffects.size())
  769. {
  770. for(std::list<BattleEffect>::iterator it = battleEffects.begin(); it!=battleEffects.end(); ++it)
  771. {
  772. SDL_Surface * bitmapToBlit = it->anim->ourImages[(it->frame)%it->anim->ourImages.size()].bitmap;
  773. SDL_Rect temp_rect = genRect(bitmapToBlit->h, bitmapToBlit->w, it->x, it->y);
  774. SDL_BlitSurface(bitmapToBlit, NULL, to, &temp_rect);
  775. }
  776. }
  777. SDL_SetClipRect(to, &buf); //restoring previous clip_rect
  778. //showing menu background and console
  779. blitAt(menu, pos.x, 556 + pos.y, to);
  780. if(tacticsMode)
  781. {
  782. btactNext->showAll(to);
  783. btactEnd->showAll(to);
  784. }
  785. else
  786. {
  787. console->showAll(to);
  788. bConsoleUp->showAll(to);
  789. bConsoleDown->showAll(to);
  790. }
  791. //showing buttons
  792. bOptions->showAll(to);
  793. bSurrender->showAll(to);
  794. bFlee->showAll(to);
  795. bAutofight->showAll(to);
  796. bSpell->showAll(to);
  797. bWait->showAll(to);
  798. bDefence->showAll(to);
  799. //showing in-game console
  800. LOCPLINT->cingconsole->show(to);
  801. Rect posWithQueue = Rect(pos.x, pos.y, 800, 600);
  802. if(settings["battle"]["showQueue"].Bool())
  803. {
  804. if(!queue->embedded)
  805. {
  806. posWithQueue.y -= queue->pos.h;
  807. posWithQueue.h += queue->pos.h;
  808. }
  809. //showing queue
  810. if(!bresult)
  811. queue->showAll(to);
  812. else
  813. queue->blitBg(to);
  814. }
  815. //printing border around interface
  816. if(screen->w != 800 || screen->h !=600)
  817. {
  818. CMessage::drawBorder(curInt->playerID,to,posWithQueue.w + 28, posWithQueue.h + 28, posWithQueue.x-14, posWithQueue.y-15);
  819. }
  820. }
  821. void CBattleInterface::showAliveStacks(std::vector<const CStack *> *aliveStacks, int hex, std::vector<const CStack *> *flyingStacks, SDL_Surface *to)
  822. {
  823. //showing hero animations
  824. if (hex == 0)
  825. if(attackingHero)
  826. attackingHero->show(to);
  827. if (hex == 16)
  828. if(defendingHero)
  829. defendingHero->show(to);
  830. for(size_t v = 0; v < aliveStacks[hex].size(); ++v)
  831. {
  832. const CStack *s = aliveStacks[hex][v];
  833. if(!s->hasBonusOfType(Bonus::FLYING) || creAnims[s->ID]->getType() != CCreatureAnim::DEATH)
  834. showAliveStack(s, to);
  835. else
  836. flyingStacks->push_back(s);
  837. }
  838. }
  839. void CBattleInterface::showObstacles(std::multimap<BattleHex, int> *hexToObstacle, std::vector<shared_ptr<const CObstacleInstance> > &obstacles, int hex, SDL_Surface *to)
  840. {
  841. std::pair<std::multimap<BattleHex, int>::const_iterator, std::multimap<BattleHex, int>::const_iterator> obstRange =
  842. hexToObstacle->equal_range(hex);
  843. for(std::multimap<BattleHex, int>::const_iterator it = obstRange.first; it != obstRange.second; ++it)
  844. {
  845. const CObstacleInstance & curOb = *obstacles[it->second];
  846. SDL_Surface *toBlit = imageOfObstacle(curOb);
  847. Point p = whereToBlitObstacleImage(toBlit, curOb);
  848. blitAt(toBlit, p.x, p.y, to);
  849. }
  850. }
  851. void CBattleInterface::keyPressed(const SDL_KeyboardEvent & key)
  852. {
  853. if(key.keysym.sym == SDLK_q && key.state == SDL_PRESSED)
  854. {
  855. if(settings["battle"]["showQueue"].Bool()) //hide queue
  856. hideQueue();
  857. else
  858. showQueue();
  859. }
  860. else if(key.keysym.sym == SDLK_ESCAPE && spellDestSelectMode)
  861. {
  862. endCastingSpell();
  863. }
  864. }
  865. void CBattleInterface::mouseMoved(const SDL_MouseMotionEvent &sEvent)
  866. {
  867. auto hexItr = std::find_if(bfield.begin(), bfield.end(), [](const CClickableHex *hex)
  868. {
  869. return hex->hovered && hex->strictHovered;
  870. });
  871. handleHex(hexItr == bfield.end() ? -1 : (*hexItr)->myNumber, MOVE);
  872. }
  873. void CBattleInterface::setBattleCursor(const int myNumber)
  874. {
  875. const CClickableHex & hoveredHex = *bfield[myNumber];
  876. CCursorHandler *cursor = CCS->curh;
  877. const double subdividingAngle = 2.0*M_PI/6.0; // Divide a hex into six sectors.
  878. const double hexMidX = hoveredHex.pos.x + hoveredHex.pos.w/2;
  879. const double hexMidY = hoveredHex.pos.y + hoveredHex.pos.h/2;
  880. const double cursorHexAngle = M_PI - atan2(hexMidY - cursor->ypos, cursor->xpos - hexMidX) + subdividingAngle/2; //TODO: refactor this nightmare
  881. const double sector = fmod(cursorHexAngle/subdividingAngle, 6.0);
  882. const int zigzagCorrection = !((myNumber/GameConstants::BFIELD_WIDTH)%2); // Off-by-one correction needed to deal with the odd battlefield rows.
  883. std::vector<int> sectorCursor; // From left to bottom left.
  884. sectorCursor.push_back(8);
  885. sectorCursor.push_back(9);
  886. sectorCursor.push_back(10);
  887. sectorCursor.push_back(11);
  888. sectorCursor.push_back(12);
  889. sectorCursor.push_back(7);
  890. const bool doubleWide = activeStack->doubleWide();
  891. bool aboveAttackable = true, belowAttackable = true;
  892. // Exclude directions which cannot be attacked from.
  893. // Check to the left.
  894. if (myNumber%GameConstants::BFIELD_WIDTH <= 1 || !vstd::contains(occupyableHexes, myNumber - 1))
  895. {
  896. sectorCursor[0] = -1;
  897. }
  898. // Check top left, top right as well as above for 2-hex creatures.
  899. if (myNumber/GameConstants::BFIELD_WIDTH == 0)
  900. {
  901. sectorCursor[1] = -1;
  902. sectorCursor[2] = -1;
  903. aboveAttackable = false;
  904. }
  905. else
  906. {
  907. if (doubleWide)
  908. {
  909. bool attackRow[4] = {true, true, true, true};
  910. if (myNumber%GameConstants::BFIELD_WIDTH <= 1 || !vstd::contains(occupyableHexes, myNumber - GameConstants::BFIELD_WIDTH - 2 + zigzagCorrection))
  911. attackRow[0] = false;
  912. if (!vstd::contains(occupyableHexes, myNumber - GameConstants::BFIELD_WIDTH - 1 + zigzagCorrection))
  913. attackRow[1] = false;
  914. if (!vstd::contains(occupyableHexes, myNumber - GameConstants::BFIELD_WIDTH + zigzagCorrection))
  915. attackRow[2] = false;
  916. if (myNumber%GameConstants::BFIELD_WIDTH >= GameConstants::BFIELD_WIDTH - 2 || !vstd::contains(occupyableHexes, myNumber - GameConstants::BFIELD_WIDTH + 1 + zigzagCorrection))
  917. attackRow[3] = false;
  918. if (!(attackRow[0] && attackRow[1]))
  919. sectorCursor[1] = -1;
  920. if (!(attackRow[1] && attackRow[2]))
  921. aboveAttackable = false;
  922. if (!(attackRow[2] && attackRow[3]))
  923. sectorCursor[2] = -1;
  924. }
  925. else
  926. {
  927. if (!vstd::contains(occupyableHexes, myNumber - GameConstants::BFIELD_WIDTH - 1 + zigzagCorrection))
  928. sectorCursor[1] = -1;
  929. if (!vstd::contains(occupyableHexes, myNumber - GameConstants::BFIELD_WIDTH + zigzagCorrection))
  930. sectorCursor[2] = -1;
  931. }
  932. }
  933. // Check to the right.
  934. if (myNumber%GameConstants::BFIELD_WIDTH >= GameConstants::BFIELD_WIDTH - 2 || !vstd::contains(occupyableHexes, myNumber + 1))
  935. {
  936. sectorCursor[3] = -1;
  937. }
  938. // Check bottom right, bottom left as well as below for 2-hex creatures.
  939. if (myNumber/GameConstants::BFIELD_WIDTH == GameConstants::BFIELD_HEIGHT - 1)
  940. {
  941. sectorCursor[4] = -1;
  942. sectorCursor[5] = -1;
  943. belowAttackable = false;
  944. }
  945. else
  946. {
  947. if (doubleWide)
  948. {
  949. bool attackRow[4] = {true, true, true, true};
  950. if (myNumber%GameConstants::BFIELD_WIDTH <= 1 || !vstd::contains(occupyableHexes, myNumber + GameConstants::BFIELD_WIDTH - 2 + zigzagCorrection))
  951. attackRow[0] = false;
  952. if (!vstd::contains(occupyableHexes, myNumber + GameConstants::BFIELD_WIDTH - 1 + zigzagCorrection))
  953. attackRow[1] = false;
  954. if (!vstd::contains(occupyableHexes, myNumber + GameConstants::BFIELD_WIDTH + zigzagCorrection))
  955. attackRow[2] = false;
  956. if (myNumber%GameConstants::BFIELD_WIDTH >= GameConstants::BFIELD_WIDTH - 2 || !vstd::contains(occupyableHexes, myNumber + GameConstants::BFIELD_WIDTH + 1 + zigzagCorrection))
  957. attackRow[3] = false;
  958. if (!(attackRow[0] && attackRow[1]))
  959. sectorCursor[5] = -1;
  960. if (!(attackRow[1] && attackRow[2]))
  961. belowAttackable = false;
  962. if (!(attackRow[2] && attackRow[3]))
  963. sectorCursor[4] = -1;
  964. }
  965. else
  966. {
  967. if (!vstd::contains(occupyableHexes, myNumber + GameConstants::BFIELD_WIDTH + zigzagCorrection))
  968. sectorCursor[4] = -1;
  969. if (!vstd::contains(occupyableHexes, myNumber + GameConstants::BFIELD_WIDTH - 1 + zigzagCorrection))
  970. sectorCursor[5] = -1;
  971. }
  972. }
  973. // Determine index from sector.
  974. int cursorIndex;
  975. if (doubleWide)
  976. {
  977. sectorCursor.insert(sectorCursor.begin() + 5, belowAttackable ? 13 : -1);
  978. sectorCursor.insert(sectorCursor.begin() + 2, aboveAttackable ? 14 : -1);
  979. if (sector < 1.5)
  980. cursorIndex = sector;
  981. else if (sector >= 1.5 && sector < 2.5)
  982. cursorIndex = 2;
  983. else if (sector >= 2.5 && sector < 4.5)
  984. cursorIndex = (int) sector + 1;
  985. else if (sector >= 4.5 && sector < 5.5)
  986. cursorIndex = 6;
  987. else
  988. cursorIndex = (int) sector + 2;
  989. }
  990. else
  991. {
  992. cursorIndex = sector;
  993. }
  994. // Generally should NEVER happen, but to avoid the possibility of having endless loop below... [#1016]
  995. if(!vstd::contains_if(sectorCursor, [](int sc) { return sc != -1; }))
  996. {
  997. tlog1 << "Error: for hex " << myNumber << " cannot find a hex to attack from!\n";
  998. attackingHex = -1;
  999. return;
  1000. }
  1001. // Find the closest direction attackable, starting with the right one.
  1002. // FIXME: Is this really how the original H3 client does it?
  1003. int i = 0;
  1004. while (sectorCursor[(cursorIndex + i)%sectorCursor.size()] == -1) //Why hast thou forsaken me?
  1005. i = i <= 0 ? 1 - i : -i; // 0, 1, -1, 2, -2, 3, -3 etc..
  1006. int index = (cursorIndex + i)%sectorCursor.size(); //hopefully we get elements from sectorCursor
  1007. cursor->changeGraphic(ECursor::COMBAT, sectorCursor[index]);
  1008. switch (index)
  1009. {
  1010. case 0:
  1011. attackingHex = myNumber - 1; //left
  1012. break;
  1013. case 1:
  1014. attackingHex = myNumber - GameConstants::BFIELD_WIDTH - 1 + zigzagCorrection; //top left
  1015. break;
  1016. case 2:
  1017. attackingHex = myNumber - GameConstants::BFIELD_WIDTH + zigzagCorrection; //top right
  1018. break;
  1019. case 3:
  1020. break;
  1021. attackingHex = myNumber + 1; //right
  1022. case 4:
  1023. break;
  1024. attackingHex = myNumber + GameConstants::BFIELD_WIDTH + zigzagCorrection; //bottom right
  1025. case 5:
  1026. attackingHex = myNumber + GameConstants::BFIELD_WIDTH - 1 + zigzagCorrection; //bottom left
  1027. break;
  1028. }
  1029. BattleHex hex(attackingHex);
  1030. if (!hex.isValid())
  1031. attackingHex = -1;
  1032. }
  1033. void CBattleInterface::clickRight(tribool down, bool previousState)
  1034. {
  1035. if(!down && spellDestSelectMode)
  1036. {
  1037. endCastingSpell();
  1038. }
  1039. }
  1040. void CBattleInterface::bOptionsf()
  1041. {
  1042. if(spellDestSelectMode) //we are casting a spell
  1043. return;
  1044. CCS->curh->changeGraphic(ECursor::ADVENTURE,0);
  1045. Rect tempRect = genRect(431, 481, 160, 84);
  1046. tempRect += pos.topLeft();
  1047. CBattleOptionsWindow * optionsWin = new CBattleOptionsWindow(tempRect, this);
  1048. GH.pushInt(optionsWin);
  1049. }
  1050. void CBattleInterface::bSurrenderf()
  1051. {
  1052. if(spellDestSelectMode) //we are casting a spell
  1053. return;
  1054. int cost = curInt->cb->battleGetSurrenderCost();
  1055. if(cost >= 0)
  1056. {
  1057. std::string enemyHeroName = curInt->cb->battleGetEnemyHero().name;
  1058. if(enemyHeroName.empty())
  1059. enemyHeroName = "#ENEMY#"; //TODO: should surrendering without enemy hero be enabled?
  1060. 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."
  1061. curInt->showYesNoDialog(surrenderMessage, [this]{ reallySurrender(); }, 0, false);
  1062. }
  1063. }
  1064. void CBattleInterface::bFleef()
  1065. {
  1066. if(spellDestSelectMode) //we are casting a spell
  1067. return;
  1068. if( curInt->cb->battleCanFlee() )
  1069. {
  1070. CFunctionList<void()> ony = boost::bind(&CBattleInterface::reallyFlee,this);
  1071. curInt->showYesNoDialog(CGI->generaltexth->allTexts[28], ony, 0, false); //Are you sure you want to retreat?
  1072. }
  1073. else
  1074. {
  1075. std::vector<CComponent*> comps;
  1076. std::string heroName;
  1077. //calculating fleeing hero's name
  1078. if(attackingHeroInstance)
  1079. if(attackingHeroInstance->tempOwner == curInt->cb->getMyColor())
  1080. heroName = attackingHeroInstance->name;
  1081. if(defendingHeroInstance)
  1082. if(defendingHeroInstance->tempOwner == curInt->cb->getMyColor())
  1083. heroName = defendingHeroInstance->name;
  1084. //calculating text
  1085. char buffer[1000];
  1086. sprintf(buffer, CGI->generaltexth->allTexts[340].c_str(), heroName.c_str()); //The Shackles of War are present. %s can not retreat!
  1087. //printing message
  1088. curInt->showInfoDialog(std::string(buffer), comps);
  1089. }
  1090. }
  1091. void CBattleInterface::reallyFlee()
  1092. {
  1093. giveCommand(Battle::RETREAT,0,0);
  1094. CCS->curh->changeGraphic(ECursor::ADVENTURE, 0);
  1095. }
  1096. void CBattleInterface::reallySurrender()
  1097. {
  1098. if(curInt->cb->getResourceAmount(Res::GOLD) < curInt->cb->battleGetSurrenderCost())
  1099. {
  1100. curInt->showInfoDialog(CGI->generaltexth->allTexts[29]); //You don't have enough gold!
  1101. }
  1102. else
  1103. {
  1104. giveCommand(Battle::SURRENDER,0,0);
  1105. CCS->curh->changeGraphic(ECursor::ADVENTURE, 0);
  1106. }
  1107. }
  1108. void CBattleInterface::bAutofightf()
  1109. {
  1110. if(spellDestSelectMode) //we are casting a spell
  1111. return;
  1112. }
  1113. void CBattleInterface::bSpellf()
  1114. {
  1115. if(spellDestSelectMode) //we are casting a spell
  1116. return;
  1117. CCS->curh->changeGraphic(ECursor::ADVENTURE,0);
  1118. if(!myTurn)
  1119. return;
  1120. auto myHero = currentHero();
  1121. ESpellCastProblem::ESpellCastProblem spellCastProblem;
  1122. if (curInt->cb->battleCanCastSpell(&spellCastProblem))
  1123. {
  1124. CSpellWindow * spellWindow = new CSpellWindow(genRect(595, 620, (screen->w - 620)/2, (screen->h - 595)/2), myHero, curInt);
  1125. GH.pushInt(spellWindow);
  1126. }
  1127. else if(spellCastProblem == ESpellCastProblem::MAGIC_IS_BLOCKED)
  1128. {
  1129. //Handle Orb of Inhibition-like effects -> we want to display dialog with info, why casting is impossible
  1130. auto blockingBonus = currentHero()->getBonusLocalFirst(Selector::type(Bonus::BLOCK_ALL_MAGIC));
  1131. if(!blockingBonus)
  1132. return;;
  1133. if(blockingBonus->source == Bonus::ARTIFACT)
  1134. {
  1135. const int artID = blockingBonus->sid;
  1136. //If we have artifact, put name of our hero. Otherwise assume it's the enemy.
  1137. //TODO check who *really* is source of bonus
  1138. std::string heroName = myHero->hasArt(artID) ? myHero->name : enemyHero().name;
  1139. //%s wields the %s, an ancient artifact which creates a p dead to all magic.
  1140. LOCPLINT->showInfoDialog(boost::str(boost::format(CGI->generaltexth->allTexts[683])
  1141. % heroName % CGI->arth->artifacts[artID]->Name()));
  1142. }
  1143. }
  1144. }
  1145. void CBattleInterface::bWaitf()
  1146. {
  1147. if(spellDestSelectMode) //we are casting a spell
  1148. return;
  1149. if(activeStack != NULL)
  1150. giveCommand(Battle::WAIT,0,activeStack->ID);
  1151. }
  1152. void CBattleInterface::bDefencef()
  1153. {
  1154. if(spellDestSelectMode) //we are casting a spell
  1155. return;
  1156. if(activeStack != NULL)
  1157. giveCommand(Battle::DEFEND,0,activeStack->ID);
  1158. }
  1159. void CBattleInterface::bConsoleUpf()
  1160. {
  1161. if(spellDestSelectMode) //we are casting a spell
  1162. return;
  1163. console->scrollUp();
  1164. }
  1165. void CBattleInterface::bConsoleDownf()
  1166. {
  1167. if(spellDestSelectMode) //we are casting a spell
  1168. return;
  1169. console->scrollDown();
  1170. }
  1171. void CBattleInterface::newStack(const CStack * stack)
  1172. {
  1173. Point coords = CClickableHex::getXYUnitAnim(stack->position, stack->owner == attackingHeroInstance->tempOwner, stack, this);
  1174. if(stack->position < 0) //turret
  1175. {
  1176. const CCreature & turretCreature = *CGI->creh->creatures[siegeH->town->town->clientInfo.siegeShooter];
  1177. creAnims[stack->ID] = new CCreatureAnimation(turretCreature.animDefName);
  1178. // Turret positions are read out of the /config/wall_pos.txt
  1179. int posID = 0;
  1180. switch (stack->position)
  1181. {
  1182. case -2: // keep creature
  1183. posID = 18;
  1184. break;
  1185. case -3: // bottom creature
  1186. posID = 19;
  1187. break;
  1188. case -4: // upper creature
  1189. posID = 20;
  1190. break;
  1191. }
  1192. if (posID != 0)
  1193. {
  1194. coords.x = siegeH->town->town->clientInfo.siegePositions[posID].x + this->pos.x;
  1195. coords.y = siegeH->town->town->clientInfo.siegePositions[posID].y + this->pos.y;
  1196. }
  1197. }
  1198. else
  1199. {
  1200. creAnims[stack->ID] = new CCreatureAnimation(stack->getCreature()->animDefName);
  1201. }
  1202. creAnims[stack->ID]->setType(CCreatureAnim::HOLDING);
  1203. creAnims[stack->ID]->pos = Rect(coords.x, coords.y, creAnims[stack->ID]->fullWidth, creAnims[stack->ID]->fullHeight);
  1204. creDir[stack->ID] = stack->attackerOwned;
  1205. }
  1206. void CBattleInterface::stackRemoved(int stackID)
  1207. {
  1208. delete creAnims[stackID];
  1209. creAnims.erase(stackID);
  1210. creDir.erase(stackID);
  1211. redrawBackgroundWithHexes(activeStack);
  1212. queue->update();
  1213. }
  1214. void CBattleInterface::stackActivated(const CStack * stack) //TODO: check it all before game state is changed due to abilities
  1215. {
  1216. //givenCommand = NULL;
  1217. stackToActivate = stack;
  1218. waitForAnims();
  1219. //if(pendingAnims.size() == 0)
  1220. if(stackToActivate) //during waiting stack may have gotten activated through show
  1221. activateStack();
  1222. }
  1223. void CBattleInterface::stackMoved(const CStack * stack, std::vector<BattleHex> destHex, int distance)
  1224. {
  1225. addNewAnim(new CMovementAnimation(this, stack, destHex, distance));
  1226. waitForAnims();
  1227. }
  1228. void CBattleInterface::stacksAreAttacked(std::vector<StackAttackedInfo> attackedInfos)
  1229. {
  1230. for (size_t h = 0; h < attackedInfos.size(); ++h)
  1231. {
  1232. if (!attackedInfos[h].cloneKilled) //FIXME: play dead animation for cloned creature before it vanishes
  1233. addNewAnim(new CDefenceAnimation(attackedInfos[h], this));
  1234. if (attackedInfos[h].rebirth)
  1235. {
  1236. displayEffect(50, attackedInfos[h].defender->position); //TODO: play reverse death animation
  1237. CCS->soundh->playSound(soundBase::RESURECT);
  1238. }
  1239. }
  1240. waitForAnims();
  1241. int targets = 0, killed = 0, damage = 0;
  1242. for(size_t h = 0; h < attackedInfos.size(); ++h)
  1243. {
  1244. ++targets;
  1245. killed += attackedInfos[h].amountKilled;
  1246. damage += attackedInfos[h].dmg;
  1247. }
  1248. if (attackedInfos.front().cloneKilled) //FIXME: cloned stack is already removed
  1249. return;
  1250. if (targets > 1)
  1251. printConsoleAttacked(attackedInfos.front().defender, damage, killed, attackedInfos.front().attacker, true); //creatures perish
  1252. else
  1253. printConsoleAttacked(attackedInfos.front().defender, damage, killed, attackedInfos.front().attacker, false);
  1254. for(size_t h = 0; h < attackedInfos.size(); ++h)
  1255. {
  1256. if (attackedInfos[h].rebirth)
  1257. creAnims[attackedInfos[h].defender->ID]->setType(CCreatureAnim::HOLDING);
  1258. if (attackedInfos[h].cloneKilled)
  1259. stackRemoved(attackedInfos[h].defender->ID);
  1260. }
  1261. }
  1262. void CBattleInterface::stackAttacking( const CStack * attacker, BattleHex dest, const CStack * attacked, bool shooting )
  1263. {
  1264. if (shooting)
  1265. {
  1266. addNewAnim(new CShootingAnimation(this, attacker, dest, attacked));
  1267. }
  1268. else
  1269. {
  1270. addNewAnim(new CMeleeAttackAnimation(this, attacker, dest, attacked));
  1271. }
  1272. waitForAnims();
  1273. }
  1274. void CBattleInterface::newRoundFirst( int round )
  1275. {
  1276. //handle regeneration
  1277. std::vector<const CStack*> stacks = curInt->cb->battleGetStacks(); //gets only alive stacks
  1278. // BOOST_FOREACH(const CStack *s, stacks)
  1279. // {
  1280. // }
  1281. waitForAnims();
  1282. }
  1283. void CBattleInterface::newRound(int number)
  1284. {
  1285. console->addText(CGI->generaltexth->allTexts[412]);
  1286. //unlock spellbook
  1287. //bSpell->block(!curInt->cb->battleCanCastSpell());
  1288. //don't unlock spellbook - this should be done when we have axctive creature
  1289. }
  1290. void CBattleInterface::giveCommand(Battle::ActionType action, BattleHex tile, ui32 stackID, si32 additional, si32 selected)
  1291. {
  1292. const CStack *stack = curInt->cb->battleGetStackByID(stackID);
  1293. if(!stack && action != Battle::HERO_SPELL && action != Battle::RETREAT && action != Battle::SURRENDER)
  1294. {
  1295. return;
  1296. }
  1297. if(stack && stack != activeStack)
  1298. tlog3 << "Warning: giving an order to a non-active stack?\n";
  1299. BattleAction * ba = new BattleAction(); //is deleted in CPlayerInterface::activeStack()
  1300. ba->side = defendingHeroInstance ? (curInt->playerID == defendingHeroInstance->tempOwner) : false;
  1301. ba->actionType = action;
  1302. ba->destinationTile = tile;
  1303. ba->stackNumber = stackID;
  1304. ba->additionalInfo = additional;
  1305. ba->selectedStack = selected;
  1306. //some basic validations
  1307. switch(action)
  1308. {
  1309. case Battle::WALK_AND_ATTACK:
  1310. assert(curInt->cb->battleGetStackByPos(additional)); //stack to attack must exist
  1311. case Battle::WALK:
  1312. case Battle::SHOOT:
  1313. case Battle::CATAPULT:
  1314. assert(tile < GameConstants::BFIELD_SIZE);
  1315. break;
  1316. }
  1317. if(!tacticsMode)
  1318. {
  1319. tlog5 << "Setting command for " << (stack ? stack->nodeName() : "hero") << std::endl;
  1320. myTurn = false;
  1321. activeStack = NULL;
  1322. givenCommand->setn(ba);
  1323. }
  1324. else
  1325. {
  1326. curInt->cb->battleMakeTacticAction(ba);
  1327. vstd::clear_pointer(ba);
  1328. activeStack = NULL;
  1329. //next stack will be activated when action ends
  1330. }
  1331. }
  1332. bool CBattleInterface::isTileAttackable(const BattleHex & number) const
  1333. {
  1334. for(size_t b=0; b<occupyableHexes.size(); ++b)
  1335. {
  1336. if(BattleHex::mutualPosition(occupyableHexes[b], number) != -1 || occupyableHexes[b] == number)
  1337. return true;
  1338. }
  1339. return false;
  1340. }
  1341. bool CBattleInterface::isCatapultAttackable(BattleHex hex) const
  1342. {
  1343. if(!siegeH || tacticsMode)
  1344. return false;
  1345. int wallUnder = curInt->cb->battleHexToWallPart(hex);
  1346. if(wallUnder < 0) //invalid or indestructible
  1347. return false;
  1348. return curInt->cb->battleGetWallState(wallUnder) < EWallState::DESTROYED;
  1349. }
  1350. const CGHeroInstance * CBattleInterface::getActiveHero()
  1351. {
  1352. const CStack * attacker = activeStack;
  1353. if (!attacker)
  1354. {
  1355. return NULL;
  1356. }
  1357. if (attacker->attackerOwned)
  1358. {
  1359. return attackingHeroInstance;
  1360. }
  1361. return defendingHeroInstance;
  1362. }
  1363. void CBattleInterface::hexLclicked(int whichOne)
  1364. {
  1365. handleHex(whichOne, LCLICK);
  1366. }
  1367. void CBattleInterface::stackIsCatapulting(const CatapultAttack & ca)
  1368. {
  1369. for(std::set< std::pair< std::pair< ui8, si16 >, ui8> >::const_iterator it = ca.attackedParts.begin(); it != ca.attackedParts.end(); ++it)
  1370. {
  1371. const CStack * stack = curInt->cb->battleGetStackByID(ca.attacker);
  1372. addNewAnim(new CShootingAnimation(this, stack, it->first.second, NULL, true, it->second));
  1373. SDL_FreeSurface(siegeH->walls[it->first.first + 2]);
  1374. siegeH->walls[it->first.first + 2] = BitmapHandler::loadBitmap(
  1375. siegeH->getSiegeName(it->first.first + 2, curInt->cb->battleGetWallState(it->first.first)) );
  1376. }
  1377. waitForAnims();
  1378. }
  1379. void CBattleInterface::battleFinished(const BattleResult& br)
  1380. {
  1381. bresult = &br;
  1382. {
  1383. auto unlockPim = vstd::makeUnlockGuard(*LOCPLINT->pim);
  1384. animsAreDisplayed.waitUntil(false);
  1385. }
  1386. displayBattleFinished();
  1387. activeStack = NULL;
  1388. }
  1389. void CBattleInterface::displayBattleFinished()
  1390. {
  1391. CCS->curh->changeGraphic(ECursor::ADVENTURE,0);
  1392. SDL_Rect temp_rect = genRect(561, 470, (screen->w - 800)/2 + 165, (screen->h - 600)/2 + 19);
  1393. resWindow = new CBattleResultWindow(*bresult, temp_rect, this);
  1394. GH.pushInt(resWindow);
  1395. }
  1396. void CBattleInterface::spellCast( const BattleSpellCast * sc )
  1397. {
  1398. const CSpell &spell = *CGI->spellh->spells[sc->id];
  1399. //spell opening battle is cast when no stack is active
  1400. if(sc->castedByHero && ( activeStack == NULL || sc->side == !activeStack->attackerOwned) )
  1401. bSpell->block(true);
  1402. std::vector< std::string > anims; //for magic arrow and ice bolt
  1403. if (vstd::contains(CCS->soundh->spellSounds, &spell))
  1404. CCS->soundh->playSound(CCS->soundh->spellSounds[&spell]);
  1405. switch(sc->id)
  1406. {
  1407. case SpellID::MAGIC_ARROW:
  1408. {
  1409. //initialization of anims
  1410. anims.push_back("C20SPX0.DEF"); anims.push_back("C20SPX1.DEF"); anims.push_back("C20SPX2.DEF"); anims.push_back("C20SPX3.DEF"); anims.push_back("C20SPX4.DEF");
  1411. }
  1412. case SpellID::ICE_BOLT:
  1413. {
  1414. if(anims.size() == 0) //initialization of anims
  1415. {
  1416. anims.push_back("C08SPW0.DEF"); anims.push_back("C08SPW1.DEF"); anims.push_back("C08SPW2.DEF"); anims.push_back("C08SPW3.DEF"); anims.push_back("C08SPW4.DEF");
  1417. }
  1418. } //end of ice bolt only part
  1419. { //common ice bolt and magic arrow part
  1420. //initial variables
  1421. std::string animToDisplay;
  1422. Point srccoord = (sc->side ? Point(770, 60) : Point(30, 60)) + pos;
  1423. Point destcoord = CClickableHex::getXYUnitAnim(sc->tile, !sc->side, curInt->cb->battleGetStackByPos(sc->tile), this); //position attacked by arrow
  1424. destcoord.x += 250; destcoord.y += 240;
  1425. //animation angle
  1426. double angle = atan2(static_cast<double>(destcoord.x - srccoord.x), static_cast<double>(destcoord.y - srccoord.y));
  1427. bool Vflip = false;
  1428. if (angle < 0)
  1429. {
  1430. Vflip = true;
  1431. angle = -angle;
  1432. }
  1433. //choosing animation by angle
  1434. if(angle > 1.50)
  1435. animToDisplay = anims[0];
  1436. else if(angle > 1.20)
  1437. animToDisplay = anims[1];
  1438. else if(angle > 0.90)
  1439. animToDisplay = anims[2];
  1440. else if(angle > 0.60)
  1441. animToDisplay = anims[3];
  1442. else
  1443. animToDisplay = anims[4];
  1444. //displaying animation
  1445. CDefEssential * animDef = CDefHandler::giveDefEss(animToDisplay);
  1446. int steps = sqrt(static_cast<double>((destcoord.x - srccoord.x)*(destcoord.x - srccoord.x) + (destcoord.y - srccoord.y) * (destcoord.y - srccoord.y))) / 40;
  1447. if(steps <= 0)
  1448. steps = 1;
  1449. int dx = (destcoord.x - srccoord.x - animDef->ourImages[0].bitmap->w)/steps, dy = (destcoord.y - srccoord.y - animDef->ourImages[0].bitmap->h)/steps;
  1450. delete animDef;
  1451. addNewAnim(new CSpellEffectAnimation(this, animToDisplay, srccoord.x, srccoord.y, dx, dy, Vflip));
  1452. break; //for 15 and 16 cases
  1453. }
  1454. case SpellID::LIGHTNING_BOLT:
  1455. case SpellID::TITANS_LIGHTNING_BOLT:
  1456. case SpellID::THUNDERBOLT:
  1457. case SpellID::CHAIN_LIGHTNING: //TODO: zigzag effect
  1458. for (auto it = sc->affectedCres.begin(); it != sc->affectedCres.end(); ++it) //in case we have multiple targets
  1459. {
  1460. displayEffect(1, curInt->cb->battleGetStackByID(*it, false)->position);
  1461. displayEffect(spell.mainEffectAnim, curInt->cb->battleGetStackByID(*it, false)->position);
  1462. }
  1463. break;
  1464. case SpellID::DISPEL:
  1465. case SpellID::CURE:
  1466. case SpellID::RESURRECTION:
  1467. case SpellID::ANIMATE_DEAD:
  1468. case SpellID::DISPEL_HELPFUL_SPELLS:
  1469. case SpellID::SACRIFICE: //TODO: animation upon killed stack
  1470. for(std::set<ui32>::const_iterator it = sc->affectedCres.begin(); it != sc->affectedCres.end(); ++it)
  1471. {
  1472. displayEffect(spell.mainEffectAnim, curInt->cb->battleGetStackByID(*it, false)->position);
  1473. }
  1474. break;
  1475. case SpellID::SUMMON_FIRE_ELEMENTAL:
  1476. case SpellID::SUMMON_EARTH_ELEMENTAL:
  1477. case SpellID::SUMMON_WATER_ELEMENTAL:
  1478. case SpellID::SUMMON_AIR_ELEMENTAL:
  1479. case SpellID::CLONE:
  1480. case SpellID::REMOVE_OBSTACLE:
  1481. addNewAnim(new CDummyAnimation(this, 2)); //interface won't return until animation is played. TODO: make it smarter?
  1482. break;
  1483. } //switch(sc->id)
  1484. if (spell.isDamageSpell() && sc->affectedCres.empty()) //for example Inferno that causes no BattleStackAttacked
  1485. {
  1486. displayEffect (spell.mainEffectAnim, sc->tile);
  1487. }
  1488. //support for resistance
  1489. for(size_t j = 0; j < sc->resisted.size(); ++j)
  1490. {
  1491. int tile = curInt->cb->battleGetStackByID(sc->resisted[j])->position;
  1492. displayEffect(78, tile);
  1493. }
  1494. //displaying message in console
  1495. bool customSpell = false;
  1496. bool plural = false; //add singular / plural form of creature text if this is true
  1497. int textID = 0;
  1498. if(sc->affectedCres.size() == 1)
  1499. {
  1500. std::string text = CGI->generaltexth->allTexts[195];
  1501. if(sc->castedByHero)
  1502. {
  1503. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetHeroInfo(sc->side).name);
  1504. boost::algorithm::replace_first(text, "%s", CGI->spellh->spells[sc->id]->name); //spell name
  1505. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin(), false)->getCreature()->namePl ); //target
  1506. }
  1507. else
  1508. {
  1509. switch(sc->id)
  1510. {
  1511. case SpellID::STONE_GAZE:
  1512. customSpell = true;
  1513. plural = true;
  1514. textID = 558;
  1515. break;
  1516. case SpellID::POISON:
  1517. customSpell = true;
  1518. plural = true;
  1519. textID = 561;
  1520. break;
  1521. case SpellID::BIND:
  1522. customSpell = true;
  1523. text = CGI->generaltexth->allTexts[560];
  1524. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin(), false)->getCreature()->namePl );
  1525. break; //Roots and vines bind the %s to the ground!
  1526. case SpellID::DISEASE:
  1527. customSpell = true;
  1528. plural = true;
  1529. textID = 553;
  1530. break;
  1531. case SpellID::PARALYZE:
  1532. customSpell = true;
  1533. plural = true;
  1534. textID = 563;
  1535. break;
  1536. case SpellID::AGE:
  1537. {
  1538. customSpell = true;
  1539. if (curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->count > 1)
  1540. {
  1541. text = CGI->generaltexth->allTexts[552];
  1542. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->type->namePl);
  1543. }
  1544. else
  1545. {
  1546. text = CGI->generaltexth->allTexts[551];
  1547. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->type->nameSing);
  1548. }
  1549. //The %s shrivel with age, and lose %d hit points."
  1550. TBonusListPtr bl = curInt->cb->battleGetStackByID(*sc->affectedCres.begin(), false)->getBonuses(Selector::type(Bonus::STACK_HEALTH));
  1551. bl->remove_if(Selector::source(Bonus::SPELL_EFFECT, 75));
  1552. boost::algorithm::replace_first(text, "%d", boost::lexical_cast<std::string>(bl->totalValue()/2));
  1553. }
  1554. break;
  1555. case SpellID::THUNDERBOLT:
  1556. text = CGI->generaltexth->allTexts[367];
  1557. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->type->namePl);
  1558. console->addText(text);
  1559. text = CGI->generaltexth->allTexts[343].substr(1, CGI->generaltexth->allTexts[343].size() - 1); //Does %d points of damage.
  1560. boost::algorithm::replace_first(text, "%d", boost::lexical_cast<std::string>(sc->dmgToDisplay)); //no more text afterwards
  1561. console->addText(text);
  1562. customSpell = true;
  1563. text = ""; //yeah, it's a terrible mess
  1564. break;
  1565. case SpellID::DISPEL_HELPFUL_SPELLS:
  1566. text = CGI->generaltexth->allTexts[555];
  1567. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->type->namePl);
  1568. customSpell = true;
  1569. break;
  1570. case SpellID::DEATH_STARE:
  1571. customSpell = true;
  1572. if (sc->dmgToDisplay)
  1573. {
  1574. if (sc->dmgToDisplay > 1)
  1575. {
  1576. text = CGI->generaltexth->allTexts[119]; //%d %s die under the terrible gaze of the %s.
  1577. boost::algorithm::replace_first(text, "%d", boost::lexical_cast<std::string>(sc->dmgToDisplay));
  1578. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin(), false)->getCreature()->namePl );
  1579. }
  1580. else
  1581. {
  1582. text = CGI->generaltexth->allTexts[118]; //One %s dies under the terrible gaze of the %s.
  1583. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->type->nameSing);
  1584. }
  1585. boost::algorithm::replace_first(text, "%s", CGI->creh->creatures[sc->attackerType]->namePl); //casting stack
  1586. }
  1587. else
  1588. text = "";
  1589. break;
  1590. default:
  1591. text = CGI->generaltexth->allTexts[565]; //The %s casts %s
  1592. boost::algorithm::replace_first(text, "%s", CGI->creh->creatures[sc->attackerType]->namePl); //casting stack
  1593. }
  1594. if (plural)
  1595. {
  1596. if (curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->count > 1)
  1597. {
  1598. text = CGI->generaltexth->allTexts[textID + 1];
  1599. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->getName());
  1600. }
  1601. else
  1602. {
  1603. text = CGI->generaltexth->allTexts[textID];
  1604. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin())->getName());
  1605. }
  1606. }
  1607. }
  1608. if (!customSpell && !sc->dmgToDisplay)
  1609. boost::algorithm::replace_first(text, "%s", CGI->spellh->spells[sc->id]->name); //simple spell name
  1610. if (text.size())
  1611. console->addText(text);
  1612. }
  1613. else
  1614. {
  1615. std::string text = CGI->generaltexth->allTexts[196];
  1616. if(sc->castedByHero)
  1617. {
  1618. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetHeroInfo(sc->side).name);
  1619. }
  1620. else if(sc->attackerType < CGI->creh->creatures.size())
  1621. {
  1622. boost::algorithm::replace_first(text, "%s", CGI->creh->creatures[sc->attackerType]->namePl); //creature caster
  1623. }
  1624. else
  1625. {
  1626. //TODO artifacts that cast spell; scripts some day
  1627. boost::algorithm::replace_first(text, "%s", "Something");
  1628. }
  1629. boost::algorithm::replace_first(text, "%s", CGI->spellh->spells[sc->id]->name);
  1630. console->addText(text);
  1631. }
  1632. if(sc->dmgToDisplay && !customSpell)
  1633. {
  1634. std::string dmgInfo = CGI->generaltexth->allTexts[376];
  1635. boost::algorithm::replace_first(dmgInfo, "%s", CGI->spellh->spells[sc->id]->name); //simple spell name
  1636. boost::algorithm::replace_first(dmgInfo, "%d", boost::lexical_cast<std::string>(sc->dmgToDisplay));
  1637. console->addText(dmgInfo); //todo: casualties (?)
  1638. }
  1639. waitForAnims();
  1640. //mana absorption
  1641. if (sc->manaGained)
  1642. {
  1643. Point leftHero = Point(15, 30) + pos;
  1644. Point rightHero = Point(755, 30) + pos;
  1645. addNewAnim(new CSpellEffectAnimation(this, sc->side ? "SP07_A.DEF" : "SP07_B.DEF", leftHero.x, leftHero.y, 0, 0, false));
  1646. addNewAnim(new CSpellEffectAnimation(this, sc->side ? "SP07_B.DEF" : "SP07_A.DEF", rightHero.x, rightHero.y, 0, 0, false));
  1647. }
  1648. }
  1649. void CBattleInterface::battleStacksEffectsSet(const SetStackEffect & sse)
  1650. {
  1651. int effID = sse.effect.back().sid;
  1652. if(effID != -1) //can be -1 for defensive stance effect
  1653. {
  1654. for(std::vector<ui32>::const_iterator ci = sse.stacks.begin(); ci!=sse.stacks.end(); ++ci)
  1655. {
  1656. displayEffect(CGI->spellh->spells[effID]->mainEffectAnim, curInt->cb->battleGetStackByID(*ci)->position);
  1657. }
  1658. }
  1659. else if (sse.stacks.size() == 1 && sse.effect.size() == 2)
  1660. {
  1661. const Bonus & bns = sse.effect.front();
  1662. if (bns.source == Bonus::OTHER && bns.type == Bonus::PRIMARY_SKILL)
  1663. {
  1664. //defensive stance
  1665. const CStack * stack = LOCPLINT->cb->battleGetStackByID(*sse.stacks.begin());
  1666. int txtid = 120;
  1667. if(stack->count != 1)
  1668. txtid++; //move to plural text
  1669. char txt[4000];
  1670. BonusList defenseBonuses = *(stack->getBonuses(Selector::typeSubtype(Bonus::PRIMARY_SKILL, PrimarySkill::DEFENSE)));
  1671. defenseBonuses.remove_if(Selector::durationType(Bonus::STACK_GETS_TURN)); //remove bonuses gained from defensive stance
  1672. int val = stack->Defense() - defenseBonuses.totalValue();
  1673. sprintf(txt, CGI->generaltexth->allTexts[txtid].c_str(), (stack->count != 1) ? stack->getCreature()->namePl.c_str() : stack->getCreature()->nameSing.c_str(), val);
  1674. console->addText(txt);
  1675. }
  1676. }
  1677. if (activeStack != NULL) //it can be -1 when a creature casts effect
  1678. {
  1679. redrawBackgroundWithHexes(activeStack);
  1680. }
  1681. }
  1682. void CBattleInterface::castThisSpell(int spellID)
  1683. {
  1684. BattleAction * ba = new BattleAction;
  1685. ba->actionType = Battle::HERO_SPELL;
  1686. ba->additionalInfo = spellID; //spell number
  1687. ba->destinationTile = -1;
  1688. ba->stackNumber = (attackingHeroInstance->tempOwner == curInt->playerID) ? -1 : -2;
  1689. ba->side = defendingHeroInstance ? (curInt->playerID == defendingHeroInstance->tempOwner) : false;
  1690. spellToCast = ba;
  1691. spellDestSelectMode = true;
  1692. //choosing possible tragets
  1693. const CGHeroInstance * castingHero = (attackingHeroInstance->tempOwner == curInt->playerID) ? attackingHeroInstance : defendingHeroInstance;
  1694. sp = CGI->spellh->spells[spellID];
  1695. spellSelMode = ANY_LOCATION;
  1696. if(sp->getTargetType() == CSpell::CREATURE)
  1697. {
  1698. spellSelMode = selectionTypeByPositiveness(*sp);
  1699. }
  1700. if(sp->getTargetType() == CSpell::CREATURE_EXPERT_MASSIVE)
  1701. {
  1702. if(castingHero && castingHero->getSpellSchoolLevel(sp) < 3)
  1703. spellSelMode = selectionTypeByPositiveness(*sp);
  1704. else
  1705. spellSelMode = NO_LOCATION;
  1706. }
  1707. if(sp->getTargetType() == CSpell::OBSTACLE)
  1708. {
  1709. spellSelMode = OBSTACLE;
  1710. } //FIXME: Remove Obstacle has range X, unfortunatelly :(
  1711. else if(sp->range[ castingHero->getSpellSchoolLevel(sp) ] == "X") //spell has no range
  1712. {
  1713. spellSelMode = NO_LOCATION;
  1714. }
  1715. if(sp->range[ castingHero->getSpellSchoolLevel(sp) ].size() > 1) //spell has many-hex range
  1716. {
  1717. spellSelMode = ANY_LOCATION;
  1718. }
  1719. if(spellID == SpellID::FIRE_WALL || spellID == SpellID::FORCE_FIELD)
  1720. {
  1721. spellSelMode = FREE_LOCATION;
  1722. }
  1723. if (spellSelMode == NO_LOCATION) //user does not have to select location
  1724. {
  1725. spellToCast->destinationTile = -1;
  1726. curInt->cb->battleMakeAction(spellToCast);
  1727. endCastingSpell();
  1728. }
  1729. else
  1730. {
  1731. possibleActions.clear();
  1732. possibleActions.push_back (spellSelMode); //only this one action can be performed at the moment
  1733. GH.fakeMouseMove();//update cursor
  1734. }
  1735. }
  1736. void CBattleInterface::displayEffect(ui32 effect, int destTile)
  1737. {
  1738. addNewAnim(new CSpellEffectAnimation(this, effect, destTile));
  1739. }
  1740. void CBattleInterface::battleTriggerEffect(const BattleTriggerEffect & bte)
  1741. {
  1742. const CStack * stack = curInt->cb->battleGetStackByID(bte.stackID);
  1743. //don't show animation when no HP is regenerated
  1744. switch (bte.effect)
  1745. {
  1746. case Bonus::HP_REGENERATION:
  1747. displayEffect(74, stack->position);
  1748. CCS->soundh->playSound(soundBase::REGENER);
  1749. break;
  1750. case Bonus::MANA_DRAIN:
  1751. displayEffect(77, stack->position);
  1752. CCS->soundh->playSound(soundBase::MANADRAI);
  1753. break;
  1754. case Bonus::POISON:
  1755. displayEffect(67, stack->position);
  1756. CCS->soundh->playSound(soundBase::POISON);
  1757. break;
  1758. case Bonus::FEAR:
  1759. displayEffect(15, stack->position);
  1760. CCS->soundh->playSound(soundBase::FEAR);
  1761. break;
  1762. case Bonus::MORALE:
  1763. {
  1764. std::string hlp = CGI->generaltexth->allTexts[33];
  1765. boost::algorithm::replace_first(hlp,"%s",(stack->getName()));
  1766. displayEffect(20,stack->position);
  1767. console->addText(hlp);
  1768. break;
  1769. }
  1770. default:
  1771. return;
  1772. }
  1773. //waitForAnims(); //fixme: freezes game :?
  1774. }
  1775. void CBattleInterface::setAnimSpeed(int set)
  1776. {
  1777. Settings speed = settings.write["battle"]["animationSpeed"];
  1778. speed->Float() = set;
  1779. }
  1780. int CBattleInterface::getAnimSpeed() const
  1781. {
  1782. return settings["battle"]["animationSpeed"].Float();
  1783. }
  1784. void CBattleInterface::activateStack()
  1785. {
  1786. activeStack = stackToActivate;
  1787. stackToActivate = NULL;
  1788. const CStack *s = activeStack;
  1789. myTurn = true;
  1790. if(attackerInt && defenderInt) //hotseat -> need to pick which interface "takes over" as active
  1791. curInt = attackerInt->playerID == s->owner ? attackerInt : defenderInt;
  1792. queue->update();
  1793. redrawBackgroundWithHexes(activeStack);
  1794. bWait->block(s->waited()); //block waiting button if stack has been already waiting
  1795. //block cast spell button if hero doesn't have a spellbook
  1796. ESpellCastProblem::ESpellCastProblem spellcastingProblem;
  1797. bool canCastSpells = curInt->cb->battleCanCastSpell(&spellcastingProblem);
  1798. bSpell->block(!canCastSpells && spellcastingProblem != ESpellCastProblem::MAGIC_IS_BLOCKED); //if magic is blocked, we leave button active, so the message can be displayed (cf bug #97)
  1799. bSurrender->block((curInt == attackerInt ? defendingHeroInstance : attackingHeroInstance) == NULL);
  1800. bFlee->block(!curInt->cb->battleCanFlee());
  1801. bSurrender->block(curInt->cb->battleGetSurrenderCost() < 0);
  1802. //set casting flag to true if creature can use it to not check it every time
  1803. const Bonus *spellcaster = s->getBonusLocalFirst(Selector::type(Bonus::SPELLCASTER)),
  1804. *randomSpellcaster = s->getBonusLocalFirst(Selector::type(Bonus::RANDOM_SPELLCASTER));
  1805. if (s->casts && (spellcaster || randomSpellcaster))
  1806. {
  1807. stackCanCastSpell = true;
  1808. if(randomSpellcaster)
  1809. creatureSpellToCast = -1; //spell will be set later on cast
  1810. creatureSpellToCast = curInt->cb->battleGetRandomStackSpell(s, CBattleInfoCallback::RANDOM_AIMED); //faerie dragon can cast only one spell until their next move
  1811. //TODO: what if creature can cast BOTH random genie spell and aimed spell?
  1812. }
  1813. else
  1814. {
  1815. stackCanCastSpell = false;
  1816. creatureSpellToCast = -1;
  1817. }
  1818. getPossibleActionsForStack (s);
  1819. if(!pendingAnims.size() && !active)
  1820. activate();
  1821. GH.fakeMouseMove();
  1822. }
  1823. double CBattleInterface::getAnimSpeedMultiplier() const
  1824. {
  1825. switch(getAnimSpeed())
  1826. {
  1827. case 1:
  1828. return 3.5;
  1829. case 2:
  1830. return 2.2;
  1831. case 4:
  1832. return 1.0;
  1833. default:
  1834. return 0.0;
  1835. }
  1836. }
  1837. void CBattleInterface::endCastingSpell()
  1838. {
  1839. assert(spellDestSelectMode);
  1840. delete spellToCast;
  1841. spellToCast = NULL;
  1842. sp = NULL;
  1843. spellDestSelectMode = false;
  1844. CCS->curh->changeGraphic(ECursor::COMBAT, ECursor::COMBAT_POINTER);
  1845. if (activeStack)
  1846. {
  1847. getPossibleActionsForStack (activeStack); //restore actions after they were cleared
  1848. myTurn = true;
  1849. }
  1850. }
  1851. void CBattleInterface::getPossibleActionsForStack(const CStack * stack)
  1852. {
  1853. possibleActions.clear();
  1854. if (tacticsMode)
  1855. {
  1856. possibleActions += MOVE_TACTICS, CHOOSE_TACTICS_STACK;
  1857. }
  1858. else
  1859. {
  1860. //first action will be prioritized over later ones
  1861. if (stack->casts) //TODO: check for battlefield effects that prevent casting?
  1862. {
  1863. if (stack->hasBonusOfType (Bonus::SPELLCASTER))
  1864. {
  1865. //TODO: poll possible spells
  1866. const CSpell * spell;
  1867. BonusList spellBonuses = *stack->getBonuses (Selector::type(Bonus::SPELLCASTER));
  1868. BOOST_FOREACH (Bonus * spellBonus, spellBonuses)
  1869. {
  1870. spell = CGI->spellh->spells[spellBonus->subtype];
  1871. if (spell->isRisingSpell())
  1872. {
  1873. possibleActions.push_back (RISING_SPELL);
  1874. }
  1875. //possibleActions.push_back (NO_LOCATION);
  1876. //possibleActions.push_back (ANY_LOCATION);
  1877. //TODO: allow stacks cast aimed spells
  1878. //possibleActions.push_back (OTHER_SPELL);
  1879. else
  1880. {
  1881. switch (spellBonus->subtype)
  1882. {
  1883. case SpellID::REMOVE_OBSTACLE:
  1884. possibleActions.push_back (OBSTACLE);
  1885. break;
  1886. default:
  1887. possibleActions.push_back (selectionTypeByPositiveness (*spell));
  1888. break;
  1889. }
  1890. }
  1891. }
  1892. std::sort(possibleActions.begin(), possibleActions.end());
  1893. auto it = std::unique (possibleActions.begin(), possibleActions.end());
  1894. possibleActions.erase (it, possibleActions.end());
  1895. }
  1896. if (stack->hasBonusOfType (Bonus::RANDOM_SPELLCASTER))
  1897. possibleActions.push_back (RANDOM_GENIE_SPELL);
  1898. if (stack->hasBonusOfType (Bonus::DAEMON_SUMMONING))
  1899. possibleActions.push_back (RISE_DEMONS);
  1900. }
  1901. if (stack->shots && stack->hasBonusOfType (Bonus::SHOOTER))
  1902. possibleActions.push_back (SHOOT);
  1903. if (stack->hasBonusOfType (Bonus::RETURN_AFTER_STRIKE))
  1904. possibleActions.push_back (ATTACK_AND_RETURN);
  1905. possibleActions.push_back(ATTACK); //all active stacks can attack
  1906. possibleActions.push_back(WALK_AND_ATTACK); //not all stacks can always walk, but we will check this elsewhere
  1907. if (stack->canMove() && stack->Speed()) //probably no reason to try move war machines or bound stacks
  1908. possibleActions.push_back (MOVE_STACK); //all active stacks can attack
  1909. if (siegeH && stack->hasBonusOfType (Bonus::CATAPULT)) //TODO: check shots
  1910. possibleActions.push_back (CATAPULT);
  1911. if (stack->hasBonusOfType (Bonus::HEALER))
  1912. possibleActions.push_back (HEAL);
  1913. }
  1914. }
  1915. void CBattleInterface::showAliveStack(const CStack *stack, SDL_Surface * to)
  1916. {
  1917. int ID = stack->ID;
  1918. if(creAnims.find(ID) == creAnims.end()) //eg. for summoned but not yet handled stacks
  1919. return;
  1920. const CCreature *creature = stack->getCreature();
  1921. SDL_Rect unitRect = {creAnims[ID]->pos.x, creAnims[ID]->pos.y, uint16_t(creAnims[ID]->fullWidth), uint16_t(creAnims[ID]->fullHeight)};
  1922. CCreatureAnim::EAnimType animType = creAnims[ID]->getType();
  1923. int affectingSpeed = getAnimSpeed();
  1924. if(animType == CCreatureAnim::MOUSEON || animType == CCreatureAnim::HOLDING) //standing stacks should not stand faster :)
  1925. affectingSpeed = 2;
  1926. bool incrementFrame = (animCount%(4/affectingSpeed)==0) && animType!=CCreatureAnim::DEATH &&
  1927. animType!=CCreatureAnim::MOVE_START && animType!=CCreatureAnim::HOLDING;
  1928. if (creature->idNumber == CreatureID::ARROW_TOWERS)
  1929. {
  1930. // a turret creature has a limited height, so cut it at a certain position; turret creature has no standing anim
  1931. unitRect.h = siegeH->town->town->clientInfo.siegeShooterCropHeight;
  1932. }
  1933. else
  1934. {
  1935. // standing animation
  1936. if(animType == CCreatureAnim::HOLDING)
  1937. {
  1938. if(standingFrame.find(ID)!=standingFrame.end())
  1939. {
  1940. incrementFrame = (animCount%(8/affectingSpeed)==0);
  1941. if(incrementFrame)
  1942. {
  1943. ++standingFrame[ID];
  1944. if(standingFrame[ID] == creAnims[ID]->framesInGroup(CCreatureAnim::HOLDING))
  1945. {
  1946. standingFrame.erase(standingFrame.find(ID));
  1947. }
  1948. }
  1949. }
  1950. else
  1951. {
  1952. if((rand()%50) == 0)
  1953. {
  1954. standingFrame.insert(std::make_pair(ID, 0));
  1955. }
  1956. }
  1957. }
  1958. }
  1959. // As long as the projectile of the shooter-stack is flying incrementFrame should be false
  1960. //bool shootingFinished = true;
  1961. for (std::list<ProjectileInfo>::iterator it = projectiles.begin(); it != projectiles.end(); ++it)
  1962. {
  1963. if (it->stackID == ID)
  1964. {
  1965. //shootingFinished = false;
  1966. if (it->animStartDelay == 0)
  1967. incrementFrame = false;
  1968. }
  1969. }
  1970. // Increment always when moving, never if stack died
  1971. creAnims[ID]->nextFrame(to, unitRect.x, unitRect.y, creDir[ID], animCount, incrementFrame, activeStack && ID==activeStack->ID, ID==mouseHoveredStack, &unitRect);
  1972. //printing amount
  1973. if(stack->count > 0 //don't print if stack is not alive
  1974. && (!curInt->curAction
  1975. || (curInt->curAction->stackNumber != ID //don't print if stack is currently taking an action
  1976. && (curInt->curAction->actionType != Battle::WALK_AND_ATTACK || stack->position != curInt->curAction->additionalInfo) //nor if it's an object of attack
  1977. && (curInt->curAction->destinationTile != stack->position) //nor if it's on destination tile for current action
  1978. )
  1979. )
  1980. && !stack->hasBonusOfType(Bonus::SIEGE_WEAPON) //and not a war machine...
  1981. )
  1982. {
  1983. const BattleHex nextPos = stack->position + (stack->attackerOwned ? 1 : -1);
  1984. const bool edge = stack->position % GameConstants::BFIELD_WIDTH == (stack->attackerOwned ? GameConstants::BFIELD_WIDTH - 2 : 1);
  1985. const bool moveInside = !edge && !stackCountOutsideHexes[nextPos];
  1986. int xAdd = (stack->attackerOwned ? 220 : 202) +
  1987. (stack->doubleWide() ? 44 : 0) * (stack->attackerOwned ? +1 : -1) +
  1988. (moveInside ? amountNormal->w + 10 : 0) * (stack->attackerOwned ? -1 : +1);
  1989. int yAdd = 260 + ((stack->attackerOwned || moveInside) ? 0 : -15);
  1990. //blitting amount background box
  1991. SDL_Surface *amountBG = NULL;
  1992. TBonusListPtr spellEffects = stack->getSpellBonuses();
  1993. if(!spellEffects->size())
  1994. {
  1995. amountBG = amountNormal;
  1996. }
  1997. else
  1998. {
  1999. int pos=0; //determining total positiveness of effects
  2000. std::vector<si32> spellIds = stack->activeSpells();
  2001. for(std::vector<si32>::const_iterator it = spellIds.begin(); it != spellIds.end(); it++)
  2002. {
  2003. pos += CGI->spellh->spells[ *it ]->positiveness;
  2004. }
  2005. if(pos > 0)
  2006. {
  2007. amountBG = amountPositive;
  2008. }
  2009. else if(pos < 0)
  2010. {
  2011. amountBG = amountNegative;
  2012. }
  2013. else
  2014. {
  2015. amountBG = amountEffNeutral;
  2016. }
  2017. }
  2018. SDL_Rect temp_rect = genRect(amountNormal->h, amountNormal->w, creAnims[ID]->pos.x + xAdd, creAnims[ID]->pos.y + yAdd);
  2019. SDL_BlitSurface(amountBG, NULL, to, &temp_rect);
  2020. //blitting amount
  2021. Point textPos(creAnims[ID]->pos.x + xAdd + 15, creAnims[ID]->pos.y + yAdd + 5);
  2022. graphics->fonts[FONT_TINY]->renderTextCenter(to, makeNumberShort(stack->count), Colors::WHITE, textPos);
  2023. }
  2024. }
  2025. void CBattleInterface::showPieceOfWall(SDL_Surface * to, int hex, const std::vector<const CStack*> & stacks)
  2026. {
  2027. if(!siegeH)
  2028. return;
  2029. #ifdef CPP11_USE_INITIALIZERS_LIST
  2030. //note - std::list<int> must be specified to avoid type deduction by gcc (may not work in other compilers)
  2031. static const std::map<int, std::list<int> > hexToPart = {
  2032. {12, std::list<int>{8, 1, 7}}, {45, std::list<int>{12, 6}},
  2033. {101, std::list<int>{10}}, {118, std::list<int>{2}},
  2034. {165, std::list<int>{11}}, {186, std::list<int>{3}}};
  2035. #else
  2036. using namespace boost::assign;
  2037. std::map<int, std::list<int> > hexToPart;
  2038. hexToPart[12] = list_of<int>(8)(1)(7);
  2039. hexToPart[45] = list_of<int>(12)(6);
  2040. hexToPart[101] = list_of<int>(10);
  2041. hexToPart[118] = list_of<int>(2);
  2042. hexToPart[165] = list_of<int>(11);
  2043. hexToPart[186] = list_of<int>(3);
  2044. #endif
  2045. std::map<int, std::list<int> >::const_iterator it = hexToPart.find(hex);
  2046. if(it != hexToPart.end())
  2047. {
  2048. BOOST_FOREACH(int wallNum, it->second)
  2049. {
  2050. siegeH->printPartOfWall(to, wallNum);
  2051. //print creature in turret
  2052. int posToSeek = -1;
  2053. switch(wallNum)
  2054. {
  2055. case 3: //bottom turret
  2056. posToSeek = -3;
  2057. break;
  2058. case 8: //upper turret
  2059. posToSeek = -4;
  2060. break;
  2061. case 2: //keep
  2062. posToSeek = -2;
  2063. break;
  2064. }
  2065. if(posToSeek != -1)
  2066. {
  2067. const CStack *turret = NULL;
  2068. BOOST_FOREACH(const CStack *s, stacks)
  2069. {
  2070. if(s->position == posToSeek)
  2071. {
  2072. turret = s;
  2073. break;
  2074. }
  2075. }
  2076. if(turret)
  2077. {
  2078. showAliveStack(turret, to);
  2079. //blitting creature cover
  2080. switch(posToSeek)
  2081. {
  2082. case -3: //bottom turret
  2083. siegeH->printPartOfWall(to, 16);
  2084. break;
  2085. case -4: //upper turret
  2086. siegeH->printPartOfWall(to, 17);
  2087. break;
  2088. case -2: //keep
  2089. siegeH->printPartOfWall(to, 15);
  2090. break;
  2091. }
  2092. }
  2093. }
  2094. }
  2095. }
  2096. // Damaged wall below gate have to be drawn earlier than a non-damaged wall below gate.
  2097. if ((hex == 112 && curInt->cb->battleGetWallState(3) == 3) || (hex == 147 && curInt->cb->battleGetWallState(3) != 3))
  2098. siegeH->printPartOfWall(to, 5);
  2099. // Damaged bottom wall have to be drawn earlier than a non-damaged bottom wall.
  2100. if ((hex == 165 && curInt->cb->battleGetWallState(4) == 3) || (hex == 185 && curInt->cb->battleGetWallState(4) != 3))
  2101. siegeH->printPartOfWall(to, 4);
  2102. }
  2103. void CBattleInterface::redrawBackgroundWithHexes(const CStack * activeStack)
  2104. {
  2105. attackableHexes.clear();
  2106. if (activeStack)
  2107. occupyableHexes = curInt->cb->battleGetAvailableHexes(activeStack, true, &attackableHexes);
  2108. curInt->cb->battleGetStackCountOutsideHexes(stackCountOutsideHexes);
  2109. //preparating background graphic with hexes and shaded hexes
  2110. blitAt(background, 0, 0, backgroundWithHexes);
  2111. //draw absolute obstacles (cliffs and so on)
  2112. BOOST_FOREACH(auto &oi, curInt->cb->battleGetAllObstacles())
  2113. {
  2114. if(oi->obstacleType == CObstacleInstance::ABSOLUTE_OBSTACLE/* || oi.obstacleType == CObstacleInstance::MOAT*/)
  2115. blitAt(imageOfObstacle(*oi), oi->getInfo().width, oi->getInfo().height, backgroundWithHexes);
  2116. }
  2117. if(settings["battle"]["cellBorders"].Bool())
  2118. CSDL_Ext::blit8bppAlphaTo24bpp(cellBorders, NULL, backgroundWithHexes, NULL);
  2119. if(settings["battle"]["stackRange"].Bool())
  2120. {
  2121. std::vector<BattleHex> hexesToShade = occupyableHexes;
  2122. hexesToShade.insert(hexesToShade.end(), attackableHexes.begin(), attackableHexes.end());
  2123. BOOST_FOREACH(BattleHex hex, hexesToShade)
  2124. {
  2125. int i = hex.getY(); //row
  2126. int j = hex.getX()-1; //column
  2127. int x = 58 + (i%2==0 ? 22 : 0) + 44*j;
  2128. int y = 86 + 42 * i;
  2129. SDL_Rect temp_rect = genRect(cellShade->h, cellShade->w, x, y);
  2130. CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, backgroundWithHexes, &temp_rect);
  2131. }
  2132. }
  2133. }
  2134. void CBattleInterface::printConsoleAttacked( const CStack * defender, int dmg, int killed, const CStack * attacker, bool multiple )
  2135. {
  2136. char tabh[200] = {0};
  2137. int end = 0;
  2138. if (attacker) //ignore if stacks were killed by spell
  2139. {
  2140. end = sprintf(tabh, CGI->generaltexth->allTexts[attacker->count > 1 ? 377 : 376].c_str(),
  2141. (attacker->count > 1 ? attacker->getCreature()->namePl.c_str() : attacker->getCreature()->nameSing.c_str()), dmg);
  2142. }
  2143. if(killed > 0)
  2144. {
  2145. if(killed > 1)
  2146. {
  2147. sprintf(tabh + end, CGI->generaltexth->allTexts[379].c_str(), killed,
  2148. multiple ? CGI->generaltexth->allTexts[43].c_str() : defender->getCreature()->namePl.c_str()); // creatures perish
  2149. }
  2150. else //killed == 1
  2151. {
  2152. sprintf(tabh + end, CGI->generaltexth->allTexts[378].c_str(),
  2153. multiple ? CGI->generaltexth->allTexts[42].c_str() : defender->getCreature()->nameSing.c_str()); // creature perishes
  2154. }
  2155. }
  2156. console->addText(std::string(tabh));
  2157. }
  2158. void CBattleInterface::projectileShowHelper(SDL_Surface * to)
  2159. {
  2160. if(to == NULL)
  2161. to = screen;
  2162. std::list< std::list<ProjectileInfo>::iterator > toBeDeleted;
  2163. for(std::list<ProjectileInfo>::iterator it=projectiles.begin(); it!=projectiles.end(); ++it)
  2164. {
  2165. // Creature have to be in a shooting anim and the anim start delay must be over.
  2166. // Otherwise abort to start moving the projectile.
  2167. if (it->animStartDelay > 0)
  2168. {
  2169. if(it->animStartDelay == creAnims[it->stackID]->getAnimationFrame() + 1
  2170. && creAnims[it->stackID]->getType() >= 14 && creAnims[it->stackID]->getType() <= 16)
  2171. it->animStartDelay = 0;
  2172. else
  2173. continue;
  2174. }
  2175. SDL_Rect dst;
  2176. dst.h = idToProjectile[it->creID]->ourImages[it->frameNum].bitmap->h;
  2177. dst.w = idToProjectile[it->creID]->ourImages[it->frameNum].bitmap->w;
  2178. dst.x = it->x;
  2179. dst.y = it->y;
  2180. // The equation below calculates the center pos of the canon, but we need the top left pos
  2181. // of it for drawing
  2182. if (it->catapultInfo)
  2183. {
  2184. dst.x -= 17.;
  2185. dst.y -= 10.;
  2186. }
  2187. if(it->reverse)
  2188. {
  2189. SDL_Surface * rev = CSDL_Ext::rotate01(idToProjectile[it->creID]->ourImages[it->frameNum].bitmap);
  2190. CSDL_Ext::blit8bppAlphaTo24bpp(rev, NULL, to, &dst);
  2191. SDL_FreeSurface(rev);
  2192. }
  2193. else
  2194. {
  2195. CSDL_Ext::blit8bppAlphaTo24bpp(idToProjectile[it->creID]->ourImages[it->frameNum].bitmap, NULL, to, &dst);
  2196. }
  2197. // Update projectile
  2198. ++it->step;
  2199. if(it->step == it->lastStep)
  2200. {
  2201. toBeDeleted.insert(toBeDeleted.end(), it);
  2202. }
  2203. else
  2204. {
  2205. if (it->catapultInfo)
  2206. {
  2207. // Parabolic shot of the trajectory, as follows: f(x) = ax^2 + bx + c
  2208. it->x += it->dx;
  2209. it->y = it->catapultInfo->calculateY(it->x - this->pos.x) + this->pos.y;
  2210. }
  2211. else
  2212. {
  2213. // Normal projectile, just add the calculated "deltas" to the x and y positions.
  2214. it->x += it->dx;
  2215. it->y += it->dy;
  2216. }
  2217. if(it->spin)
  2218. {
  2219. ++(it->frameNum);
  2220. it->frameNum %= idToProjectile[it->creID]->ourImages.size();
  2221. }
  2222. }
  2223. }
  2224. for(std::list< std::list<ProjectileInfo>::iterator >::iterator it = toBeDeleted.begin(); it!= toBeDeleted.end(); ++it)
  2225. {
  2226. projectiles.erase(*it);
  2227. }
  2228. }
  2229. void CBattleInterface::endAction(const BattleAction* action)
  2230. {
  2231. const CStack * stack = curInt->cb->battleGetStackByID(action->stackNumber);
  2232. //if((action->actionType==2 || (action->actionType==6 && action->destinationTile!=cb->battleGetPos(action->stackNumber)))) //activating interface when move is finished
  2233. // {
  2234. // activate();
  2235. // }
  2236. if(action->actionType == Battle::HERO_SPELL)
  2237. {
  2238. if(action->side)
  2239. defendingHero->setPhase(0);
  2240. else
  2241. attackingHero->setPhase(0);
  2242. }
  2243. if(stack && action->actionType == Battle::WALK &&
  2244. creAnims[action->stackNumber]->getType() != CCreatureAnim::HOLDING) //walk or walk & attack
  2245. {
  2246. pendingAnims.push_back(std::make_pair(new CMovementEndAnimation(this, stack, action->destinationTile), false));
  2247. }
  2248. if(action->actionType == Battle::CATAPULT) //catapult
  2249. {
  2250. }
  2251. //check if we should reverse stacks
  2252. //for some strange reason, it's not enough
  2253. // std::set<const CStack *> stacks;
  2254. // stacks.insert(LOCPLINT->cb->battleGetStackByID(action->stackNumber));
  2255. // stacks.insert(LOCPLINT->cb->battleGetStackByPos(action->destinationTile));
  2256. TStacks stacks = curInt->cb->battleGetStacks(CBattleCallback::MINE_AND_ENEMY);
  2257. BOOST_FOREACH(const CStack *s, stacks)
  2258. {
  2259. if(s && creDir[s->ID] != bool(s->attackerOwned) && s->alive())
  2260. {
  2261. addNewAnim(new CReverseAnimation(this, s, s->position, false));
  2262. }
  2263. }
  2264. queue->update();
  2265. if(tacticsMode) //stack ended movement in tactics phase -> select the next one
  2266. bTacticNextStack(stack);
  2267. if( action->actionType == Battle::HERO_SPELL) //we have activated next stack after sending request that has been just realized -> blockmap due to movement has changed
  2268. redrawBackgroundWithHexes(activeStack);
  2269. }
  2270. void CBattleInterface::hideQueue()
  2271. {
  2272. Settings showQueue = settings.write["battle"]["showQueue"];
  2273. showQueue->Bool() = false;
  2274. queue->deactivate();
  2275. if(!queue->embedded)
  2276. {
  2277. moveBy(Point(0, -queue->pos.h / 2));
  2278. GH.totalRedraw();
  2279. }
  2280. }
  2281. void CBattleInterface::showQueue()
  2282. {
  2283. Settings showQueue = settings.write["battle"]["showQueue"];
  2284. showQueue->Bool() = true;
  2285. queue->activate();
  2286. if(!queue->embedded)
  2287. {
  2288. moveBy(Point(0, +queue->pos.h / 2));
  2289. GH.totalRedraw();
  2290. }
  2291. }
  2292. void CBattleInterface::startAction(const BattleAction* action)
  2293. {
  2294. if(action->actionType == Battle::END_TACTIC_PHASE)
  2295. {
  2296. SDL_FreeSurface(menu);
  2297. menu = BitmapHandler::loadBitmap("CBAR.bmp");
  2298. graphics->blueToPlayersAdv(menu, curInt->playerID);
  2299. bDefence->block(false);
  2300. bWait->block(false);
  2301. if(active)
  2302. {
  2303. if(btactEnd && btactNext) //if the other side had tactics, there are no buttons
  2304. {
  2305. btactEnd->deactivate();
  2306. btactNext->deactivate();
  2307. bConsoleDown->activate();
  2308. bConsoleUp->activate();
  2309. }
  2310. }
  2311. redraw();
  2312. return;
  2313. }
  2314. const CStack *stack = curInt->cb->battleGetStackByID(action->stackNumber);
  2315. if(stack)
  2316. {
  2317. queue->update();
  2318. }
  2319. else
  2320. {
  2321. assert(action->actionType == Battle::HERO_SPELL); //only cast spell is valid action without acting stack number
  2322. }
  2323. if(action->actionType == Battle::WALK
  2324. || (action->actionType == Battle::WALK_AND_ATTACK && action->destinationTile != stack->position))
  2325. {
  2326. moveStarted = true;
  2327. if(creAnims[action->stackNumber]->framesInGroup(CCreatureAnim::MOVE_START))
  2328. {
  2329. const CStack * stack = curInt->cb->battleGetStackByID(action->stackNumber);
  2330. pendingAnims.push_back(std::make_pair(new CMovementStartAnimation(this, stack), false));
  2331. }
  2332. }
  2333. if(active)
  2334. deactivate();
  2335. char txt[400];
  2336. if (action->actionType == Battle::HERO_SPELL) //when hero casts spell
  2337. {
  2338. if(action->side)
  2339. defendingHero->setPhase(4);
  2340. else
  2341. attackingHero->setPhase(4);
  2342. return;
  2343. }
  2344. if(!stack)
  2345. {
  2346. tlog1<<"Something wrong with stackNumber in actionStarted. Stack number: "<<action->stackNumber<<std::endl;
  2347. return;
  2348. }
  2349. int txtid = 0;
  2350. switch(action->actionType)
  2351. {
  2352. case Battle::WAIT:
  2353. txtid = 136;
  2354. break;
  2355. case Battle::BAD_MORALE:
  2356. txtid = -34; //negative -> no separate singular/plural form
  2357. displayEffect(30,stack->position);
  2358. break;
  2359. }
  2360. if(txtid > 0 && stack->count != 1)
  2361. txtid++; //move to plural text
  2362. else if(txtid < 0)
  2363. txtid = -txtid;
  2364. if(txtid)
  2365. {
  2366. sprintf(txt, CGI->generaltexth->allTexts[txtid].c_str(), (stack->count != 1) ? stack->getCreature()->namePl.c_str() : stack->getCreature()->nameSing.c_str(), 0);
  2367. console->addText(txt);
  2368. }
  2369. //displaying special abilities
  2370. switch (action->actionType)
  2371. {
  2372. case Battle::STACK_HEAL:
  2373. displayEffect(74, action->destinationTile);
  2374. CCS->soundh->playSound(soundBase::REGENER);
  2375. break;
  2376. }
  2377. }
  2378. void CBattleInterface::waitForAnims()
  2379. {
  2380. auto unlockPim = vstd::makeUnlockGuard(*LOCPLINT->pim);
  2381. animsAreDisplayed.waitWhileTrue();
  2382. }
  2383. void CBattleInterface::bEndTacticPhase()
  2384. {
  2385. activeStack = NULL;
  2386. btactEnd->block(true);
  2387. tacticsMode = false;
  2388. }
  2389. static bool immobile(const CStack *s)
  2390. {
  2391. return !s->Speed(0, true); //should bound stacks be immobile?
  2392. }
  2393. void CBattleInterface::bTacticNextStack(const CStack *current /*= NULL*/)
  2394. {
  2395. if(!current)
  2396. current = activeStack;
  2397. //no switching stacks when the current one is moving
  2398. waitForAnims();
  2399. TStacks stacksOfMine = tacticianInterface->cb->battleGetStacks(CBattleCallback::ONLY_MINE);
  2400. stacksOfMine.erase(std::remove_if(stacksOfMine.begin(), stacksOfMine.end(), &immobile), stacksOfMine.end());
  2401. TStacks::iterator it = vstd::find(stacksOfMine, current);
  2402. if(it != stacksOfMine.end() && ++it != stacksOfMine.end())
  2403. stackActivated(*it);
  2404. else
  2405. stackActivated(stacksOfMine.front());
  2406. }
  2407. CBattleInterface::PossibleActions CBattleInterface::selectionTypeByPositiveness(const CSpell & spell)
  2408. {
  2409. switch(spell.positiveness)
  2410. {
  2411. case CSpell::NEGATIVE :
  2412. return HOSTILE_CREATURE_SPELL;
  2413. case CSpell::NEUTRAL:
  2414. return ANY_CREATURE;
  2415. case CSpell::POSITIVE:
  2416. return FRIENDLY_CREATURE_SPELL;
  2417. }
  2418. assert(0);
  2419. return NO_LOCATION; //should never happen
  2420. }
  2421. std::string formatDmgRange(std::pair<ui32, ui32> dmgRange)
  2422. {
  2423. if(dmgRange.first != dmgRange.second)
  2424. return (boost::format("%d - %d") % dmgRange.first % dmgRange.second).str();
  2425. else
  2426. return (boost::format("%d") % dmgRange.first).str();
  2427. }
  2428. bool CBattleInterface::canStackMoveHere (const CStack * activeStack, BattleHex myNumber)
  2429. {
  2430. std::vector<BattleHex> acc = curInt->cb->battleGetAvailableHexes (activeStack, false);
  2431. int shiftedDest = myNumber + (activeStack->attackerOwned ? 1 : -1);
  2432. if (vstd::contains(acc, myNumber))
  2433. return true;
  2434. else if (activeStack->doubleWide() && vstd::contains(acc, shiftedDest))
  2435. return true;
  2436. else
  2437. return false;
  2438. }
  2439. void CBattleInterface::handleHex(BattleHex myNumber, int eventType)
  2440. {
  2441. if(!myTurn) //we are not permit to do anything
  2442. return;
  2443. // This function handles mouse move over hexes and l-clicking on them.
  2444. // First we decide what happens if player clicks on this hex and set appropriately
  2445. // consoleMsg, cursorFrame/Type and prepare lambda realizeAction.
  2446. //
  2447. // Then, depending whether it was hover/click we either call the action or set tooltip/cursor.
  2448. //used when hovering -> tooltip message and cursor to be set
  2449. std::string consoleMsg;
  2450. bool setCursor = true; //if we want to suppress setting cursor
  2451. ECursor::ECursorTypes cursorType = ECursor::COMBAT;
  2452. int cursorFrame = ECursor::COMBAT_POINTER; //TODO: is this line used?
  2453. //used when l-clicking -> action to be called upon the click
  2454. std::function<void()> realizeAction;
  2455. //helper lambda that appropriately realizes action / sets cursor and tooltip
  2456. auto realizeThingsToDo = [&]()
  2457. {
  2458. if(eventType == MOVE)
  2459. {
  2460. if(setCursor)
  2461. CCS->curh->changeGraphic(cursorType, cursorFrame);
  2462. this->console->alterText(consoleMsg);
  2463. this->console->whoSetAlter = 0;
  2464. }
  2465. if(eventType == LCLICK && realizeAction)
  2466. {
  2467. //opening creature window shouldn't affect myTurn...
  2468. if(currentAction != CREATURE_INFO)
  2469. {
  2470. myTurn = false; //tends to crash with empty calls
  2471. }
  2472. realizeAction();
  2473. CCS->curh->changeGraphic(ECursor::COMBAT, ECursor::COMBAT_POINTER);
  2474. this->console->alterText("");
  2475. }
  2476. };
  2477. const CStack * const sactive = activeStack;
  2478. //Get stack on the hex - first try to grab the alive one, if not found -> allow dead stacks.
  2479. const CStack *shere = curInt->cb->battleGetStackByPos(myNumber, true);
  2480. if(!shere)
  2481. shere = curInt->cb->battleGetStackByPos(myNumber, false);
  2482. if (!sactive)
  2483. return;
  2484. bool ourStack = false;
  2485. if (shere)
  2486. ourStack = shere->owner == curInt->playerID;
  2487. //TODO: handle
  2488. bool noStackIsHovered = true; //will cause removing a blue glow
  2489. localActions.clear();
  2490. illegalActions.clear();
  2491. BOOST_FOREACH (PossibleActions action, possibleActions)
  2492. {
  2493. bool legalAction = false; //this action is legal and can't be performed
  2494. bool notLegal = false; //this action is not legal and should display message
  2495. switch (action)
  2496. {
  2497. case CHOOSE_TACTICS_STACK:
  2498. if (shere && ourStack)
  2499. legalAction = true;
  2500. break;
  2501. case MOVE_TACTICS:
  2502. case MOVE_STACK:
  2503. {
  2504. if (!(shere && shere->alive())) //we can walk on dead stacks
  2505. {
  2506. if (canStackMoveHere (sactive, myNumber))
  2507. legalAction = true;
  2508. }
  2509. break;
  2510. }
  2511. case ATTACK:
  2512. case WALK_AND_ATTACK:
  2513. case ATTACK_AND_RETURN:
  2514. {
  2515. if (shere && !ourStack && shere->alive())
  2516. {
  2517. if (isTileAttackable(myNumber))
  2518. {
  2519. setBattleCursor(myNumber); // temporary - needed for following function :(
  2520. BattleHex attackFromHex = fromWhichHexAttack(myNumber);
  2521. if (attackFromHex >= 0) //we can be in this line when unreachable creature is L - clicked (as of revision 1308)
  2522. legalAction = true;
  2523. }
  2524. }
  2525. }
  2526. break;
  2527. case SHOOT:
  2528. if(curInt->cb->battleCanShoot (activeStack, myNumber))
  2529. legalAction = true;
  2530. break;
  2531. case ANY_LOCATION:
  2532. if (myNumber > -1) //TODO: this should be checked for all actions
  2533. {
  2534. creatureCasting = stackCanCastSpell && !spellDestSelectMode; //as isCastingPossibleHere is not called
  2535. legalAction = true;
  2536. }
  2537. break;
  2538. case HOSTILE_CREATURE_SPELL:
  2539. if (shere && shere->alive() && !ourStack && isCastingPossibleHere (sactive, shere, myNumber))
  2540. legalAction = true;
  2541. break;
  2542. case FRIENDLY_CREATURE_SPELL:
  2543. if (shere && shere->alive() && ourStack && isCastingPossibleHere (sactive, shere, myNumber))
  2544. legalAction = true;
  2545. break;
  2546. case RISING_SPELL:
  2547. if (shere && shere->canBeHealed() && ourStack && isCastingPossibleHere (sactive, shere, myNumber)) //TODO: at least one stack has to be raised by resurrection / animate dead
  2548. legalAction = true;
  2549. break;
  2550. case RANDOM_GENIE_SPELL:
  2551. {
  2552. if (shere && ourStack && shere != sactive) //only positive spells for other allied creatures
  2553. {
  2554. int spellID = curInt->cb->battleGetRandomStackSpell(shere, CBattleInfoCallback::RANDOM_GENIE);
  2555. if (spellID > -1)
  2556. {
  2557. legalAction = true;
  2558. }
  2559. }
  2560. }
  2561. break;
  2562. case OBSTACLE:
  2563. if (isCastingPossibleHere (sactive, shere, myNumber))
  2564. legalAction = true;
  2565. break;
  2566. case TELEPORT:
  2567. {
  2568. ui8 skill = 0;
  2569. if (creatureCasting)
  2570. skill = sactive->valOfBonuses(Selector::typeSubtype(Bonus::SPELLCASTER, SpellID::TELEPORT));
  2571. else
  2572. skill = getActiveHero()->getSpellSchoolLevel (CGI->spellh->spells[spellToCast->additionalInfo]);
  2573. //TODO: explicitely save power, skill
  2574. if (curInt->cb->battleCanTeleportTo(selectedStack, myNumber, skill))
  2575. legalAction = true;
  2576. else
  2577. notLegal = true;
  2578. }
  2579. break;
  2580. case SACRIFICE: //choose our living stack to sacrifice
  2581. if (shere && shere != selectedStack && ourStack && shere->alive())
  2582. legalAction = true;
  2583. else
  2584. notLegal = true;
  2585. break;
  2586. case FREE_LOCATION:
  2587. {
  2588. ui8 side = curInt->cb->battleGetMySide();
  2589. auto hero = curInt->cb->battleGetMyHero();
  2590. assert(!creatureCasting); //we assume hero casts this spell
  2591. assert(hero);
  2592. legalAction = true;
  2593. bool hexesOutsideBattlefield = false;
  2594. auto tilesThatMustBeClear = sp->rangeInHexes(myNumber, hero->getSpellSchoolLevel(sp), side, &hexesOutsideBattlefield);
  2595. BOOST_FOREACH(BattleHex hex, tilesThatMustBeClear)
  2596. {
  2597. if(curInt->cb->battleGetStackByPos(hex, false) || !!curInt->cb->battleGetObstacleOnPos(hex, false)
  2598. || !hex.isAvailable())
  2599. {
  2600. legalAction = false;
  2601. notLegal = true;
  2602. }
  2603. }
  2604. if(hexesOutsideBattlefield)
  2605. {
  2606. legalAction = false;
  2607. notLegal = true;
  2608. }
  2609. }
  2610. break;
  2611. case CATAPULT:
  2612. if (isCatapultAttackable(myNumber))
  2613. legalAction = true;
  2614. break;
  2615. case HEAL:
  2616. if (shere && ourStack && shere->canBeHealed())
  2617. legalAction = true;
  2618. break;
  2619. case RISE_DEMONS:
  2620. if (shere && ourStack && !shere->alive())
  2621. legalAction = true;
  2622. break;
  2623. }
  2624. if (legalAction)
  2625. localActions.push_back (action);
  2626. else if (notLegal)
  2627. illegalActions.push_back (action);
  2628. }
  2629. illegalAction = INVALID; //clear it in first place
  2630. if (vstd::contains(localActions, selectedAction)) //try to use last selected action by default
  2631. currentAction = selectedAction;
  2632. else if (localActions.size()) //if not possible, select first avaliable action 9they are sorted by suggested priority)
  2633. currentAction = localActions.front();
  2634. else //no legal action possible
  2635. {
  2636. currentAction = INVALID; //don't allow to do anything
  2637. if (vstd::contains(illegalActions, selectedAction))
  2638. illegalAction = selectedAction;
  2639. else if (illegalActions.size())
  2640. illegalAction = illegalActions.front();
  2641. else if (shere && ourStack && shere->alive()) //last possibility - display info about our creature
  2642. {
  2643. currentAction = CREATURE_INFO;
  2644. }
  2645. else
  2646. illegalAction = INVALID; //we should never be here
  2647. }
  2648. bool isCastingPossible = false;
  2649. bool secondaryTarget = false;
  2650. if (currentAction > INVALID)
  2651. {
  2652. switch (currentAction) //display console message, realize selected action
  2653. {
  2654. case CHOOSE_TACTICS_STACK:
  2655. consoleMsg = (boost::format(CGI->generaltexth->allTexts[481]) % shere->getName()).str(); //Select %s
  2656. realizeAction = [=]{ stackActivated(shere); };
  2657. break;
  2658. case MOVE_TACTICS:
  2659. case MOVE_STACK:
  2660. if (activeStack->hasBonusOfType(Bonus::FLYING))
  2661. {
  2662. cursorFrame = ECursor::COMBAT_FLY;
  2663. consoleMsg = (boost::format(CGI->generaltexth->allTexts[295]) % activeStack->getName()).str(); //Fly %s here
  2664. }
  2665. else
  2666. {
  2667. cursorFrame = ECursor::COMBAT_MOVE;
  2668. consoleMsg = (boost::format(CGI->generaltexth->allTexts[294]) % activeStack->getName()).str(); //Move %s here
  2669. }
  2670. realizeAction = [=]
  2671. {
  2672. if (activeStack->doubleWide())
  2673. {
  2674. std::vector<BattleHex> acc = curInt->cb->battleGetAvailableHexes(activeStack, false);
  2675. int shiftedDest = myNumber + (activeStack->attackerOwned ? 1 : -1);
  2676. if(vstd::contains(acc, myNumber))
  2677. giveCommand (Battle::WALK ,myNumber, activeStack->ID);
  2678. else if(vstd::contains(acc, shiftedDest))
  2679. giveCommand (Battle::WALK, shiftedDest, activeStack->ID);
  2680. }
  2681. else
  2682. {
  2683. giveCommand (Battle::WALK, myNumber, activeStack->ID);
  2684. }
  2685. };
  2686. break;
  2687. case ATTACK:
  2688. case WALK_AND_ATTACK:
  2689. case ATTACK_AND_RETURN: //TODO: allow to disable return
  2690. {
  2691. setBattleCursor(myNumber); //handle direction of cursor and attackable tile
  2692. setCursor = false; //don't overwrite settings from the call above //TODO: what does it mean?
  2693. realizeAction = [=]
  2694. {
  2695. BattleHex attackFromHex = fromWhichHexAttack(myNumber);
  2696. if (attackFromHex >= 0) //we can be in this line when unreachable creature is L - clicked (as of revision 1308)
  2697. {
  2698. giveCommand(Battle::WALK_AND_ATTACK, attackFromHex, activeStack->ID, myNumber);
  2699. }
  2700. };
  2701. std::string estDmgText = formatDmgRange(curInt->cb->battleEstimateDamage(sactive, shere)); //calculating estimated dmg
  2702. consoleMsg = (boost::format(CGI->generaltexth->allTexts[36]) % shere->getName() % estDmgText).str(); //Attack %s (%s damage)
  2703. }
  2704. break;
  2705. case SHOOT:
  2706. {
  2707. if(curInt->cb->battleHasShootingPenalty(activeStack, myNumber))
  2708. cursorFrame = ECursor::COMBAT_SHOOT_PENALTY;
  2709. else
  2710. cursorFrame = ECursor::COMBAT_SHOOT;
  2711. realizeAction = [=] {giveCommand(Battle::SHOOT, myNumber, activeStack->ID);};
  2712. std::string estDmgText = formatDmgRange(curInt->cb->battleEstimateDamage(sactive, shere)); //calculating estimated dmg
  2713. //printing - Shoot %s (%d shots left, %s damage)
  2714. consoleMsg = (boost::format(CGI->generaltexth->allTexts[296]) % shere->getName() % sactive->shots % estDmgText).str();
  2715. }
  2716. break;
  2717. case HOSTILE_CREATURE_SPELL:
  2718. case FRIENDLY_CREATURE_SPELL:
  2719. case RISING_SPELL:
  2720. sp = CGI->spellh->spells[creatureCasting ? creatureSpellToCast : spellToCast->additionalInfo]; //necessary if creature has random Genie spell at same time
  2721. consoleMsg = boost::str(boost::format(CGI->generaltexth->allTexts[27]) % sp->name % shere->getName()); //Cast %s on %s
  2722. switch (sp->id)
  2723. {
  2724. case SpellID::SACRIFICE:
  2725. case SpellID::TELEPORT:
  2726. selectedStack = shere; //remember firts target
  2727. secondaryTarget = true;
  2728. break;
  2729. }
  2730. isCastingPossible = true;
  2731. break;
  2732. case ANY_LOCATION:
  2733. sp = CGI->spellh->spells[creatureCasting ? creatureSpellToCast : spellToCast->additionalInfo]; //necessary if creature has random Genie spell at same time
  2734. consoleMsg = boost::str(boost::format(CGI->generaltexth->allTexts[26]) % sp->name); //Cast %s
  2735. isCastingPossible = true;
  2736. break;
  2737. case RANDOM_GENIE_SPELL: //we assume that teleport / sacrifice will never be avaliable as random spell
  2738. sp = NULL;
  2739. consoleMsg = boost::str(boost::format(CGI->generaltexth->allTexts[301]) % shere->getName()); //Cast a spell on %
  2740. creatureCasting = true;
  2741. isCastingPossible = true;
  2742. break;
  2743. case TELEPORT:
  2744. consoleMsg = CGI->generaltexth->allTexts[25]; //Teleport Here
  2745. isCastingPossible = true;
  2746. break;
  2747. case OBSTACLE:
  2748. consoleMsg = CGI->generaltexth->allTexts[550];
  2749. isCastingPossible = true;
  2750. break;
  2751. case SACRIFICE:
  2752. cursorFrame = ECursor::COMBAT_SACRIFICE;
  2753. consoleMsg = (boost::format(CGI->generaltexth->allTexts[549]) % shere->getName()).str(); //sacrifice the %s
  2754. spellToCast->selectedStack = shere->ID; //sacrificed creature is selected
  2755. isCastingPossible = true;
  2756. break;
  2757. case FREE_LOCATION:
  2758. //cursorFrame = ECursor::SPELLBOOK;
  2759. consoleMsg = boost::str(boost::format(CGI->generaltexth->allTexts[26]) % sp->name); //Cast %s
  2760. isCastingPossible = true;
  2761. break;
  2762. case HEAL:
  2763. cursorFrame = ECursor::COMBAT_HEAL;
  2764. consoleMsg = (boost::format(CGI->generaltexth->allTexts[419]) % shere->getName()).str(); //Apply first aid to the %s
  2765. realizeAction = [=]{ giveCommand(Battle::STACK_HEAL, myNumber, activeStack->ID); }; //command healing
  2766. break;
  2767. case RISE_DEMONS:
  2768. cursorType = ECursor::SPELLBOOK;
  2769. realizeAction = [=]{ giveCommand(Battle::DAEMON_SUMMONING, myNumber, activeStack->ID); };
  2770. break;
  2771. case CATAPULT:
  2772. cursorFrame = ECursor::COMBAT_SHOOT_CATAPULT;
  2773. realizeAction = [=]{ giveCommand(Battle::CATAPULT, myNumber, activeStack->ID); };
  2774. break;
  2775. case CREATURE_INFO:
  2776. {
  2777. cursorFrame = ECursor::COMBAT_QUERY;
  2778. consoleMsg = (boost::format(CGI->generaltexth->allTexts[297]) % shere->getName()).str();
  2779. realizeAction = [=]{ GH.pushInt(createCreWindow(shere, true)); };
  2780. //setting console text
  2781. const time_t curTime = time(NULL);
  2782. CCreatureAnimation *hoveredStackAnim = creAnims[shere->ID];
  2783. if (shere->ID != mouseHoveredStack
  2784. && curTime > lastMouseHoveredStackAnimationTime + HOVER_ANIM_DELTA
  2785. && hoveredStackAnim->getType() == CCreatureAnim::HOLDING
  2786. && hoveredStackAnim->framesInGroup(CCreatureAnim::MOUSEON) > 0)
  2787. {
  2788. hoveredStackAnim->playOnce(CCreatureAnim::MOUSEON);
  2789. lastMouseHoveredStackAnimationTime = curTime;
  2790. }
  2791. noStackIsHovered = false;
  2792. mouseHoveredStack = shere->ID;
  2793. }
  2794. break;
  2795. }
  2796. }
  2797. else //no possible valid action, display message
  2798. {
  2799. switch (illegalAction)
  2800. {
  2801. case HOSTILE_CREATURE_SPELL:
  2802. case FRIENDLY_CREATURE_SPELL:
  2803. case RISING_SPELL:
  2804. case RANDOM_GENIE_SPELL:
  2805. cursorFrame = ECursor::COMBAT_BLOCKED;
  2806. consoleMsg = CGI->generaltexth->allTexts[23];
  2807. break;
  2808. case TELEPORT:
  2809. consoleMsg = CGI->generaltexth->allTexts[24]; //Invalid Teleport Destination
  2810. break;
  2811. case SACRIFICE:
  2812. consoleMsg = CGI->generaltexth->allTexts[543]; //choose army to sacrifice
  2813. break;
  2814. case FREE_LOCATION:
  2815. cursorFrame = ECursor::COMBAT_BLOCKED;
  2816. consoleMsg = boost::str(boost::format(CGI->generaltexth->allTexts[181]) % sp->name); //No room to place %s here
  2817. break;
  2818. default:
  2819. if (myNumber == -1)
  2820. CCS->curh->changeGraphic(ECursor::COMBAT, ECursor::COMBAT_POINTER); //set neutral cursor over menu etc.
  2821. else
  2822. cursorFrame = ECursor::COMBAT_BLOCKED;
  2823. break;
  2824. }
  2825. }
  2826. if (isCastingPossible) //common part
  2827. {
  2828. cursorType = ECursor::SPELLBOOK;
  2829. cursorFrame = 0;
  2830. if(consoleMsg.empty() && sp)
  2831. consoleMsg = boost::str(boost::format(CGI->generaltexth->allTexts[26]) % sp->name); //Cast %s
  2832. realizeAction = [=]
  2833. {
  2834. if (secondaryTarget) //select that target now
  2835. {
  2836. possibleActions.clear();
  2837. switch (sp->id.toEnum())
  2838. {
  2839. case SpellID::TELEPORT: //don't cast spell yet, only select target
  2840. possibleActions.push_back (TELEPORT);
  2841. spellToCast->selectedStack = selectedStack->ID;
  2842. break;
  2843. case SpellID::SACRIFICE:
  2844. possibleActions.push_back (SACRIFICE);
  2845. break;
  2846. }
  2847. }
  2848. else
  2849. {
  2850. if(creatureCasting)
  2851. {
  2852. if (sp)
  2853. {
  2854. giveCommand(Battle::MONSTER_SPELL, myNumber, sactive->ID, creatureSpellToCast);
  2855. }
  2856. else //unknown random spell
  2857. {
  2858. giveCommand(Battle::MONSTER_SPELL, myNumber, sactive->ID, curInt->cb->battleGetRandomStackSpell(shere, CBattleInfoCallback::RANDOM_GENIE));
  2859. }
  2860. }
  2861. else
  2862. {
  2863. assert (sp);
  2864. switch (sp->id.toEnum())
  2865. {
  2866. case SpellID::SACRIFICE:
  2867. spellToCast->destinationTile = selectedStack->position; //cast on first creature that will be resurrected
  2868. break;
  2869. default:
  2870. spellToCast->destinationTile = myNumber;
  2871. break;
  2872. }
  2873. curInt->cb->battleMakeAction(spellToCast);
  2874. endCastingSpell();
  2875. }
  2876. selectedStack = NULL;
  2877. }
  2878. };
  2879. }
  2880. realizeThingsToDo();
  2881. if(noStackIsHovered)
  2882. mouseHoveredStack = -1;
  2883. }
  2884. bool CBattleInterface::isCastingPossibleHere (const CStack * sactive, const CStack * shere, BattleHex myNumber)
  2885. {
  2886. creatureCasting = stackCanCastSpell && !spellDestSelectMode; //TODO: allow creatures to cast aimed spells
  2887. bool isCastingPossible = true;
  2888. int spellID = -1;
  2889. if (creatureCasting)
  2890. {
  2891. if (creatureSpellToCast > -1 && (shere != sactive)) //can't cast on itself
  2892. spellID = creatureSpellToCast; //TODO: merge with SpellTocast?
  2893. }
  2894. else //hero casting
  2895. spellID = spellToCast->additionalInfo;
  2896. sp = NULL;
  2897. if (spellID >= 0)
  2898. sp = CGI->spellh->spells[spellID];
  2899. if (sp)
  2900. {
  2901. if (creatureCasting)
  2902. isCastingPossible = (curInt->cb->battleCanCreatureCastThisSpell (sp, myNumber) == ESpellCastProblem::OK);
  2903. else
  2904. isCastingPossible = (curInt->cb->battleCanCastThisSpell (sp, myNumber) == ESpellCastProblem::OK);
  2905. }
  2906. if(!myNumber.isAvailable() && !shere) //empty tile outside battlefield (or in the unavailable border column)
  2907. isCastingPossible = false;
  2908. return isCastingPossible;
  2909. }
  2910. BattleHex CBattleInterface::fromWhichHexAttack(BattleHex myNumber)
  2911. {
  2912. //TODO far too much repeating code
  2913. BattleHex destHex = -1;
  2914. switch(CCS->curh->frame)
  2915. {
  2916. case 12: //from bottom right
  2917. {
  2918. bool doubleWide = activeStack->doubleWide();
  2919. destHex = myNumber + ( (myNumber/GameConstants::BFIELD_WIDTH)%2 ? GameConstants::BFIELD_WIDTH : GameConstants::BFIELD_WIDTH+1 ) +
  2920. (activeStack->attackerOwned && doubleWide ? 1 : 0);
  2921. if(vstd::contains(occupyableHexes, destHex))
  2922. return destHex;
  2923. else if(activeStack->attackerOwned) //if we are attacker
  2924. {
  2925. if(vstd::contains(occupyableHexes, destHex+1))
  2926. return destHex+1;
  2927. }
  2928. else //if we are defender
  2929. {
  2930. if(vstd::contains(occupyableHexes, destHex-1))
  2931. return destHex-1;
  2932. }
  2933. break;
  2934. }
  2935. case 7: //from bottom left
  2936. {
  2937. destHex = myNumber + ( (myNumber/GameConstants::BFIELD_WIDTH)%2 ? GameConstants::BFIELD_WIDTH-1 : GameConstants::BFIELD_WIDTH );
  2938. if(vstd::contains(occupyableHexes, destHex))
  2939. return destHex;
  2940. else if(activeStack->attackerOwned) //if we are attacker
  2941. {
  2942. if(vstd::contains(occupyableHexes, destHex+1))
  2943. return destHex+1;
  2944. }
  2945. else //if we are defender
  2946. {
  2947. if(vstd::contains(occupyableHexes, destHex-1))
  2948. return destHex-1;
  2949. }
  2950. break;
  2951. }
  2952. case 8: //from left
  2953. {
  2954. if(activeStack->doubleWide() && !activeStack->attackerOwned)
  2955. {
  2956. std::vector<BattleHex> acc = curInt->cb->battleGetAvailableHexes(activeStack, false);
  2957. if(vstd::contains(acc, myNumber))
  2958. return myNumber - 1;
  2959. else
  2960. return myNumber - 2;
  2961. }
  2962. else
  2963. {
  2964. return myNumber - 1;
  2965. }
  2966. break;
  2967. }
  2968. case 9: //from top left
  2969. {
  2970. destHex = myNumber - ( (myNumber/GameConstants::BFIELD_WIDTH)%2 ? GameConstants::BFIELD_WIDTH+1 : GameConstants::BFIELD_WIDTH );
  2971. if(vstd::contains(occupyableHexes, destHex))
  2972. return destHex;
  2973. else if(activeStack->attackerOwned) //if we are attacker
  2974. {
  2975. if(vstd::contains(occupyableHexes, destHex+1))
  2976. return destHex+1;
  2977. }
  2978. else //if we are defender
  2979. {
  2980. if(vstd::contains(occupyableHexes, destHex-1))
  2981. return destHex-1;
  2982. }
  2983. break;
  2984. }
  2985. case 10: //from top right
  2986. {
  2987. bool doubleWide = activeStack->doubleWide();
  2988. destHex = myNumber - ( (myNumber/GameConstants::BFIELD_WIDTH)%2 ? GameConstants::BFIELD_WIDTH : GameConstants::BFIELD_WIDTH-1 ) +
  2989. (activeStack->attackerOwned && doubleWide ? 1 : 0);
  2990. if(vstd::contains(occupyableHexes, destHex))
  2991. return destHex;
  2992. else if(activeStack->attackerOwned) //if we are attacker
  2993. {
  2994. if(vstd::contains(occupyableHexes, destHex+1))
  2995. return destHex+1;
  2996. }
  2997. else //if we are defender
  2998. {
  2999. if(vstd::contains(occupyableHexes, destHex-1))
  3000. return destHex-1;
  3001. }
  3002. break;
  3003. }
  3004. case 11: //from right
  3005. {
  3006. if(activeStack->doubleWide() && activeStack->attackerOwned)
  3007. {
  3008. std::vector<BattleHex> acc = curInt->cb->battleGetAvailableHexes(activeStack, false);
  3009. if(vstd::contains(acc, myNumber))
  3010. return myNumber + 1;
  3011. else
  3012. return myNumber + 2;
  3013. }
  3014. else
  3015. {
  3016. return myNumber + 1;
  3017. }
  3018. break;
  3019. }
  3020. case 13: //from bottom
  3021. {
  3022. destHex = myNumber + ( (myNumber/GameConstants::BFIELD_WIDTH)%2 ? GameConstants::BFIELD_WIDTH : GameConstants::BFIELD_WIDTH+1 );
  3023. if(vstd::contains(occupyableHexes, destHex))
  3024. return destHex;
  3025. else if(attackingHeroInstance->tempOwner == curInt->cb->getMyColor()) //if we are attacker
  3026. {
  3027. if(vstd::contains(occupyableHexes, destHex+1))
  3028. return destHex+1;
  3029. }
  3030. else //if we are defender
  3031. {
  3032. if(vstd::contains(occupyableHexes, destHex-1))
  3033. return destHex-1;
  3034. }
  3035. break;
  3036. }
  3037. case 14: //from top
  3038. {
  3039. destHex = myNumber - ( (myNumber/GameConstants::BFIELD_WIDTH)%2 ? GameConstants::BFIELD_WIDTH : GameConstants::BFIELD_WIDTH-1 );
  3040. if(vstd::contains(occupyableHexes, destHex))
  3041. return destHex;
  3042. else if(attackingHeroInstance->tempOwner == curInt->cb->getMyColor()) //if we are attacker
  3043. {
  3044. if(vstd::contains(occupyableHexes, destHex+1))
  3045. return destHex+1;
  3046. }
  3047. else //if we are defender
  3048. {
  3049. if(vstd::contains(occupyableHexes, destHex-1))
  3050. return destHex-1;
  3051. }
  3052. break;
  3053. }
  3054. }
  3055. return -1;
  3056. }
  3057. Rect CBattleInterface::hexPosition(BattleHex hex) const
  3058. {
  3059. int x = 14 + ((hex.getY())%2==0 ? 22 : 0) + 44*hex.getX() + pos.x;
  3060. int y = 86 + 42 * hex.getY() + pos.y;
  3061. int w = cellShade->w;
  3062. int h = cellShade->h;
  3063. return Rect(x, y, w, h);
  3064. }
  3065. SDL_Surface * CBattleInterface::imageOfObstacle(const CObstacleInstance &oi) const
  3066. {
  3067. int frameIndex = (animCount+1) / (40/getAnimSpeed());
  3068. switch(oi.obstacleType)
  3069. {
  3070. case CObstacleInstance::USUAL:
  3071. return vstd::circularAt(idToObstacle.find(oi.ID)->second->ourImages, frameIndex).bitmap;
  3072. case CObstacleInstance::ABSOLUTE_OBSTACLE:
  3073. return idToAbsoluteObstacle.find(oi.ID)->second;
  3074. case CObstacleInstance::QUICKSAND:
  3075. return vstd::circularAt(quicksand->ourImages, frameIndex).bitmap;
  3076. case CObstacleInstance::LAND_MINE:
  3077. return vstd::circularAt(landMine->ourImages, frameIndex).bitmap;
  3078. case CObstacleInstance::FIRE_WALL:
  3079. return vstd::circularAt(fireWall->ourImages, frameIndex).bitmap;
  3080. case CObstacleInstance::FORCE_FIELD:
  3081. {
  3082. auto &forceField = dynamic_cast<const SpellCreatedObstacle &>(oi);
  3083. if(forceField.getAffectedTiles().size() > 2)
  3084. return vstd::circularAt(bigForceField[forceField.casterSide]->ourImages, frameIndex).bitmap;
  3085. else
  3086. return vstd::circularAt(smallForceField[forceField.casterSide]->ourImages, frameIndex).bitmap;
  3087. }
  3088. case CObstacleInstance::MOAT://moat is blitted by SiegeHelper, this shouldn't be called
  3089. default:
  3090. assert(0);
  3091. return nullptr;
  3092. }
  3093. }
  3094. void CBattleInterface::obstaclePlaced(const CObstacleInstance & oi)
  3095. {
  3096. //so when multiple obstacles are added, they show up one after another
  3097. waitForAnims();
  3098. int effectID = -1;
  3099. soundBase::soundID sound = soundBase::invalid;//FIXME: variable set but unused. Missing soundh->playSound()?
  3100. std::string defname;
  3101. switch(oi.obstacleType)
  3102. {
  3103. case CObstacleInstance::QUICKSAND:
  3104. effectID = 55;
  3105. sound = soundBase::QUIKSAND;
  3106. break;
  3107. case CObstacleInstance::LAND_MINE:
  3108. effectID = 47;
  3109. sound = soundBase::LANDMINE;
  3110. break;
  3111. case CObstacleInstance::FORCE_FIELD:
  3112. {
  3113. auto &spellObstacle = dynamic_cast<const SpellCreatedObstacle&>(oi);
  3114. if(spellObstacle.casterSide)
  3115. {
  3116. if(oi.getAffectedTiles().size() < 3)
  3117. defname = "C15SPE0.DEF"; //TODO cannot find def for 2-hex force field \ appearing
  3118. else
  3119. defname = "C15SPE6.DEF";
  3120. }
  3121. else
  3122. {
  3123. if(oi.getAffectedTiles().size() < 3)
  3124. defname = "C15SPE0.DEF";
  3125. else
  3126. defname = "C15SPE9.DEF";
  3127. }
  3128. }
  3129. sound = soundBase::FORCEFLD;
  3130. break;
  3131. case CObstacleInstance::FIRE_WALL:
  3132. if(oi.getAffectedTiles().size() < 3)
  3133. effectID = 43; //small fire wall appearing
  3134. else
  3135. effectID = 44; //and the big one
  3136. sound = soundBase::fireWall;
  3137. break;
  3138. default:
  3139. tlog1 << "I don't know how to animate appearing obstacle of type " << (int)oi.obstacleType << std::endl;
  3140. return;
  3141. }
  3142. if(graphics->battleACToDef[effectID].empty())
  3143. {
  3144. tlog1 << "Cannot find def for effect type " << effectID << std::endl;
  3145. return;
  3146. }
  3147. if(defname.empty() && effectID >= 0)
  3148. defname = graphics->battleACToDef[effectID].front();
  3149. assert(!defname.empty());
  3150. //we assume here that effect graphics have the same size as the usual obstacle image
  3151. // -> if we know how to blit obstacle, let's blit the effect in the same place
  3152. Point whereTo = whereToBlitObstacleImage(imageOfObstacle(oi), oi);
  3153. addNewAnim(new CSpellEffectAnimation(this, defname, whereTo.x, whereTo.y));
  3154. //TODO we need to wait after playing sound till it's finished, otherwise it overlaps and sounds really bad
  3155. //CCS->soundh->playSound(sound);
  3156. }
  3157. Point CBattleInterface::whereToBlitObstacleImage(SDL_Surface *image, const CObstacleInstance &obstacle) const
  3158. {
  3159. int offset = image->h % 42;
  3160. if(obstacle.obstacleType == CObstacleInstance::USUAL)
  3161. {
  3162. if(obstacle.getInfo().blockedTiles.front() < 0 || offset > 37) //second or part is for holy ground ID=62,65,63
  3163. offset -= 42;
  3164. }
  3165. else if(obstacle.obstacleType == CObstacleInstance::QUICKSAND)
  3166. {
  3167. offset -= 42;
  3168. }
  3169. Rect r = hexPosition(obstacle.pos);
  3170. r.y += 42 - image->h + offset;
  3171. return r.topLeft();
  3172. }
  3173. const CGHeroInstance * CBattleInterface::currentHero() const
  3174. {
  3175. if(attackingHeroInstance->tempOwner == curInt->playerID)
  3176. return attackingHeroInstance;
  3177. else
  3178. return defendingHeroInstance;
  3179. }
  3180. InfoAboutHero CBattleInterface::enemyHero() const
  3181. {
  3182. InfoAboutHero ret;
  3183. if(attackingHeroInstance->tempOwner == curInt->playerID)
  3184. curInt->cb->getHeroInfo(defendingHeroInstance, ret);
  3185. else
  3186. curInt->cb->getHeroInfo(attackingHeroInstance, ret);
  3187. return ret;
  3188. }
  3189. CBattleInterface::SiegeHelper::SiegeHelper(const CGTownInstance *siegeTown, const CBattleInterface * _owner)
  3190. : owner(_owner), town(siegeTown)
  3191. {
  3192. for(int g = 0; g < ARRAY_COUNT(walls); ++g)
  3193. {
  3194. walls[g] = BitmapHandler::loadBitmap( getSiegeName(g) );
  3195. }
  3196. }
  3197. CBattleInterface::SiegeHelper::~SiegeHelper()
  3198. {
  3199. for(int g = 0; g < ARRAY_COUNT(walls); ++g)
  3200. {
  3201. SDL_FreeSurface(walls[g]);
  3202. }
  3203. }
  3204. std::string CBattleInterface::SiegeHelper::getSiegeName(ui16 what, ui16 additInfo) const
  3205. {
  3206. if(what == 2 || what == 3 || what == 8)
  3207. vstd::amin(additInfo, 2);
  3208. else
  3209. vstd::amin(additInfo, 3);
  3210. std::string & prefix = town->town->clientInfo.siegePrefix;
  3211. std::string addit = boost::lexical_cast<std::string>(additInfo);
  3212. switch(what)
  3213. {
  3214. case 0: //background
  3215. return prefix + "BACK.BMP";
  3216. case 1: //background wall
  3217. {
  3218. switch(town->town->typeID)
  3219. {
  3220. case 5: case 4: case 1: case 6:
  3221. return prefix + "TPW1.BMP";
  3222. default:
  3223. return prefix + "TPWL.BMP";
  3224. }
  3225. }
  3226. case 2: //keep
  3227. return prefix + "MAN" + addit + ".BMP";
  3228. case 3: //bottom tower
  3229. return prefix + "TW1" + addit + ".BMP";
  3230. case 4: //bottom wall
  3231. return prefix + "WA1" + addit + ".BMP";
  3232. case 5: //below gate
  3233. return prefix + "WA3" + addit + ".BMP";
  3234. case 6: //over gate
  3235. return prefix + "WA4" + addit + ".BMP";
  3236. case 7: //upper wall
  3237. return prefix + "WA6" + addit + ".BMP";
  3238. case 8: //upper tower
  3239. return prefix + "TW2" + addit + ".BMP";
  3240. case 9: //gate
  3241. return prefix + "DRW" + addit + ".BMP";
  3242. case 10: //gate arch
  3243. return prefix + "ARCH.BMP";
  3244. case 11: //bottom static wall
  3245. return prefix + "WA2.BMP";
  3246. case 12: //upper static wall
  3247. return prefix + "WA5.BMP";
  3248. case 13: //moat
  3249. return prefix + "MOAT.BMP";
  3250. case 14: //mlip
  3251. return prefix + "MLIP.BMP";
  3252. case 15: //keep creature cover
  3253. return prefix + "MANC.BMP";
  3254. case 16: //bottom turret creature cover
  3255. return prefix + "TW1C.BMP";
  3256. case 17: //upper turret creature cover
  3257. return prefix + "TW2C.BMP";
  3258. default:
  3259. return "";
  3260. }
  3261. }
  3262. /// What: 1. background wall, 2. keep, 3. bottom tower, 4. bottom wall, 5. wall below gate,
  3263. /// 6. wall over gate, 7. upper wall, 8. upper tower, 9. gate, 10. gate arch, 11. bottom static wall, 12. upper static wall, 13. moat, 14. mlip,
  3264. /// 15. keep turret cover, 16. lower turret cover, 17. upper turret cover
  3265. void CBattleInterface::SiegeHelper::printPartOfWall(SDL_Surface * to, int what)
  3266. {
  3267. Point pos = Point(-1, -1);
  3268. if (what >= 1 && what <= 17)
  3269. {
  3270. pos.x = owner->siegeH->town->town->clientInfo.siegePositions[what].x + owner->pos.x;
  3271. pos.y = owner->siegeH->town->town->clientInfo.siegePositions[what].y + owner->pos.y;
  3272. }
  3273. if(pos.x != -1)
  3274. {
  3275. blitAt(walls[what], pos.x, pos.y, to);
  3276. }
  3277. }
  3278. double CatapultProjectileInfo::calculateY(double x)
  3279. {
  3280. return (facA * pow(10., -3.)) * pow(x, 2.0) + facB * x + facC;
  3281. }