CAdvmapInterface.cpp 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911
  1. #include "AdventureMapButton.h"
  2. #include "CAdvmapInterface.h"
  3. #include "../CCallback.h"
  4. #include "CCastleInterface.h"
  5. #include "CCursorHandler.h"
  6. #include "CGameInfo.h"
  7. #include "CHeroWindow.h"
  8. #include "CMessage.h"
  9. #include "SDL_Extensions.h"
  10. #include "CBitmapHandler.h"
  11. #include "CConfigHandler.h"
  12. #include "CSpellWindow.h"
  13. #include "Graphics.h"
  14. #include "../hch/CDefHandler.h"
  15. #include "../hch/CGeneralTextHandler.h"
  16. #include "../hch/CHeroHandler.h"
  17. #include "../hch/CObjectHandler.h"
  18. #include "../hch/CTownHandler.h"
  19. #include "../lib/map.h"
  20. #include "../mapHandler.h"
  21. #include "../stdafx.h"
  22. #include <boost/algorithm/string.hpp>
  23. #include <boost/algorithm/string/replace.hpp>
  24. #include <boost/assign/std/vector.hpp>
  25. #include <boost/thread.hpp>
  26. #include <sstream>
  27. #include "CPreGame.h"
  28. #ifdef _MSC_VER
  29. #pragma warning (disable : 4355)
  30. #endif
  31. /*
  32. * CAdvMapInterface.cpp, part of VCMI engine
  33. *
  34. * Authors: listed in file AUTHORS in main folder
  35. *
  36. * License: GNU General Public License v2.0 or later
  37. * Full text of license available in license.txt file, in main folder
  38. *
  39. */
  40. extern TTF_Font * TNRB16, *TNR, *GEOR13, *GEORXX; //fonts
  41. #define ADVOPT (conf.go()->ac)
  42. using namespace boost::logic;
  43. using namespace boost::assign;
  44. using namespace CSDL_Ext;
  45. CMinimap::CMinimap(bool draw)
  46. {
  47. int3 mapSizes = LOCPLINT->cb->getMapSize();
  48. statusbarTxt = CGI->generaltexth->zelp[291].first;
  49. rcText = CGI->generaltexth->zelp[291].second;
  50. pos.x=ADVOPT.minimapX;//630
  51. pos.y=ADVOPT.minimapY;//26
  52. pos.h=ADVOPT.minimapW;//144
  53. pos.w=ADVOPT.minimapH;//144
  54. const int tilesw=(ADVOPT.advmapW+31)/32;
  55. const int tilesh=(ADVOPT.advmapH+31)/32;
  56. int rx = (((float)tilesw)/(mapSizes.x))*((float)pos.w),
  57. ry = (((float)tilesh)/(mapSizes.y))*((float)pos.h);
  58. radar = newSurface(rx,ry);
  59. temps = newSurface(pos.w,pos.h);
  60. SDL_FillRect(radar,NULL,0x00FFFF);
  61. for (int i=0; i<radar->w; i++)
  62. {
  63. if (i%4 || (i==0))
  64. {
  65. SDL_PutPixelWithoutRefresh(radar,i,0,255,75,125);
  66. SDL_PutPixelWithoutRefresh(radar,i,radar->h-1,255,75,125);
  67. }
  68. }
  69. for (int i=0; i<radar->h; i++)
  70. {
  71. if ((i%4) || (i==0))
  72. {
  73. SDL_PutPixelWithoutRefresh(radar,0,i,255,75,125);
  74. SDL_PutPixelWithoutRefresh(radar,radar->w-1,i,255,75,125);
  75. }
  76. }
  77. SDL_SetColorKey(radar,SDL_SRCCOLORKEY,SDL_MapRGB(radar->format,0,255,255));
  78. //radar = CDefHandler::giveDef("RADAR.DEF");
  79. std::ifstream is("config/minimap.txt",std::ifstream::in);
  80. for (int i=0;i<TERRAIN_TYPES;i++)
  81. {
  82. std::pair<int,SDL_Color> vinya;
  83. std::pair<int,SDL_Color> vinya2;
  84. int pom;
  85. is >> pom;
  86. vinya2.first=vinya.first=pom;
  87. is >> pom;
  88. vinya.second.r=pom;
  89. is >> pom;
  90. vinya.second.g=pom;
  91. is >> pom;
  92. vinya.second.b=pom;
  93. is >> pom;
  94. vinya2.second.r=pom;
  95. is >> pom;
  96. vinya2.second.g=pom;
  97. is >> pom;
  98. vinya2.second.b=pom;
  99. vinya.second.unused=vinya2.second.unused=255;
  100. colors.insert(vinya);
  101. colorsBlocked.insert(vinya2);
  102. }
  103. is.close();
  104. if (draw)
  105. redraw();
  106. }
  107. CMinimap::~CMinimap()
  108. {
  109. SDL_FreeSurface(radar);
  110. SDL_FreeSurface(temps);
  111. }
  112. void CMinimap::draw(SDL_Surface * to)
  113. {
  114. int3 mapSizes = LOCPLINT->cb->getMapSize();
  115. //draw terrain
  116. blitAt(map[LOCPLINT->adventureInt->position.z],0,0,temps);
  117. //draw heroes
  118. std::vector <const CGHeroInstance *> hh = LOCPLINT->cb->getHeroesInfo(false);
  119. int mw = map[0]->w, mh = map[0]->h,
  120. wo = mw/mapSizes.x, ho = mh/mapSizes.y;
  121. for (size_t i=0; i < hh.size(); ++i)
  122. {
  123. int3 hpos = hh[i]->getPosition(false);
  124. if(hpos.z!=LOCPLINT->adventureInt->position.z)
  125. continue;
  126. //float zawx = ((float)hpos.x/CGI->mh->sizes.x), zawy = ((float)hpos.y/CGI->mh->sizes.y);
  127. int3 maplgp ( (hpos.x*mw)/mapSizes.x, (hpos.y*mh)/mapSizes.y, hpos.z );
  128. for (int ii=0; ii<wo; ii++)
  129. {
  130. for (int jj=0; jj<ho; jj++)
  131. {
  132. SDL_PutPixelWithoutRefresh(temps,maplgp.x+ii,maplgp.y+jj,graphics->playerColors[hh[i]->getOwner()].r,
  133. graphics->playerColors[hh[i]->getOwner()].g,graphics->playerColors[hh[i]->getOwner()].b);
  134. }
  135. }
  136. }
  137. blitAt(flObjs[LOCPLINT->adventureInt->position.z],0,0,temps);
  138. blitAt(FoW[LOCPLINT->adventureInt->position.z],0,0,temps);
  139. //draw radar
  140. int bx = (((float)LOCPLINT->adventureInt->position.x)/(((float)mapSizes.x)))*pos.w,
  141. by = (((float)LOCPLINT->adventureInt->position.y)/(((float)mapSizes.y)))*pos.h;
  142. blitAt(radar,bx,by,temps);
  143. blitAt(temps,pos.x,pos.y,to);
  144. }
  145. void CMinimap::redraw(int level)// (level==-1) => redraw all levels
  146. {
  147. initMap(level);
  148. //FoW
  149. initFoW(level);
  150. //flaggable objects
  151. initFlaggableObjs(level);
  152. //showing tiles
  153. showVisibleTiles();
  154. }
  155. void CMinimap::initMap(int level)
  156. {
  157. /*for(int g=0; g<map.size(); ++g)
  158. {
  159. SDL_FreeSurface(map[g]);
  160. }
  161. map.clear();*/
  162. int3 mapSizes = LOCPLINT->cb->getMapSize();
  163. for (size_t i=0; i<CGI->mh->sizes.z; i++)
  164. {
  165. SDL_Surface * pom ;
  166. if ((level>=0) && (i!=level))
  167. continue;
  168. if (map.size()<i+1)
  169. pom = CSDL_Ext::newSurface(pos.w,pos.h,screen);
  170. else pom = map[i];
  171. for (int x=0;x<pos.w;x++)
  172. {
  173. for (int y=0;y<pos.h;y++)
  174. {
  175. int mx=(mapSizes.x*x)/pos.w;
  176. int my=(mapSizes.y*y)/pos.h;
  177. const TerrainTile * tile = LOCPLINT->cb->getTileInfo(int3(mx, my, i));
  178. if(tile)
  179. {
  180. if (tile->blocked && (!tile->visitable))
  181. SDL_PutPixelWithoutRefresh(pom, x, y, colorsBlocked[tile->tertype].r, colorsBlocked[tile->tertype].g, colorsBlocked[tile->tertype].b);
  182. else SDL_PutPixelWithoutRefresh(pom, x, y, colors[tile->tertype].r, colors[tile->tertype].g, colors[tile->tertype].b);
  183. }
  184. }
  185. }
  186. map.push_back(pom);
  187. }
  188. }
  189. void CMinimap::initFoW(int level)
  190. {
  191. /*for(int g=0; g<FoW.size(); ++g)
  192. {
  193. SDL_FreeSurface(FoW[g]);
  194. }
  195. FoW.clear();*/
  196. int3 mapSizes = LOCPLINT->cb->getMapSize();
  197. int mw = map[0]->w, mh = map[0]->h;//,
  198. //wo = mw/mapSizes.x, ho = mh/mapSizes.y; //TODO use me
  199. for(int d=0; d<CGI->mh->map->twoLevel+1; ++d)
  200. {
  201. if(level>=0 && d!=level)
  202. continue;
  203. SDL_Surface * pt = CSDL_Ext::newSurface(pos.w, pos.h, CSDL_Ext::std32bppSurface);
  204. for (int i=0; i<mw; i++)
  205. {
  206. for (int j=0; j<mh; j++)
  207. {
  208. int3 pp( ((i*mapSizes.x)/mw), ((j*mapSizes.y)/mh), d );
  209. if ( !LOCPLINT->cb->isVisible(pp) )
  210. {
  211. CSDL_Ext::SDL_PutPixelWithoutRefresh(pt,i,j,0,0,0);
  212. }
  213. }
  214. }
  215. FoW.push_back(pt);
  216. }
  217. }
  218. void CMinimap::initFlaggableObjs(int level)
  219. {
  220. /*for(int g=0; g<flObjs.size(); ++g)
  221. {
  222. SDL_FreeSurface(flObjs[g]);
  223. }
  224. flObjs.clear();*/
  225. int3 mapSizes = LOCPLINT->cb->getMapSize();
  226. int mw = map[0]->w, mh = map[0]->h;
  227. for(int d=0; d<CGI->mh->map->twoLevel+1; ++d)
  228. {
  229. if(level>=0 && d!=level)
  230. continue;
  231. SDL_Surface * pt = CSDL_Ext::newSurface(pos.w, pos.h, CSDL_Ext::std32bppSurface);
  232. for (int i=0; i<mw; i++)
  233. {
  234. for (int j=0; j<mh; j++)
  235. {
  236. CSDL_Ext::SDL_PutPixelWithoutRefresh(pt,i,j,0,0,0,0);
  237. }
  238. }
  239. flObjs.push_back(pt);
  240. }
  241. }
  242. void CMinimap::updateRadar()
  243. {}
  244. void CMinimap::clickRight(tribool down, bool previousState)
  245. {
  246. LOCPLINT->adventureInt->handleRightClick(rcText,down,this);
  247. }
  248. void CMinimap::clickLeft(tribool down, bool previousState)
  249. {
  250. if (down && (!previousState))
  251. activateMouseMove();
  252. else if (!down)
  253. {
  254. if (std::find(GH.motioninterested.begin(),GH.motioninterested.end(),this)!=GH.motioninterested.end())
  255. deactivateMouseMove();
  256. }
  257. //ClickableL::clickLeft(down);
  258. if (!((bool)down))
  259. return;
  260. float dx=((float)(GH.current->motion.x-pos.x))/((float)pos.w),
  261. dy=((float)(GH.current->motion.y-pos.y))/((float)pos.h);
  262. int3 newCPos;
  263. newCPos.x = (CGI->mh->sizes.x*dx);
  264. newCPos.y = (CGI->mh->sizes.y*dy);
  265. newCPos.z = LOCPLINT->adventureInt->position.z;
  266. LOCPLINT->adventureInt->centerOn(newCPos);
  267. }
  268. void CMinimap::hover (bool on)
  269. {
  270. //Hoverable::hover(on);
  271. if (on)
  272. LOCPLINT->adventureInt->statusbar.print(statusbarTxt);
  273. else if (LOCPLINT->adventureInt->statusbar.current==statusbarTxt)
  274. LOCPLINT->adventureInt->statusbar.clear();
  275. }
  276. void CMinimap::mouseMoved (const SDL_MouseMotionEvent & sEvent)
  277. {
  278. if (pressedL)
  279. {
  280. clickLeft(true, true);
  281. }
  282. }
  283. void CMinimap::activate()
  284. {
  285. activateLClick();
  286. activateRClick();
  287. activateHover();
  288. if (pressedL)
  289. activateMouseMove();
  290. }
  291. void CMinimap::deactivate()
  292. {
  293. if (pressedL)
  294. deactivateMouseMove();
  295. deactivateLClick();
  296. deactivateRClick();
  297. deactivateHover();
  298. }
  299. void CMinimap::showTile(const int3 &pos)
  300. {
  301. int3 mapSizes = LOCPLINT->cb->getMapSize();
  302. //drawing terrain
  303. int mw = map[0]->w, mh = map[0]->h;
  304. double wo = ((double)mw)/mapSizes.x, ho = ((double)mh)/mapSizes.y;
  305. for (int ii=0; ii<wo; ii++)
  306. {
  307. for (int jj=0; jj<ho; jj++)
  308. {
  309. if ((pos.x*wo+ii<this->pos.w) && (pos.y*ho+jj<this->pos.h))
  310. CSDL_Ext::SDL_PutPixelWithoutRefresh(FoW[pos.z],pos.x*wo+ii,pos.y*ho+jj,0,0,0,0);
  311. const TerrainTile * tile = LOCPLINT->cb->getTileInfo(pos);
  312. if(tile)
  313. {
  314. if (tile->blocked && (!tile->visitable))
  315. SDL_PutPixelWithoutRefresh(map[pos.z], pos.x*wo+ii, pos.y*ho+jj, colorsBlocked[tile->tertype].r, colorsBlocked[tile->tertype].g, colorsBlocked[tile->tertype].b);
  316. else SDL_PutPixelWithoutRefresh(map[pos.z], pos.x*wo+ii, pos.y*ho+jj, colors[tile->tertype].r, colors[tile->tertype].g, colors[tile->tertype].b);
  317. }
  318. }
  319. }
  320. //drawing flaggable objects
  321. int woShifted = wo, hoShifted = ho; //for better minimap rendering on L-sized maps
  322. std::vector < const CGObjectInstance * > oo = LOCPLINT->cb->getFlaggableObjects(pos);
  323. for(size_t v=0; v<oo.size(); ++v)
  324. {
  325. if(!dynamic_cast< const CGHeroInstance * >(oo[v])) //heroes have been printed
  326. {
  327. int3 maplgp ( (pos.x*mw)/mapSizes.x, (pos.y*mh)/mapSizes.y, pos.z );
  328. if(((int)wo) * mapSizes.x != mw && pos.x+1 < mapSizes.x)//minimap size in X is not multiple of map size in X
  329. {
  330. std::vector < const CGObjectInstance * > op1x = LOCPLINT->cb->getFlaggableObjects(int3(pos.x+1, pos.y, pos.z));
  331. if(op1x.size()!=0)
  332. {
  333. woShifted = wo + 1;
  334. }
  335. else
  336. {
  337. woShifted = wo;
  338. }
  339. }
  340. if(((int)ho) * mapSizes.y != mh && pos.y+1 < mapSizes.y) //minimap size in Y is not multiple of map size in Y
  341. {
  342. std::vector < const CGObjectInstance * > op1y = LOCPLINT->cb->getFlaggableObjects(int3(pos.x, pos.y+1, pos.z));
  343. if(op1y.size()!=0)
  344. {
  345. hoShifted = ho + 1;
  346. }
  347. else
  348. {
  349. hoShifted = ho;
  350. }
  351. }
  352. for (int ii=0; ii<woShifted; ii++) //rendering flaggable objects
  353. {
  354. for (int jj=0; jj<hoShifted; jj++)
  355. {
  356. if(oo[v]->tempOwner == 255)
  357. SDL_PutPixelWithoutRefresh(flObjs[pos.z],maplgp.x+ii,maplgp.y+jj,graphics->neutralColor->b,
  358. graphics->neutralColor->g,graphics->neutralColor->r);
  359. else
  360. SDL_PutPixelWithoutRefresh(flObjs[pos.z],maplgp.x+ii,maplgp.y+jj,graphics->playerColors[oo[v]->getOwner()].b,
  361. graphics->playerColors[oo[v]->getOwner()].g,graphics->playerColors[oo[v]->getOwner()].r);
  362. }
  363. }
  364. }
  365. }
  366. //flaggable objects drawn
  367. }
  368. void CMinimap::showVisibleTiles(int level)
  369. {
  370. int3 mapSizes = LOCPLINT->cb->getMapSize();
  371. for(int d=0; d<CGI->mh->map->twoLevel+1; ++d)
  372. {
  373. if(level>=0 && d!=level)
  374. continue;
  375. for(int x=0; x<mapSizes.x; ++x)
  376. {
  377. for(int y=0; y<mapSizes.y; ++y)
  378. {
  379. if(LOCPLINT->cb->isVisible(int3(x, y, d)))
  380. {
  381. showTile(int3(x, y, d));
  382. }
  383. }
  384. }
  385. }
  386. }
  387. void CMinimap::hideTile(const int3 &pos)
  388. {
  389. }
  390. void CMinimap::show( SDL_Surface * to )
  391. {
  392. }
  393. CTerrainRect::CTerrainRect()
  394. :currentPath(NULL)
  395. {
  396. tilesw=(ADVOPT.advmapW+31)/32;
  397. tilesh=(ADVOPT.advmapH+31)/32;
  398. pos.x=ADVOPT.advmapX;
  399. pos.y=ADVOPT.advmapY;
  400. pos.w=ADVOPT.advmapW;
  401. pos.h=ADVOPT.advmapH;
  402. moveX = moveY = 0;
  403. arrows = CDefHandler::giveDef("ADAG.DEF");
  404. for(size_t y=0; y < arrows->ourImages.size(); ++y)
  405. {
  406. CSDL_Ext::alphaTransform(arrows->ourImages[y].bitmap);
  407. }
  408. }
  409. CTerrainRect::~CTerrainRect()
  410. {
  411. delete arrows;
  412. }
  413. void CTerrainRect::activate()
  414. {
  415. activateLClick();
  416. activateRClick();
  417. activateHover();
  418. activateMouseMove();
  419. };
  420. void CTerrainRect::deactivate()
  421. {
  422. deactivateLClick();
  423. deactivateRClick();
  424. deactivateHover();
  425. deactivateMouseMove();
  426. };
  427. void CTerrainRect::clickLeft(tribool down, bool previousState)
  428. {
  429. if ((down==false) || indeterminate(down))
  430. return;
  431. int3 mp = whichTileIsIt();
  432. if ((mp.x<0) || (mp.y<0))
  433. return;
  434. std::vector < const CGObjectInstance * > bobjs = LOCPLINT->cb->getBlockingObjs(mp), //blocking objects at tile
  435. vobjs = LOCPLINT->cb->getVisitableObjs(mp); //visitable objects
  436. if (LOCPLINT->adventureInt->selection->ID != HEROI_TYPE) //hero is not selected (presumably town)
  437. {
  438. if(currentPath)
  439. {
  440. tlog2<<"Warning: Lost path?" << std::endl;
  441. //delete currentPath;
  442. currentPath = NULL;
  443. }
  444. for(size_t i=0; i < bobjs.size(); ++i)
  445. {
  446. if(bobjs[i]->ID == TOWNI_TYPE && bobjs[i]->getOwner() == LOCPLINT->playerID) //our town clicked
  447. {
  448. if(LOCPLINT->adventureInt->selection == (bobjs[i])) //selected town clicked
  449. LOCPLINT->openTownWindow(static_cast<const CGTownInstance*>(bobjs[i]));
  450. else
  451. LOCPLINT->adventureInt->select(static_cast<const CArmedInstance*>(bobjs[i]));
  452. return;
  453. }
  454. else if(bobjs[i]->ID == HEROI_TYPE && bobjs[i]->tempOwner == LOCPLINT->playerID) //hero clicked - select him
  455. {
  456. LOCPLINT->adventureInt->select(static_cast<const CArmedInstance*>(bobjs[i]));
  457. return;
  458. }
  459. }
  460. }
  461. else //hero is selected
  462. {
  463. bool townEntrance = false; //town entrance tile has been clicked?
  464. const CGHeroInstance * currentHero = static_cast<const CGHeroInstance*>(LOCPLINT->adventureInt->selection);
  465. for(size_t i=0; i < vobjs.size(); ++i)
  466. {
  467. if(vobjs[i]->ID == TOWNI_TYPE)
  468. townEntrance = true;
  469. }
  470. if(!townEntrance) //not entrance - select town or open hero window
  471. {
  472. for(size_t i=0; i < bobjs.size(); ++i)
  473. {
  474. if(bobjs[i]->ID == TOWNI_TYPE && bobjs[i]->tempOwner == LOCPLINT->playerID) //town - switch selection to it
  475. {
  476. LOCPLINT->adventureInt->select(static_cast<const CArmedInstance*>(bobjs[i]));
  477. return;
  478. }
  479. else if(bobjs[i]->ID == HEROI_TYPE //it's a hero
  480. && bobjs[i]->tempOwner == LOCPLINT->playerID //our hero (is this condition needed?)
  481. && currentHero == (bobjs[i]) ) //and selected one
  482. {
  483. LOCPLINT->openHeroWindow(currentHero);
  484. return;
  485. }
  486. }
  487. }
  488. //still here? we need to move hero if we clicked end of already selected path or calculate a new path otherwise
  489. if (currentPath && currentPath->endPos() == mp)//we'll be moving
  490. {
  491. LOCPLINT->pim->unlock();
  492. LOCPLINT->moveHero(currentHero,*currentPath);
  493. LOCPLINT->pim->lock();
  494. }
  495. else if(mp.z == currentHero->pos.z) //remove old path and find a new one if we clicked on the map level on which hero is present
  496. {
  497. int3 bufpos = currentHero->getPosition(false);
  498. CPath &path = LOCPLINT->adventureInt->paths[currentHero];
  499. currentPath = &path;
  500. if(!LOCPLINT->cb->getPath(bufpos, mp, currentHero, path))
  501. {
  502. LOCPLINT->adventureInt->paths.erase(currentHero);
  503. currentPath = NULL;
  504. }
  505. }
  506. } //end of hero is selected "case"
  507. }
  508. void CTerrainRect::clickRight(tribool down, bool previousState)
  509. {
  510. int3 mp = whichTileIsIt();
  511. if ((mp.x<0)
  512. || (mp.y<0)
  513. || down != true
  514. )
  515. {
  516. LOCPLINT->adventureInt->handleRightClick("",down,this);
  517. return;
  518. }
  519. std::vector < const CGObjectInstance * > objs = LOCPLINT->cb->getBlockingObjs(mp);
  520. if(!objs.size())
  521. return;
  522. const CGObjectInstance * obj = objs.front();
  523. switch(obj->ID)
  524. {
  525. case HEROI_TYPE:
  526. {
  527. if(!vstd::contains(graphics->heroWins,obj->subID) || obj->tempOwner != LOCPLINT->playerID)
  528. {
  529. InfoAboutHero iah;
  530. if(LOCPLINT->cb->getHeroInfo(obj, iah))
  531. {
  532. SDL_Surface *iwin = graphics->drawHeroInfoWin(iah);
  533. CInfoPopup * ip = new CInfoPopup(iwin, GH.current->motion.x-iwin->w,
  534. GH.current->motion.y-iwin->h, true);
  535. GH.pushInt(ip);
  536. }
  537. else
  538. {
  539. tlog3 << "Warning - no infowin for hero " << obj->id << std::endl;
  540. }
  541. }
  542. else
  543. {
  544. CInfoPopup * ip = new CInfoPopup(graphics->heroWins[obj->subID],
  545. GH.current->motion.x-graphics->heroWins[obj->subID]->w,
  546. GH.current->motion.y-graphics->heroWins[obj->subID]->h,false
  547. );
  548. GH.pushInt(ip);
  549. }
  550. break;
  551. }
  552. case TOWNI_TYPE:
  553. {
  554. if(!vstd::contains(graphics->townWins,obj->id) || obj->tempOwner != LOCPLINT->playerID)
  555. {
  556. InfoAboutTown iah;
  557. if(LOCPLINT->cb->getTownInfo(obj, iah))
  558. {
  559. SDL_Surface *iwin = graphics->drawTownInfoWin(iah);
  560. CInfoPopup * ip = new CInfoPopup(iwin, GH.current->motion.x-iwin->w,
  561. GH.current->motion.y-iwin->h, true);
  562. GH.pushInt(ip);
  563. }
  564. else
  565. {
  566. tlog3 << "Warning - no infowin for town " << obj->id << std::endl;
  567. }
  568. }
  569. else
  570. {
  571. CInfoPopup * ip = new CInfoPopup(graphics->townWins[obj->id],
  572. GH.current->motion.x-graphics->townWins[obj->id]->w,
  573. GH.current->motion.y-graphics->townWins[obj->id]->h,false
  574. );
  575. GH.pushInt(ip);
  576. }
  577. break;
  578. }
  579. default:
  580. {
  581. LOCPLINT->adventureInt->handleRightClick(obj->getHoverText(),down,this);
  582. break;
  583. }
  584. }
  585. }
  586. void CTerrainRect::mouseMoved (const SDL_MouseMotionEvent & sEvent)
  587. {
  588. int3 pom=LOCPLINT->adventureInt->verifyPos(whichTileIsIt(sEvent.x,sEvent.y));
  589. if (pom!=curHoveredTile)
  590. curHoveredTile=pom;
  591. else
  592. return;
  593. std::vector<std::string> temp = LOCPLINT->cb->getObjDescriptions(pom);
  594. if (temp.size())
  595. {
  596. boost::replace_all(temp.back(),"\n"," ");
  597. LOCPLINT->adventureInt->statusbar.print(temp.back());
  598. }
  599. else
  600. {
  601. LOCPLINT->adventureInt->statusbar.clear();
  602. }
  603. const CGPathNode *pnode = LOCPLINT->cb->getPathInfo(pom);
  604. std::vector<const CGObjectInstance *> objs = LOCPLINT->cb->getBlockingObjs(pom);
  605. const CGObjectInstance *obj = objs.size() ? objs.back() : NULL;
  606. bool accessible = pnode->turns < 255;
  607. int turns = pnode->turns;
  608. amin(turns, 4);
  609. if(LOCPLINT->adventureInt->selection->ID == TOWNI_TYPE)
  610. {
  611. if(obj)
  612. {
  613. if(obj->ID == TOWNI_TYPE)
  614. {
  615. CGI->curh->changeGraphic(0, 3);
  616. }
  617. else if(obj->ID == HEROI_TYPE)
  618. {
  619. CGI->curh->changeGraphic(0, 2);
  620. }
  621. }
  622. else
  623. {
  624. CGI->curh->changeGraphic(0, 0);
  625. }
  626. }
  627. else if(LOCPLINT->adventureInt->selection->ID == HEROI_TYPE)
  628. {
  629. const CGHeroInstance *h = static_cast<const CGHeroInstance *>(LOCPLINT->adventureInt->selection);
  630. if(obj)
  631. {
  632. if(obj->ID == HEROI_TYPE)
  633. {
  634. if(obj->tempOwner != LOCPLINT->playerID) //enemy hero TODO: allies
  635. {
  636. if(accessible)
  637. CGI->curh->changeGraphic(0, 5 + turns*6);
  638. else
  639. CGI->curh->changeGraphic(0, 0);
  640. }
  641. else //our hero
  642. {
  643. if(LOCPLINT->adventureInt->selection == obj)
  644. CGI->curh->changeGraphic(0, 2);
  645. else if(accessible)
  646. CGI->curh->changeGraphic(0, 8 + turns*6);
  647. else
  648. CGI->curh->changeGraphic(0, 2);
  649. }
  650. }
  651. else if(obj->ID == TOWNI_TYPE)
  652. {
  653. if(obj->tempOwner != LOCPLINT->playerID) //enemy town TODO: allies
  654. {
  655. if(accessible)
  656. CGI->curh->changeGraphic(0, 5 + turns*6);
  657. else
  658. CGI->curh->changeGraphic(0, 0);
  659. }
  660. else //our town
  661. {
  662. if(accessible)
  663. CGI->curh->changeGraphic(0, 9 + turns*6);
  664. else
  665. CGI->curh->changeGraphic(0, 3);
  666. }
  667. }
  668. else if(obj->ID == 54) //monster
  669. {
  670. if(accessible)
  671. CGI->curh->changeGraphic(0, 5 + turns*6);
  672. else
  673. CGI->curh->changeGraphic(0, 0);
  674. }
  675. else if(obj->ID == 8) //boat
  676. {
  677. if(accessible)
  678. CGI->curh->changeGraphic(0, 6 + turns*6);
  679. else
  680. CGI->curh->changeGraphic(0, 0);
  681. }
  682. else
  683. {
  684. if(accessible)
  685. {
  686. if(pnode->land)
  687. CGI->curh->changeGraphic(0, 9 + turns*6);
  688. else
  689. CGI->curh->changeGraphic(0, 28 + turns);
  690. }
  691. else
  692. CGI->curh->changeGraphic(0, 0);
  693. }
  694. }
  695. else //no objs
  696. {
  697. if(accessible)
  698. {
  699. if(pnode->land)
  700. {
  701. if(LOCPLINT->cb->getTileInfo(h->getPosition(false))->tertype != TerrainTile::water)
  702. CGI->curh->changeGraphic(0, 4 + turns*6);
  703. else
  704. CGI->curh->changeGraphic(0, 7 + turns*6); //anchor
  705. }
  706. else
  707. CGI->curh->changeGraphic(0, 6 + turns*6);
  708. }
  709. else
  710. CGI->curh->changeGraphic(0, 0);
  711. }
  712. }
  713. //tlog1 << "Tile " << pom << ": Turns=" << (int)pnode->turns <<" Move:=" << pnode->moveRemains <</* " (from " << ")" << */std::endl;
  714. }
  715. void CTerrainRect::hover(bool on)
  716. {
  717. if (!on)
  718. {
  719. LOCPLINT->adventureInt->statusbar.clear();
  720. CGI->curh->changeGraphic(0,0);
  721. }
  722. //Hoverable::hover(on);
  723. }
  724. void CTerrainRect::showPath(const SDL_Rect * extRect)
  725. {
  726. for (size_t i=0; i < currentPath->nodes.size()-1; ++i)
  727. {
  728. int pn=-1;//number of picture
  729. if (i==0) //last tile
  730. {
  731. int x = 32*(currentPath->nodes[i].coord.x-LOCPLINT->adventureInt->position.x)+CGI->mh->offsetX + pos.x,
  732. y = 32*(currentPath->nodes[i].coord.y-LOCPLINT->adventureInt->position.y)+CGI->mh->offsetY + pos.y;
  733. if (x<0 || y<0 || x>pos.w || y>pos.h)
  734. continue;
  735. pn=0;
  736. }
  737. else
  738. {
  739. /*
  740. * notation of arrow direction:
  741. * 1 2 3
  742. * 4 5 6
  743. * 7 8 9
  744. * ie. 157 means an arrow from left upper tile to left bottom tile through 5 (all arrows go through 5 in this notation)
  745. */
  746. std::vector<CPathNode> & cv = currentPath->nodes;
  747. if (cv[i+1].coord.x == cv[i].coord.x-1 && cv[i+1].coord.y == cv[i].coord.y-1) //15x
  748. {
  749. if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y) //156
  750. {
  751. pn = 3;
  752. }
  753. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y+1) //159
  754. {
  755. pn = 12;
  756. }
  757. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y+1) //158
  758. {
  759. pn = 21;
  760. }
  761. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y+1) //157
  762. {
  763. pn = 22;
  764. }
  765. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y-1) //153
  766. {
  767. pn = 2;
  768. }
  769. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y) //154
  770. {
  771. pn = 23;
  772. }
  773. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y-1) //152
  774. {
  775. pn = 1;
  776. }
  777. }
  778. else if (cv[i+1].coord.x == cv[i].coord.x && cv[i+1].coord.y == cv[i].coord.y-1) //25x
  779. {
  780. if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y-1) //253
  781. {
  782. pn = 2;
  783. }
  784. if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y) //256
  785. {
  786. pn = 3;
  787. }
  788. if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y+1) //259
  789. {
  790. pn = 4;
  791. }
  792. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y+1) //258
  793. {
  794. pn = 13;
  795. }
  796. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y+1) //257
  797. {
  798. pn = 22;
  799. }
  800. if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y) //254
  801. {
  802. pn = 23;
  803. }
  804. if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y-1) //251
  805. {
  806. pn = 24;
  807. }
  808. }
  809. else if (cv[i+1].coord.x == cv[i].coord.x+1 && cv[i+1].coord.y == cv[i].coord.y-1) //35x
  810. {
  811. if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y+1) //358
  812. {
  813. pn = 5;
  814. }
  815. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y+1) //357
  816. {
  817. pn = 14;
  818. }
  819. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y) //354
  820. {
  821. pn = 23;
  822. }
  823. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y-1) //351
  824. {
  825. pn = 24;
  826. }
  827. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y+1) //359
  828. {
  829. pn = 4;
  830. }
  831. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y) //356
  832. {
  833. pn = 3;
  834. }
  835. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y-1) //352
  836. {
  837. pn = 17;
  838. }
  839. }
  840. else if (cv[i+1].coord.x == cv[i].coord.x+1 && cv[i+1].coord.y == cv[i].coord.y) //65x
  841. {
  842. if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y+1) //657
  843. {
  844. pn = 6;
  845. }
  846. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y) //654
  847. {
  848. pn = 15;
  849. }
  850. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y-1) //651
  851. {
  852. pn = 24;
  853. }
  854. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y-1) //652
  855. {
  856. pn = 17;
  857. }
  858. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y+1) //658
  859. {
  860. pn = 5;
  861. }
  862. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y-1) //653
  863. {
  864. pn = 18;
  865. }
  866. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y+1) //659
  867. {
  868. pn = 4;
  869. }
  870. }
  871. else if (cv[i+1].coord.x == cv[i].coord.x+1 && cv[i+1].coord.y == cv[i].coord.y+1) //95x
  872. {
  873. if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y) //954
  874. {
  875. pn = 7;
  876. }
  877. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y-1) //951
  878. {
  879. pn = 16;
  880. }
  881. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y-1) //952
  882. {
  883. pn = 17;
  884. }
  885. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y+1) //957
  886. {
  887. pn = 6;
  888. }
  889. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y-1) //953
  890. {
  891. pn = 18;
  892. }
  893. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y) //956
  894. {
  895. pn = 19;
  896. }
  897. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y+1) //958
  898. {
  899. pn = 5;
  900. }
  901. }
  902. else if (cv[i+1].coord.x == cv[i].coord.x && cv[i+1].coord.y == cv[i].coord.y+1) //85x
  903. {
  904. if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y+1) //857
  905. {
  906. pn = 6;
  907. }
  908. if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y) //854
  909. {
  910. pn = 7;
  911. }
  912. if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y-1) //851
  913. {
  914. pn = 8;
  915. }
  916. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y-1) //852
  917. {
  918. pn = 9;
  919. }
  920. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y-1) //853
  921. {
  922. pn = 18;
  923. }
  924. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y) //856
  925. {
  926. pn = 19;
  927. }
  928. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y+1) //859
  929. {
  930. pn = 20;
  931. }
  932. }
  933. else if (cv[i+1].coord.x == cv[i].coord.x-1 && cv[i+1].coord.y == cv[i].coord.y+1) //75x
  934. {
  935. if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y-1) //752
  936. {
  937. pn = 1;
  938. }
  939. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y-1) //753
  940. {
  941. pn = 10;
  942. }
  943. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y) //756
  944. {
  945. pn = 19;
  946. }
  947. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y-1) //751
  948. {
  949. pn = 8;
  950. }
  951. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y+1) //759
  952. {
  953. pn = 20;
  954. }
  955. }
  956. else if (cv[i+1].coord.x == cv[i].coord.x-1 && cv[i+1].coord.y == cv[i].coord.y) //45x
  957. {
  958. if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y-1) //453
  959. {
  960. pn = 2;
  961. }
  962. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y) //456
  963. {
  964. pn = 11;
  965. }
  966. else if(cv[i-1].coord.x == cv[i].coord.x+1 && cv[i-1].coord.y == cv[i].coord.y+1) //459
  967. {
  968. pn = 20;
  969. }
  970. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y-1) //452
  971. {
  972. pn = 1;
  973. }
  974. else if(cv[i-1].coord.x == cv[i].coord.x && cv[i-1].coord.y == cv[i].coord.y+1) //456
  975. {
  976. pn = 21;
  977. }
  978. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y-1) //451
  979. {
  980. pn = 8;
  981. }
  982. else if(cv[i-1].coord.x == cv[i].coord.x-1 && cv[i-1].coord.y == cv[i].coord.y+1) //457
  983. {
  984. pn = 22;
  985. }
  986. }
  987. }
  988. if ( ((currentPath->nodes[i].dist)-(*(currentPath->nodes.end()-1)).dist) > (static_cast<const CGHeroInstance*>(LOCPLINT->adventureInt->selection))->movement)
  989. pn+=25;
  990. if (pn>=0)
  991. {
  992. int x = 32*(currentPath->nodes[i].coord.x-LOCPLINT->adventureInt->position.x)+CGI->mh->offsetX + pos.x,
  993. y = 32*(currentPath->nodes[i].coord.y-LOCPLINT->adventureInt->position.y)+CGI->mh->offsetY + pos.y;
  994. if (x<0 || y<0 || x>pos.w || y>pos.h)
  995. continue;
  996. int hvx = (x+arrows->ourImages[pn].bitmap->w)-(pos.x+pos.w),
  997. hvy = (y+arrows->ourImages[pn].bitmap->h)-(pos.y+pos.h);
  998. SDL_Rect prevClip;
  999. SDL_GetClipRect(screen, &prevClip);
  1000. SDL_SetClipRect(screen, extRect); //preventing blitting outside of that rect
  1001. if(ADVOPT.smoothMove) //version for smooth hero move, with pos shifts
  1002. {
  1003. if (hvx<0 && hvy<0)
  1004. {
  1005. CSDL_Ext::blit8bppAlphaTo24bpp(arrows->ourImages[pn].bitmap, NULL, screen, &genRect(32, 32, x + moveX, y + moveY));
  1006. }
  1007. else if(hvx<0)
  1008. {
  1009. CSDL_Ext::blit8bppAlphaTo24bpp
  1010. (arrows->ourImages[pn].bitmap,&genRect(arrows->ourImages[pn].bitmap->h-hvy, arrows->ourImages[pn].bitmap->w, 0, 0),
  1011. screen, &genRect(arrows->ourImages[pn].bitmap->h-hvy, arrows->ourImages[pn].bitmap->w, x + moveX, y + moveY));
  1012. }
  1013. else if (hvy<0)
  1014. {
  1015. CSDL_Ext::blit8bppAlphaTo24bpp
  1016. (arrows->ourImages[pn].bitmap,&genRect(arrows->ourImages[pn].bitmap->h, arrows->ourImages[pn].bitmap->w-hvx, 0, 0),
  1017. screen, &genRect(arrows->ourImages[pn].bitmap->h, arrows->ourImages[pn].bitmap->w-hvx, x + moveX, y + moveY));
  1018. }
  1019. else
  1020. {
  1021. CSDL_Ext::blit8bppAlphaTo24bpp
  1022. (arrows->ourImages[pn].bitmap, &genRect(arrows->ourImages[pn].bitmap->h-hvy,arrows->ourImages[pn].bitmap->w-hvx, 0, 0),
  1023. screen, &genRect(arrows->ourImages[pn].bitmap->h-hvy, arrows->ourImages[pn].bitmap->w-hvx, x + moveX, y + moveY));
  1024. }
  1025. }
  1026. else //standard version
  1027. {
  1028. if (hvx<0 && hvy<0)
  1029. {
  1030. CSDL_Ext::blit8bppAlphaTo24bpp(arrows->ourImages[pn].bitmap, NULL, screen, &genRect(32, 32, x, y));
  1031. }
  1032. else if(hvx<0)
  1033. {
  1034. CSDL_Ext::blit8bppAlphaTo24bpp
  1035. (arrows->ourImages[pn].bitmap,&genRect(arrows->ourImages[pn].bitmap->h-hvy, arrows->ourImages[pn].bitmap->w, 0, 0),
  1036. screen, &genRect(arrows->ourImages[pn].bitmap->h-hvy, arrows->ourImages[pn].bitmap->w, x, y));
  1037. }
  1038. else if (hvy<0)
  1039. {
  1040. CSDL_Ext::blit8bppAlphaTo24bpp
  1041. (arrows->ourImages[pn].bitmap,&genRect(arrows->ourImages[pn].bitmap->h, arrows->ourImages[pn].bitmap->w-hvx, 0, 0),
  1042. screen, &genRect(arrows->ourImages[pn].bitmap->h, arrows->ourImages[pn].bitmap->w-hvx, x, y));
  1043. }
  1044. else
  1045. {
  1046. CSDL_Ext::blit8bppAlphaTo24bpp
  1047. (arrows->ourImages[pn].bitmap, &genRect(arrows->ourImages[pn].bitmap->h-hvy,arrows->ourImages[pn].bitmap->w-hvx, 0, 0),
  1048. screen, &genRect(arrows->ourImages[pn].bitmap->h-hvy, arrows->ourImages[pn].bitmap->w-hvx, x, y));
  1049. }
  1050. }
  1051. SDL_SetClipRect(screen, &prevClip);
  1052. }
  1053. } //for (int i=0;i<currentPath->nodes.size()-1;i++)
  1054. }
  1055. void CTerrainRect::show(SDL_Surface * to)
  1056. {
  1057. if(ADVOPT.smoothMove)
  1058. CGI->mh->terrainRect
  1059. (LOCPLINT->adventureInt->position, LOCPLINT->adventureInt->anim,
  1060. &LOCPLINT->cb->getVisibilityMap(), true, LOCPLINT->adventureInt->heroAnim,
  1061. to, &pos, moveX, moveY);
  1062. else
  1063. CGI->mh->terrainRect
  1064. (LOCPLINT->adventureInt->position, LOCPLINT->adventureInt->anim,
  1065. &LOCPLINT->cb->getVisibilityMap(), true, LOCPLINT->adventureInt->heroAnim,
  1066. to, &pos, 0, 0);
  1067. //SDL_BlitSurface(teren,&genRect(pos.h,pos.w,0,0),screen,&genRect(547,594,7,6));
  1068. //SDL_FreeSurface(teren);
  1069. if (currentPath && LOCPLINT->adventureInt->position.z==currentPath->startPos().z) //drawing path
  1070. {
  1071. showPath(&pos);
  1072. }
  1073. }
  1074. int3 CTerrainRect::whichTileIsIt(const int & x, const int & y)
  1075. {
  1076. int3 ret;
  1077. ret.x = LOCPLINT->adventureInt->position.x + ((GH.current->motion.x-CGI->mh->offsetX-pos.x)/32);
  1078. ret.y = LOCPLINT->adventureInt->position.y + ((GH.current->motion.y-CGI->mh->offsetY-pos.y)/32);
  1079. ret.z = LOCPLINT->adventureInt->position.z;
  1080. return ret;
  1081. }
  1082. int3 CTerrainRect::whichTileIsIt()
  1083. {
  1084. return whichTileIsIt(GH.current->motion.x,GH.current->motion.y);
  1085. }
  1086. void CResDataBar::clickRight(tribool down, bool previousState)
  1087. {
  1088. }
  1089. void CResDataBar::activate()
  1090. {
  1091. activateRClick();
  1092. }
  1093. void CResDataBar::deactivate()
  1094. {
  1095. deactivateRClick();
  1096. }
  1097. CResDataBar::CResDataBar(const std::string &defname, int x, int y, int offx, int offy, int resdist, int datedist)
  1098. {
  1099. bg = BitmapHandler::loadBitmap(defname);
  1100. SDL_SetColorKey(bg,SDL_SRCCOLORKEY,SDL_MapRGB(bg->format,0,255,255));
  1101. graphics->blueToPlayersAdv(bg,LOCPLINT->playerID);
  1102. pos = genRect(bg->h,bg->w,x,y);
  1103. txtpos.resize(8);
  1104. for (int i = 0; i < 8 ; i++)
  1105. {
  1106. txtpos[i].first = pos.x + offx + resdist*i;
  1107. txtpos[i].second = pos.y + offy;
  1108. }
  1109. txtpos[7].first = txtpos[6].first + datedist;
  1110. datetext = CGI->generaltexth->allTexts[62]+": %s, " + CGI->generaltexth->allTexts[63]
  1111. + ": %s, " + CGI->generaltexth->allTexts[64] + ": %s";
  1112. }
  1113. CResDataBar::CResDataBar()
  1114. {
  1115. bg = BitmapHandler::loadBitmap(ADVOPT.resdatabarG);
  1116. SDL_SetColorKey(bg,SDL_SRCCOLORKEY,SDL_MapRGB(bg->format,0,255,255));
  1117. graphics->blueToPlayersAdv(bg,LOCPLINT->playerID);
  1118. pos = genRect(bg->h,bg->w,ADVOPT.resdatabarX,ADVOPT.resdatabarY);
  1119. txtpos.resize(8);
  1120. for (int i = 0; i < 8 ; i++)
  1121. {
  1122. txtpos[i].first = pos.x + ADVOPT.resOffsetX + ADVOPT.resDist*i;
  1123. txtpos[i].second = pos.y + ADVOPT.resOffsetY;
  1124. }
  1125. txtpos[7].first = txtpos[6].first + ADVOPT.resDateDist;
  1126. datetext = CGI->generaltexth->allTexts[62]+": %s, " + CGI->generaltexth->allTexts[63]
  1127. + ": %s, " + CGI->generaltexth->allTexts[64] + ": %s";
  1128. }
  1129. CResDataBar::~CResDataBar()
  1130. {
  1131. SDL_FreeSurface(bg);
  1132. }
  1133. void CResDataBar::draw(SDL_Surface * to)
  1134. {
  1135. blitAt(bg,pos.x,pos.y,to);
  1136. char * buf = new char[15];
  1137. for (int i=0;i<7;i++)
  1138. {
  1139. SDL_itoa(LOCPLINT->cb->getResourceAmount(i),buf,10);
  1140. printAt(buf,txtpos[i].first,txtpos[i].second,GEOR13,zwykly,to);
  1141. }
  1142. std::vector<std::string> temp;
  1143. SDL_itoa(LOCPLINT->cb->getDate(3),buf,10); temp+=std::string(buf);
  1144. SDL_itoa(LOCPLINT->cb->getDate(2),buf,10); temp+=std::string(buf);
  1145. SDL_itoa(LOCPLINT->cb->getDate(1),buf,10); temp+=std::string(buf);
  1146. printAt(processStr(datetext,temp),txtpos[7].first,txtpos[7].second,GEOR13,zwykly,to);
  1147. temp.clear();
  1148. //updateRect(&pos,screen);
  1149. delete[] buf;
  1150. }
  1151. void CResDataBar::show( SDL_Surface * to )
  1152. {
  1153. }
  1154. CInfoBar::CInfoBar()
  1155. {
  1156. toNextTick = mode = pom = -1;
  1157. pos.x=ADVOPT.infoboxX;
  1158. pos.y=ADVOPT.infoboxY;
  1159. pos.w=194;
  1160. pos.h=186;
  1161. day = CDefHandler::giveDef("NEWDAY.DEF");
  1162. week1 = CDefHandler::giveDef("NEWWEEK1.DEF");
  1163. week2 = CDefHandler::giveDef("NEWWEEK2.DEF");
  1164. week3 = CDefHandler::giveDef("NEWWEEK3.DEF");
  1165. week4 = CDefHandler::giveDef("NEWWEEK4.DEF");
  1166. }
  1167. CInfoBar::~CInfoBar()
  1168. {
  1169. delete day;
  1170. delete week1;
  1171. delete week2;
  1172. delete week3;
  1173. delete week4;
  1174. }
  1175. void CInfoBar::draw(SDL_Surface * to, const CGObjectInstance * specific)
  1176. {
  1177. if ((mode>=0) && mode<5)
  1178. {
  1179. blitAnim(mode);
  1180. return;
  1181. }
  1182. else if (mode==5)
  1183. {
  1184. mode = -1;
  1185. draw(to,LOCPLINT->adventureInt->selection);
  1186. }
  1187. if (!specific)
  1188. specific = LOCPLINT->adventureInt->selection;
  1189. if(!specific)
  1190. return;
  1191. if(specific->ID == HEROI_TYPE) //hero
  1192. {
  1193. if(graphics->heroWins.find(specific->subID)!=graphics->heroWins.end())
  1194. blitAt(graphics->heroWins[specific->subID],pos.x,pos.y,to);
  1195. }
  1196. else if (specific->ID == TOWNI_TYPE)
  1197. {
  1198. const CGTownInstance * t = static_cast<const CGTownInstance*>(specific);
  1199. if(graphics->townWins.find(t->id)!=graphics->townWins.end())
  1200. blitAt(graphics->townWins[t->id],pos.x,pos.y,to);
  1201. }
  1202. }
  1203. CDefHandler * CInfoBar::getAnim(int mode)
  1204. {
  1205. switch(mode)
  1206. {
  1207. case 0:
  1208. return day;
  1209. break;
  1210. case 1:
  1211. return week1;
  1212. break;
  1213. case 2:
  1214. return week2;
  1215. break;
  1216. case 3:
  1217. return week3;
  1218. break;
  1219. case 4:
  1220. return week4;
  1221. break;
  1222. default:
  1223. return NULL;
  1224. break;
  1225. }
  1226. }
  1227. void CInfoBar::blitAnim(int mode)//0 - day, 1 - week
  1228. {
  1229. CDefHandler * anim = NULL;
  1230. std::ostringstream txt;
  1231. anim = getAnim(mode);
  1232. if(mode) //new week animation
  1233. {
  1234. txt << CGI->generaltexth->allTexts[63] << " " << LOCPLINT->cb->getDate(2);
  1235. }
  1236. else //new day
  1237. {
  1238. txt << CGI->generaltexth->allTexts[64] << " " << LOCPLINT->cb->getDate(1);
  1239. }
  1240. blitAt(anim->ourImages[pom].bitmap,pos.x+9,pos.y+10);
  1241. printAtMiddle(txt.str(),pos.x+95,pos.y+31,TNRB16,zwykly);
  1242. if (pom == anim->ourImages.size()-1)
  1243. toNextTick+=750;
  1244. }
  1245. void CInfoBar::newDay(int Day)
  1246. {
  1247. if(LOCPLINT->cb->getDate(1) != 1)
  1248. {
  1249. mode = 0; //showing day
  1250. }
  1251. else
  1252. {
  1253. switch(LOCPLINT->cb->getDate(2))
  1254. {
  1255. case 1:
  1256. mode = 1;
  1257. break;
  1258. case 2:
  1259. mode = 2;
  1260. break;
  1261. case 3:
  1262. mode = 3;
  1263. break;
  1264. case 4:
  1265. mode = 4;
  1266. break;
  1267. default:
  1268. mode = -1;
  1269. break;
  1270. }
  1271. }
  1272. pom = 0;
  1273. activateTimer();
  1274. toNextTick = 500;
  1275. blitAnim(mode);
  1276. //blitAt(day->ourImages[pom].bitmap,pos.x+10,pos.y+10);
  1277. }
  1278. void CInfoBar::showComp(SComponent * comp, int time)
  1279. {
  1280. SDL_Surface * b = BitmapHandler::loadBitmap("ADSTATOT.bmp");
  1281. blitAt(b,pos.x+8,pos.y+11);
  1282. blitAt(comp->getImg(),pos.x+52,pos.y+54);
  1283. printAtMiddle(comp->subtitle,pos.x+91,pos.y+158,GEOR13,zwykly);
  1284. printAtMiddleWB(comp->description,pos.x+94,pos.y+31,GEOR13,26,zwykly);
  1285. SDL_FreeSurface(b);
  1286. activateTimer();
  1287. mode = 6;
  1288. toNextTick = time;
  1289. }
  1290. void CInfoBar::tick()
  1291. {
  1292. if((mode >= 0) && (mode < 5))
  1293. {
  1294. pom++;
  1295. if (pom >= getAnim(mode)->ourImages.size())
  1296. {
  1297. deactivateTimer();
  1298. toNextTick = -1;
  1299. mode = 5;
  1300. draw(screen2);
  1301. return;
  1302. }
  1303. toNextTick = 150;
  1304. blitAnim(mode);
  1305. }
  1306. else if (mode == 6)
  1307. {
  1308. deactivateTimer();
  1309. toNextTick = -1;
  1310. mode = 5;
  1311. draw(screen2);
  1312. }
  1313. }
  1314. void CInfoBar::show( SDL_Surface * to )
  1315. {
  1316. }
  1317. CAdvMapInt::CAdvMapInt(int Player)
  1318. :player(Player),
  1319. statusbar(ADVOPT.statusbarX,ADVOPT.statusbarY,ADVOPT.statusbarG),
  1320. kingOverview(CGI->generaltexth->zelp[293].first,CGI->generaltexth->zelp[293].second,
  1321. boost::bind(&CAdvMapInt::fshowOverview,this),&ADVOPT.kingOverview, SDLK_k),
  1322. underground(CGI->generaltexth->zelp[294].first,CGI->generaltexth->zelp[294].second,
  1323. boost::bind(&CAdvMapInt::fswitchLevel,this),&ADVOPT.underground, SDLK_u),
  1324. questlog(CGI->generaltexth->zelp[295].first,CGI->generaltexth->zelp[295].second,
  1325. boost::bind(&CAdvMapInt::fshowQuestlog,this),&ADVOPT.questlog, SDLK_q),
  1326. sleepWake(CGI->generaltexth->zelp[296].first,CGI->generaltexth->zelp[296].second,
  1327. boost::bind(&CAdvMapInt::fsleepWake,this), &ADVOPT.sleepWake, SDLK_w),
  1328. moveHero(CGI->generaltexth->zelp[297].first,CGI->generaltexth->zelp[297].second,
  1329. boost::bind(&CAdvMapInt::fmoveHero,this), &ADVOPT.moveHero, SDLK_m),
  1330. spellbook(CGI->generaltexth->zelp[298].first,CGI->generaltexth->zelp[298].second,
  1331. boost::bind(&CAdvMapInt::fshowSpellbok,this), &ADVOPT.spellbook, SDLK_c),
  1332. advOptions(CGI->generaltexth->zelp[299].first,CGI->generaltexth->zelp[299].second,
  1333. boost::bind(&CAdvMapInt::fadventureOPtions,this), &ADVOPT.advOptions, SDLK_a),
  1334. sysOptions(CGI->generaltexth->zelp[300].first,CGI->generaltexth->zelp[300].second,
  1335. boost::bind(&CAdvMapInt::fsystemOptions,this), &ADVOPT.sysOptions, SDLK_o),
  1336. nextHero(CGI->generaltexth->zelp[301].first,CGI->generaltexth->zelp[301].second,
  1337. boost::bind(&CAdvMapInt::fnextHero,this), &ADVOPT.nextHero, SDLK_h),
  1338. endTurn(CGI->generaltexth->zelp[302].first,CGI->generaltexth->zelp[302].second,
  1339. boost::bind(&CAdvMapInt::fendTurn,this), &ADVOPT.endTurn, SDLK_e),
  1340. heroList(ADVOPT.hlistSize),
  1341. townList(ADVOPT.tlistSize,ADVOPT.tlistX,ADVOPT.tlistY,ADVOPT.tlistAU,ADVOPT.tlistAD)//(5,&genRect(192,48,747,196),747,196,747,372),
  1342. {
  1343. pos.x = pos.y = 0;
  1344. pos.w = screen->w;
  1345. pos.h = screen->h;
  1346. active = 0;
  1347. selection = NULL;
  1348. townList.fun = boost::bind(&CAdvMapInt::selectionChanged,this);
  1349. LOCPLINT->adventureInt=this;
  1350. bg = BitmapHandler::loadBitmap(ADVOPT.mainGraphic);
  1351. graphics->blueToPlayersAdv(bg,player);
  1352. scrollingDir = 0;
  1353. updateScreen = false;
  1354. anim=0;
  1355. animValHitCount=0; //animation frame
  1356. heroAnim=0;
  1357. heroAnimValHitCount=0; // hero animation frame
  1358. heroList.init();
  1359. heroList.genList();
  1360. //townList.init();
  1361. townList.genList();
  1362. heroWindow = new CHeroWindow(this->player);
  1363. gems.push_back(CDefHandler::giveDef(ADVOPT.gemG[0]));
  1364. gems.push_back(CDefHandler::giveDef(ADVOPT.gemG[1]));
  1365. gems.push_back(CDefHandler::giveDef(ADVOPT.gemG[2]));
  1366. gems.push_back(CDefHandler::giveDef(ADVOPT.gemG[3]));
  1367. }
  1368. CAdvMapInt::~CAdvMapInt()
  1369. {
  1370. SDL_FreeSurface(bg);
  1371. delete heroWindow;
  1372. for(int i=0; i<gems.size(); i++)
  1373. delete gems[i];
  1374. }
  1375. void CAdvMapInt::fshowOverview()
  1376. {
  1377. }
  1378. void CAdvMapInt::fswitchLevel()
  1379. {
  1380. if(!CGI->mh->map->twoLevel)
  1381. return;
  1382. if (position.z)
  1383. {
  1384. position.z--;
  1385. underground.curimg=0;
  1386. underground.show(screenBuf);
  1387. }
  1388. else
  1389. {
  1390. underground.curimg=1;
  1391. position.z++;
  1392. underground.show(screenBuf);
  1393. }
  1394. updateScreen = true;
  1395. minimap.draw(screenBuf);
  1396. }
  1397. void CAdvMapInt::fshowQuestlog()
  1398. {
  1399. }
  1400. void CAdvMapInt::fsleepWake()
  1401. {
  1402. }
  1403. void CAdvMapInt::fmoveHero()
  1404. {
  1405. if (selection->ID!=HEROI_TYPE)
  1406. return;
  1407. if (!terrain.currentPath)
  1408. return;
  1409. LOCPLINT->pim->unlock();
  1410. LOCPLINT->moveHero(static_cast<const CGHeroInstance*>(LOCPLINT->adventureInt->selection),*terrain.currentPath);
  1411. LOCPLINT->pim->lock();
  1412. }
  1413. void CAdvMapInt::fshowSpellbok()
  1414. {
  1415. if (selection->ID!=HEROI_TYPE) //checking necessary values
  1416. return;
  1417. CSpellWindow * spellWindow = new CSpellWindow(genRect(595, 620, (conf.cc.resx - 620)/2, (conf.cc.resy - 595)/2), (static_cast<const CGHeroInstance*>(LOCPLINT->adventureInt->selection)), false);
  1418. GH.pushInt(spellWindow);
  1419. }
  1420. void CAdvMapInt::fadventureOPtions()
  1421. {
  1422. GH.pushInt(new CAdventureOptions);
  1423. }
  1424. void CAdvMapInt::fsystemOptions()
  1425. {
  1426. CSystemOptionsWindow * sysopWindow = new CSystemOptionsWindow(genRect(487, 481, 159, 57), LOCPLINT);
  1427. GH.pushInt(sysopWindow);
  1428. }
  1429. void CAdvMapInt::fnextHero()
  1430. {
  1431. if(!LOCPLINT->wanderingHeroes.size()) //no wandering heroes
  1432. return;
  1433. int start = heroList.selected;
  1434. int i = start;
  1435. do
  1436. {
  1437. i++;
  1438. if(i >= LOCPLINT->wanderingHeroes.size())
  1439. i = 0;
  1440. } while (!LOCPLINT->wanderingHeroes[i]->movement && i!=start);
  1441. heroList.select(i);
  1442. }
  1443. void CAdvMapInt::fendTurn()
  1444. {
  1445. LOCPLINT->makingTurn = false;
  1446. }
  1447. void CAdvMapInt::activate()
  1448. {
  1449. if(active++)
  1450. {
  1451. tlog1 << "Error: advmapint already active...\n";
  1452. active--;
  1453. return;
  1454. }
  1455. screenBuf = screen;
  1456. LOCPLINT->statusbar = &statusbar;
  1457. activateMouseMove();
  1458. kingOverview.activate();
  1459. underground.activate();
  1460. questlog.activate();
  1461. sleepWake.activate();
  1462. moveHero.activate();
  1463. spellbook.activate();
  1464. sysOptions.activate();
  1465. advOptions.activate();
  1466. nextHero.activate();
  1467. endTurn.activate();
  1468. minimap.activate();
  1469. heroList.activate();
  1470. townList.activate();
  1471. terrain.activate();
  1472. LOCPLINT->cingconsole->activate();
  1473. }
  1474. void CAdvMapInt::deactivate()
  1475. {
  1476. deactivateMouseMove();
  1477. scrollingDir = 0;
  1478. CGI->curh->changeGraphic(0,0);
  1479. kingOverview.deactivate();
  1480. underground.deactivate();
  1481. questlog.deactivate();
  1482. sleepWake.deactivate();
  1483. moveHero.deactivate();
  1484. spellbook.deactivate();
  1485. advOptions.deactivate();
  1486. sysOptions.deactivate();
  1487. nextHero.deactivate();
  1488. endTurn.deactivate();
  1489. minimap.deactivate();
  1490. heroList.deactivate();
  1491. townList.deactivate();
  1492. terrain.deactivate();
  1493. if(std::find(GH.timeinterested.begin(),GH.timeinterested.end(),&infoBar)!=GH.timeinterested.end())
  1494. GH.timeinterested.erase(std::find(GH.timeinterested.begin(),GH.timeinterested.end(),&infoBar));
  1495. infoBar.mode=-1;
  1496. LOCPLINT->cingconsole->deactivate();
  1497. if(--active)
  1498. {
  1499. tlog1 << "Error: advmapint still active...\n";
  1500. deactivate();
  1501. }
  1502. }
  1503. void CAdvMapInt::showAll(SDL_Surface *to)
  1504. {
  1505. blitAt(bg,0,0,to);
  1506. kingOverview.show(to);
  1507. underground.show(to);
  1508. questlog.show(to);
  1509. sleepWake.show(to);
  1510. moveHero.show(to);
  1511. spellbook.show(to);
  1512. advOptions.show(to);
  1513. sysOptions.show(to);
  1514. nextHero.show(to);
  1515. endTurn.show(to);
  1516. minimap.draw(to);
  1517. heroList.draw(to);
  1518. townList.draw(to);
  1519. updateScreen = true;
  1520. show(to);
  1521. resdatabar.draw(to);
  1522. statusbar.show(to);
  1523. infoBar.draw(to);
  1524. LOCPLINT->cingconsole->show(to);
  1525. }
  1526. void CAdvMapInt::show(SDL_Surface *to)
  1527. {
  1528. ++animValHitCount; //for animations
  1529. if(animValHitCount == 8)
  1530. {
  1531. CGI->mh->updateWater();
  1532. animValHitCount = 0;
  1533. ++anim;
  1534. updateScreen = true;
  1535. }
  1536. ++heroAnim;
  1537. //if advmap needs updating AND (no dialog is shown OR ctrl is pressed)
  1538. if((animValHitCount % (4/LOCPLINT->sysOpts.mapScrollingSpeed)) == 0
  1539. &&
  1540. (GH.topInt() == this)
  1541. || SDL_GetKeyState(NULL)[SDLK_LCTRL]
  1542. || SDL_GetKeyState(NULL)[SDLK_RCTRL]
  1543. )
  1544. {
  1545. if( (scrollingDir & LEFT) && (position.x>-CGI->mh->frameW) )
  1546. position.x--;
  1547. if( (scrollingDir & RIGHT) && (position.x < CGI->mh->map->width - CGI->mh->tilesW + CGI->mh->frameW) )
  1548. position.x++;
  1549. if( (scrollingDir & UP) && (position.y>-CGI->mh->frameH) )
  1550. position.y--;
  1551. if( (scrollingDir & DOWN) && (position.y < CGI->mh->map->height - CGI->mh->tilesH + CGI->mh->frameH) )
  1552. position.y++;
  1553. if(scrollingDir)
  1554. {
  1555. updateScreen = true;
  1556. updateMinimap=true;
  1557. }
  1558. }
  1559. if(updateScreen)
  1560. {
  1561. terrain.show(to);
  1562. for(int i=0;i<4;i++)
  1563. blitAt(gems[i]->ourImages[LOCPLINT->playerID].bitmap,ADVOPT.gemX[i],ADVOPT.gemY[i],to);
  1564. updateScreen=false;
  1565. LOCPLINT->cingconsole->show(to);
  1566. }
  1567. if (updateMinimap)
  1568. {
  1569. minimap.draw(to);
  1570. updateMinimap=false;
  1571. }
  1572. }
  1573. void CAdvMapInt::selectionChanged()
  1574. {
  1575. const CGTownInstance *to = townList.items[townList.selected];
  1576. select(to);
  1577. }
  1578. void CAdvMapInt::centerOn(int3 on)
  1579. {
  1580. // TODO:convertPosition should not belong to CGHeroInstance, and it
  1581. // should be split in 2 methods.
  1582. on = CGHeroInstance::convertPosition(on, false);
  1583. on.x -= CGI->mh->frameW;
  1584. on.y -= CGI->mh->frameH;
  1585. on = LOCPLINT->repairScreenPos(on);
  1586. LOCPLINT->adventureInt->position = on;
  1587. LOCPLINT->adventureInt->updateScreen=true;
  1588. updateMinimap=true;
  1589. }
  1590. void CAdvMapInt::keyPressed(const SDL_KeyboardEvent & key)
  1591. {
  1592. ui8 Dir;
  1593. switch(key.keysym.sym)
  1594. {
  1595. case SDLK_i:
  1596. if(active)
  1597. CAdventureOptions::showScenarioInfo();
  1598. return;
  1599. case SDLK_s:
  1600. if(active)
  1601. GH.pushInt(new CSelectionScreen(saveGame));
  1602. return;
  1603. case SDLK_UP:
  1604. Dir = UP;
  1605. break;
  1606. case SDLK_LEFT:
  1607. Dir = LEFT;
  1608. break;
  1609. case SDLK_RIGHT:
  1610. Dir = RIGHT;
  1611. break;
  1612. case SDLK_DOWN:
  1613. Dir = DOWN;
  1614. break;
  1615. case SDLK_SPACE: //space - try to revisit current object with selected hero
  1616. {
  1617. if(!active)
  1618. return;
  1619. const CGHeroInstance *h = dynamic_cast<const CGHeroInstance*>(selection);
  1620. if(h && key.state == SDL_PRESSED)
  1621. {
  1622. LOCPLINT->pim->unlock();
  1623. LOCPLINT->cb->moveHero(h,h->pos);
  1624. LOCPLINT->pim->lock();
  1625. }
  1626. }
  1627. return;
  1628. case SDLK_RETURN:
  1629. {
  1630. if(!active || !selection || key.state != SDL_PRESSED)
  1631. return;
  1632. if(selection->ID == HEROI_TYPE)
  1633. LOCPLINT->openHeroWindow(static_cast<const CGHeroInstance*>(selection));
  1634. else if(selection->ID == TOWNI_TYPE)
  1635. LOCPLINT->openTownWindow(static_cast<const CGTownInstance*>(selection));
  1636. return;
  1637. }
  1638. case SDLK_t:
  1639. {
  1640. //act on key down if marketplace windows is not already opened
  1641. if(key.state != SDL_PRESSED || GH.topInt()->type & BLOCK_ADV_HOTKEYS) return;
  1642. //check if we have aby marketplace
  1643. std::vector<const CGTownInstance*> towns = LOCPLINT->cb->getTownsInfo();
  1644. size_t i = 0;
  1645. for(; i<towns.size(); i++)
  1646. if(vstd::contains(towns[i]->builtBuildings, 14))
  1647. break;
  1648. if(i != towns.size()) //if any town has marketplace, open window
  1649. GH.pushInt(new CMarketplaceWindow);
  1650. else //if not - complain
  1651. LOCPLINT->showInfoDialog("No available marketplace!", std::vector<SComponent*>(), soundBase::sound_todo);
  1652. return;
  1653. }
  1654. default:
  1655. return;
  1656. }
  1657. if(key.state == SDL_PRESSED //arrow is pressed
  1658. && (SDL_GetKeyState(NULL)[SDLK_LCTRL]
  1659. || SDL_GetKeyState(NULL)[SDLK_RCTRL])
  1660. )
  1661. scrollingDir |= Dir;
  1662. else
  1663. scrollingDir &= ~Dir;
  1664. }
  1665. void CAdvMapInt::handleRightClick(std::string text, tribool down, CIntObject * client)
  1666. {
  1667. if (down)
  1668. {
  1669. CSimpleWindow * temp = CMessage::genWindow(text,LOCPLINT->playerID);
  1670. CRClickPopupInt *rcpi = new CRClickPopupInt(temp,true);
  1671. GH.pushInt(rcpi);
  1672. }
  1673. }
  1674. int3 CAdvMapInt::verifyPos(int3 ver)
  1675. {
  1676. if (ver.x<0)
  1677. ver.x=0;
  1678. if (ver.y<0)
  1679. ver.y=0;
  1680. if (ver.z<0)
  1681. ver.z=0;
  1682. if (ver.x>=CGI->mh->sizes.x)
  1683. ver.x=CGI->mh->sizes.x-1;
  1684. if (ver.y>=CGI->mh->sizes.y)
  1685. ver.y=CGI->mh->sizes.y-1;
  1686. if (ver.z>=CGI->mh->sizes.z)
  1687. ver.z=CGI->mh->sizes.z-1;
  1688. return ver;
  1689. }
  1690. void CAdvMapInt::select(const CArmedInstance *sel )
  1691. {
  1692. LOCPLINT->cb->setSelection(sel);
  1693. centerOn(sel->pos);
  1694. selection = sel;
  1695. terrain.currentPath = NULL;
  1696. if(sel->ID==TOWNI_TYPE)
  1697. {
  1698. int pos = vstd::findPos(townList.items,sel);
  1699. townList.selected = pos;
  1700. }
  1701. else //hero selected
  1702. {
  1703. const CGHeroInstance *h = static_cast<const CGHeroInstance*>(sel);
  1704. if(LOCPLINT->getWHero(heroList.selected) != h)
  1705. heroList.selected = heroList.getPosOfHero(h);
  1706. if(vstd::contains(paths,h)) //hero has assigned path
  1707. {
  1708. CPath &path = paths[h];
  1709. //update the hero path in case of something has changed on map
  1710. if(LOCPLINT->cb->getPath(path.startPos(), path.endPos(), h, path))
  1711. terrain.currentPath = &path;
  1712. else
  1713. paths.erase(h);
  1714. }
  1715. }
  1716. townList.draw(screen);
  1717. heroList.draw(screen);
  1718. infoBar.draw(screen);
  1719. }
  1720. void CAdvMapInt::mouseMoved( const SDL_MouseMotionEvent & sEvent )
  1721. {
  1722. //adventure map scrolling with mouse
  1723. if(!SDL_GetKeyState(NULL)[SDLK_LCTRL] && active)
  1724. {
  1725. if(sEvent.x<15)
  1726. {
  1727. scrollingDir |= LEFT;
  1728. }
  1729. else
  1730. {
  1731. scrollingDir &= ~LEFT;
  1732. }
  1733. if(sEvent.x>screen->w-15)
  1734. {
  1735. scrollingDir |= RIGHT;
  1736. }
  1737. else
  1738. {
  1739. scrollingDir &= ~RIGHT;
  1740. }
  1741. if(sEvent.y<15)
  1742. {
  1743. scrollingDir |= UP;
  1744. }
  1745. else
  1746. {
  1747. scrollingDir &= ~UP;
  1748. }
  1749. if(sEvent.y>screen->h-15)
  1750. {
  1751. scrollingDir |= DOWN;
  1752. }
  1753. else
  1754. {
  1755. scrollingDir &= ~DOWN;
  1756. }
  1757. }
  1758. }
  1759. CAdventureOptions::CAdventureOptions()
  1760. {
  1761. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1762. bg = new CPicture(BitmapHandler::loadBitmap("ADVOPTS.bmp"), 0, 0);
  1763. graphics->blueToPlayersAdv(bg->bg, LOCPLINT->playerID);
  1764. pos = bg->center();
  1765. exit = new AdventureMapButton("","",boost::bind(&CGuiHandler::popIntTotally, &GH, this), 204, 313, "IOK6432.DEF",SDLK_RETURN);
  1766. //scenInfo = new AdventureMapButton("","", boost::bind(&CGuiHandler::popIntTotally, &GH, this), 24, 24, "ADVINFO.DEF",SDLK_i);
  1767. scenInfo = new AdventureMapButton("","", boost::bind(&CGuiHandler::popIntTotally, &GH, this), 24, 198, "ADVINFO.DEF",SDLK_i);
  1768. scenInfo->callback += CAdventureOptions::showScenarioInfo;
  1769. //viewWorld = new AdventureMapButton("","",boost::bind(&CGuiHandler::popIntTotally, &GH, this), 204, 313, "IOK6432.DEF",SDLK_RETURN);
  1770. }
  1771. CAdventureOptions::~CAdventureOptions()
  1772. {
  1773. }
  1774. void CAdventureOptions::showScenarioInfo()
  1775. {
  1776. GH.pushInt(new CScenarioInfo(LOCPLINT->cb->getMapHeader(), LOCPLINT->cb->getStartInfo()));
  1777. }