CBattleInterface.cpp 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239
  1. #include "CBattleInterface.h"
  2. #include "CGameInfo.h"
  3. #include "../hch/CLodHandler.h"
  4. #include "SDL_Extensions.h"
  5. #include "CAdvmapInterface.h"
  6. #include "AdventureMapButton.h"
  7. #include "../hch/CObjectHandler.h"
  8. #include "../hch/CHeroHandler.h"
  9. #include "../hch/CDefHandler.h"
  10. #include "../hch/CSpellHandler.h"
  11. #include "CMessage.h"
  12. #include "CCursorHandler.h"
  13. #include "../CCallback.h"
  14. #include "../lib/CGameState.h"
  15. #include "../hch/CGeneralTextHandler.h"
  16. #include "CCreatureAnimation.h"
  17. #include "Graphics.h"
  18. #include "CSpellWindow.h"
  19. #include "CConfigHandler.h"
  20. #include <queue>
  21. #include <sstream>
  22. #include "../lib/CondSh.h"
  23. #include "../lib/NetPacks.h"
  24. #include "CPlayerInterface.h"
  25. #include "../hch/CVideoHandler.h"
  26. #include "../hch/CTownHandler.h"
  27. #include <boost/assign/list_of.hpp>
  28. #include <boost/lexical_cast.hpp>
  29. #include <boost/algorithm/string/replace.hpp>
  30. #ifndef __GNUC__
  31. const double M_PI = 3.14159265358979323846;
  32. #else
  33. #define _USE_MATH_DEFINES
  34. #include <cmath>
  35. #endif
  36. /*
  37. * CBattleInterface.cpp, part of VCMI engine
  38. *
  39. * Authors: listed in file AUTHORS in main folder
  40. *
  41. * License: GNU General Public License v2.0 or later
  42. * Full text of license available in license.txt file, in main folder
  43. *
  44. */
  45. extern SDL_Surface * screen;
  46. extern SDL_Color zwykly;
  47. CondSh<bool> CBattleInterface::animsAreDisplayed;
  48. struct CMP_stack2
  49. {
  50. inline bool operator ()(const CStack& a, const CStack& b)
  51. {
  52. return (a.Speed())>(b.Speed());
  53. }
  54. } cmpst2 ;
  55. static void transformPalette(SDL_Surface * surf, float rCor, float gCor, float bCor)
  56. {
  57. SDL_Color * colorsToChange = surf->format->palette->colors;
  58. for(int g=0; g<surf->format->palette->ncolors; ++g)
  59. {
  60. if((colorsToChange+g)->b != 132 &&
  61. (colorsToChange+g)->g != 231 &&
  62. (colorsToChange+g)->r != 255) //it's not yellow border
  63. {
  64. (colorsToChange+g)->r = (float)((colorsToChange+g)->r) * rCor;
  65. (colorsToChange+g)->g = (float)((colorsToChange+g)->g) * gCor;
  66. (colorsToChange+g)->b = (float)((colorsToChange+g)->b) * bCor;
  67. }
  68. }
  69. }
  70. ////////////////////////Battle helpers
  71. //general anim
  72. void CBattleAnimation::endAnim()
  73. {
  74. for(std::list<std::pair<CBattleAnimation *, bool> >::iterator it = owner->pendingAnims.begin(); it != owner->pendingAnims.end(); ++it)
  75. {
  76. if(it->first == this)
  77. {
  78. it->first = NULL;
  79. }
  80. }
  81. }
  82. bool CBattleAnimation::isEarliest(bool perStackConcurrency)
  83. {
  84. int lowestMoveID = owner->animIDhelper + 5;
  85. for(std::list<std::pair<CBattleAnimation *, bool> >::iterator it = owner->pendingAnims.begin(); it != owner->pendingAnims.end(); ++it)
  86. {
  87. CBattleStackAnimation * stAnim = dynamic_cast<CBattleStackAnimation *>(it->first);
  88. CBattleStackAnimation * thAnim = dynamic_cast<CBattleStackAnimation *>(this);
  89. if(perStackConcurrency && stAnim && thAnim && stAnim->stackID != thAnim->stackID)
  90. continue;
  91. CReverseAnim * revAnim = dynamic_cast<CReverseAnim *>(stAnim);
  92. if(revAnim && thAnim && stAnim && stAnim->stackID == thAnim->stackID && revAnim->priority)
  93. return false;
  94. if(it->first)
  95. amin(lowestMoveID, it->first->ID);
  96. }
  97. return ID == lowestMoveID;
  98. }
  99. CBattleAnimation::CBattleAnimation(CBattleInterface * _owner)
  100. : owner(_owner), ID(_owner->animIDhelper++)
  101. {}
  102. //Dummy animation
  103. bool CDummyAnim::init()
  104. {
  105. return true;
  106. }
  107. void CDummyAnim::nextFrame()
  108. {
  109. counter++;
  110. if(counter > howMany)
  111. endAnim();
  112. }
  113. void CDummyAnim::endAnim()
  114. {
  115. CBattleAnimation::endAnim();
  116. delete this;
  117. }
  118. CDummyAnim::CDummyAnim(CBattleInterface * _owner, int howManyFrames) : CBattleAnimation(_owner), howMany(howManyFrames), counter(0)
  119. {
  120. }
  121. //effect animation
  122. bool CSpellEffectAnim::init()
  123. {
  124. if(!isEarliest(false))
  125. return false;
  126. if(effect == 12) //armageddon
  127. {
  128. if(effect == -1 || graphics->battleACToDef[effect].size() != 0)
  129. {
  130. CDefHandler * anim;
  131. if(customAnim.size())
  132. anim = CDefHandler::giveDef(customAnim);
  133. else
  134. anim = CDefHandler::giveDef(graphics->battleACToDef[effect][0]);
  135. if (Vflip)
  136. {
  137. for (int v=0; v<anim->ourImages.size(); ++v)
  138. {
  139. CSDL_Ext::VflipSurf(anim->ourImages[v].bitmap);
  140. }
  141. }
  142. for(int i=0; i * anim->width < owner->pos.w ; ++i)
  143. {
  144. for(int j=0; j * anim->height < owner->pos.h ; ++j)
  145. {
  146. SBattleEffect be;
  147. be.effectID = ID;
  148. be.anim = CDefHandler::giveDef(graphics->battleACToDef[effect][0]);
  149. if (Vflip)
  150. {
  151. for (int v=0; v<be.anim->ourImages.size(); ++v)
  152. {
  153. CSDL_Ext::VflipSurf(be.anim->ourImages[v].bitmap);
  154. }
  155. }
  156. be.frame = 0;
  157. be.maxFrame = be.anim->ourImages.size();
  158. be.x = i * anim->width + owner->pos.x;
  159. be.y = j * anim->height + owner->pos.y;
  160. owner->battleEffects.push_back(be);
  161. }
  162. }
  163. }
  164. else //there is nothing to play
  165. {
  166. endAnim();
  167. return false;
  168. }
  169. }
  170. else // Effects targeted at a specific creature/hex.
  171. {
  172. if(effect == -1 || graphics->battleACToDef[effect].size() != 0)
  173. {
  174. const CStack* destStack = owner->curInt->cb->battleGetStackByPos(destTile, false);
  175. Rect &tilePos = owner->bfield[destTile].pos;
  176. SBattleEffect be;
  177. be.effectID = ID;
  178. if(customAnim.size())
  179. be.anim = CDefHandler::giveDef(customAnim);
  180. else
  181. be.anim = CDefHandler::giveDef(graphics->battleACToDef[effect][0]);
  182. if (Vflip)
  183. {
  184. for (int v=0; v<be.anim->ourImages.size(); ++v)
  185. {
  186. CSDL_Ext::VflipSurf(be.anim->ourImages[v].bitmap);
  187. }
  188. }
  189. be.frame = 0;
  190. be.maxFrame = be.anim->ourImages.size();
  191. if(effect == 1)
  192. be.maxFrame = 3;
  193. switch (effect)
  194. {
  195. case -1:
  196. be.x = x;
  197. be.y = y;
  198. break;
  199. case 0: // Prayer and Lightning Bolt.
  200. case 1:
  201. // Position effect with it's bottom center touching the bottom center of affected tile(s).
  202. be.x = tilePos.x + tilePos.w/2 - be.anim->width/2;
  203. be.y = tilePos.y + tilePos.h - be.anim->height;
  204. break;
  205. default:
  206. // Position effect with it's center touching the top center of affected tile(s).
  207. be.x = tilePos.x + tilePos.w/2 - be.anim->width/2;
  208. be.y = tilePos.y - be.anim->height/2;
  209. break;
  210. }
  211. // Correction for 2-hex creatures.
  212. if (destStack != NULL && destStack->doubleWide())
  213. be.x += (destStack->attackerOwned ? -1 : 1)*tilePos.w/2;
  214. owner->battleEffects.push_back(be);
  215. }
  216. else //there is nothing to play
  217. {
  218. endAnim();
  219. return false;
  220. }
  221. }
  222. //battleEffects
  223. return true;
  224. }
  225. void CSpellEffectAnim::nextFrame()
  226. {
  227. //notice: there may be more than one effect in owner->battleEffects correcponding to this animation (ie. armageddon)
  228. for(std::list<SBattleEffect>::iterator it = owner->battleEffects.begin(); it != owner->battleEffects.end(); ++it)
  229. {
  230. if(it->effectID == ID)
  231. {
  232. ++(it->frame);
  233. if(it->frame == it->maxFrame)
  234. {
  235. endAnim();
  236. break;
  237. }
  238. else
  239. {
  240. it->x += dx;
  241. it->y += dy;
  242. }
  243. }
  244. }
  245. }
  246. void CSpellEffectAnim::endAnim()
  247. {
  248. CBattleAnimation::endAnim();
  249. std::vector<std::list<SBattleEffect>::iterator> toDel;
  250. for(std::list<SBattleEffect>::iterator it = owner->battleEffects.begin(); it != owner->battleEffects.end(); ++it)
  251. {
  252. if(it->effectID == ID)
  253. {
  254. toDel.push_back(it);
  255. }
  256. }
  257. for(int b=0; b<toDel.size(); ++b)
  258. {
  259. delete toDel[b]->anim;
  260. owner->battleEffects.erase(toDel[b]);
  261. }
  262. delete this;
  263. }
  264. CSpellEffectAnim::CSpellEffectAnim(CBattleInterface * _owner, ui32 _effect, int _destTile, int _dx, int _dy, bool _Vflip)
  265. :CBattleAnimation(_owner), effect(_effect), destTile(_destTile), customAnim(""), dx(_dx), dy(_dy), Vflip(_Vflip)
  266. {
  267. }
  268. CSpellEffectAnim::CSpellEffectAnim(CBattleInterface * _owner, std::string _customAnim, int _x, int _y, int _dx, int _dy, bool _Vflip)
  269. :CBattleAnimation(_owner), effect(-1), destTile(0), customAnim(_customAnim), x(_x), y(_y), dx(_dx), dy(_dy), Vflip(_Vflip)
  270. {
  271. }
  272. //stack's aniamtion
  273. CBattleStackAnimation::CBattleStackAnimation(CBattleInterface * _owner, int stack)
  274. : CBattleAnimation(_owner), stackID(stack)
  275. {
  276. }
  277. bool CBattleStackAnimation::isToReverseHlp(int hexFrom, int hexTo, bool curDir)
  278. {
  279. int fromMod = hexFrom % BFIELD_WIDTH;
  280. int fromDiv = hexFrom / BFIELD_WIDTH;
  281. int toMod = hexTo % BFIELD_WIDTH;
  282. if(curDir && fromMod < toMod)
  283. return false;
  284. else if(curDir && fromMod > toMod)
  285. return true;
  286. else if(curDir && fromMod == toMod)
  287. {
  288. return fromDiv % 2 == 0;
  289. }
  290. else if(!curDir && fromMod < toMod)
  291. return true;
  292. else if(!curDir && fromMod > toMod)
  293. return false;
  294. else if(!curDir && fromMod == toMod)
  295. {
  296. return fromDiv % 2 == 1;
  297. }
  298. tlog1 << "Catastrope in CBattleStackAnimation::isToReverse!" << std::endl;
  299. return false; //should never happen
  300. }
  301. bool CBattleStackAnimation::isToReverse(int hexFrom, int hexTo, bool curDir, bool toDoubleWide, bool toDir)
  302. {
  303. if(hexTo < 0) //turret
  304. return false;
  305. if(toDoubleWide)
  306. {
  307. return isToReverseHlp(hexFrom, hexTo, curDir) &&
  308. (toDir ? isToReverseHlp(hexFrom, hexTo-1, curDir) : isToReverseHlp(hexFrom, hexTo+1, curDir) );
  309. }
  310. else
  311. {
  312. return isToReverseHlp(hexFrom, hexTo, curDir);
  313. }
  314. }
  315. //revering animation
  316. bool CReverseAnim::init()
  317. {
  318. if(owner->creAnims[stackID] == NULL || owner->creAnims[stackID]->getType() == 5)
  319. {
  320. endAnim();
  321. return false; //there is no such creature
  322. }
  323. if(!priority && !isEarliest(false))
  324. return false;
  325. owner->creAnims[stackID]->setType(8);
  326. return true;
  327. }
  328. void CReverseAnim::nextFrame()
  329. {
  330. if(partOfAnim == 1) //first part of animation
  331. {
  332. if(owner->creAnims[stackID]->onLastFrameInGroup())
  333. {
  334. partOfAnim = 2;
  335. }
  336. }
  337. else if(partOfAnim == 2)
  338. {
  339. if(!secondPartSetup)
  340. {
  341. owner->creDir[stackID] = !owner->creDir[stackID];
  342. const CStack * curs = owner->curInt->cb->battleGetStackByID(stackID, false);
  343. if(!curs)
  344. {
  345. endAnim();
  346. return;
  347. }
  348. Point coords = CBattleHex::getXYUnitAnim(hex, owner->creDir[stackID], curs, owner);
  349. owner->creAnims[stackID]->pos.x = coords.x;
  350. //creAnims[stackID]->pos.y = coords.second;
  351. if(curs->doubleWide())
  352. {
  353. if(curs->attackerOwned)
  354. {
  355. if(!owner->creDir[stackID])
  356. owner->creAnims[stackID]->pos.x -= 44;
  357. }
  358. else
  359. {
  360. if(owner->creDir[stackID])
  361. owner->creAnims[stackID]->pos.x += 44;
  362. }
  363. }
  364. owner->creAnims[stackID]->setType(7);
  365. secondPartSetup = true;
  366. }
  367. if(owner->creAnims[stackID]->onLastFrameInGroup())
  368. {
  369. endAnim();
  370. }
  371. }
  372. }
  373. void CReverseAnim::endAnim()
  374. {
  375. CBattleAnimation::endAnim();
  376. if( owner->curInt->cb->battleGetStackByID(stackID) )//don't do that if stack is dead
  377. owner->creAnims[stackID]->setType(2);
  378. delete this;
  379. }
  380. CReverseAnim::CReverseAnim(CBattleInterface * _owner, int stack, int dest, bool _priority)
  381. : CBattleStackAnimation(_owner, stack), partOfAnim(1), hex(dest), secondPartSetup(false), priority(_priority)
  382. {
  383. }
  384. //defence anim
  385. bool CDefenceAnim::init()
  386. {
  387. //checking initial conditions
  388. //if(owner->creAnims[stackID]->getType() != 2)
  389. //{
  390. // return false;
  391. //}
  392. if(IDby == -1 && owner->battleEffects.size() > 0)
  393. return false;
  394. int lowestMoveID = owner->animIDhelper + 5;
  395. for(std::list<std::pair<CBattleAnimation *, bool> >::iterator it = owner->pendingAnims.begin(); it != owner->pendingAnims.end(); ++it)
  396. {
  397. CDefenceAnim * defAnim = dynamic_cast<CDefenceAnim *>(it->first);
  398. if(defAnim && defAnim->stackID != stackID)
  399. continue;
  400. CBattleAttack * attAnim = dynamic_cast<CBattleAttack *>(it->first);
  401. if(attAnim && attAnim->stackID != stackID)
  402. continue;
  403. const CStack * attacker = owner->curInt->cb->battleGetStackByID(IDby, false);
  404. if(IDby != -1)
  405. {
  406. int attackerAnimType = owner->creAnims[IDby]->getType();
  407. if( attackerAnimType == 11 && attackerAnimType == 12 && attackerAnimType == 13 && owner->creAnims[IDby]->getFrame() < attacker->type->attackClimaxFrame )
  408. return false;
  409. }
  410. CReverseAnim * animAsRev = dynamic_cast<CReverseAnim *>(it->first);
  411. if(animAsRev && animAsRev->priority)
  412. return false;
  413. if(it->first)
  414. amin(lowestMoveID, it->first->ID);
  415. }
  416. if(ID > lowestMoveID)
  417. return false;
  418. const CStack * attacker = owner->curInt->cb->battleGetStackByID(IDby, false);
  419. const CStack * attacked = owner->curInt->cb->battleGetStackByID(stackID, false);
  420. //reverse unit if necessary
  421. if(attacker && isToReverse(attacked->position, attacker->position, owner->creDir[stackID], attacker->doubleWide(), owner->creDir[IDby]))
  422. {
  423. owner->addNewAnim(new CReverseAnim(owner, stackID, attacked->position, true));
  424. return false;
  425. }
  426. //unit reversed
  427. if(byShooting) //delay hit animation
  428. {
  429. for(std::list<SProjectileInfo>::const_iterator it = owner->projectiles.begin(); it != owner->projectiles.end(); ++it)
  430. {
  431. if(it->creID == attacker->type->idNumber)
  432. {
  433. return false;
  434. }
  435. }
  436. }
  437. //initializing
  438. int maxLen = 0;
  439. if(killed)
  440. {
  441. CGI->soundh->playSound(battle_sound(attacked->type, killed));
  442. owner->creAnims[stackID]->setType(5); //death
  443. }
  444. else
  445. {
  446. // TODO: this block doesn't seems correct if the unit is defending.
  447. CGI->soundh->playSound(battle_sound(attacked->type, wince));
  448. owner->creAnims[stackID]->setType(3); //getting hit
  449. }
  450. return true; //initialized successfuly
  451. }
  452. void CDefenceAnim::nextFrame()
  453. {
  454. if(!killed && owner->creAnims[stackID]->getType() != 3)
  455. {
  456. owner->creAnims[stackID]->setType(3);
  457. }
  458. if(!owner->creAnims[stackID]->onLastFrameInGroup())
  459. {
  460. if( owner->creAnims[stackID]->getType() == 5 && (owner->animCount+1)%(4/owner->curInt->sysOpts.animSpeed)==0
  461. && !owner->creAnims[stackID]->onLastFrameInGroup() )
  462. {
  463. owner->creAnims[stackID]->incrementFrame();
  464. }
  465. }
  466. else
  467. {
  468. endAnim();
  469. }
  470. }
  471. void CDefenceAnim::endAnim()
  472. {
  473. //restoring animType
  474. if(owner->creAnims[stackID]->getType() == 3)
  475. owner->creAnims[stackID]->setType(2);
  476. //printing info to console
  477. if(IDby!=-1)
  478. owner->printConsoleAttacked(stackID, dmg, amountKilled, IDby);
  479. const CStack * attacker = owner->curInt->cb->battleGetStackByID(IDby, false);
  480. const CStack * attacked = owner->curInt->cb->battleGetStackByID(stackID, false);
  481. CBattleAnimation::endAnim();
  482. delete this;
  483. }
  484. CDefenceAnim::CDefenceAnim(SStackAttackedInfo _attackedInfo, CBattleInterface * _owner)
  485. : CBattleStackAnimation(_owner, _attackedInfo.ID), dmg(_attackedInfo.dmg),
  486. amountKilled(_attackedInfo.amountKilled), IDby(_attackedInfo.IDby), byShooting(_attackedInfo.byShooting),
  487. killed(_attackedInfo.killed)
  488. {
  489. }
  490. ////move anim
  491. bool CBattleStackMoved::init()
  492. {
  493. if( !isEarliest(false) )
  494. return false;
  495. //a few useful variables
  496. steps = owner->creAnims[stackID]->framesInGroup(0)*owner->getAnimSpeedMultiplier()-1;
  497. if(steps == 0) //this creature seems to have no move animation so we can end it immediately
  498. {
  499. endAnim();
  500. return false;
  501. }
  502. whichStep = 0;
  503. int hexWbase = 44, hexHbase = 42;
  504. const CStack * movedStack = owner->curInt->cb->battleGetStackByID(stackID, false);
  505. if(!movedStack || owner->creAnims[stackID]->getType() == 5)
  506. {
  507. endAnim();
  508. return false;
  509. }
  510. bool twoTiles = movedStack->doubleWide();
  511. Point begPosition = CBattleHex::getXYUnitAnim(curStackPos, movedStack->attackerOwned, movedStack, owner);
  512. Point endPosition = CBattleHex::getXYUnitAnim(destHex, movedStack->attackerOwned, movedStack, owner);
  513. int mutPos = BattleInfo::mutualPosition(curStackPos, destHex);
  514. //reverse unit if necessary
  515. if((begPosition.x > endPosition.x) && owner->creDir[stackID] == true)
  516. {
  517. owner->addNewAnim(new CReverseAnim(owner, stackID, curStackPos, true));
  518. return false;
  519. }
  520. else if ((begPosition.x < endPosition.x) && owner->creDir[stackID] == false)
  521. {
  522. owner->addNewAnim(new CReverseAnim(owner, stackID, curStackPos, true));
  523. return false;
  524. }
  525. if(owner->creAnims[stackID]->getType() != 0)
  526. {
  527. owner->creAnims[stackID]->setType(0);
  528. }
  529. //unit reversed
  530. if(owner->moveSh <= 0)
  531. owner->moveSh = CGI->soundh->playSound(battle_sound(movedStack->type, move), -1);
  532. //step shift calculation
  533. posX = owner->creAnims[stackID]->pos.x, posY = owner->creAnims[stackID]->pos.y; // for precise calculations ;]
  534. if(mutPos == -1 && movedStack->hasBonusOfType(Bonus::FLYING))
  535. {
  536. steps *= distance;
  537. steps /= 2; //to make animation faster
  538. stepX = (endPosition.x - (float)begPosition.x)/steps;
  539. stepY = (endPosition.y - (float)begPosition.y)/steps;
  540. }
  541. else
  542. {
  543. switch(mutPos)
  544. {
  545. case 0:
  546. stepX = (-1.0)*((float)hexWbase)/(2.0f*steps);
  547. stepY = (-1.0)*((float)hexHbase)/((float)steps);
  548. break;
  549. case 1:
  550. stepX = ((float)hexWbase)/(2.0f*steps);
  551. stepY = (-1.0)*((float)hexHbase)/((float)steps);
  552. break;
  553. case 2:
  554. stepX = ((float)hexWbase)/((float)steps);
  555. stepY = 0.0;
  556. break;
  557. case 3:
  558. stepX = ((float)hexWbase)/(2.0f*steps);
  559. stepY = ((float)hexHbase)/((float)steps);
  560. break;
  561. case 4:
  562. stepX = (-1.0)*((float)hexWbase)/(2.0f*steps);
  563. stepY = ((float)hexHbase)/((float)steps);
  564. break;
  565. case 5:
  566. stepX = (-1.0)*((float)hexWbase)/((float)steps);
  567. stepY = 0.0;
  568. break;
  569. }
  570. }
  571. //step shifts calculated
  572. return true;
  573. }
  574. void CBattleStackMoved::nextFrame()
  575. {
  576. //moving instructions
  577. posX += stepX;
  578. owner->creAnims[stackID]->pos.x = posX;
  579. posY += stepY;
  580. owner->creAnims[stackID]->pos.y = posY;
  581. ++whichStep;
  582. if(whichStep == steps)
  583. {
  584. endAnim();
  585. }
  586. }
  587. void CBattleStackMoved::endAnim()
  588. {
  589. const CStack * movedStack = owner->curInt->cb->battleGetStackByID(stackID);
  590. CBattleAnimation::endAnim();
  591. if(movedStack)
  592. {
  593. bool twoTiles = movedStack->doubleWide();
  594. if(endMoving)
  595. {
  596. owner->addNewAnim(new CBattleMoveEnd(owner, stackID, destHex));
  597. }
  598. Point coords = CBattleHex::getXYUnitAnim(destHex, owner->creDir[stackID], movedStack, owner);
  599. owner->creAnims[stackID]->pos = coords;
  600. if(!endMoving && twoTiles && bool(movedStack->attackerOwned) && (owner->creDir[stackID] != bool(movedStack->attackerOwned) )) //big attacker creature is reversed
  601. owner->creAnims[stackID]->pos.x -= 44;
  602. else if(!endMoving && twoTiles && (! bool(movedStack->attackerOwned) ) && (owner->creDir[stackID] != bool(movedStack->attackerOwned) )) //big defender creature is reversed
  603. owner->creAnims[stackID]->pos.x += 44;
  604. }
  605. if(owner->moveSh >= 0)
  606. {
  607. CGI->soundh->stopSound(owner->moveSh);
  608. owner->moveSh = -1;
  609. }
  610. delete this;
  611. }
  612. CBattleStackMoved::CBattleStackMoved(CBattleInterface * _owner, int _number, int _destHex, bool _endMoving, int _distance)
  613. : CBattleStackAnimation(_owner, _number), destHex(_destHex), endMoving(_endMoving), distance(_distance), stepX(0.0f), stepY(0.0f)
  614. {
  615. curStackPos = owner->curInt->cb->battleGetPos(stackID);
  616. }
  617. //move started
  618. bool CBattleMoveStart::init()
  619. {
  620. if( !isEarliest(false) )
  621. return false;
  622. const CStack * movedStack = owner->curInt->cb->battleGetStackByID(stackID, false);
  623. if(!movedStack || owner->creAnims[stackID]->getType() == 5)
  624. {
  625. CBattleMoveStart::endAnim();
  626. return false;
  627. }
  628. CGI->soundh->playSound(battle_sound(movedStack->type, startMoving));
  629. return true;
  630. }
  631. void CBattleMoveStart::nextFrame()
  632. {
  633. if(owner->creAnims[stackID]->onLastFrameInGroup())
  634. {
  635. endAnim();
  636. }
  637. else
  638. {
  639. if((owner->animCount+1)%(4/owner->curInt->sysOpts.animSpeed)==0)
  640. owner->creAnims[stackID]->incrementFrame();
  641. }
  642. }
  643. void CBattleMoveStart::endAnim()
  644. {
  645. CBattleAnimation::endAnim();
  646. delete this;
  647. }
  648. CBattleMoveStart::CBattleMoveStart(CBattleInterface * _owner, int stack)
  649. : CBattleStackAnimation(_owner, stack)
  650. {
  651. }
  652. //move finished
  653. bool CBattleMoveEnd::init()
  654. {
  655. if( !isEarliest(true) )
  656. return false;
  657. const CStack * movedStack = owner->curInt->cb->battleGetStackByID(stackID, false);
  658. if(!movedStack || owner->creAnims[stackID]->framesInGroup(21) == 0 || owner->creAnims[stackID]->getType() == 5)
  659. {
  660. endAnim();
  661. return false;
  662. }
  663. CGI->soundh->playSound(battle_sound(movedStack->type, endMoving));
  664. owner->creAnims[stackID]->setType(21);
  665. return true;
  666. }
  667. void CBattleMoveEnd::nextFrame()
  668. {
  669. if(owner->creAnims[stackID]->onLastFrameInGroup())
  670. {
  671. endAnim();
  672. }
  673. }
  674. void CBattleMoveEnd::endAnim()
  675. {
  676. CBattleAnimation::endAnim();
  677. if(owner->creAnims[stackID]->getType() != 5)
  678. owner->creAnims[stackID]->setType(2); //resetting to default
  679. CGI->curh->show();
  680. delete this;
  681. }
  682. CBattleMoveEnd::CBattleMoveEnd(CBattleInterface * _owner, int stack, int destTile)
  683. : CBattleStackAnimation(_owner, stack), destinationTile(destTile)
  684. {
  685. }
  686. //general attack anim
  687. void CBattleAttack::nextFrame()
  688. {
  689. if(owner->creAnims[stackID]->getType() != group)
  690. owner->creAnims[stackID]->setType(group);
  691. if(owner->creAnims[stackID]->onFirstFrameInGroup())
  692. {
  693. if(shooting)
  694. CGI->soundh->playSound(battle_sound(attackingStack->type, shoot));
  695. else
  696. CGI->soundh->playSound(battle_sound(attackingStack->type, attack));
  697. }
  698. else if(owner->creAnims[stackID]->onLastFrameInGroup())
  699. {
  700. owner->creAnims[stackID]->setType(2);
  701. endAnim();
  702. return; //execution of endAnim deletes this !!!
  703. }
  704. }
  705. bool CBattleAttack::checkInitialConditions()
  706. {
  707. return isEarliest(false);
  708. }
  709. CBattleAttack::CBattleAttack(CBattleInterface * _owner, int _stackID, int _dest, int _attackedID)
  710. : CBattleStackAnimation(_owner, _stackID), dest(_dest)
  711. {
  712. attackedStack = owner->curInt->cb->battleGetStackByID(_attackedID, false);
  713. attackingStack = owner->curInt->cb->battleGetStackByID(_stackID, false);
  714. assert(attackingStack && "attackingStack is NULL in CBattleAttack::CBattleAttack !\n");
  715. if(attackingStack->type->idNumber != 145) //catapult is allowed to attack not-creature
  716. {
  717. assert(attackedStack && "attackedStack is NULL in CBattleAttack::CBattleAttack !\n");
  718. }
  719. else //catapult can attack walls only
  720. {
  721. assert(owner->curInt->cb->battleGetWallUnderHex(_dest) >= 0);
  722. }
  723. attackingStackPosBeforeReturn = attackingStack->position;
  724. }
  725. ////melee attack
  726. bool CMeleeAttack::init()
  727. {
  728. if( !CBattleAttack::checkInitialConditions() )
  729. return false;
  730. //if(owner->creAnims[stackID]->getType()!=2)
  731. //{
  732. // return false;
  733. //}
  734. if(!attackingStack || owner->creAnims[stackID]->getType() == 5)
  735. {
  736. endAnim();
  737. return false;
  738. }
  739. int reversedShift = 0; //shift of attacking stack's position due to reversing
  740. if(attackingStack->attackerOwned)
  741. {
  742. if(attackingStack->doubleWide() && BattleInfo::mutualPosition(attackingStackPosBeforeReturn, dest) == -1)
  743. {
  744. if(BattleInfo::mutualPosition(attackingStackPosBeforeReturn + (attackingStack->attackerOwned ? -1 : 1), dest) >= 0) //if reversing stack will make its position adjacent to dest
  745. {
  746. reversedShift = (attackingStack->attackerOwned ? -1 : 1);
  747. }
  748. }
  749. }
  750. else //if(astack->attackerOwned)
  751. {
  752. if(attackingStack->doubleWide() && BattleInfo::mutualPosition(attackingStackPosBeforeReturn, dest) == -1)
  753. {
  754. if(BattleInfo::mutualPosition(attackingStackPosBeforeReturn + (attackingStack->attackerOwned ? -1 : 1), dest) >= 0) //if reversing stack will make its position adjacent to dest
  755. {
  756. reversedShift = (attackingStack->attackerOwned ? -1 : 1);
  757. }
  758. }
  759. }
  760. //reversing stack if necessary
  761. if(isToReverse(attackingStackPosBeforeReturn, dest, owner->creDir[stackID], attackedStack->doubleWide(), owner->creDir[attackedStack->ID]))
  762. {
  763. owner->addNewAnim(new CReverseAnim(owner, stackID, attackingStackPosBeforeReturn, true));
  764. return false;
  765. }
  766. //reversed
  767. IDby = attackedStack->ID;
  768. shooting = false;
  769. posShiftDueToDist = reversedShift;
  770. static const int mutPosToGroup[] = {11, 11, 12, 13, 13, 12};
  771. int mutPos = BattleInfo::mutualPosition(attackingStackPosBeforeReturn + reversedShift, dest);
  772. switch(mutPos) //attack direction
  773. {
  774. case 0: case 1: case 2: case 3: case 4: case 5:
  775. group = mutPosToGroup[mutPos];
  776. break;
  777. default:
  778. tlog1<<"Critical Error! Wrong dest in stackAttacking! dest: "<<dest<<" attacking stack pos: "<<attackingStackPosBeforeReturn<<" reversed shift: "<<reversedShift<<std::endl;
  779. }
  780. return true;
  781. }
  782. void CMeleeAttack::nextFrame()
  783. {
  784. /*for(std::list<std::pair<CBattleAnimation *, bool> >::const_iterator it = owner->pendingAnims.begin(); it != owner->pendingAnims.end(); ++it)
  785. {
  786. CBattleMoveStart * anim = dynamic_cast<CBattleMoveStart *>(it->first);
  787. CReverseAnim * anim2 = dynamic_cast<CReverseAnim *>(it->first);
  788. if( (anim && anim->stackID == stackID) || (anim2 && anim2->stackID == stackID ) )
  789. return;
  790. }*/
  791. CBattleAttack::nextFrame();
  792. }
  793. void CMeleeAttack::endAnim()
  794. {
  795. CBattleAnimation::endAnim();
  796. delete this;
  797. }
  798. CMeleeAttack::CMeleeAttack(CBattleInterface * _owner, int attacker, int _dest, int _attackedID)
  799. : CBattleAttack(_owner, attacker, _dest, _attackedID)
  800. {
  801. }
  802. //shooting anim
  803. bool CShootingAnim::init()
  804. {
  805. if( !CBattleAttack::checkInitialConditions() )
  806. return false;
  807. const CStack * shooter = attackingStack;
  808. if(!shooter || owner->creAnims[stackID]->getType() == 5)
  809. {
  810. endAnim();
  811. return false;
  812. }
  813. //projectile
  814. float projectileAngle; //in radians; if positive, projectiles goes up
  815. float straightAngle = 0.2f; //maximal angle in radians between straight horizontal line and shooting line for which shot is considered to be straight (absoulte value)
  816. int fromHex = shooter->position;
  817. projectileAngle = atan2(float(abs(dest - fromHex)/BFIELD_WIDTH), float(abs(dest - fromHex)%BFIELD_WIDTH));
  818. if(fromHex < dest)
  819. projectileAngle = -projectileAngle;
  820. SProjectileInfo spi;
  821. spi.creID = shooter->type->idNumber;
  822. spi.reverse = !shooter->attackerOwned;
  823. spi.step = 0;
  824. spi.frameNum = 0;
  825. spi.spin = CGI->creh->idToProjectileSpin.find(spi.creID)->second;
  826. Point xycoord = CBattleHex::getXYUnitAnim(shooter->position, true, shooter, owner);
  827. Point destcoord;
  828. if(attackedStack)
  829. {
  830. destcoord = CBattleHex::getXYUnitAnim(dest, false, attackedStack, owner);
  831. }
  832. else //catapult attack
  833. {
  834. destcoord.x = -160 + 22 * ( ((dest/BFIELD_WIDTH) + 1)%2 ) + 44 * (dest % BFIELD_WIDTH);
  835. destcoord.y = -139 + 42 * (dest/BFIELD_WIDTH);
  836. }
  837. destcoord.x += 250; destcoord.y += 210; //TODO: find a better place to shoot
  838. if(projectileAngle > straightAngle) //upper shot
  839. {
  840. spi.x = xycoord.x + 200 + shooter->type->upperRightMissleOffsetX;
  841. spi.y = xycoord.y + 100 - shooter->type->upperRightMissleOffsetY;
  842. }
  843. else if(projectileAngle < -straightAngle) //lower shot
  844. {
  845. spi.x = xycoord.x + 200 + shooter->type->lowerRightMissleOffsetX;
  846. spi.y = xycoord.y + 150 - shooter->type->lowerRightMissleOffsetY;
  847. }
  848. else //straight shot
  849. {
  850. spi.x = xycoord.x + 200 + shooter->type->rightMissleOffsetX;
  851. spi.y = xycoord.y + 125 - shooter->type->rightMissleOffsetY;
  852. }
  853. spi.lastStep = sqrt((float)((destcoord.x - spi.x)*(destcoord.x - spi.x) + (destcoord.y - spi.y) * (destcoord.y - spi.y))) / 40;
  854. if(spi.lastStep == 0)
  855. spi.lastStep = 1;
  856. spi.dx = (destcoord.x - spi.x) / spi.lastStep;
  857. spi.dy = (destcoord.y - spi.y) / spi.lastStep;
  858. //set starting frame
  859. if(spi.spin)
  860. {
  861. spi.frameNum = 0;
  862. }
  863. else
  864. {
  865. spi.frameNum = ((M_PI/2.0f - projectileAngle) / (2.0f *M_PI) + 1/((float)(2*(owner->idToProjectile[spi.creID]->ourImages.size()-1)))) * (owner->idToProjectile[spi.creID]->ourImages.size()-1);
  866. }
  867. //set delay
  868. spi.animStartDelay = CGI->creh->creatures[spi.creID]->attackClimaxFrame;
  869. owner->projectiles.push_back(spi);
  870. //attack aniamtion
  871. if(attackedStack)
  872. IDby = attackedStack->ID;
  873. else
  874. IDby = -1;
  875. posShiftDueToDist = 0;
  876. shooting = true;
  877. if(projectileAngle > straightAngle) //upper shot
  878. group = 14;
  879. else if(projectileAngle < -straightAngle) //lower shot
  880. group = 16;
  881. else //straight shot
  882. group = 15;
  883. return true;
  884. }
  885. void CShootingAnim::nextFrame()
  886. {
  887. for(std::list<std::pair<CBattleAnimation *, bool> >::const_iterator it = owner->pendingAnims.begin(); it != owner->pendingAnims.end(); ++it)
  888. {
  889. CBattleMoveStart * anim = dynamic_cast<CBattleMoveStart *>(it->first);
  890. CReverseAnim * anim2 = dynamic_cast<CReverseAnim *>(it->first);
  891. if( (anim && anim->stackID == stackID) || (anim2 && anim2->stackID == stackID && anim2->priority ) )
  892. return;
  893. }
  894. CBattleAttack::nextFrame();
  895. }
  896. void CShootingAnim::endAnim()
  897. {
  898. CBattleAnimation::endAnim();
  899. delete this;
  900. }
  901. CShootingAnim::CShootingAnim(CBattleInterface * _owner, int attacker, int _dest, int _attackedID, bool _catapult, int _catapultDmg)
  902. : CBattleAttack(_owner, attacker, _dest, _attackedID), catapultDamage(_catapultDmg), catapult(_catapult)
  903. {
  904. if(catapult) //catapult attack
  905. {
  906. owner->addNewAnim( new CSpellEffectAnim(owner, "SGEXPL.DEF",
  907. -130 + 22 * ( ((dest/BFIELD_WIDTH) + 1)%2 ) + 44 * (dest % BFIELD_WIDTH) + owner->pos.x,
  908. -50 + 42 * (dest/BFIELD_WIDTH) + owner->pos.y ));
  909. }
  910. }
  911. ////////////////////////
  912. void CBattleInterface::addNewAnim(CBattleAnimation * anim)
  913. {
  914. pendingAnims.push_back( std::make_pair(anim, false) );
  915. animsAreDisplayed.setn(true);
  916. }
  917. CBattleInterface::CBattleInterface(const CCreatureSet * army1, const CCreatureSet * army2, CGHeroInstance *hero1, CGHeroInstance *hero2, const SDL_Rect & myRect, CPlayerInterface * att, CPlayerInterface * defen)
  918. : attackingHeroInstance(hero1), defendingHeroInstance(hero2), animCount(0), activeStack(-1), stackToActivate(-1),
  919. mouseHoveredStack(-1), previouslyHoveredHex(-1), currentlyHoveredHex(-1), spellDestSelectMode(false),
  920. spellToCast(NULL), givenCommand(NULL), myTurn(false), resWindow(NULL), animIDhelper(0),
  921. moveStarted(false), moveSh(-1), siegeH(NULL), bresult(NULL), queue(NULL), attackerInt(att), defenderInt(defen), curInt(att)
  922. {
  923. ObjectConstruction h__l__p(this);
  924. animsAreDisplayed.setn(false);
  925. pos = myRect;
  926. strongInterest = true;
  927. givenCommand = new CondSh<BattleAction *>(NULL);
  928. //create stack queue
  929. bool embedQueue = screen->h < 700;
  930. queue = new CStackQueue(embedQueue, this);
  931. if(!embedQueue && curInt->sysOpts.showQueue)
  932. {
  933. pos.y += queue->pos.h / 2; //center whole window
  934. queue->moveTo(Point(pos.x, pos.y - queue->pos.h));
  935. // queue->pos.x = pos.x;
  936. // queue->pos.y = pos.y - queue->pos.h;
  937. // pos.h += queue->pos.h;
  938. // center();
  939. }
  940. queue->update();
  941. //preparing siege info
  942. const CGTownInstance * town = curInt->cb->battleGetDefendedTown();
  943. if(town && town->hasFort())
  944. {
  945. siegeH = new SiegeHelper(town, this);
  946. }
  947. curInt->battleInt = this;
  948. //initializing armies
  949. this->army1 = *army1;
  950. this->army2 = *army2;
  951. std::map<int, CStack> stacks = curInt->cb->battleGetStacks();
  952. for(std::map<int, CStack>::iterator b=stacks.begin(); b!=stacks.end(); ++b)
  953. {
  954. newStack(b->second.ID);
  955. }
  956. //preparing menu background and terrain
  957. if(siegeH)
  958. {
  959. background = BitmapHandler::loadBitmap( siegeH->getSiegeName(0), false );
  960. ui8 siegeLevel = curInt->cb->battleGetSiegeLevel();
  961. if(siegeLevel >= 2) //citadel or castle
  962. {
  963. //print moat/mlip
  964. SDL_Surface * moat = BitmapHandler::loadBitmap( siegeH->getSiegeName(13) ),
  965. * mlip = BitmapHandler::loadBitmap( siegeH->getSiegeName(14) );
  966. Point moatPos = graphics->wallPositions[siegeH->town->town->typeID][10],
  967. mlipPos = graphics->wallPositions[siegeH->town->town->typeID][11];
  968. if(moat) //eg. tower has no moat
  969. blitAt(moat, moatPos.x,moatPos.y, background);
  970. if(mlip) //eg. tower has no mlip
  971. blitAt(mlip, mlipPos.x, mlipPos.y, background);
  972. SDL_FreeSurface(moat);
  973. SDL_FreeSurface(mlip);
  974. }
  975. }
  976. else
  977. {
  978. std::vector< std::string > & backref = graphics->battleBacks[ curInt->cb->battleGetBattlefieldType() ];
  979. background = BitmapHandler::loadBitmap(backref[ rand() % backref.size()], false );
  980. }
  981. //preparing menu background
  982. menu = BitmapHandler::loadBitmap("CBAR.BMP");
  983. graphics->blueToPlayersAdv(menu, hero1->tempOwner);
  984. //preparing graphics for displaying amounts of creatures
  985. amountNormal = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  986. CSDL_Ext::alphaTransform(amountNormal);
  987. transformPalette(amountNormal, 0.59f, 0.19f, 0.93f);
  988. amountPositive = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  989. CSDL_Ext::alphaTransform(amountPositive);
  990. transformPalette(amountPositive, 0.18f, 1.00f, 0.18f);
  991. amountNegative = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  992. CSDL_Ext::alphaTransform(amountNegative);
  993. transformPalette(amountNegative, 1.00f, 0.18f, 0.18f);
  994. amountEffNeutral = BitmapHandler::loadBitmap("CMNUMWIN.BMP");
  995. CSDL_Ext::alphaTransform(amountEffNeutral);
  996. transformPalette(amountEffNeutral, 1.00f, 1.00f, 0.18f);
  997. ////blitting menu background and terrain
  998. blitAt(background, pos.x, pos.y);
  999. blitAt(menu, pos.x, 556 + pos.y);
  1000. CSDL_Ext::update();
  1001. //preparing buttons and console
  1002. bOptions = new AdventureMapButton (CGI->generaltexth->zelp[381].first, CGI->generaltexth->zelp[381].second, boost::bind(&CBattleInterface::bOptionsf,this), 3 + pos.x, 561 + pos.y, "icm003.def", SDLK_o);
  1003. bSurrender = new AdventureMapButton (CGI->generaltexth->zelp[379].first, CGI->generaltexth->zelp[379].second, boost::bind(&CBattleInterface::bSurrenderf,this), 54 + pos.x, 561 + pos.y, "icm001.def", SDLK_s);
  1004. bFlee = new AdventureMapButton (CGI->generaltexth->zelp[380].first, CGI->generaltexth->zelp[380].second, boost::bind(&CBattleInterface::bFleef,this), 105 + pos.x, 561 + pos.y, "icm002.def", SDLK_r);
  1005. bSurrender->block(!curInt->cb->battleCanFlee());
  1006. bFlee->block(!curInt->cb->battleCanFlee());
  1007. bAutofight = new AdventureMapButton (CGI->generaltexth->zelp[382].first, CGI->generaltexth->zelp[382].second, boost::bind(&CBattleInterface::bAutofightf,this), 157 + pos.x, 561 + pos.y, "icm004.def", SDLK_a);
  1008. bSpell = new AdventureMapButton (CGI->generaltexth->zelp[385].first, CGI->generaltexth->zelp[385].second, boost::bind(&CBattleInterface::bSpellf,this), 645 + pos.x, 561 + pos.y, "icm005.def", SDLK_c);
  1009. bSpell->block(true);
  1010. bWait = new AdventureMapButton (CGI->generaltexth->zelp[386].first, CGI->generaltexth->zelp[386].second, boost::bind(&CBattleInterface::bWaitf,this), 696 + pos.x, 561 + pos.y, "icm006.def", SDLK_w);
  1011. bDefence = new AdventureMapButton (CGI->generaltexth->zelp[387].first, CGI->generaltexth->zelp[387].second, boost::bind(&CBattleInterface::bDefencef,this), 747 + pos.x, 561 + pos.y, "icm007.def", SDLK_d);
  1012. bDefence->assignedKeys.insert(SDLK_SPACE);
  1013. bConsoleUp = new AdventureMapButton (std::string(), std::string(), boost::bind(&CBattleInterface::bConsoleUpf,this), 624 + pos.x, 561 + pos.y, "ComSlide.def", SDLK_UP);
  1014. bConsoleDown = new AdventureMapButton (std::string(), std::string(), boost::bind(&CBattleInterface::bConsoleDownf,this), 624 + pos.x, 580 + pos.y, "ComSlide.def", SDLK_DOWN);
  1015. bConsoleDown->bitmapOffset = 2;
  1016. console = new CBattleConsole();
  1017. console->pos.x = 211 + pos.x;
  1018. console->pos.y = 560 + pos.y;
  1019. console->pos.w = 406;
  1020. console->pos.h = 38;
  1021. //loading hero animations
  1022. if(hero1) // attacking hero
  1023. {
  1024. int type = hero1->type->heroType;
  1025. if ( type % 2 ) type--;
  1026. if ( hero1->sex ) type++;
  1027. attackingHero = new CBattleHero(graphics->battleHeroes[type], 0, 0, false, hero1->tempOwner, hero1->tempOwner == curInt->playerID ? hero1 : NULL, this);
  1028. attackingHero->pos = genRect(attackingHero->dh->ourImages[0].bitmap->h, attackingHero->dh->ourImages[0].bitmap->w, -40 + pos.x, pos.y);
  1029. }
  1030. else
  1031. {
  1032. attackingHero = NULL;
  1033. }
  1034. if(hero2) // defending hero
  1035. {
  1036. int type = hero2->type->heroType;
  1037. if ( type % 2 ) type--;
  1038. if ( hero2->sex ) type++;
  1039. defendingHero = new CBattleHero(graphics->battleHeroes[type ], 0, 0, true, hero2->tempOwner, hero2->tempOwner == curInt->playerID ? hero2 : NULL, this);
  1040. defendingHero->pos = genRect(defendingHero->dh->ourImages[0].bitmap->h, defendingHero->dh->ourImages[0].bitmap->w, 690 + pos.x, pos.y);
  1041. }
  1042. else
  1043. {
  1044. defendingHero = NULL;
  1045. }
  1046. //preparing cells and hexes
  1047. cellBorder = BitmapHandler::loadBitmap("CCELLGRD.BMP");
  1048. CSDL_Ext::alphaTransform(cellBorder);
  1049. cellShade = BitmapHandler::loadBitmap("CCELLSHD.BMP");
  1050. CSDL_Ext::alphaTransform(cellShade);
  1051. for(int h=0; h<BFIELD_SIZE; ++h)
  1052. {
  1053. bfield[h].myNumber = h;
  1054. int x = 14 + ((h/BFIELD_WIDTH)%2==0 ? 22 : 0) + 44*(h%BFIELD_WIDTH);
  1055. int y = 86 + 42 * (h/BFIELD_WIDTH);
  1056. bfield[h].pos = genRect(cellShade->h, cellShade->w, x + pos.x, y + pos.y);
  1057. bfield[h].accessible = true;
  1058. bfield[h].myInterface = this;
  1059. }
  1060. //locking occupied positions on batlefield
  1061. for(std::map<int, CStack>::iterator it = stacks.begin(); it!=stacks.end(); ++it) //stacks gained at top of this function
  1062. {
  1063. if(it->second.position >= 0) //turrets have position < 0
  1064. bfield[it->second.position].accessible = false;
  1065. }
  1066. //loading projectiles for units
  1067. for(std::map<int, CStack>::iterator g = stacks.begin(); g != stacks.end(); ++g)
  1068. {
  1069. int creID = (g->second.type->idNumber == 149) ? CGI->creh->factionToTurretCreature[siegeH->town->town->typeID] : g->second.type->idNumber; //id of creature whose shots should be loaded
  1070. if(g->second.type->isShooting() && CGI->creh->idToProjectile.find(creID) != CGI->creh->idToProjectile.end())
  1071. {
  1072. idToProjectile[g->second.type->idNumber] = CDefHandler::giveDef(CGI->creh->idToProjectile.find(creID)->second);
  1073. if(idToProjectile[g->second.type->idNumber]->ourImages.size() > 2) //add symmetric images
  1074. {
  1075. for(int k = idToProjectile[g->second.type->idNumber]->ourImages.size()-2; k > 1; --k)
  1076. {
  1077. Cimage ci;
  1078. ci.bitmap = CSDL_Ext::rotate01(idToProjectile[g->second.type->idNumber]->ourImages[k].bitmap);
  1079. ci.groupNumber = 0;
  1080. ci.imName = std::string();
  1081. idToProjectile[g->second.type->idNumber]->ourImages.push_back(ci);
  1082. }
  1083. }
  1084. for(int s=0; s<idToProjectile[g->second.type->idNumber]->ourImages.size(); ++s) //alpha transforming
  1085. {
  1086. CSDL_Ext::alphaTransform(idToProjectile[g->second.type->idNumber]->ourImages[s].bitmap);
  1087. }
  1088. }
  1089. }
  1090. //preparing graphic with cell borders
  1091. cellBorders = CSDL_Ext::newSurface(background->w, background->h, cellBorder);
  1092. //copying palette
  1093. for(int g=0; g<cellBorder->format->palette->ncolors; ++g) //we assume that cellBorders->format->palette->ncolors == 256
  1094. {
  1095. cellBorders->format->palette->colors[g] = cellBorder->format->palette->colors[g];
  1096. }
  1097. //palette copied
  1098. for(int i=0; i<BFIELD_HEIGHT; ++i) //rows
  1099. {
  1100. for(int j=0; j<BFIELD_WIDTH-2; ++j) //columns
  1101. {
  1102. int x = 58 + (i%2==0 ? 22 : 0) + 44*j;
  1103. int y = 86 + 42 * i;
  1104. for(int cellX = 0; cellX < cellBorder->w; ++cellX)
  1105. {
  1106. for(int cellY = 0; cellY < cellBorder->h; ++cellY)
  1107. {
  1108. if(y+cellY < cellBorders->h && x+cellX < cellBorders->w)
  1109. * ((Uint8*)cellBorders->pixels + (y+cellY) * cellBorders->pitch + (x+cellX)) |= * ((Uint8*)cellBorder->pixels + cellY * cellBorder->pitch + cellX);
  1110. }
  1111. }
  1112. }
  1113. }
  1114. backgroundWithHexes = CSDL_Ext::newSurface(background->w, background->h, screen);
  1115. //preparing obstacle defs
  1116. std::vector<CObstacleInstance> obst = curInt->cb->battleGetAllObstacles();
  1117. for(int t=0; t<obst.size(); ++t)
  1118. {
  1119. idToObstacle[obst[t].ID] = CDefHandler::giveDef(CGI->heroh->obstacles.find(obst[t].ID)->second.defName);
  1120. for(int n=0; n<idToObstacle[obst[t].ID]->ourImages.size(); ++n)
  1121. {
  1122. SDL_SetColorKey(idToObstacle[obst[t].ID]->ourImages[n].bitmap, SDL_SRCCOLORKEY, SDL_MapRGB(idToObstacle[obst[t].ID]->ourImages[n].bitmap->format,0,255,255));
  1123. }
  1124. }
  1125. for (int i = 0; i < ARRAY_COUNT(bfield); i++)
  1126. {
  1127. children.push_back(&bfield[i]);
  1128. }
  1129. }
  1130. CBattleInterface::~CBattleInterface()
  1131. {
  1132. if (active) //dirty fix for #485
  1133. {
  1134. deactivate();
  1135. }
  1136. SDL_FreeSurface(background);
  1137. SDL_FreeSurface(menu);
  1138. SDL_FreeSurface(amountNormal);
  1139. SDL_FreeSurface(amountNegative);
  1140. SDL_FreeSurface(amountPositive);
  1141. SDL_FreeSurface(amountEffNeutral);
  1142. SDL_FreeSurface(cellBorders);
  1143. SDL_FreeSurface(backgroundWithHexes);
  1144. delete bOptions;
  1145. delete bSurrender;
  1146. delete bFlee;
  1147. delete bAutofight;
  1148. delete bSpell;
  1149. delete bWait;
  1150. delete bDefence;
  1151. delete bConsoleUp;
  1152. delete bConsoleDown;
  1153. delete console;
  1154. delete givenCommand;
  1155. delete attackingHero;
  1156. delete defendingHero;
  1157. delete queue;
  1158. SDL_FreeSurface(cellBorder);
  1159. SDL_FreeSurface(cellShade);
  1160. for(std::map< int, CCreatureAnimation * >::iterator g=creAnims.begin(); g!=creAnims.end(); ++g)
  1161. delete g->second;
  1162. for(std::map< int, CDefHandler * >::iterator g=idToProjectile.begin(); g!=idToProjectile.end(); ++g)
  1163. delete g->second;
  1164. for(std::map< int, CDefHandler * >::iterator g=idToObstacle.begin(); g!=idToObstacle.end(); ++g)
  1165. delete g->second;
  1166. delete siegeH;
  1167. curInt->battleInt = NULL;
  1168. }
  1169. void CBattleInterface::setPrintCellBorders(bool set)
  1170. {
  1171. curInt->sysOpts.printCellBorders = set;
  1172. curInt->sysOpts.settingsChanged();
  1173. redrawBackgroundWithHexes(activeStack);
  1174. GH.totalRedraw();
  1175. }
  1176. void CBattleInterface::setPrintStackRange(bool set)
  1177. {
  1178. curInt->sysOpts.printStackRange = set;
  1179. curInt->sysOpts.settingsChanged();
  1180. redrawBackgroundWithHexes(activeStack);
  1181. GH.totalRedraw();
  1182. }
  1183. void CBattleInterface::setPrintMouseShadow(bool set)
  1184. {
  1185. curInt->sysOpts.printMouseShadow = set;
  1186. curInt->sysOpts.settingsChanged();
  1187. }
  1188. void CBattleInterface::activate()
  1189. {
  1190. activateKeys();
  1191. activateMouseMove();
  1192. activateRClick();
  1193. bOptions->activate();
  1194. bSurrender->activate();
  1195. bFlee->activate();
  1196. bAutofight->activate();
  1197. bSpell->activate();
  1198. bWait->activate();
  1199. bDefence->activate();
  1200. bConsoleUp->activate();
  1201. bConsoleDown->activate();
  1202. for(int b=0; b<BFIELD_SIZE; ++b)
  1203. {
  1204. bfield[b].activate();
  1205. }
  1206. if(attackingHero)
  1207. attackingHero->activate();
  1208. if(defendingHero)
  1209. defendingHero->activate();
  1210. if(curInt->sysOpts.showQueue)
  1211. queue->activate();
  1212. LOCPLINT->cingconsole->activate();
  1213. }
  1214. void CBattleInterface::deactivate()
  1215. {
  1216. deactivateKeys();
  1217. deactivateMouseMove();
  1218. deactivateRClick();
  1219. bOptions->deactivate();
  1220. bSurrender->deactivate();
  1221. bFlee->deactivate();
  1222. bAutofight->deactivate();
  1223. bSpell->deactivate();
  1224. bWait->deactivate();
  1225. bDefence->deactivate();
  1226. bConsoleUp->deactivate();
  1227. bConsoleDown->deactivate();
  1228. for(int b=0; b<BFIELD_SIZE; ++b)
  1229. {
  1230. bfield[b].deactivate();
  1231. }
  1232. if(attackingHero)
  1233. attackingHero->deactivate();
  1234. if(defendingHero)
  1235. defendingHero->deactivate();
  1236. if(curInt->sysOpts.showQueue)
  1237. queue->deactivate();
  1238. LOCPLINT->cingconsole->deactivate();
  1239. }
  1240. void CBattleInterface::show(SDL_Surface * to)
  1241. {
  1242. std::map<int, CStack> stacks = curInt->cb->battleGetStacks(); //used in a few places
  1243. ++animCount;
  1244. if(!to) //"evaluating" to
  1245. to = screen;
  1246. SDL_Rect buf;
  1247. SDL_GetClipRect(to, &buf);
  1248. SDL_SetClipRect(to, &pos);
  1249. //printing background and hexes
  1250. if(activeStack != -1 && creAnims[activeStack]->getType() != 0) //show everything with range
  1251. {
  1252. blitAt(backgroundWithHexes, pos.x, pos.y, to);
  1253. }
  1254. else
  1255. {
  1256. //showing background
  1257. blitAt(background, pos.x, pos.y, to);
  1258. if(curInt->sysOpts.printCellBorders)
  1259. {
  1260. CSDL_Ext::blit8bppAlphaTo24bpp(cellBorders, NULL, to, &pos);
  1261. }
  1262. }
  1263. //printing hovered cell
  1264. for(int b=0; b<BFIELD_SIZE; ++b)
  1265. {
  1266. if(bfield[b].strictHovered && bfield[b].hovered)
  1267. {
  1268. if(previouslyHoveredHex == -1) previouslyHoveredHex = b; //something to start with
  1269. if(currentlyHoveredHex == -1) currentlyHoveredHex = b; //something to start with
  1270. if(currentlyHoveredHex != b) //repair hover info
  1271. {
  1272. previouslyHoveredHex = currentlyHoveredHex;
  1273. currentlyHoveredHex = b;
  1274. }
  1275. //print shade
  1276. if(spellToCast) //when casting spell
  1277. {
  1278. //calculating spell schoold level
  1279. const CSpell & spToCast = CGI->spellh->spells[spellToCast->additionalInfo];
  1280. ui8 schoolLevel = 0;
  1281. if( curInt->cb->battleGetStackByID(activeStack)->attackerOwned )
  1282. {
  1283. if(attackingHeroInstance)
  1284. schoolLevel = attackingHeroInstance->getSpellSchoolLevel(&spToCast);
  1285. }
  1286. else
  1287. {
  1288. if(defendingHeroInstance)
  1289. schoolLevel = defendingHeroInstance->getSpellSchoolLevel(&spToCast);
  1290. }
  1291. //obtaining range and printing it
  1292. std::set<ui16> shaded = spToCast.rangeInHexes(b, schoolLevel);
  1293. for(std::set<ui16>::iterator it = shaded.begin(); it != shaded.end(); ++it) //for spells with range greater then one hex
  1294. {
  1295. if(curInt->sysOpts.printMouseShadow && (*it % BFIELD_WIDTH != 0) && (*it % BFIELD_WIDTH != 16))
  1296. {
  1297. int x = 14 + ((*it/BFIELD_WIDTH)%2==0 ? 22 : 0) + 44*(*it%BFIELD_WIDTH) + pos.x;
  1298. int y = 86 + 42 * (*it/BFIELD_WIDTH) + pos.y;
  1299. CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, to, &genRect(cellShade->h, cellShade->w, x, y));
  1300. }
  1301. }
  1302. }
  1303. else if(curInt->sysOpts.printMouseShadow) //when not casting spell
  1304. {
  1305. int x = 14 + ((b/BFIELD_WIDTH)%2==0 ? 22 : 0) + 44*(b%BFIELD_WIDTH) + pos.x;
  1306. int y = 86 + 42 * (b/BFIELD_WIDTH) + pos.y;
  1307. CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, to, &genRect(cellShade->h, cellShade->w, x, y));
  1308. }
  1309. }
  1310. }
  1311. SDL_SetClipRect(to, &buf); //restoring previous clip_rect
  1312. //prevents blitting outside this window
  1313. SDL_GetClipRect(to, &buf);
  1314. SDL_SetClipRect(to, &pos);
  1315. //preparing obstacles to be shown
  1316. std::vector<CObstacleInstance> obstacles = curInt->cb->battleGetAllObstacles();
  1317. std::multimap<int, int> hexToObstacle;
  1318. for(int b=0; b<obstacles.size(); ++b)
  1319. {
  1320. int position = CGI->heroh->obstacles.find(obstacles[b].ID)->second.getMaxBlocked(obstacles[b].pos);
  1321. hexToObstacle.insert(std::make_pair(position, b));
  1322. }
  1323. ////showing units //a lot of work...
  1324. std::vector<int> stackAliveByHex[BFIELD_SIZE];
  1325. //double loop because dead stacks should be printed first
  1326. for(std::map<int, CStack>::iterator j=stacks.begin(); j!=stacks.end(); ++j)
  1327. {
  1328. if(creAnims.find(j->second.ID) == creAnims.end()) //eg. for summoned but not yet handled stacks
  1329. continue;
  1330. if(creAnims[j->second.ID]->getType() != 5 && j->second.position >= 0) //don't show turrets here
  1331. stackAliveByHex[j->second.position].push_back(j->second.ID);
  1332. }
  1333. std::vector<int> stackDeadByHex[BFIELD_SIZE];
  1334. for(std::map<int, CStack>::iterator j=stacks.begin(); j!=stacks.end(); ++j)
  1335. {
  1336. if(creAnims.find(j->second.ID) == creAnims.end()) //eg. for summoned but not yet handled stacks
  1337. continue;
  1338. if(creAnims[j->second.ID]->getType() == 5)
  1339. stackDeadByHex[j->second.position].push_back(j->second.ID);
  1340. }
  1341. //handle animations
  1342. for(std::list<std::pair<CBattleAnimation *, bool> >::iterator it = pendingAnims.begin(); it != pendingAnims.end(); ++it)
  1343. {
  1344. if(!it->first) //this animation should be deleted
  1345. continue;
  1346. if(!it->second)
  1347. {
  1348. it->second = it->first->init();
  1349. }
  1350. if(it->second && it->first)
  1351. it->first->nextFrame();
  1352. }
  1353. //delete anims
  1354. int preSize = pendingAnims.size();
  1355. for(std::list<std::pair<CBattleAnimation *, bool> >::iterator it = pendingAnims.begin(); it != pendingAnims.end(); ++it)
  1356. {
  1357. if(it->first == NULL)
  1358. {
  1359. pendingAnims.erase(it);
  1360. it = pendingAnims.begin();
  1361. break;
  1362. }
  1363. }
  1364. if(preSize > 0 && pendingAnims.size() == 0)
  1365. {
  1366. //action finished, restore the interface
  1367. if(!active)
  1368. activate();
  1369. //restoring good directions of stacks
  1370. for(std::map<int, CStack>::const_iterator it = stacks.begin(); it != stacks.end(); ++it)
  1371. {
  1372. if(creDir[it->second.ID] != bool(it->second.attackerOwned) && it->second.alive())
  1373. {
  1374. addNewAnim(new CReverseAnim(this, it->second.ID, it->second.position, false));
  1375. }
  1376. }
  1377. //activation of next stack
  1378. if(pendingAnims.size() == 0 && stackToActivate != -1)
  1379. {
  1380. activateStack();
  1381. }
  1382. //anims ended
  1383. animsAreDisplayed.setn(false);
  1384. }
  1385. for(int b=0; b<BFIELD_SIZE; ++b) //showing dead stacks
  1386. {
  1387. for(size_t v=0; v<stackDeadByHex[b].size(); ++v)
  1388. {
  1389. creAnims[stackDeadByHex[b][v]]->nextFrame(to, creAnims[stackDeadByHex[b][v]]->pos.x, creAnims[stackDeadByHex[b][v]]->pos.y, creDir[stackDeadByHex[b][v]], animCount, false); //increment always when moving, never if stack died
  1390. }
  1391. }
  1392. std::vector<int> flyingStacks; //flying stacks should be displayed later, over other stacks and obstacles
  1393. for(int b=0; b<BFIELD_SIZE; ++b) //showing alive stacks
  1394. {
  1395. for(size_t v=0; v<stackAliveByHex[b].size(); ++v)
  1396. {
  1397. int curStackID = stackAliveByHex[b][v];
  1398. if(!stacks[curStackID].hasBonusOfType(Bonus::FLYING) || creAnims[curStackID]->getType() != 0)
  1399. showAliveStack(curStackID, stacks, to);
  1400. else
  1401. flyingStacks.push_back(curStackID);
  1402. }
  1403. //showing obstacles
  1404. std::pair<std::multimap<int, int>::const_iterator, std::multimap<int, int>::const_iterator> obstRange =
  1405. hexToObstacle.equal_range(b);
  1406. for(std::multimap<int, int>::const_iterator it = obstRange.first; it != obstRange.second; ++it)
  1407. {
  1408. CObstacleInstance & curOb = obstacles[it->second];
  1409. std::pair<si16, si16> shift = CGI->heroh->obstacles.find(curOb.ID)->second.posShift;
  1410. int x = ((curOb.pos/BFIELD_WIDTH)%2==0 ? 22 : 0) + 44*(curOb.pos%BFIELD_WIDTH) + pos.x + shift.first;
  1411. int y = 86 + 42 * (curOb.pos/BFIELD_WIDTH) + pos.y + shift.second;
  1412. std::vector<Cimage> &images = idToObstacle[curOb.ID]->ourImages; //reference to animation of obstacle
  1413. blitAt(images[((animCount+1)/(4/curInt->sysOpts.animSpeed))%images.size()].bitmap, x, y, to);
  1414. }
  1415. //showing wall pieces
  1416. showPieceOfWall(to, b, stacks);
  1417. }
  1418. for(int b=0; b<flyingStacks.size(); ++b) //showing flyign stacks
  1419. showAliveStack(flyingStacks[b], stacks, to);
  1420. //units shown
  1421. //showing hero animations
  1422. if(attackingHero)
  1423. attackingHero->show(to);
  1424. if(defendingHero)
  1425. defendingHero->show(to);
  1426. projectileShowHelper(to);//showing projectiles
  1427. //showing spell effects
  1428. if(battleEffects.size())
  1429. {
  1430. for(std::list<SBattleEffect>::iterator it = battleEffects.begin(); it!=battleEffects.end(); ++it)
  1431. {
  1432. SDL_Surface * bitmapToBlit = it->anim->ourImages[(it->frame)%it->anim->ourImages.size()].bitmap;
  1433. SDL_BlitSurface(bitmapToBlit, NULL, to, &genRect(bitmapToBlit->h, bitmapToBlit->w, it->x, it->y));
  1434. }
  1435. }
  1436. SDL_SetClipRect(to, &buf); //restoring previous clip_rect
  1437. //showing menu background and console
  1438. blitAt(menu, pos.x, 556 + pos.y, to);
  1439. console->show(to);
  1440. //showing buttons
  1441. bOptions->show(to);
  1442. bSurrender->show(to);
  1443. bFlee->show(to);
  1444. bAutofight->show(to);
  1445. bSpell->show(to);
  1446. bWait->show(to);
  1447. bDefence->show(to);
  1448. bConsoleUp->show(to);
  1449. bConsoleDown->show(to);
  1450. //showing window with result of battle
  1451. if(resWindow)
  1452. {
  1453. resWindow->show(to);
  1454. }
  1455. //showing in-game console
  1456. LOCPLINT->cingconsole->show(to);
  1457. Rect posWithQueue = Rect(pos.x, pos.y, 800, 600);
  1458. if(curInt->sysOpts.showQueue)
  1459. {
  1460. if(!queue->embedded)
  1461. {
  1462. posWithQueue.y -= queue->pos.h;
  1463. posWithQueue.h += queue->pos.h;
  1464. }
  1465. //showing queue
  1466. if(!bresult)
  1467. queue->showAll(to);
  1468. else
  1469. queue->blitBg(to); //blit only background, stacks are deleted
  1470. }
  1471. //printing border around interface
  1472. if(screen->w != 800 || screen->h !=600)
  1473. {
  1474. CMessage::drawBorder(curInt->playerID,to,posWithQueue.w + 28, posWithQueue.h + 28, posWithQueue.x-14, posWithQueue.y-15);
  1475. }
  1476. }
  1477. void CBattleInterface::keyPressed(const SDL_KeyboardEvent & key)
  1478. {
  1479. if(key.keysym.sym == SDLK_q && key.state == SDL_PRESSED)
  1480. {
  1481. if(curInt->sysOpts.showQueue) //hide queue
  1482. hideQueue();
  1483. else
  1484. showQueue();
  1485. curInt->sysOpts.settingsChanged();
  1486. }
  1487. else if(key.keysym.sym == SDLK_ESCAPE && spellDestSelectMode)
  1488. {
  1489. endCastingSpell();
  1490. }
  1491. }
  1492. void CBattleInterface::mouseMoved(const SDL_MouseMotionEvent &sEvent)
  1493. {
  1494. if(activeStack>=0 && !spellDestSelectMode)
  1495. {
  1496. mouseHoveredStack = -1;
  1497. int myNumber = -1; //number of hovered tile
  1498. for(int g=0; g<BFIELD_SIZE; ++g)
  1499. {
  1500. if(bfield[g].hovered && bfield[g].strictHovered)
  1501. {
  1502. myNumber = g;
  1503. break;
  1504. }
  1505. }
  1506. if(myNumber == -1)
  1507. {
  1508. CGI->curh->changeGraphic(1, 6);
  1509. if(console->whoSetAlter == 0)
  1510. {
  1511. console->alterTxt = "";
  1512. }
  1513. }
  1514. else
  1515. {
  1516. if(std::find(shadedHexes.begin(),shadedHexes.end(),myNumber) == shadedHexes.end())
  1517. {
  1518. const CStack *shere = curInt->cb->battleGetStackByPos(myNumber);
  1519. const CStack *sactive = curInt->cb->battleGetStackByID(activeStack);
  1520. if(shere)
  1521. {
  1522. if(shere->owner == curInt->playerID) //our stack
  1523. {
  1524. if(sactive->hasBonusOfType(Bonus::HEALER))
  1525. {
  1526. //display the possibility to heal this creature
  1527. CGI->curh->changeGraphic(1,17);
  1528. }
  1529. else
  1530. {
  1531. //info about creature
  1532. CGI->curh->changeGraphic(1,5);
  1533. }
  1534. //setting console text
  1535. char buf[500];
  1536. sprintf(buf, CGI->generaltexth->allTexts[297].c_str(), shere->count == 1 ? shere->type->nameSing.c_str() : shere->type->namePl.c_str());
  1537. console->alterTxt = buf;
  1538. console->whoSetAlter = 0;
  1539. mouseHoveredStack = shere->ID;
  1540. if(creAnims[shere->ID]->getType() == 2 && creAnims[shere->ID]->framesInGroup(1) > 0)
  1541. {
  1542. creAnims[shere->ID]->playOnce(1);
  1543. }
  1544. }
  1545. else if(curInt->cb->battleCanShoot(activeStack,myNumber)) //we can shoot enemy
  1546. {
  1547. if(curInt->cb->battleHasDistancePenalty(activeStack, myNumber) ||
  1548. curInt->cb->battleHasWallPenalty(activeStack, myNumber))
  1549. {
  1550. CGI->curh->changeGraphic(1,15);
  1551. }
  1552. else
  1553. {
  1554. CGI->curh->changeGraphic(1,3);
  1555. }
  1556. //setting console text
  1557. char buf[500];
  1558. //calculating estimated dmg
  1559. std::pair<ui32, ui32> estimatedDmg = curInt->cb->battleEstimateDamage(sactive->ID, shere->ID);
  1560. std::ostringstream estDmg;
  1561. estDmg << estimatedDmg.first << " - " << estimatedDmg.second;
  1562. //printing
  1563. sprintf(buf, CGI->generaltexth->allTexts[296].c_str(), shere->count == 1 ? shere->type->nameSing.c_str() : shere->type->namePl.c_str(), sactive->shots, estDmg.str().c_str());
  1564. console->alterTxt = buf;
  1565. console->whoSetAlter = 0;
  1566. }
  1567. else if(isTileAttackable(myNumber)) //available enemy (melee attackable)
  1568. {
  1569. CCursorHandler *cursor = CGI->curh;
  1570. const CBattleHex &hoveredHex = bfield[myNumber];
  1571. const double subdividingAngle = 2.0*M_PI/6.0; // Divide a hex into six sectors.
  1572. const double hexMidX = hoveredHex.pos.x + hoveredHex.pos.w/2;
  1573. const double hexMidY = hoveredHex.pos.y + hoveredHex.pos.h/2;
  1574. const double cursorHexAngle = M_PI - atan2(hexMidY - cursor->ypos, cursor->xpos - hexMidX) + subdividingAngle/2;
  1575. const double sector = fmod(cursorHexAngle/subdividingAngle, 6.0);
  1576. const int zigzagCorrection = !((myNumber/BFIELD_WIDTH)%2); // Off-by-one correction needed to deal with the odd battlefield rows.
  1577. std::vector<int> sectorCursor; // From left to bottom left.
  1578. sectorCursor.push_back(8);
  1579. sectorCursor.push_back(9);
  1580. sectorCursor.push_back(10);
  1581. sectorCursor.push_back(11);
  1582. sectorCursor.push_back(12);
  1583. sectorCursor.push_back(7);
  1584. const bool doubleWide = curInt->cb->battleGetStackByID(activeStack)->doubleWide();
  1585. bool aboveAttackable = true, belowAttackable = true;
  1586. // Exclude directions which cannot be attacked from.
  1587. // Check to the left.
  1588. if (myNumber%BFIELD_WIDTH <= 1 || !vstd::contains(shadedHexes, myNumber - 1))
  1589. {
  1590. sectorCursor[0] = -1;
  1591. }
  1592. // Check top left, top right as well as above for 2-hex creatures.
  1593. if (myNumber/BFIELD_WIDTH == 0)
  1594. {
  1595. sectorCursor[1] = -1;
  1596. sectorCursor[2] = -1;
  1597. aboveAttackable = false;
  1598. }
  1599. else
  1600. {
  1601. if (doubleWide)
  1602. {
  1603. bool attackRow[4] = {true, true, true, true};
  1604. if (myNumber%BFIELD_WIDTH <= 1 || !vstd::contains(shadedHexes, myNumber - BFIELD_WIDTH - 2 + zigzagCorrection))
  1605. attackRow[0] = false;
  1606. if (!vstd::contains(shadedHexes, myNumber - BFIELD_WIDTH - 1 + zigzagCorrection))
  1607. attackRow[1] = false;
  1608. if (!vstd::contains(shadedHexes, myNumber - BFIELD_WIDTH + zigzagCorrection))
  1609. attackRow[2] = false;
  1610. if (myNumber%BFIELD_WIDTH >= BFIELD_WIDTH - 2 || !vstd::contains(shadedHexes, myNumber - BFIELD_WIDTH + 1 + zigzagCorrection))
  1611. attackRow[3] = false;
  1612. if (!(attackRow[0] && attackRow[1]))
  1613. sectorCursor[1] = -1;
  1614. if (!(attackRow[1] && attackRow[2]))
  1615. aboveAttackable = false;
  1616. if (!(attackRow[2] && attackRow[3]))
  1617. sectorCursor[2] = -1;
  1618. }
  1619. else
  1620. {
  1621. if (!vstd::contains(shadedHexes, myNumber - BFIELD_WIDTH - 1 + zigzagCorrection))
  1622. sectorCursor[1] = -1;
  1623. if (!vstd::contains(shadedHexes, myNumber - BFIELD_WIDTH + zigzagCorrection))
  1624. sectorCursor[2] = -1;
  1625. }
  1626. }
  1627. // Check to the right.
  1628. if (myNumber%BFIELD_WIDTH >= BFIELD_WIDTH - 2 || !vstd::contains(shadedHexes, myNumber + 1))
  1629. {
  1630. sectorCursor[3] = -1;
  1631. }
  1632. // Check bottom right, bottom left as well as below for 2-hex creatures.
  1633. if (myNumber/BFIELD_WIDTH == BFIELD_HEIGHT - 1)
  1634. {
  1635. sectorCursor[4] = -1;
  1636. sectorCursor[5] = -1;
  1637. belowAttackable = false;
  1638. }
  1639. else
  1640. {
  1641. if (doubleWide)
  1642. {
  1643. bool attackRow[4] = {true, true, true, true};
  1644. if (myNumber%BFIELD_WIDTH <= 1 || !vstd::contains(shadedHexes, myNumber + BFIELD_WIDTH - 2 + zigzagCorrection))
  1645. attackRow[0] = false;
  1646. if (!vstd::contains(shadedHexes, myNumber + BFIELD_WIDTH - 1 + zigzagCorrection))
  1647. attackRow[1] = false;
  1648. if (!vstd::contains(shadedHexes, myNumber + BFIELD_WIDTH + zigzagCorrection))
  1649. attackRow[2] = false;
  1650. if (myNumber%BFIELD_WIDTH >= BFIELD_WIDTH - 2 || !vstd::contains(shadedHexes, myNumber + BFIELD_WIDTH + 1 + zigzagCorrection))
  1651. attackRow[3] = false;
  1652. if (!(attackRow[0] && attackRow[1]))
  1653. sectorCursor[5] = -1;
  1654. if (!(attackRow[1] && attackRow[2]))
  1655. belowAttackable = false;
  1656. if (!(attackRow[2] && attackRow[3]))
  1657. sectorCursor[4] = -1;
  1658. }
  1659. else
  1660. {
  1661. if (!vstd::contains(shadedHexes, myNumber + BFIELD_WIDTH + zigzagCorrection))
  1662. sectorCursor[4] = -1;
  1663. if (!vstd::contains(shadedHexes, myNumber + BFIELD_WIDTH - 1 + zigzagCorrection))
  1664. sectorCursor[5] = -1;
  1665. }
  1666. }
  1667. // Determine index from sector.
  1668. int cursorIndex;
  1669. if (doubleWide)
  1670. {
  1671. sectorCursor.insert(sectorCursor.begin() + 5, belowAttackable ? 13 : -1);
  1672. sectorCursor.insert(sectorCursor.begin() + 2, aboveAttackable ? 14 : -1);
  1673. if (sector < 1.5)
  1674. cursorIndex = sector;
  1675. else if (sector >= 1.5 && sector < 2.5)
  1676. cursorIndex = 2;
  1677. else if (sector >= 2.5 && sector < 4.5)
  1678. cursorIndex = (int) sector + 1;
  1679. else if (sector >= 4.5 && sector < 5.5)
  1680. cursorIndex = 6;
  1681. else
  1682. cursorIndex = (int) sector + 2;
  1683. }
  1684. else
  1685. {
  1686. cursorIndex = sector;
  1687. }
  1688. // Find the closest direction attackable, starting with the right one.
  1689. // FIXME: Is this really how the original H3 client does it?
  1690. int i = 0;
  1691. while (sectorCursor[(cursorIndex + i)%sectorCursor.size()] == -1)
  1692. i = i <= 0 ? 1 - i : -i; // 0, 1, -1, 2, -2, 3, -3 etc..
  1693. cursor->changeGraphic(1, sectorCursor[(cursorIndex + i)%sectorCursor.size()]);
  1694. //setting console info
  1695. char buf[500];
  1696. //calculating estimated dmg
  1697. std::pair<ui32, ui32> estimatedDmg = curInt->cb->battleEstimateDamage(sactive->ID, shere->ID);
  1698. std::ostringstream estDmg;
  1699. estDmg << estimatedDmg.first << " - " << estimatedDmg.second;
  1700. //printing
  1701. sprintf(buf, CGI->generaltexth->allTexts[36].c_str(), shere->count == 1 ? shere->type->nameSing.c_str() : shere->type->namePl.c_str(), estDmg.str().c_str());
  1702. console->alterTxt = buf;
  1703. console->whoSetAlter = 0;
  1704. }
  1705. else //unavailable enemy
  1706. {
  1707. CGI->curh->changeGraphic(1,0);
  1708. console->alterTxt = "";
  1709. console->whoSetAlter = 0;
  1710. }
  1711. }
  1712. else if( sactive && sactive->hasBonusOfType(Bonus::CATAPULT) && isCatapultAttackable(myNumber) ) //catapulting
  1713. {
  1714. CGI->curh->changeGraphic(1,16);
  1715. console->alterTxt = "";
  1716. console->whoSetAlter = 0;
  1717. }
  1718. else //empty unavailable tile
  1719. {
  1720. CGI->curh->changeGraphic(1,0);
  1721. console->alterTxt = "";
  1722. console->whoSetAlter = 0;
  1723. }
  1724. }
  1725. else //available tile
  1726. {
  1727. //setting console text and cursor
  1728. const CStack *sactive = curInt->cb->battleGetStackByID(activeStack);
  1729. if(sactive) //there can be a moment when stack is dead ut next is not yet activated
  1730. {
  1731. char buf[500];
  1732. if(sactive->hasBonusOfType(Bonus::FLYING))
  1733. {
  1734. CGI->curh->changeGraphic(1,2);
  1735. sprintf(buf, CGI->generaltexth->allTexts[295].c_str(), sactive->count == 1 ? sactive->type->nameSing.c_str() : sactive->type->namePl.c_str());
  1736. }
  1737. else
  1738. {
  1739. CGI->curh->changeGraphic(1,1);
  1740. sprintf(buf, CGI->generaltexth->allTexts[294].c_str(), sactive->count == 1 ? sactive->type->nameSing.c_str() : sactive->type->namePl.c_str());
  1741. }
  1742. console->alterTxt = buf;
  1743. console->whoSetAlter = 0;
  1744. }
  1745. }
  1746. }
  1747. }
  1748. else if(spellDestSelectMode)
  1749. {
  1750. int myNumber = -1; //number of hovered tile
  1751. for(int g=0; g<BFIELD_SIZE; ++g)
  1752. {
  1753. if(bfield[g].hovered && bfield[g].strictHovered)
  1754. {
  1755. myNumber = g;
  1756. break;
  1757. }
  1758. }
  1759. if(myNumber == -1)
  1760. {
  1761. CGI->curh->changeGraphic(1, 0);
  1762. //setting console text
  1763. console->alterTxt = CGI->generaltexth->allTexts[23];
  1764. console->whoSetAlter = 0;
  1765. }
  1766. else
  1767. {
  1768. //get dead stack if we cast resurrection or animate dead
  1769. const CStack * stackUnder = curInt->cb->battleGetStackByPos(myNumber, spellToCast->additionalInfo != 38 && spellToCast->additionalInfo != 39);
  1770. if(stackUnder && spellToCast->additionalInfo == 39 && !stackUnder->hasBonusOfType(Bonus::UNDEAD)) //animate dead can be cast only on undead creatures
  1771. stackUnder = NULL;
  1772. bool whichCase; //for cases 1, 2 and 3
  1773. switch(spellSelMode)
  1774. {
  1775. case 1:
  1776. whichCase = stackUnder && curInt->playerID == stackUnder->owner;
  1777. break;
  1778. case 2:
  1779. whichCase = stackUnder && curInt->playerID != stackUnder->owner;
  1780. break;
  1781. case 3:
  1782. whichCase = stackUnder;
  1783. break;
  1784. }
  1785. switch(spellSelMode)
  1786. {
  1787. case 0:
  1788. CGI->curh->changeGraphic(3, 0);
  1789. //setting console text
  1790. char buf[500];
  1791. sprintf(buf, CGI->generaltexth->allTexts[26].c_str(), CGI->spellh->spells[spellToCast->additionalInfo].name.c_str());
  1792. console->alterTxt = buf;
  1793. console->whoSetAlter = 0;
  1794. break;
  1795. case 1: case 2: case 3:
  1796. if( whichCase )
  1797. {
  1798. CGI->curh->changeGraphic(3, 0);
  1799. //setting console text
  1800. char buf[500];
  1801. std::string creName = stackUnder->count > 1 ? stackUnder->type->namePl : stackUnder->type->nameSing;
  1802. sprintf(buf, CGI->generaltexth->allTexts[27].c_str(), CGI->spellh->spells[spellToCast->additionalInfo].name.c_str(), creName.c_str());
  1803. console->alterTxt = buf;
  1804. console->whoSetAlter = 0;
  1805. break;
  1806. }
  1807. else
  1808. {
  1809. CGI->curh->changeGraphic(1, 0);
  1810. //setting console text
  1811. console->alterTxt = CGI->generaltexth->allTexts[23];
  1812. console->whoSetAlter = 0;
  1813. }
  1814. break;
  1815. case 4: //TODO: implement this case
  1816. if( blockedByObstacle(myNumber) )
  1817. {
  1818. CGI->curh->changeGraphic(3, 0);
  1819. }
  1820. else
  1821. {
  1822. CGI->curh->changeGraphic(1, 0);
  1823. }
  1824. break;
  1825. }
  1826. }
  1827. }
  1828. }
  1829. void CBattleInterface::clickRight(tribool down, bool previousState)
  1830. {
  1831. if(!down && spellDestSelectMode)
  1832. {
  1833. endCastingSpell();
  1834. }
  1835. }
  1836. void CBattleInterface::bOptionsf()
  1837. {
  1838. if(spellDestSelectMode) //we are casting a spell
  1839. return;
  1840. CGI->curh->changeGraphic(0,0);
  1841. SDL_Rect temp_rect = genRect(431, 481, 160, 84);
  1842. CBattleOptionsWindow * optionsWin = new CBattleOptionsWindow(temp_rect, this);
  1843. GH.pushInt(optionsWin);
  1844. }
  1845. void CBattleInterface::bSurrenderf()
  1846. {
  1847. if(spellDestSelectMode) //we are casting a spell
  1848. return;
  1849. }
  1850. void CBattleInterface::bFleef()
  1851. {
  1852. if(spellDestSelectMode) //we are casting a spell
  1853. return;
  1854. if( curInt->cb->battleCanFlee() )
  1855. {
  1856. CFunctionList<void()> ony = boost::bind(&CBattleInterface::reallyFlee,this);
  1857. curInt->showYesNoDialog(CGI->generaltexth->allTexts[28],std::vector<SComponent*>(), ony, 0, false);
  1858. }
  1859. else
  1860. {
  1861. std::vector<SComponent*> comps;
  1862. std::string heroName;
  1863. //calculating fleeing hero's name
  1864. if(attackingHeroInstance)
  1865. if(attackingHeroInstance->tempOwner == curInt->cb->getMyColor())
  1866. heroName = attackingHeroInstance->name;
  1867. if(defendingHeroInstance)
  1868. if(defendingHeroInstance->tempOwner == curInt->cb->getMyColor())
  1869. heroName = defendingHeroInstance->name;
  1870. //calculating text
  1871. char buffer[1000];
  1872. sprintf(buffer, CGI->generaltexth->allTexts[340].c_str(), heroName.c_str());
  1873. //printing message
  1874. curInt->showInfoDialog(std::string(buffer), comps);
  1875. }
  1876. }
  1877. void CBattleInterface::reallyFlee()
  1878. {
  1879. giveCommand(4,0,0);
  1880. CGI->curh->changeGraphic(0, 0);
  1881. }
  1882. void CBattleInterface::bAutofightf()
  1883. {
  1884. if(spellDestSelectMode) //we are casting a spell
  1885. return;
  1886. }
  1887. void CBattleInterface::bSpellf()
  1888. {
  1889. if(spellDestSelectMode) //we are casting a spell
  1890. return;
  1891. CGI->curh->changeGraphic(0,0);
  1892. const CGHeroInstance * chi = NULL;
  1893. if(attackingHeroInstance->tempOwner == curInt->playerID)
  1894. chi = attackingHeroInstance;
  1895. else
  1896. chi = defendingHeroInstance;
  1897. CSpellWindow * spellWindow = new CSpellWindow(genRect(595, 620, (conf.cc.resx - 620)/2, (conf.cc.resy - 595)/2), chi, curInt);
  1898. GH.pushInt(spellWindow);
  1899. }
  1900. void CBattleInterface::bWaitf()
  1901. {
  1902. if(spellDestSelectMode) //we are casting a spell
  1903. return;
  1904. if(activeStack != -1)
  1905. giveCommand(8,0,activeStack);
  1906. }
  1907. void CBattleInterface::bDefencef()
  1908. {
  1909. if(spellDestSelectMode) //we are casting a spell
  1910. return;
  1911. if(activeStack != -1)
  1912. giveCommand(3,0,activeStack);
  1913. }
  1914. void CBattleInterface::bConsoleUpf()
  1915. {
  1916. if(spellDestSelectMode) //we are casting a spell
  1917. return;
  1918. console->scrollUp();
  1919. }
  1920. void CBattleInterface::bConsoleDownf()
  1921. {
  1922. if(spellDestSelectMode) //we are casting a spell
  1923. return;
  1924. console->scrollDown();
  1925. }
  1926. void CBattleInterface::newStack(int stackID)
  1927. {
  1928. const CStack * newStack = curInt->cb->battleGetStackByID(stackID);
  1929. Point coords = CBattleHex::getXYUnitAnim(newStack->position, newStack->owner == attackingHeroInstance->tempOwner, newStack, this);;
  1930. if(newStack->position < 0) //turret
  1931. {
  1932. const CCreature & turretCreature = *CGI->creh->creatures[ CGI->creh->factionToTurretCreature[siegeH->town->town->typeID] ];
  1933. creAnims[stackID] = new CCreatureAnimation(turretCreature.animDefName);
  1934. }
  1935. else
  1936. {
  1937. creAnims[stackID] = new CCreatureAnimation(newStack->type->animDefName);
  1938. }
  1939. creAnims[stackID]->setType(2);
  1940. creAnims[stackID]->pos = Rect(coords.x, coords.y, creAnims[newStack->ID]->fullWidth, creAnims[newStack->ID]->fullHeight);
  1941. creDir[stackID] = newStack->attackerOwned;
  1942. }
  1943. void CBattleInterface::stackRemoved(int stackID)
  1944. {
  1945. delete creAnims[stackID];
  1946. creAnims.erase(stackID);
  1947. creDir.erase(stackID);
  1948. }
  1949. void CBattleInterface::stackActivated(int number)
  1950. {
  1951. //givenCommand = NULL;
  1952. stackToActivate = number;
  1953. if(pendingAnims.size() == 0)
  1954. activateStack();
  1955. }
  1956. void CBattleInterface::stackMoved(int number, int destHex, bool endMoving, int distance)
  1957. {
  1958. addNewAnim(new CBattleStackMoved(this, number, destHex, endMoving, distance));
  1959. }
  1960. void CBattleInterface::stacksAreAttacked(std::vector<SStackAttackedInfo> attackedInfos)
  1961. {
  1962. for(int h = 0; h < attackedInfos.size(); ++h)
  1963. {
  1964. addNewAnim(new CDefenceAnim(attackedInfos[h], this));
  1965. }
  1966. }
  1967. void CBattleInterface::stackAttacking(int ID, int dest, int attackedID)
  1968. {
  1969. addNewAnim(new CMeleeAttack(this, ID, dest, attackedID));
  1970. }
  1971. void CBattleInterface::newRoundFirst( int round )
  1972. {
  1973. //handle regeneration
  1974. std::map<int, CStack> stacks = curInt->cb->battleGetStacks();
  1975. for(std::map<int, CStack>::const_iterator it = stacks.begin(); it != stacks.end(); ++it)
  1976. {
  1977. //don't show animation when no HP is regenerated
  1978. if (it->second.firstHPleft == it->second.MaxHealth())
  1979. {
  1980. continue;
  1981. }
  1982. if( it->second.hasBonusOfType(Bonus::HP_REGENERATION) && it->second.alive() )
  1983. displayEffect(74, it->second.position);
  1984. if( it->second.hasBonusOfType(Bonus::FULL_HP_REGENERATION, 0) && it->second.alive() )
  1985. displayEffect(4, it->second.position);
  1986. if( it->second.hasBonusOfType(Bonus::FULL_HP_REGENERATION, 1) && it->second.alive() )
  1987. displayEffect(74, it->second.position);
  1988. }
  1989. }
  1990. void CBattleInterface::newRound(int number)
  1991. {
  1992. console->addText(CGI->generaltexth->allTexts[412]);
  1993. //unlock spellbook
  1994. //bSpell->block(!curInt->cb->battleCanCastSpell());
  1995. //don't unlock spellbook - this should be done when we have axctive creature
  1996. }
  1997. void CBattleInterface::giveCommand(ui8 action, ui16 tile, ui32 stack, si32 additional)
  1998. {
  1999. if(!curInt->cb->battleGetStackByID(stack) && action != 1 && action != 4 && action != 5)
  2000. {
  2001. return;
  2002. }
  2003. BattleAction * ba = new BattleAction(); //is deleted in CPlayerInterface::activeStack()
  2004. ba->side = defendingHeroInstance ? (curInt->playerID == defendingHeroInstance->tempOwner) : false;
  2005. ba->actionType = action;
  2006. ba->destinationTile = tile;
  2007. ba->stackNumber = stack;
  2008. ba->additionalInfo = additional;
  2009. //some basic validations
  2010. switch(action)
  2011. {
  2012. case 6:
  2013. assert(curInt->cb->battleGetStackByPos(additional)); //stack to attack must exist
  2014. case 2: case 7: case 9:
  2015. assert(tile < BFIELD_SIZE);
  2016. break;
  2017. }
  2018. myTurn = false;
  2019. activeStack = -1;
  2020. givenCommand->setn(ba);
  2021. }
  2022. bool CBattleInterface::isTileAttackable(const int & number) const
  2023. {
  2024. for(size_t b=0; b<shadedHexes.size(); ++b)
  2025. {
  2026. if(BattleInfo::mutualPosition(shadedHexes[b], number) != -1 || shadedHexes[b] == number)
  2027. return true;
  2028. }
  2029. return false;
  2030. }
  2031. bool CBattleInterface::blockedByObstacle(int hex) const
  2032. {
  2033. std::vector<CObstacleInstance> obstacles = curInt->cb->battleGetAllObstacles();
  2034. std::set<int> coveredHexes;
  2035. for(int b = 0; b < obstacles.size(); ++b)
  2036. {
  2037. std::vector<int> blocked = CGI->heroh->obstacles.find(obstacles[b].ID)->second.getBlocked(obstacles[b].pos);
  2038. for(int w = 0; w < blocked.size(); ++w)
  2039. coveredHexes.insert(blocked[w]);
  2040. }
  2041. return vstd::contains(coveredHexes, hex);
  2042. }
  2043. bool CBattleInterface::isCatapultAttackable(int hex) const
  2044. {
  2045. if(!siegeH)
  2046. return false;
  2047. int wallUnder = curInt->cb->battleGetWallUnderHex(hex);
  2048. if(wallUnder == -1)
  2049. return false;
  2050. return curInt->cb->battleGetWallState(wallUnder) < 3;
  2051. }
  2052. const CGHeroInstance * CBattleInterface::getActiveHero()
  2053. {
  2054. const CStack * attacker = curInt->cb->battleGetStackByID(activeStack);
  2055. if (!attacker)
  2056. {
  2057. return NULL;
  2058. }
  2059. if (attacker->attackerOwned)
  2060. {
  2061. return attackingHeroInstance;
  2062. }
  2063. return defendingHeroInstance;
  2064. }
  2065. void CBattleInterface::hexLclicked(int whichOne)
  2066. {
  2067. const CStack * actSt = curInt->cb->battleGetStackByID(activeStack);
  2068. if( ((whichOne%BFIELD_WIDTH)!=0 && (whichOne%BFIELD_WIDTH)!=(BFIELD_WIDTH-1)) //if player is trying to attack enemey unit or move creature stack
  2069. || (actSt->hasBonusOfType(Bonus::CATAPULT) && !spellDestSelectMode )
  2070. )
  2071. {
  2072. if(!myTurn)
  2073. return; //we are not permit to do anything
  2074. if(spellDestSelectMode)
  2075. {
  2076. //checking destination
  2077. bool allowCasting = true;
  2078. bool onlyAlive = spellToCast->additionalInfo != 38 && spellToCast->additionalInfo != 39; //when casting resurrection or animate dead we should be allow to select dead stack
  2079. switch(spellSelMode)
  2080. {
  2081. case 1:
  2082. if(!curInt->cb->battleGetStackByPos(whichOne, onlyAlive) || curInt->playerID != curInt->cb->battleGetStackByPos(whichOne, onlyAlive)->owner )
  2083. allowCasting = false;
  2084. break;
  2085. case 2:
  2086. if(!curInt->cb->battleGetStackByPos(whichOne, onlyAlive) || curInt->playerID == curInt->cb->battleGetStackByPos(whichOne, onlyAlive)->owner )
  2087. allowCasting = false;
  2088. break;
  2089. case 3:
  2090. if(!curInt->cb->battleGetStackByPos(whichOne, onlyAlive))
  2091. allowCasting = false;
  2092. break;
  2093. case 4:
  2094. if(!blockedByObstacle(whichOne))
  2095. allowCasting = false;
  2096. case 5: //teleport
  2097. const CSpell *s = &CGI->spellh->spells[spellToCast->additionalInfo];
  2098. ui8 skill = getActiveHero()->getSpellSchoolLevel(s); //skill level
  2099. if (!curInt->cb->battleCanTeleportTo(activeStack, whichOne, skill))
  2100. {
  2101. allowCasting = false;
  2102. }
  2103. break;
  2104. }
  2105. //destination checked
  2106. if(allowCasting)
  2107. {
  2108. spellToCast->destinationTile = whichOne;
  2109. curInt->cb->battleMakeAction(spellToCast);
  2110. endCastingSpell();
  2111. }
  2112. }
  2113. else //we don't cast any spell
  2114. {
  2115. const CStack* dest = curInt->cb->battleGetStackByPos(whichOne); //creature at destination tile; -1 if there is no one
  2116. if(!dest || !dest->alive()) //no creature at that tile
  2117. {
  2118. if(std::find(shadedHexes.begin(),shadedHexes.end(),whichOne)!=shadedHexes.end())// and it's in our range
  2119. {
  2120. CGI->curh->changeGraphic(1, 6); //cursor should be changed
  2121. if(curInt->cb->battleGetStackByID(activeStack)->doubleWide())
  2122. {
  2123. std::vector<int> acc = curInt->cb->battleGetAvailableHexes(activeStack, false);
  2124. int shiftedDest = whichOne + (curInt->cb->battleGetStackByID(activeStack)->attackerOwned ? 1 : -1);
  2125. if(vstd::contains(acc, whichOne))
  2126. giveCommand(2,whichOne,activeStack);
  2127. else if(vstd::contains(acc, shiftedDest))
  2128. giveCommand(2,shiftedDest,activeStack);
  2129. }
  2130. else
  2131. {
  2132. giveCommand(2,whichOne,activeStack);
  2133. }
  2134. }
  2135. else if(actSt->hasBonusOfType(Bonus::CATAPULT) && isCatapultAttackable(whichOne)) //attacking (catapult)
  2136. {
  2137. giveCommand(9,whichOne,activeStack);
  2138. }
  2139. }
  2140. else if(dest->owner != actSt->owner
  2141. && curInt->cb->battleCanShoot(activeStack, whichOne) ) //shooting
  2142. {
  2143. CGI->curh->changeGraphic(1, 6); //cursor should be changed
  2144. giveCommand(7,whichOne,activeStack);
  2145. }
  2146. else if(dest->owner != actSt->owner) //attacking
  2147. {
  2148. const CStack * actStack = curInt->cb->battleGetStackByID(activeStack);
  2149. int attackFromHex = -1; //hex from which we will attack chosen stack
  2150. switch(CGI->curh->number)
  2151. {
  2152. case 12: //from bottom right
  2153. {
  2154. bool doubleWide = actStack->doubleWide();
  2155. int destHex = whichOne + ( (whichOne/BFIELD_WIDTH)%2 ? BFIELD_WIDTH : BFIELD_WIDTH+1 ) +
  2156. (actStack->attackerOwned && doubleWide ? 1 : 0);
  2157. if(vstd::contains(shadedHexes, destHex))
  2158. attackFromHex = destHex;
  2159. else if(actStack->attackerOwned) //if we are attacker
  2160. {
  2161. if(vstd::contains(shadedHexes, destHex+1))
  2162. attackFromHex = destHex+1;
  2163. }
  2164. else //if we are defender
  2165. {
  2166. if(vstd::contains(shadedHexes, destHex-1))
  2167. attackFromHex = destHex-1;
  2168. }
  2169. break;
  2170. }
  2171. case 7: //from bottom left
  2172. {
  2173. int destHex = whichOne + ( (whichOne/BFIELD_WIDTH)%2 ? BFIELD_WIDTH-1 : BFIELD_WIDTH );
  2174. if(vstd::contains(shadedHexes, destHex))
  2175. attackFromHex = destHex;
  2176. else if(actStack->attackerOwned) //if we are attacker
  2177. {
  2178. if(vstd::contains(shadedHexes, destHex+1))
  2179. attackFromHex = destHex+1;
  2180. }
  2181. else //if we are defender
  2182. {
  2183. if(vstd::contains(shadedHexes, destHex-1))
  2184. attackFromHex = destHex-1;
  2185. }
  2186. break;
  2187. }
  2188. case 8: //from left
  2189. {
  2190. if(actStack->doubleWide() && !actStack->attackerOwned)
  2191. {
  2192. std::vector<int> acc = curInt->cb->battleGetAvailableHexes(activeStack, false);
  2193. if(vstd::contains(acc, whichOne))
  2194. attackFromHex = whichOne - 1;
  2195. else
  2196. attackFromHex = whichOne - 2;
  2197. }
  2198. else
  2199. {
  2200. attackFromHex = whichOne - 1;
  2201. }
  2202. break;
  2203. }
  2204. case 9: //from top left
  2205. {
  2206. int destHex = whichOne - ( (whichOne/BFIELD_WIDTH)%2 ? BFIELD_WIDTH+1 : BFIELD_WIDTH );
  2207. if(vstd::contains(shadedHexes, destHex))
  2208. attackFromHex = destHex;
  2209. else if(actStack->attackerOwned) //if we are attacker
  2210. {
  2211. if(vstd::contains(shadedHexes, destHex+1))
  2212. attackFromHex = destHex+1;
  2213. }
  2214. else //if we are defender
  2215. {
  2216. if(vstd::contains(shadedHexes, destHex-1))
  2217. attackFromHex = destHex-1;
  2218. }
  2219. break;
  2220. }
  2221. case 10: //from top right
  2222. {
  2223. bool doubleWide = actStack->doubleWide();
  2224. int destHex = whichOne - ( (whichOne/BFIELD_WIDTH)%2 ? BFIELD_WIDTH : BFIELD_WIDTH-1 ) +
  2225. (actStack->attackerOwned && doubleWide ? 1 : 0);
  2226. if(vstd::contains(shadedHexes, destHex))
  2227. attackFromHex = destHex;
  2228. else if(actStack->attackerOwned) //if we are attacker
  2229. {
  2230. if(vstd::contains(shadedHexes, destHex+1))
  2231. attackFromHex = destHex+1;
  2232. }
  2233. else //if we are defender
  2234. {
  2235. if(vstd::contains(shadedHexes, destHex-1))
  2236. attackFromHex = destHex-1;
  2237. }
  2238. break;
  2239. }
  2240. case 11: //from right
  2241. {
  2242. if(actStack->doubleWide() && actStack->attackerOwned)
  2243. {
  2244. std::vector<int> acc = curInt->cb->battleGetAvailableHexes(activeStack, false);
  2245. if(vstd::contains(acc, whichOne))
  2246. attackFromHex = whichOne + 1;
  2247. else
  2248. attackFromHex = whichOne + 2;
  2249. }
  2250. else
  2251. {
  2252. attackFromHex = whichOne + 1;
  2253. }
  2254. break;
  2255. }
  2256. case 13: //from bottom
  2257. {
  2258. int destHex = whichOne + ( (whichOne/BFIELD_WIDTH)%2 ? BFIELD_WIDTH : BFIELD_WIDTH+1 );
  2259. if(vstd::contains(shadedHexes, destHex))
  2260. attackFromHex = destHex;
  2261. else if(attackingHeroInstance->tempOwner == curInt->cb->getMyColor()) //if we are attacker
  2262. {
  2263. if(vstd::contains(shadedHexes, destHex+1))
  2264. attackFromHex = destHex+1;
  2265. }
  2266. else //if we are defender
  2267. {
  2268. if(vstd::contains(shadedHexes, destHex-1))
  2269. attackFromHex = destHex-1;
  2270. }
  2271. break;
  2272. }
  2273. case 14: //from top
  2274. {
  2275. int destHex = whichOne - ( (whichOne/BFIELD_WIDTH)%2 ? BFIELD_WIDTH : BFIELD_WIDTH-1 );
  2276. if(vstd::contains(shadedHexes, destHex))
  2277. attackFromHex = destHex;
  2278. else if(attackingHeroInstance->tempOwner == curInt->cb->getMyColor()) //if we are attacker
  2279. {
  2280. if(vstd::contains(shadedHexes, destHex+1))
  2281. attackFromHex = destHex+1;
  2282. }
  2283. else //if we are defender
  2284. {
  2285. if(vstd::contains(shadedHexes, destHex-1))
  2286. attackFromHex = destHex-1;
  2287. }
  2288. break;
  2289. }
  2290. }
  2291. if(attackFromHex >= 0) //we can be in this line when unreachable creature is L - clicked (as of revision 1308)
  2292. {
  2293. giveCommand(6, attackFromHex, activeStack, whichOne);
  2294. CGI->curh->changeGraphic(1, 6); //cursor should be changed
  2295. }
  2296. }
  2297. else if (actSt->hasBonusOfType(Bonus::HEALER) && actSt->owner == dest->owner) //friendly creature we can heal
  2298. {
  2299. giveCommand(12, whichOne, activeStack); //command healing
  2300. CGI->curh->changeGraphic(1, 6); //cursor should be changed
  2301. }
  2302. }
  2303. }
  2304. }
  2305. void CBattleInterface::stackIsShooting(int ID, int dest, int attackedID)
  2306. {
  2307. addNewAnim(new CShootingAnim(this, ID, dest, attackedID));
  2308. }
  2309. void CBattleInterface::stackIsCatapulting(const CatapultAttack & ca)
  2310. {
  2311. for(std::set< std::pair< std::pair< ui8, si16 >, ui8> >::const_iterator it = ca.attackedParts.begin(); it != ca.attackedParts.end(); ++it)
  2312. {
  2313. addNewAnim(new CShootingAnim(this, ca.attacker, it->first.second, -1, true, it->second));
  2314. SDL_FreeSurface(siegeH->walls[it->first.first + 2]);
  2315. siegeH->walls[it->first.first + 2] = BitmapHandler::loadBitmap(
  2316. siegeH->getSiegeName(it->first.first + 2, curInt->cb->battleGetWallState(it->first.first)) );
  2317. }
  2318. }
  2319. void CBattleInterface::battleFinished(const BattleResult& br)
  2320. {
  2321. bresult = &br;
  2322. LOCPLINT->pim->unlock();
  2323. animsAreDisplayed.waitUntil(false);
  2324. LOCPLINT->pim->lock();
  2325. displayBattleFinished();
  2326. }
  2327. void CBattleInterface::displayBattleFinished()
  2328. {
  2329. CGI->curh->changeGraphic(0,0);
  2330. SDL_Rect temp_rect = genRect(561, 470, (screen->w - 800)/2 + 165, (screen->h - 600)/2 + 19);
  2331. CGI->musich->stopMusic();
  2332. resWindow = new CBattleResultWindow(*bresult, temp_rect, this);
  2333. GH.pushInt(resWindow);
  2334. }
  2335. void CBattleInterface::spellCast(BattleSpellCast * sc)
  2336. {
  2337. const CSpell &spell = CGI->spellh->spells[sc->id];
  2338. //spell opening battle is cast when no stack is active
  2339. if(sc->castedByHero && ( activeStack == -1 || sc->side == !curInt->cb->battleGetStackByID(activeStack)->attackerOwned) )
  2340. bSpell->block(true);
  2341. std::vector< std::string > anims; //for magic arrow and ice bolt
  2342. if (spell.soundID != soundBase::invalid)
  2343. CGI->soundh->playSound(spell.soundID);
  2344. switch(sc->id)
  2345. {
  2346. case 15: //magic arrow
  2347. {
  2348. //initialization of anims
  2349. 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");
  2350. }
  2351. case 16: //ice bolt
  2352. {
  2353. if(anims.size() == 0) //initialization of anims
  2354. {
  2355. 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");
  2356. }
  2357. } //end of ice bolt only part
  2358. { //common ice bolt and magic arrow part
  2359. //initial variables
  2360. std::string animToDisplay;
  2361. Point srccoord = (sc->side ? Point(770, 60) : Point(30, 60)) + pos;
  2362. Point destcoord = CBattleHex::getXYUnitAnim(sc->tile, !sc->side, curInt->cb->battleGetStackByPos(sc->tile), this); //position attacked by arrow
  2363. destcoord.x += 250; destcoord.y += 240;
  2364. //animation angle
  2365. float angle = atan2(float(destcoord.x - srccoord.x), float(destcoord.y - srccoord.y));
  2366. bool Vflip = false;
  2367. if (angle < 0)
  2368. {
  2369. Vflip = true;
  2370. angle = -angle;
  2371. }
  2372. //choosing animation by angle
  2373. if(angle > 1.50)
  2374. animToDisplay = anims[0];
  2375. else if(angle > 1.20)
  2376. animToDisplay = anims[1];
  2377. else if(angle > 0.90)
  2378. animToDisplay = anims[2];
  2379. else if(angle > 0.60)
  2380. animToDisplay = anims[3];
  2381. else
  2382. animToDisplay = anims[4];
  2383. //displaying animation
  2384. CDefEssential * animDef = CDefHandler::giveDefEss(animToDisplay);
  2385. int steps = sqrt((float)((destcoord.x - srccoord.x)*(destcoord.x - srccoord.x) + (destcoord.y - srccoord.y) * (destcoord.y - srccoord.y))) / 40;
  2386. if(steps <= 0)
  2387. steps = 1;
  2388. int dx = (destcoord.x - srccoord.x - animDef->ourImages[0].bitmap->w)/steps, dy = (destcoord.y - srccoord.y - animDef->ourImages[0].bitmap->h)/steps;
  2389. delete animDef;
  2390. addNewAnim(new CSpellEffectAnim(this, animToDisplay, srccoord.x, srccoord.y, dx, dy, Vflip));
  2391. break; //for 15 and 16 cases
  2392. }
  2393. case 17: //lightning bolt
  2394. case 77: //thunderbolt
  2395. displayEffect(1, sc->tile);
  2396. displayEffect(spell.mainEffectAnim, sc->tile);
  2397. break;
  2398. case 35: //dispel
  2399. case 37: //cure
  2400. case 38: //resurrection
  2401. case 39: //animate dead
  2402. case 78: //dispel helpful spells
  2403. for(std::set<ui32>::const_iterator it = sc->affectedCres.begin(); it != sc->affectedCres.end(); ++it)
  2404. {
  2405. displayEffect(spell.mainEffectAnim, curInt->cb->battleGetStackByID(*it, false)->position);
  2406. }
  2407. break;
  2408. case 66: case 67: case 68: case 69: //summon elemental
  2409. addNewAnim(new CDummyAnim(this, 2));
  2410. break;
  2411. } //switch(sc->id)
  2412. //support for resistance
  2413. for(int j=0; j<sc->resisted.size(); ++j)
  2414. {
  2415. int tile = curInt->cb->battleGetStackByID(sc->resisted[j])->position;
  2416. displayEffect(78, tile);
  2417. }
  2418. //displaying message in console
  2419. if(sc->affectedCres.size() == 1)
  2420. {
  2421. std::string text = CGI->generaltexth->allTexts[195];
  2422. if(sc->castedByHero)
  2423. {
  2424. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetFightingHero(sc->side)->name);
  2425. }
  2426. else
  2427. {
  2428. boost::algorithm::replace_first(text, "%s", "Creature"); //TODO: better fix
  2429. }
  2430. boost::algorithm::replace_first(text, "%s", CGI->spellh->spells[sc->id].name);
  2431. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetStackByID(*sc->affectedCres.begin(), false)->type->namePl );
  2432. console->addText(text);
  2433. }
  2434. else
  2435. {
  2436. std::string text = CGI->generaltexth->allTexts[196];
  2437. if(sc->castedByHero)
  2438. {
  2439. boost::algorithm::replace_first(text, "%s", curInt->cb->battleGetFightingHero(sc->side)->name);
  2440. }
  2441. else
  2442. {
  2443. boost::algorithm::replace_first(text, "%s", "Creature"); //TODO: better fix
  2444. }
  2445. boost::algorithm::replace_first(text, "%s", CGI->spellh->spells[sc->id].name);
  2446. console->addText(text);
  2447. }
  2448. if(sc->dmgToDisplay != 0)
  2449. {
  2450. std::string dmgInfo = CGI->generaltexth->allTexts[343].substr(1, CGI->generaltexth->allTexts[343].size() - 1);
  2451. boost::algorithm::replace_first(dmgInfo, "%d", boost::lexical_cast<std::string>(sc->dmgToDisplay));
  2452. console->addText(dmgInfo);
  2453. }
  2454. }
  2455. void CBattleInterface::battleStacksEffectsSet(const SetStackEffect & sse)
  2456. {
  2457. for(std::vector<ui32>::const_iterator ci = sse.stacks.begin(); ci!=sse.stacks.end(); ++ci)
  2458. {
  2459. displayEffect(CGI->spellh->spells[sse.effect.id].mainEffectAnim, curInt->cb->battleGetStackByID(*ci)->position);
  2460. }
  2461. if (activeStack != -1) //it can be -1 when a creature casts effect
  2462. {
  2463. redrawBackgroundWithHexes(activeStack);
  2464. }
  2465. }
  2466. void CBattleInterface::castThisSpell(int spellID)
  2467. {
  2468. BattleAction * ba = new BattleAction;
  2469. ba->actionType = 1;
  2470. ba->additionalInfo = spellID; //spell number
  2471. ba->destinationTile = -1;
  2472. ba->stackNumber = (attackingHeroInstance->tempOwner == curInt->playerID) ? -1 : -2;
  2473. ba->side = defendingHeroInstance ? (curInt->playerID == defendingHeroInstance->tempOwner) : false;
  2474. spellToCast = ba;
  2475. spellDestSelectMode = true;
  2476. //choosing possible tragets
  2477. const CGHeroInstance * castingHero = (attackingHeroInstance->tempOwner == curInt->playerID) ? attackingHeroInstance : defendingHeroInstance;
  2478. const CSpell & spell = CGI->spellh->spells[spellID];
  2479. spellSelMode = 0;
  2480. if(spell.attributes.find("CREATURE_TARGET") != std::string::npos) //spell to be cast on one specific creature
  2481. {
  2482. switch(spell.positiveness)
  2483. {
  2484. case -1 :
  2485. spellSelMode = 2;
  2486. break;
  2487. case 0:
  2488. spellSelMode = 3;
  2489. break;
  2490. case 1:
  2491. spellSelMode = 1;
  2492. break;
  2493. }
  2494. }
  2495. if(spell.attributes.find("CREATURE_TARGET_1") != std::string::npos ||
  2496. spell.attributes.find("CREATURE_TARGET_2") != std::string::npos) //spell to be cast on a specific creature but massive on expert
  2497. {
  2498. if(castingHero && castingHero->getSpellSchoolLevel(&spell) < 3)
  2499. {
  2500. switch(spell.positiveness)
  2501. {
  2502. case -1 :
  2503. spellSelMode = 2;
  2504. break;
  2505. case 0:
  2506. spellSelMode = 3;
  2507. break;
  2508. case 1:
  2509. spellSelMode = 1;
  2510. break;
  2511. }
  2512. }
  2513. else
  2514. {
  2515. spellSelMode = -1;
  2516. }
  2517. }
  2518. if(spell.attributes.find("OBSTACLE_TARGET") != std::string::npos) //spell to be cast on an obstacle
  2519. {
  2520. spellSelMode = 4;
  2521. }
  2522. if(spell.range[ castingHero->getSpellSchoolLevel(&spell) ] == "X") //spell has no range
  2523. {
  2524. spellSelMode = -1;
  2525. }
  2526. if(spell.id == 63) //teleport
  2527. {
  2528. spellSelMode = 5;
  2529. }
  2530. if(spell.range[ castingHero->getSpellSchoolLevel(&spell) ].size() > 1) //spell has many-hex range
  2531. {
  2532. spellSelMode = 0;
  2533. }
  2534. if(spellSelMode == -1) //user does not have to select location
  2535. {
  2536. spellToCast->destinationTile = -1;
  2537. curInt->cb->battleMakeAction(spellToCast);
  2538. endCastingSpell();
  2539. }
  2540. else
  2541. {
  2542. CGI->curh->changeGraphic(3, 0);
  2543. }
  2544. }
  2545. void CBattleInterface::displayEffect(ui32 effect, int destTile)
  2546. {
  2547. addNewAnim(new CSpellEffectAnim(this, effect, destTile));
  2548. }
  2549. void CBattleInterface::setAnimSpeed(int set)
  2550. {
  2551. curInt->sysOpts.animSpeed = set;
  2552. curInt->sysOpts.settingsChanged();
  2553. }
  2554. int CBattleInterface::getAnimSpeed() const
  2555. {
  2556. return curInt->sysOpts.animSpeed;
  2557. curInt->sysOpts.settingsChanged();
  2558. }
  2559. void CBattleInterface::activateStack()
  2560. {
  2561. activeStack = stackToActivate;
  2562. stackToActivate = -1;
  2563. myTurn = true;
  2564. curInt = attackerInt->playerID == LOCPLINT->cb->battleGetStackByID(activeStack)->owner ? attackerInt : defenderInt;
  2565. queue->update();
  2566. redrawBackgroundWithHexes(activeStack);
  2567. bWait->block(vstd::contains(curInt->cb->battleGetStackByID(activeStack)->state, WAITING)); //block waiting button if stack has been already waiting
  2568. //block cast spell button if hero doesn't have a spellbook
  2569. bSpell->block(!curInt->cb->battleCanCastSpell());
  2570. bSurrender->block(!curInt->cb->battleCanFlee());
  2571. bFlee->block(!curInt->cb->battleCanFlee());
  2572. GH.fakeMouseMove();
  2573. if(!pendingAnims.size() && !active)
  2574. activate();
  2575. }
  2576. float CBattleInterface::getAnimSpeedMultiplier() const
  2577. {
  2578. switch(curInt->sysOpts.animSpeed)
  2579. {
  2580. case 1:
  2581. return 3.5f;
  2582. case 2:
  2583. return 2.2f;
  2584. case 4:
  2585. return 1.0f;
  2586. default:
  2587. return 0.0f;
  2588. }
  2589. }
  2590. void CBattleInterface::endCastingSpell()
  2591. {
  2592. assert(spellDestSelectMode);
  2593. delete spellToCast;
  2594. spellToCast = NULL;
  2595. spellDestSelectMode = false;
  2596. CGI->curh->changeGraphic(1, 6);
  2597. }
  2598. void CBattleInterface::showAliveStack(int ID, const std::map<int, CStack> & stacks, SDL_Surface * to)
  2599. {
  2600. if(creAnims.find(ID) == creAnims.end()) //eg. for summoned but not yet handled stacks
  2601. return;
  2602. const CStack &curStack = stacks.find(ID)->second;
  2603. int animType = creAnims[ID]->getType();
  2604. int affectingSpeed = curInt->sysOpts.animSpeed;
  2605. if(animType == 1 || animType == 2) //standing stacks should not stand faster :)
  2606. affectingSpeed = 2;
  2607. bool incrementFrame = (animCount%(4/affectingSpeed)==0) && animType!=5 && animType!=20 && animType!=2;
  2608. if(animType == 2)
  2609. {
  2610. if(standingFrame.find(ID)!=standingFrame.end())
  2611. {
  2612. incrementFrame = (animCount%(8/affectingSpeed)==0);
  2613. if(incrementFrame)
  2614. {
  2615. ++standingFrame[ID];
  2616. if(standingFrame[ID] == creAnims[ID]->framesInGroup(2))
  2617. {
  2618. standingFrame.erase(standingFrame.find(ID));
  2619. }
  2620. }
  2621. }
  2622. else
  2623. {
  2624. if((rand()%50) == 0)
  2625. {
  2626. standingFrame.insert(std::make_pair(ID, 0));
  2627. }
  2628. }
  2629. }
  2630. creAnims[ID]->nextFrame(to, creAnims[ID]->pos.x, creAnims[ID]->pos.y, creDir[ID], animCount, incrementFrame, ID==activeStack, ID==mouseHoveredStack); //increment always when moving, never if stack died
  2631. //printing amount
  2632. if(curStack.count > 0 //don't print if stack is not alive
  2633. && (!curInt->curAction
  2634. || (curInt->curAction->stackNumber != ID //don't print if stack is currently taking an action
  2635. && (curInt->curAction->actionType != 6 || curStack.position != curInt->curAction->additionalInfo) //nor if it's an object of attack
  2636. && (curInt->curAction->destinationTile != curStack.position) //nor if it's on destination tile for current action
  2637. )
  2638. )
  2639. && !curStack.hasBonusOfType(Bonus::SIEGE_WEAPON) //and not a war machine...
  2640. )
  2641. {
  2642. int xAdd = curStack.attackerOwned ? 220 : 202;
  2643. //blitting amoutn background box
  2644. SDL_Surface *amountBG = NULL;
  2645. if(curStack.effects.size() == 0)
  2646. {
  2647. amountBG = amountNormal;
  2648. }
  2649. else
  2650. {
  2651. int pos=0; //determining total positiveness of effects
  2652. for(int c=0; c<curStack.effects.size(); ++c)
  2653. {
  2654. pos += CGI->spellh->spells[ curStack.effects[c].id ].positiveness;
  2655. }
  2656. if(pos > 0)
  2657. {
  2658. amountBG = amountPositive;
  2659. }
  2660. else if(pos < 0)
  2661. {
  2662. amountBG = amountNegative;
  2663. }
  2664. else
  2665. {
  2666. amountBG = amountEffNeutral;
  2667. }
  2668. }
  2669. SDL_BlitSurface(amountBG, NULL, to, &genRect(amountNormal->h, amountNormal->w, creAnims[ID]->pos.x + xAdd, creAnims[ID]->pos.y + 260));
  2670. //blitting amount
  2671. CSDL_Ext::printAtMiddle(
  2672. makeNumberShort(curStack.count),
  2673. creAnims[ID]->pos.x + xAdd + 15,
  2674. creAnims[ID]->pos.y + 260 + 5,
  2675. FONT_TINY,
  2676. zwykly,
  2677. to
  2678. );
  2679. }
  2680. }
  2681. void CBattleInterface::showPieceOfWall(SDL_Surface * to, int hex, const std::map<int, CStack> & stacks)
  2682. {
  2683. if(!siegeH)
  2684. return;
  2685. static const std::map<int, int> hexToPart = boost::assign::map_list_of(12, 8)(16, 1)(29, 7)(50, 2)(62, 12)(78, 6)(112, 10)(147, 5)(165, 11)(182, 3)(186, 0);
  2686. //additionally print bottom wall
  2687. if(hex == 182)
  2688. {
  2689. siegeH->printPartOfWall(to, 4);
  2690. }
  2691. std::map<int, int>::const_iterator it = hexToPart.find(hex);
  2692. if(it != hexToPart.end())
  2693. {
  2694. siegeH->printPartOfWall(to, it->second);
  2695. //print creature in turret
  2696. int posToSeek = -1;
  2697. switch(it->second)
  2698. {
  2699. case 3: //bottom turret
  2700. posToSeek = -3;
  2701. break;
  2702. case 8: //upper turret
  2703. posToSeek = -4;
  2704. break;
  2705. case 2: //keep
  2706. posToSeek = -2;
  2707. break;
  2708. }
  2709. if(posToSeek != -1)
  2710. {
  2711. int ID = -1;
  2712. for(std::map<int, CStack>::const_iterator it = stacks.begin(); it != stacks.end(); ++it)
  2713. {
  2714. if(it->second.position == posToSeek)
  2715. {
  2716. ID = it->second.ID;
  2717. break;
  2718. }
  2719. }
  2720. if(ID != -1)
  2721. {
  2722. showAliveStack(ID, stacks, to);
  2723. //blitting creature cover
  2724. switch(posToSeek)
  2725. {
  2726. case -3: //bottom turret
  2727. siegeH->printPartOfWall(to, 16);
  2728. break;
  2729. case -4: //upper turret
  2730. siegeH->printPartOfWall(to, 17);
  2731. break;
  2732. case -2: //keep
  2733. siegeH->printPartOfWall(to, 15);
  2734. break;
  2735. }
  2736. }
  2737. }
  2738. }
  2739. }
  2740. void CBattleInterface::redrawBackgroundWithHexes(int activeStack)
  2741. {
  2742. shadedHexes = curInt->cb->battleGetAvailableHexes(activeStack, true);
  2743. //preparating background graphic with hexes and shaded hexes
  2744. blitAt(background, 0, 0, backgroundWithHexes);
  2745. if(curInt->sysOpts.printCellBorders)
  2746. CSDL_Ext::blit8bppAlphaTo24bpp(cellBorders, NULL, backgroundWithHexes, NULL);
  2747. if(curInt->sysOpts.printStackRange)
  2748. {
  2749. for(size_t m=0; m<shadedHexes.size(); ++m) //rows
  2750. {
  2751. int i = shadedHexes[m]/BFIELD_WIDTH; //row
  2752. int j = shadedHexes[m]%BFIELD_WIDTH-1; //column
  2753. int x = 58 + (i%2==0 ? 22 : 0) + 44*j;
  2754. int y = 86 + 42 * i;
  2755. CSDL_Ext::blit8bppAlphaTo24bpp(cellShade, NULL, backgroundWithHexes, &genRect(cellShade->h, cellShade->w, x, y));
  2756. }
  2757. }
  2758. }
  2759. void CBattleInterface::printConsoleAttacked(int ID, int dmg, int killed, int IDby)
  2760. {
  2761. char tabh[200];
  2762. const CStack * attacker = curInt->cb->battleGetStackByID(IDby, false);
  2763. const CStack * defender = curInt->cb->battleGetStackByID(ID, false);
  2764. int end = sprintf(tabh, CGI->generaltexth->allTexts[attacker->count > 1 ? 377 : 376].c_str(),
  2765. (attacker->count > 1 ? attacker->type->namePl.c_str() : attacker->type->nameSing.c_str()),
  2766. dmg);
  2767. if(killed > 0)
  2768. {
  2769. if(killed > 1)
  2770. {
  2771. sprintf(tabh + end, CGI->generaltexth->allTexts[379].c_str(), killed, defender->type->namePl.c_str());
  2772. }
  2773. else //killed == 1
  2774. {
  2775. sprintf(tabh + end, CGI->generaltexth->allTexts[378].c_str(), defender->type->nameSing.c_str());
  2776. }
  2777. }
  2778. console->addText(std::string(tabh));
  2779. }
  2780. void CBattleInterface::projectileShowHelper(SDL_Surface * to)
  2781. {
  2782. if(to == NULL)
  2783. to = screen;
  2784. std::list< std::list<SProjectileInfo>::iterator > toBeDeleted;
  2785. for(std::list<SProjectileInfo>::iterator it=projectiles.begin(); it!=projectiles.end(); ++it)
  2786. {
  2787. if(it->animStartDelay>0)
  2788. {
  2789. --(it->animStartDelay);
  2790. continue;
  2791. }
  2792. SDL_Rect dst;
  2793. dst.h = idToProjectile[it->creID]->ourImages[it->frameNum].bitmap->h;
  2794. dst.w = idToProjectile[it->creID]->ourImages[it->frameNum].bitmap->w;
  2795. dst.x = it->x;
  2796. dst.y = it->y;
  2797. if(it->reverse)
  2798. {
  2799. SDL_Surface * rev = CSDL_Ext::rotate01(idToProjectile[it->creID]->ourImages[it->frameNum].bitmap);
  2800. CSDL_Ext::blit8bppAlphaTo24bpp(rev, NULL, to, &dst);
  2801. SDL_FreeSurface(rev);
  2802. }
  2803. else
  2804. {
  2805. CSDL_Ext::blit8bppAlphaTo24bpp(idToProjectile[it->creID]->ourImages[it->frameNum].bitmap, NULL, to, &dst);
  2806. }
  2807. //actualizing projectile
  2808. ++it->step;
  2809. if(it->step == it->lastStep)
  2810. {
  2811. toBeDeleted.insert(toBeDeleted.end(), it);
  2812. }
  2813. else
  2814. {
  2815. it->x += it->dx;
  2816. it->y += it->dy;
  2817. if(it->spin)
  2818. {
  2819. ++(it->frameNum);
  2820. it->frameNum %= idToProjectile[it->creID]->ourImages.size();
  2821. }
  2822. }
  2823. }
  2824. for(std::list< std::list<SProjectileInfo>::iterator >::iterator it = toBeDeleted.begin(); it!= toBeDeleted.end(); ++it)
  2825. {
  2826. projectiles.erase(*it);
  2827. }
  2828. }
  2829. void CBattleInterface::endAction(const BattleAction* action)
  2830. {
  2831. //if((action->actionType==2 || (action->actionType==6 && action->destinationTile!=cb->battleGetPos(action->stackNumber)))) //activating interface when move is finished
  2832. // {
  2833. // activate();
  2834. // }
  2835. if(action->actionType == 1)
  2836. {
  2837. if(action->side)
  2838. defendingHero->setPhase(0);
  2839. else
  2840. attackingHero->setPhase(0);
  2841. }
  2842. if(action->actionType == 2 && creAnims[action->stackNumber]->getType() != 2) //walk or walk & attack
  2843. {
  2844. pendingAnims.push_back(std::make_pair(new CBattleMoveEnd(this, action->stackNumber, action->destinationTile), false));
  2845. }
  2846. if(action->actionType == 9) //catapult
  2847. {
  2848. }
  2849. queue->update();
  2850. }
  2851. void CBattleInterface::hideQueue()
  2852. {
  2853. curInt->sysOpts.showQueue = false;
  2854. queue->deactivate();
  2855. if(!queue->embedded)
  2856. {
  2857. moveBy(Point(0, -queue->pos.h / 2));
  2858. GH.totalRedraw();
  2859. }
  2860. }
  2861. void CBattleInterface::showQueue()
  2862. {
  2863. curInt->sysOpts.showQueue = true;
  2864. queue->activate();
  2865. if(!queue->embedded)
  2866. {
  2867. moveBy(Point(0, +queue->pos.h / 2));
  2868. GH.totalRedraw();
  2869. }
  2870. }
  2871. void CBattleInterface::startAction(const BattleAction* action)
  2872. {
  2873. const CStack *stack = curInt->cb->battleGetStackByID(action->stackNumber);
  2874. if(stack)
  2875. {
  2876. queue->update();
  2877. }
  2878. else
  2879. {
  2880. assert(action->actionType == 1); //only cast spell is valid action without acting stack number
  2881. }
  2882. if(action->actionType == 2
  2883. || (action->actionType == 6 && action->destinationTile != stack->position))
  2884. {
  2885. moveStarted = true;
  2886. if(creAnims[action->stackNumber]->framesInGroup(20))
  2887. {
  2888. pendingAnims.push_back(std::make_pair(new CBattleMoveStart(this, action->stackNumber), false));
  2889. }
  2890. }
  2891. if(active)
  2892. deactivate();
  2893. char txt[400];
  2894. if(action->actionType == 1) //when hero casts spell
  2895. {
  2896. if(action->side)
  2897. defendingHero->setPhase(4);
  2898. else
  2899. attackingHero->setPhase(4);
  2900. return;
  2901. }
  2902. if(!stack)
  2903. {
  2904. tlog1<<"Something wrong with stackNumber in actionStarted. Stack number: "<<action->stackNumber<<std::endl;
  2905. return;
  2906. }
  2907. int txtid = 0;
  2908. switch(action->actionType)
  2909. {
  2910. case 3: //defend
  2911. txtid = 120;
  2912. break;
  2913. case 8: //wait
  2914. txtid = 136;
  2915. break;
  2916. case 11: //bad morale
  2917. txtid = -34; //negative -> no separate singular/plural form
  2918. displayEffect(30,stack->position);
  2919. break;
  2920. }
  2921. if(txtid > 0 && stack->count != 1)
  2922. txtid++; //move to plural text
  2923. else if(txtid < 0)
  2924. txtid = -txtid;
  2925. if(txtid)
  2926. {
  2927. sprintf(txt, CGI->generaltexth->allTexts[txtid].c_str(), (stack->count != 1) ? stack->type->namePl.c_str() : stack->type->nameSing.c_str(), 0);
  2928. console->addText(txt);
  2929. }
  2930. //displaying heal animation
  2931. if (action->actionType == 12)
  2932. {
  2933. displayEffect(50, action->destinationTile);
  2934. }
  2935. }
  2936. void CBattleHero::show(SDL_Surface *to)
  2937. {
  2938. //animation of flag
  2939. if(flip)
  2940. {
  2941. CSDL_Ext::blit8bppAlphaTo24bpp(
  2942. flag->ourImages[flagAnim].bitmap,
  2943. NULL,
  2944. screen,
  2945. &genRect(
  2946. flag->ourImages[flagAnim].bitmap->h,
  2947. flag->ourImages[flagAnim].bitmap->w,
  2948. 62 + pos.x,
  2949. 39 + pos.y
  2950. )
  2951. );
  2952. }
  2953. else
  2954. {
  2955. CSDL_Ext::blit8bppAlphaTo24bpp(
  2956. flag->ourImages[flagAnim].bitmap,
  2957. NULL,
  2958. screen,
  2959. &genRect(
  2960. flag->ourImages[flagAnim].bitmap->h,
  2961. flag->ourImages[flagAnim].bitmap->w,
  2962. 71 + pos.x,
  2963. 39 + pos.y
  2964. )
  2965. );
  2966. }
  2967. ++flagAnimCount;
  2968. if(flagAnimCount%4==0)
  2969. {
  2970. ++flagAnim;
  2971. flagAnim %= flag->ourImages.size();
  2972. }
  2973. //animation of hero
  2974. int tick=-1;
  2975. for(int i=0; i<dh->ourImages.size(); ++i)
  2976. {
  2977. if(dh->ourImages[i].groupNumber==phase)
  2978. ++tick;
  2979. if(tick==image)
  2980. {
  2981. SDL_Rect posb = pos;
  2982. CSDL_Ext::blit8bppAlphaTo24bpp(dh->ourImages[i].bitmap, NULL, to, &posb);
  2983. if(phase != 4 || nextPhase != -1 || image < 4)
  2984. {
  2985. if(flagAnimCount%2==0)
  2986. {
  2987. ++image;
  2988. }
  2989. if(dh->ourImages[(i+1)%dh->ourImages.size()].groupNumber!=phase) //back to appropriate frame
  2990. {
  2991. image = 0;
  2992. }
  2993. }
  2994. if(phase == 4 && nextPhase != -1 && image == 7)
  2995. {
  2996. phase = nextPhase;
  2997. nextPhase = -1;
  2998. image = 0;
  2999. }
  3000. break;
  3001. }
  3002. }
  3003. }
  3004. void CBattleHero::activate()
  3005. {
  3006. activateLClick();
  3007. }
  3008. void CBattleHero::deactivate()
  3009. {
  3010. deactivateLClick();
  3011. }
  3012. void CBattleHero::setPhase(int newPhase)
  3013. {
  3014. if(phase != 4)
  3015. {
  3016. phase = newPhase;
  3017. image = 0;
  3018. }
  3019. else
  3020. {
  3021. nextPhase = newPhase;
  3022. }
  3023. }
  3024. void CBattleHero::clickLeft(tribool down, bool previousState)
  3025. {
  3026. if(myOwner->spellDestSelectMode) //we are casting a spell
  3027. return;
  3028. if(!down && myHero && myOwner->curInt->cb->battleCanCastSpell()) //check conditions
  3029. {
  3030. for(int it=0; it<BFIELD_SIZE; ++it) //do nothing when any hex is hovered - hero's animation overlaps battlefield
  3031. {
  3032. if(myOwner->bfield[it].hovered && myOwner->bfield[it].strictHovered)
  3033. return;
  3034. }
  3035. CGI->curh->changeGraphic(0,0);
  3036. CSpellWindow * spellWindow = new CSpellWindow(genRect(595, 620, (conf.cc.resx - 620)/2, (conf.cc.resy - 595)/2), myHero, myOwner->curInt);
  3037. GH.pushInt(spellWindow);
  3038. }
  3039. }
  3040. CBattleHero::CBattleHero(const std::string & defName, int phaseG, int imageG, bool flipG, unsigned char player, const CGHeroInstance * hero, const CBattleInterface * owner): flip(flipG), myHero(hero), myOwner(owner), phase(phaseG), nextPhase(-1), image(imageG), flagAnim(0), flagAnimCount(0)
  3041. {
  3042. dh = CDefHandler::giveDef( defName );
  3043. for(int i=0; i<dh->ourImages.size(); ++i) //transforming images
  3044. {
  3045. if(flip)
  3046. {
  3047. SDL_Surface * hlp = CSDL_Ext::rotate01(dh->ourImages[i].bitmap);
  3048. SDL_FreeSurface(dh->ourImages[i].bitmap);
  3049. dh->ourImages[i].bitmap = hlp;
  3050. }
  3051. CSDL_Ext::alphaTransform(dh->ourImages[i].bitmap);
  3052. }
  3053. if(flip)
  3054. flag = CDefHandler::giveDef("CMFLAGR.DEF");
  3055. else
  3056. flag = CDefHandler::giveDef("CMFLAGL.DEF");
  3057. //coloring flag and adding transparency
  3058. for(int i=0; i<flag->ourImages.size(); ++i)
  3059. {
  3060. CSDL_Ext::alphaTransform(flag->ourImages[i].bitmap);
  3061. graphics->blueToPlayersAdv(flag->ourImages[i].bitmap, player);
  3062. }
  3063. }
  3064. CBattleHero::~CBattleHero()
  3065. {
  3066. delete dh;
  3067. delete flag;
  3068. }
  3069. Point CBattleHex::getXYUnitAnim(const int & hexNum, const bool & attacker, const CStack * stack, const CBattleInterface * cbi)
  3070. {
  3071. Point ret(-500, -500); //returned value
  3072. if(stack->position < 0) //creatures in turrets
  3073. {
  3074. const CCreature & turretCreature = *CGI->creh->creatures[ CGI->creh->factionToTurretCreature[cbi->siegeH->town->town->typeID] ];
  3075. int xShift = turretCreature.isDoubleWide() ? 44 : 0;
  3076. switch(stack->position)
  3077. {
  3078. case -2: //keep
  3079. ret = Point(505 + xShift, -66);
  3080. break;
  3081. case -3: //lower turret
  3082. ret = Point(368 + xShift, 304);
  3083. break;
  3084. case -4: //upper turret
  3085. ret = Point(339 + xShift, -192);
  3086. break;
  3087. }
  3088. }
  3089. else
  3090. {
  3091. ret.y = -139 + 42 * (hexNum/BFIELD_WIDTH); //counting y
  3092. //counting x
  3093. if(attacker)
  3094. {
  3095. ret.x = -160 + 22 * ( ((hexNum/BFIELD_WIDTH) + 1)%2 ) + 44 * (hexNum % BFIELD_WIDTH);
  3096. }
  3097. else
  3098. {
  3099. ret.x = -219 + 22 * ( ((hexNum/BFIELD_WIDTH) + 1)%2 ) + 44 * (hexNum % BFIELD_WIDTH);
  3100. }
  3101. //shifting position for double - hex creatures
  3102. if(stack && stack->doubleWide())
  3103. {
  3104. if(attacker)
  3105. {
  3106. ret.x -= 42;
  3107. }
  3108. else
  3109. {
  3110. ret.x += 42;
  3111. }
  3112. }
  3113. }
  3114. //returning
  3115. return ret +CPlayerInterface::battleInt->pos;
  3116. }
  3117. void CBattleHex::activate()
  3118. {
  3119. activateHover();
  3120. activateMouseMove();
  3121. activateLClick();
  3122. activateRClick();
  3123. }
  3124. void CBattleHex::deactivate()
  3125. {
  3126. deactivateHover();
  3127. deactivateMouseMove();
  3128. deactivateLClick();
  3129. deactivateRClick();
  3130. }
  3131. void CBattleHex::hover(bool on)
  3132. {
  3133. hovered = on;
  3134. //Hoverable::hover(on);
  3135. if(!on && setAlterText)
  3136. {
  3137. myInterface->console->alterTxt = std::string();
  3138. setAlterText = false;
  3139. }
  3140. }
  3141. CBattleHex::CBattleHex() : setAlterText(false), myNumber(-1), accessible(true), hovered(false), strictHovered(false), myInterface(NULL)
  3142. {
  3143. }
  3144. void CBattleHex::mouseMoved(const SDL_MouseMotionEvent &sEvent)
  3145. {
  3146. if(myInterface->cellShade)
  3147. {
  3148. if(CSDL_Ext::SDL_GetPixel(myInterface->cellShade, sEvent.x-pos.x, sEvent.y-pos.y) == 0) //hovered pixel is outside hex
  3149. {
  3150. strictHovered = false;
  3151. }
  3152. else //hovered pixel is inside hex
  3153. {
  3154. strictHovered = true;
  3155. }
  3156. }
  3157. if(hovered && strictHovered) //print attacked creature to console
  3158. {
  3159. if(myInterface->console->alterTxt.size() == 0 && myInterface->curInt->cb->battleGetStack(myNumber) != -1 &&
  3160. myInterface->curInt->cb->battleGetStackByPos(myNumber)->owner != myInterface->curInt->playerID &&
  3161. myInterface->curInt->cb->battleGetStackByPos(myNumber)->alive())
  3162. {
  3163. char tabh[160];
  3164. const CStack * attackedStack = myInterface->curInt->cb->battleGetStackByPos(myNumber);
  3165. const std::string & attackedName = attackedStack->count == 1 ? attackedStack->type->nameSing : attackedStack->type->namePl;
  3166. sprintf(tabh, CGI->generaltexth->allTexts[220].c_str(), attackedName.c_str());
  3167. myInterface->console->alterTxt = std::string(tabh);
  3168. setAlterText = true;
  3169. }
  3170. }
  3171. else if(setAlterText)
  3172. {
  3173. myInterface->console->alterTxt = std::string();
  3174. setAlterText = false;
  3175. }
  3176. }
  3177. void CBattleHex::clickLeft(tribool down, bool previousState)
  3178. {
  3179. if(!down && hovered && strictHovered) //we've been really clicked!
  3180. {
  3181. myInterface->hexLclicked(myNumber);
  3182. }
  3183. }
  3184. void CBattleHex::clickRight(tribool down, bool previousState)
  3185. {
  3186. int stID = myInterface->curInt->cb->battleGetStack(myNumber); //id of stack being on this tile
  3187. if(hovered && strictHovered && stID!=-1)
  3188. {
  3189. const CStack & myst = *myInterface->curInt->cb->battleGetStackByID(stID); //stack info
  3190. if(!myst.alive()) return;
  3191. if(down)
  3192. {
  3193. GH.pushInt(new CCreInfoWindow(myst));
  3194. }
  3195. }
  3196. }
  3197. CBattleConsole::CBattleConsole() : lastShown(-1), alterTxt(""), whoSetAlter(0)
  3198. {
  3199. }
  3200. CBattleConsole::~CBattleConsole()
  3201. {
  3202. texts.clear();
  3203. }
  3204. void CBattleConsole::show(SDL_Surface * to)
  3205. {
  3206. if(ingcAlter.size())
  3207. {
  3208. CSDL_Ext::printAtMiddleWB(ingcAlter, pos.x + pos.w/2, pos.y + 11, FONT_SMALL, 80, zwykly, to);
  3209. }
  3210. else if(alterTxt.size())
  3211. {
  3212. CSDL_Ext::printAtMiddleWB(alterTxt, pos.x + pos.w/2, pos.y + 11, FONT_SMALL, 80, zwykly, to);
  3213. }
  3214. else if(texts.size())
  3215. {
  3216. if(texts.size()==1)
  3217. {
  3218. CSDL_Ext::printAtMiddleWB(texts[0], pos.x + pos.w/2, pos.y + 11, FONT_SMALL, 80, zwykly, to);
  3219. }
  3220. else
  3221. {
  3222. CSDL_Ext::printAtMiddleWB(texts[lastShown-1], pos.x + pos.w/2, pos.y + 11, FONT_SMALL, 80, zwykly, to);
  3223. CSDL_Ext::printAtMiddleWB(texts[lastShown], pos.x + pos.w/2, pos.y + 27, FONT_SMALL, 80, zwykly, to);
  3224. }
  3225. }
  3226. }
  3227. bool CBattleConsole::addText(const std::string & text)
  3228. {
  3229. if(text.size()>70)
  3230. return false; //text too long!
  3231. int firstInToken = 0;
  3232. for(int i=0; i<text.size(); ++i) //tokenize
  3233. {
  3234. if(text[i] == 10)
  3235. {
  3236. texts.push_back( text.substr(firstInToken, i-firstInToken) );
  3237. firstInToken = i+1;
  3238. }
  3239. }
  3240. texts.push_back( text.substr(firstInToken, text.size()) );
  3241. lastShown = texts.size()-1;
  3242. return true;
  3243. }
  3244. void CBattleConsole::eraseText(unsigned int pos)
  3245. {
  3246. if(pos < texts.size())
  3247. {
  3248. texts.erase(texts.begin() + pos);
  3249. if(lastShown == texts.size())
  3250. --lastShown;
  3251. }
  3252. }
  3253. void CBattleConsole::changeTextAt(const std::string & text, unsigned int pos)
  3254. {
  3255. if(pos >= texts.size()) //no such pos
  3256. return;
  3257. texts[pos] = text;
  3258. }
  3259. void CBattleConsole::scrollUp(unsigned int by)
  3260. {
  3261. if(lastShown > by)
  3262. lastShown -= by;
  3263. }
  3264. void CBattleConsole::scrollDown(unsigned int by)
  3265. {
  3266. if(lastShown + by < texts.size())
  3267. lastShown += by;
  3268. }
  3269. CBattleResultWindow::CBattleResultWindow(const BattleResult &br, const SDL_Rect & pos, CBattleInterface * _owner)
  3270. : owner(_owner)
  3271. {
  3272. this->pos = pos;
  3273. background = BitmapHandler::loadBitmap("CPRESULT.BMP", true);
  3274. graphics->blueToPlayersAdv(background, owner->curInt->playerID);
  3275. SDL_Surface * pom = SDL_ConvertSurface(background, screen->format, screen->flags);
  3276. SDL_FreeSurface(background);
  3277. background = pom;
  3278. exit = new AdventureMapButton (std::string(), std::string(), boost::bind(&CBattleResultWindow::bExitf,this), 384 + pos.x, 505 + pos.y, "iok6432.def", SDLK_RETURN);
  3279. if(br.winner==0) //attacker won
  3280. {
  3281. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[410], 59, 124, FONT_SMALL, zwykly, background);
  3282. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[411], 408, 124, FONT_SMALL, zwykly, background);
  3283. }
  3284. else //if(br.winner==1)
  3285. {
  3286. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[411], 59, 124, FONT_SMALL, zwykly, background);
  3287. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[410], 412, 124, FONT_SMALL, zwykly, background);
  3288. }
  3289. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[407], 232, 302, FONT_BIG, tytulowy, background);
  3290. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[408], 232, 332, FONT_BIG, zwykly, background);
  3291. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[409], 237, 428, FONT_BIG, zwykly, background);
  3292. std::string attackerName, defenderName;
  3293. if(owner->attackingHeroInstance) //a hero attacked
  3294. {
  3295. SDL_BlitSurface(graphics->portraitLarge[owner->attackingHeroInstance->portrait], NULL, background, &genRect(64, 58, 21, 38));
  3296. //setting attackerName
  3297. attackerName = owner->attackingHeroInstance->name;
  3298. }
  3299. else //a monster attacked
  3300. {
  3301. int bestMonsterID = -1;
  3302. int bestPower = 0;
  3303. for(TSlots::const_iterator it = owner->army1.Slots().begin(); it!=owner->army1.Slots().end(); ++it)
  3304. {
  3305. if( it->second.type->AIValue > bestPower)
  3306. {
  3307. bestPower = it->second.type->AIValue;
  3308. bestMonsterID = it->second.type->idNumber;
  3309. }
  3310. }
  3311. SDL_BlitSurface(graphics->bigImgs[bestMonsterID], NULL, background, &genRect(64, 58, 21, 38));
  3312. //setting attackerName
  3313. attackerName = CGI->creh->creatures[bestMonsterID]->namePl;
  3314. }
  3315. if(owner->defendingHeroInstance) //a hero defended
  3316. {
  3317. SDL_BlitSurface(graphics->portraitLarge[owner->defendingHeroInstance->portrait], NULL, background, &genRect(64, 58, 392, 38));
  3318. //setting defenderName
  3319. defenderName = owner->defendingHeroInstance->name;
  3320. }
  3321. else //a monster defended
  3322. {
  3323. int bestMonsterID = -1;
  3324. int bestPower = 0;
  3325. for(TSlots::const_iterator it = owner->army2.Slots().begin(); it!=owner->army2.Slots().end(); ++it)
  3326. {
  3327. if( it->second.type->AIValue > bestPower)
  3328. {
  3329. bestPower = it->second.type->AIValue;
  3330. bestMonsterID = it->second.type->idNumber;
  3331. }
  3332. }
  3333. SDL_BlitSurface(graphics->bigImgs[bestMonsterID], NULL, background, &genRect(64, 58, 392, 38));
  3334. //setting defenderName
  3335. defenderName = CGI->creh->creatures[bestMonsterID]->namePl;
  3336. }
  3337. //printing attacker and defender's names
  3338. CSDL_Ext::printAt(attackerName, 89, 37, FONT_SMALL, zwykly, background);
  3339. CSDL_Ext::printTo(defenderName, 381, 53, FONT_SMALL, zwykly, background);
  3340. //printing casualities
  3341. for(int step = 0; step < 2; ++step)
  3342. {
  3343. if(br.casualties[step].size()==0)
  3344. {
  3345. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[523], 235, 360 + 97*step, FONT_SMALL, zwykly, background);
  3346. }
  3347. else
  3348. {
  3349. int xPos = 235 - (br.casualties[step].size()*32 + (br.casualties[step].size() - 1)*10)/2; //increment by 42 with each picture
  3350. int yPos = 344 + step*97;
  3351. for(std::map<ui32,si32>::const_iterator it=br.casualties[step].begin(); it!=br.casualties[step].end(); ++it)
  3352. {
  3353. blitAt(graphics->smallImgs[it->first], xPos, yPos, background);
  3354. std::ostringstream amount;
  3355. amount<<it->second;
  3356. CSDL_Ext::printAtMiddle(amount.str(), xPos+16, yPos + 42, FONT_SMALL, zwykly, background);
  3357. xPos += 42;
  3358. }
  3359. }
  3360. }
  3361. //printing result description
  3362. bool weAreAttacker = (owner->curInt->playerID == owner->attackingHeroInstance->tempOwner);
  3363. if((br.winner == 0 && weAreAttacker) || (br.winner == 1 && !weAreAttacker)) //we've won
  3364. {
  3365. int text;
  3366. switch(br.result)
  3367. {
  3368. case 0: text = 304; break;
  3369. case 1: text = 303; break;
  3370. case 2: text = 302; break;
  3371. }
  3372. CGI->musich->playMusic(musicBase::winBattle);
  3373. #ifdef _WIN32
  3374. CGI->videoh->open(VIDEO_WIN);
  3375. #else
  3376. CGI->videoh->open(VIDEO_WIN, true);
  3377. #endif
  3378. std::string str = CGI->generaltexth->allTexts[text];
  3379. const CGHeroInstance * ourHero = weAreAttacker? owner->attackingHeroInstance : owner->defendingHeroInstance;
  3380. if (ourHero)
  3381. {
  3382. str += CGI->generaltexth->allTexts[305];
  3383. boost::algorithm::replace_first(str,"%s",ourHero->name);
  3384. boost::algorithm::replace_first(str,"%d",boost::lexical_cast<std::string>(br.exp[weAreAttacker?0:1]));
  3385. }
  3386. CSDL_Ext::printAtMiddleWB(str, 235, 235, FONT_SMALL, 55, zwykly, background);
  3387. }
  3388. else // we lose
  3389. {
  3390. switch(br.result)
  3391. {
  3392. case 0: //normal victory
  3393. {
  3394. CGI->musich->playMusic(musicBase::loseCombat);
  3395. CGI->videoh->open(VIDEO_LOSE_BATTLE_START);
  3396. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[311], 235, 235, FONT_SMALL, zwykly, background);
  3397. break;
  3398. }
  3399. case 1: //flee
  3400. {
  3401. CGI->musich->playMusic(musicBase::retreatBattle);
  3402. CGI->videoh->open(VIDEO_RETREAT_START);
  3403. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[310], 235, 235, FONT_SMALL, zwykly, background);
  3404. break;
  3405. }
  3406. case 2: //surrender
  3407. {
  3408. CGI->musich->playMusic(musicBase::surrenderBattle);
  3409. CGI->videoh->open(VIDEO_SURRENDER);
  3410. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[309], 235, 220, FONT_SMALL, zwykly, background);
  3411. break;
  3412. }
  3413. }
  3414. }
  3415. }
  3416. CBattleResultWindow::~CBattleResultWindow()
  3417. {
  3418. SDL_FreeSurface(background);
  3419. }
  3420. void CBattleResultWindow::activate()
  3421. {
  3422. owner->curInt->showingDialog->set(true);
  3423. exit->activate();
  3424. }
  3425. void CBattleResultWindow::deactivate()
  3426. {
  3427. exit->deactivate();
  3428. }
  3429. void CBattleResultWindow::show(SDL_Surface *to)
  3430. {
  3431. //evaluating to
  3432. if(!to)
  3433. to = screen;
  3434. CGI->videoh->update(107, 70, background, false, true);
  3435. SDL_BlitSurface(background, NULL, to, &pos);
  3436. exit->show(to);
  3437. }
  3438. void CBattleResultWindow::bExitf()
  3439. {
  3440. CPlayerInterface * intTmp = owner->curInt;
  3441. GH.popInts(2); //first - we; second - battle interface
  3442. intTmp->showingDialog->setn(false);
  3443. CGI->videoh->close();
  3444. }
  3445. CBattleOptionsWindow::CBattleOptionsWindow(const SDL_Rect & position, CBattleInterface *owner): myInt(owner)
  3446. {
  3447. pos = position;
  3448. SDL_Surface *hhlp = BitmapHandler::loadBitmap("comopbck.bmp", true);
  3449. graphics->blueToPlayersAdv(hhlp, owner->curInt->playerID);
  3450. background = SDL_ConvertSurface(hhlp, screen->format, 0);
  3451. SDL_SetColorKey(background, SDL_SRCCOLORKEY, SDL_MapRGB(background->format,0,255,255));
  3452. SDL_FreeSurface(hhlp);
  3453. viewGrid = new CHighlightableButton(boost::bind(&CBattleInterface::setPrintCellBorders, owner, true), boost::bind(&CBattleInterface::setPrintCellBorders, owner, false), boost::assign::map_list_of(0,CGI->generaltexth->zelp[427].first)(3,CGI->generaltexth->zelp[427].first), CGI->generaltexth->zelp[427].second, false, "sysopchk.def", NULL, 185, 140, false);
  3454. viewGrid->select(owner->curInt->sysOpts.printCellBorders);
  3455. movementShadow = new CHighlightableButton(boost::bind(&CBattleInterface::setPrintStackRange, owner, true), boost::bind(&CBattleInterface::setPrintStackRange, owner, false), boost::assign::map_list_of(0,CGI->generaltexth->zelp[428].first)(3,CGI->generaltexth->zelp[428].first), CGI->generaltexth->zelp[428].second, false, "sysopchk.def", NULL, 185, 173, false);
  3456. movementShadow->select(owner->curInt->sysOpts.printStackRange);
  3457. mouseShadow = new CHighlightableButton(boost::bind(&CBattleInterface::setPrintMouseShadow, owner, true), boost::bind(&CBattleInterface::setPrintMouseShadow, owner, false), boost::assign::map_list_of(0,CGI->generaltexth->zelp[429].first)(3,CGI->generaltexth->zelp[429].first), CGI->generaltexth->zelp[429].second, false, "sysopchk.def", NULL, 185, 207, false);
  3458. mouseShadow->select(owner->curInt->sysOpts.printMouseShadow);
  3459. animSpeeds = new CHighlightableButtonsGroup(0);
  3460. animSpeeds->addButton(boost::assign::map_list_of(0,CGI->generaltexth->zelp[422].first),CGI->generaltexth->zelp[422].second, "sysopb9.def",188, 309, 1);
  3461. animSpeeds->addButton(boost::assign::map_list_of(0,CGI->generaltexth->zelp[423].first),CGI->generaltexth->zelp[423].second, "sysob10.def",252, 309, 2);
  3462. animSpeeds->addButton(boost::assign::map_list_of(0,CGI->generaltexth->zelp[424].first),CGI->generaltexth->zelp[424].second, "sysob11.def",315, 309, 4);
  3463. animSpeeds->select(owner->getAnimSpeed(), 1);
  3464. animSpeeds->onChange = boost::bind(&CBattleInterface::setAnimSpeed, owner, _1);
  3465. setToDefault = new AdventureMapButton (CGI->generaltexth->zelp[392].first, CGI->generaltexth->zelp[392].second, boost::bind(&CBattleOptionsWindow::bDefaultf,this), 405, 443, "codefaul.def");
  3466. std::swap(setToDefault->imgs[0][0], setToDefault->imgs[0][1]);
  3467. exit = new AdventureMapButton (CGI->generaltexth->zelp[393].first, CGI->generaltexth->zelp[393].second, boost::bind(&CBattleOptionsWindow::bExitf,this), 516, 443, "soretrn.def",SDLK_RETURN);
  3468. std::swap(exit->imgs[0][0], exit->imgs[0][1]);
  3469. //printing texts to background
  3470. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[392], 242, 32, FONT_BIG, tytulowy, background); //window title
  3471. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[393], 122, 214, FONT_MEDIUM, tytulowy, background); //animation speed
  3472. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[394], 122, 293, FONT_MEDIUM, tytulowy, background); //music volume
  3473. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[395], 122, 359, FONT_MEDIUM, tytulowy, background); //effects' volume
  3474. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[396], 353, 66, FONT_MEDIUM, tytulowy, background); //auto - combat options
  3475. CSDL_Ext::printAtMiddle(CGI->generaltexth->allTexts[397], 353, 265, FONT_MEDIUM, tytulowy, background); //creature info
  3476. //auto - combat options
  3477. CSDL_Ext::printAt(CGI->generaltexth->allTexts[398], 283, 86, FONT_MEDIUM, zwykly, background); //creatures
  3478. CSDL_Ext::printAt(CGI->generaltexth->allTexts[399], 283, 116, FONT_MEDIUM, zwykly, background); //spells
  3479. CSDL_Ext::printAt(CGI->generaltexth->allTexts[400], 283, 146, FONT_MEDIUM, zwykly, background); //catapult
  3480. CSDL_Ext::printAt(CGI->generaltexth->allTexts[151], 283, 176, FONT_MEDIUM, zwykly, background); //ballista
  3481. CSDL_Ext::printAt(CGI->generaltexth->allTexts[401], 283, 206, FONT_MEDIUM, zwykly, background); //first aid tent
  3482. //creature info
  3483. CSDL_Ext::printAt(CGI->generaltexth->allTexts[402], 283, 285, FONT_MEDIUM, zwykly, background); //all stats
  3484. CSDL_Ext::printAt(CGI->generaltexth->allTexts[403], 283, 315, FONT_MEDIUM, zwykly, background); //spells only
  3485. //general options
  3486. CSDL_Ext::printAt(CGI->generaltexth->allTexts[404], 61, 57, FONT_MEDIUM, zwykly, background); //hex grid
  3487. CSDL_Ext::printAt(CGI->generaltexth->allTexts[405], 61, 90, FONT_MEDIUM, zwykly, background); //movement shadow
  3488. CSDL_Ext::printAt(CGI->generaltexth->allTexts[406], 61, 124, FONT_MEDIUM, zwykly, background); //cursor shadow
  3489. CSDL_Ext::printAt(CGI->generaltexth->allTexts[577], 61, 156, FONT_MEDIUM, zwykly, background); //spellbook animation
  3490. //texts printed
  3491. }
  3492. CBattleOptionsWindow::~CBattleOptionsWindow()
  3493. {
  3494. SDL_FreeSurface(background);
  3495. delete setToDefault;
  3496. delete exit;
  3497. delete viewGrid;
  3498. delete movementShadow;
  3499. delete animSpeeds;
  3500. delete mouseShadow;
  3501. }
  3502. void CBattleOptionsWindow::activate()
  3503. {
  3504. setToDefault->activate();
  3505. exit->activate();
  3506. viewGrid->activate();
  3507. movementShadow->activate();
  3508. animSpeeds->activate();
  3509. mouseShadow->activate();
  3510. }
  3511. void CBattleOptionsWindow::deactivate()
  3512. {
  3513. setToDefault->deactivate();
  3514. exit->deactivate();
  3515. viewGrid->deactivate();
  3516. movementShadow->deactivate();
  3517. animSpeeds->deactivate();
  3518. mouseShadow->deactivate();
  3519. }
  3520. void CBattleOptionsWindow::show(SDL_Surface *to)
  3521. {
  3522. if(!to) //"evaluating" to
  3523. to = screen;
  3524. SDL_BlitSurface(background, NULL, to, &pos);
  3525. setToDefault->show(to);
  3526. exit->show(to);
  3527. viewGrid->show(to);
  3528. movementShadow->show(to);
  3529. animSpeeds->show(to);
  3530. mouseShadow->show(to);
  3531. }
  3532. void CBattleOptionsWindow::bDefaultf()
  3533. {
  3534. }
  3535. void CBattleOptionsWindow::bExitf()
  3536. {
  3537. GH.popIntTotally(this);
  3538. }
  3539. std::string CBattleInterface::SiegeHelper::townTypeInfixes[F_NUMBER] = {"CS", "RM", "TW", "IN", "NC", "DN", "ST", "FR", "EL"};
  3540. CBattleInterface::SiegeHelper::SiegeHelper(const CGTownInstance *siegeTown, const CBattleInterface * _owner)
  3541. : town(siegeTown), owner(_owner)
  3542. {
  3543. for(int g=0; g<ARRAY_COUNT(walls); ++g)
  3544. {
  3545. walls[g] = BitmapHandler::loadBitmap( getSiegeName(g) );
  3546. }
  3547. }
  3548. CBattleInterface::SiegeHelper::~SiegeHelper()
  3549. {
  3550. for(int g=0; g<ARRAY_COUNT(walls); ++g)
  3551. {
  3552. SDL_FreeSurface(walls[g]);
  3553. }
  3554. }
  3555. std::string CBattleInterface::SiegeHelper::getSiegeName(ui16 what, ui16 additInfo) const
  3556. {
  3557. if(what == 2 || what == 3 || what == 8)
  3558. {
  3559. if(additInfo == 3) additInfo = 2;
  3560. }
  3561. char buf[100];
  3562. SDL_itoa(additInfo, buf, 10);
  3563. std::string addit(buf);
  3564. switch(what)
  3565. {
  3566. case 0: //background
  3567. return "SG" + townTypeInfixes[town->town->typeID] + "BACK.BMP";
  3568. case 1: //background wall
  3569. {
  3570. switch(town->town->typeID)
  3571. {
  3572. case 5: case 4: case 1: case 6:
  3573. return "SG" + townTypeInfixes[town->town->typeID] + "TPW1.BMP";
  3574. case 0: case 2: case 3: case 7: case 8:
  3575. return "SG" + townTypeInfixes[town->town->typeID] + "TPWL.BMP";
  3576. default:
  3577. return "";
  3578. }
  3579. }
  3580. case 2: //keep
  3581. return "SG" + townTypeInfixes[town->town->typeID] + "MAN" + addit + ".BMP";
  3582. case 3: //bottom tower
  3583. return "SG" + townTypeInfixes[town->town->typeID] + "TW1" + addit + ".BMP";
  3584. case 4: //bottom wall
  3585. return "SG" + townTypeInfixes[town->town->typeID] + "WA1" + addit + ".BMP";
  3586. case 5: //below gate
  3587. return "SG" + townTypeInfixes[town->town->typeID] + "WA3" + addit + ".BMP";
  3588. case 6: //over gate
  3589. return "SG" + townTypeInfixes[town->town->typeID] + "WA4" + addit + ".BMP";
  3590. case 7: //upper wall
  3591. return "SG" + townTypeInfixes[town->town->typeID] + "WA6" + addit + ".BMP";
  3592. case 8: //upper tower
  3593. return "SG" + townTypeInfixes[town->town->typeID] + "TW2" + addit + ".BMP";
  3594. case 9: //gate
  3595. return "SG" + townTypeInfixes[town->town->typeID] + "DRW" + addit + ".BMP";
  3596. case 10: //gate arch
  3597. return "SG" + townTypeInfixes[town->town->typeID] + "ARCH.BMP";
  3598. case 11: //bottom static wall
  3599. return "SG" + townTypeInfixes[town->town->typeID] + "WA2.BMP";
  3600. case 12: //upper static wall
  3601. return "SG" + townTypeInfixes[town->town->typeID] + "WA5.BMP";
  3602. case 13: //moat
  3603. return "SG" + townTypeInfixes[town->town->typeID] + "MOAT.BMP";
  3604. case 14: //mlip
  3605. return "SG" + townTypeInfixes[town->town->typeID] + "MLIP.BMP";
  3606. case 15: //keep creature cover
  3607. return "SG" + townTypeInfixes[town->town->typeID] + "MANC.BMP";
  3608. case 16: //bottom turret creature cover
  3609. return "SG" + townTypeInfixes[town->town->typeID] + "TW1C.BMP";
  3610. case 17: //upper turret creature cover
  3611. return "SG" + townTypeInfixes[town->town->typeID] + "TW2C.BMP";
  3612. default:
  3613. return "";
  3614. }
  3615. }
  3616. void CBattleInterface::SiegeHelper::printPartOfWall(SDL_Surface * to, int what)
  3617. {
  3618. Point pos = Point(-1, -1);
  3619. switch(what)
  3620. {
  3621. case 1: //background wall
  3622. pos = Point(owner->pos.w + owner->pos.x - walls[1]->w, 55 + owner->pos.y);
  3623. break;
  3624. case 2: //keep
  3625. pos = Point(owner->pos.w + owner->pos.x - walls[2]->w, 154 + owner->pos.y);
  3626. break;
  3627. case 3: //bottom tower
  3628. case 4: //bottom wall
  3629. case 5: //below gate
  3630. case 6: //over gate
  3631. case 7: //upper wall
  3632. case 8: //upper tower
  3633. case 9: //gate
  3634. case 10: //gate arch
  3635. case 11: //bottom static wall
  3636. case 12: //upper static wall
  3637. pos.x = graphics->wallPositions[town->town->typeID][what - 3].x + owner->pos.x;
  3638. pos.y = graphics->wallPositions[town->town->typeID][what - 3].y + owner->pos.y;
  3639. break;
  3640. case 15: //keep creature cover
  3641. pos = Point(owner->pos.w + owner->pos.x - walls[2]->w, 154 + owner->pos.y);
  3642. break;
  3643. case 16: //bottom turret creature cover
  3644. pos.x = graphics->wallPositions[town->town->typeID][0].x + owner->pos.x;
  3645. pos.y = graphics->wallPositions[town->town->typeID][0].y + owner->pos.y;
  3646. break;
  3647. case 17: //upper turret creature cover
  3648. pos.x = graphics->wallPositions[town->town->typeID][5].x + owner->pos.x;
  3649. pos.y = graphics->wallPositions[town->town->typeID][5].y + owner->pos.y;
  3650. break;
  3651. };
  3652. if(pos.x != -1)
  3653. {
  3654. blitAt(walls[what], pos.x, pos.y, to);
  3655. }
  3656. }
  3657. void CStackQueue::update()
  3658. {
  3659. stacksSorted.clear();
  3660. owner->curInt->cb->getStackQueue(stacksSorted, QUEUE_SIZE);
  3661. for (int i = 0; i < QUEUE_SIZE ; i++)
  3662. {
  3663. stackBoxes[i]->setStack(stacksSorted[i]);
  3664. }
  3665. }
  3666. CStackQueue::CStackQueue(bool Embedded, CBattleInterface * _owner)
  3667. :embedded(Embedded), owner(_owner)
  3668. {
  3669. OBJ_CONSTRUCTION_CAPTURING_ALL;
  3670. if(embedded)
  3671. {
  3672. box = NULL;
  3673. bg = NULL;
  3674. pos.w = QUEUE_SIZE * 37;
  3675. pos.h = 32; //height of small creature img
  3676. pos.x = screen->w/2 - pos.w/2;
  3677. pos.y = (screen->h - 600)/2 + 10;
  3678. }
  3679. else
  3680. {
  3681. box = BitmapHandler::loadBitmap("CHRROP.pcx");
  3682. bg = BitmapHandler::loadBitmap("DIBOXPI.pcx");
  3683. pos.w = 600;
  3684. pos.h = bg->h;
  3685. }
  3686. stackBoxes.resize(QUEUE_SIZE);
  3687. for (int i = 0; i < QUEUE_SIZE; i++)
  3688. {
  3689. stackBoxes[i] = new StackBox(box);
  3690. stackBoxes[i]->pos.x += 6 + (embedded ? 37 : 79)*i;
  3691. }
  3692. }
  3693. CStackQueue::~CStackQueue()
  3694. {
  3695. SDL_FreeSurface(box);
  3696. }
  3697. void CStackQueue::showAll( SDL_Surface *to )
  3698. {
  3699. blitBg(to);
  3700. CIntObject::showAll(to);
  3701. }
  3702. void CStackQueue::blitBg( SDL_Surface * to )
  3703. {
  3704. if(bg)
  3705. {
  3706. for (int w = 0; w < pos.w; w += bg->w)
  3707. {
  3708. blitAtLoc(bg, w, 0, to);
  3709. }
  3710. }
  3711. }
  3712. void CStackQueue::StackBox::showAll( SDL_Surface *to )
  3713. {
  3714. assert(my);
  3715. if(bg)
  3716. {
  3717. graphics->blueToPlayersAdv(bg, my->owner);
  3718. //SDL_UpdateRect(bg, 0, 0, 0, 0);
  3719. CSDL_Ext::blit8bppAlphaTo24bpp(bg, NULL, to, &genRect(bg->h, bg->w, pos.x, pos.y));
  3720. //blitAt(bg, pos, to);
  3721. blitAt(graphics->bigImgs[my->type->idNumber], pos.x +9, pos.y + 1, to);
  3722. printAtMiddleLoc(makeNumberShort(my->count), pos.w/2, pos.h - 12, FONT_MEDIUM, zwykly, to);
  3723. }
  3724. else
  3725. {
  3726. blitAt(graphics->smallImgs[-2], pos, to);
  3727. blitAt(graphics->smallImgs[my->type->idNumber], pos, to);
  3728. const SDL_Color &ownerColor = (my->owner == 255 ? *graphics->neutralColor : graphics->playerColors[my->owner]);
  3729. CSDL_Ext::drawBorder(to, pos, int3(ownerColor.r, ownerColor.g, ownerColor.b));
  3730. printAtMiddleLoc(makeNumberShort(my->count), pos.w/2, pos.h - 8, FONT_TINY, zwykly, to);
  3731. }
  3732. }
  3733. void CStackQueue::StackBox::setStack( const CStack *nStack )
  3734. {
  3735. my = nStack;
  3736. }
  3737. CStackQueue::StackBox::StackBox(SDL_Surface *BG)
  3738. :bg(BG), my(NULL)
  3739. {
  3740. if(bg)
  3741. {
  3742. pos.w = bg->w;
  3743. pos.h = bg->h;
  3744. }
  3745. else
  3746. {
  3747. pos.w = pos.h = 32;
  3748. }
  3749. pos.y += 2;
  3750. }
  3751. CStackQueue::StackBox::~StackBox()
  3752. {
  3753. }
  3754. void CStackQueue::StackBox::hover( bool on )
  3755. {
  3756. }