Images.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570
  1. /*
  2. * Images.cpp, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #include "StdInc.h"
  11. #include "Images.h"
  12. #include "MiscWidgets.h"
  13. #include "../gui/CGuiHandler.h"
  14. #include "../renderSDL/SDL_Extensions.h"
  15. #include "../render/IImage.h"
  16. #include "../render/IRenderHandler.h"
  17. #include "../render/CAnimation.h"
  18. #include "../render/Canvas.h"
  19. #include "../render/ColorFilter.h"
  20. #include "../battle/BattleInterface.h"
  21. #include "../battle/BattleInterfaceClasses.h"
  22. #include "../CGameInfo.h"
  23. #include "../CPlayerInterface.h"
  24. #include "../../CCallback.h"
  25. #include "../../lib/CConfigHandler.h"
  26. #include "../../lib/CGeneralTextHandler.h" //for Unicode related stuff
  27. #include "../../lib/CRandomGenerator.h"
  28. CPicture::CPicture(std::shared_ptr<IImage> image, const Point & position)
  29. : bg(image)
  30. , needRefresh(false)
  31. {
  32. pos += position;
  33. pos.w = bg->width();
  34. pos.h = bg->height();
  35. }
  36. CPicture::CPicture( const ImagePath &bmpname, int x, int y )
  37. : CPicture(bmpname, Point(x,y))
  38. {}
  39. CPicture::CPicture( const ImagePath & bmpname )
  40. : CPicture(bmpname, Point(0,0))
  41. {}
  42. CPicture::CPicture( const ImagePath & bmpname, const Point & position )
  43. : bg(GH.renderHandler().loadImage(bmpname))
  44. , needRefresh(false)
  45. {
  46. pos.x += position.x;
  47. pos.y += position.y;
  48. assert(bg);
  49. if(bg)
  50. {
  51. pos.w = bg->width();
  52. pos.h = bg->height();
  53. }
  54. else
  55. {
  56. pos.w = pos.h = 0;
  57. }
  58. }
  59. CPicture::CPicture(std::shared_ptr<IImage> image, const Rect &SrcRect, int x, int y)
  60. : CPicture(image, Point(x,y))
  61. {
  62. srcRect = SrcRect;
  63. pos.w = srcRect->w;
  64. pos.h = srcRect->h;
  65. }
  66. void CPicture::show(Canvas & to)
  67. {
  68. if (needRefresh)
  69. showAll(to);
  70. }
  71. void CPicture::showAll(Canvas & to)
  72. {
  73. if(bg)
  74. {
  75. if (srcRect.has_value())
  76. to.draw(bg, pos.topLeft(), *srcRect);
  77. else
  78. to.draw(bg, pos.topLeft());
  79. }
  80. }
  81. void CPicture::setAlpha(uint8_t value)
  82. {
  83. bg->setAlpha(value);
  84. }
  85. void CPicture::scaleTo(Point size)
  86. {
  87. bg = bg->scaleFast(size);
  88. pos.w = bg->width();
  89. pos.h = bg->height();
  90. }
  91. void CPicture::colorize(PlayerColor player)
  92. {
  93. bg->playerColored(player);
  94. }
  95. CFilledTexture::CFilledTexture(const ImagePath & imageName, Rect position)
  96. : CIntObject(0, position.topLeft())
  97. , texture(GH.renderHandler().loadImage(imageName))
  98. {
  99. pos.w = position.w;
  100. pos.h = position.h;
  101. imageArea = Rect(Point(), texture->dimensions());
  102. }
  103. CFilledTexture::CFilledTexture(const ImagePath & imageName, Rect position, Rect imageArea)
  104. : CIntObject(0, position.topLeft())
  105. , texture(GH.renderHandler().loadImage(imageName))
  106. , imageArea(imageArea)
  107. {
  108. pos.w = position.w;
  109. pos.h = position.h;
  110. }
  111. void CFilledTexture::showAll(Canvas & to)
  112. {
  113. CSDL_Ext::CClipRectGuard guard(to.getInternalSurface(), pos);
  114. for (int y=pos.top(); y < pos.bottom(); y+= imageArea.h)
  115. {
  116. for (int x=pos.left(); x < pos.right(); x+= imageArea.w)
  117. to.draw(texture, Point(x,y), imageArea);
  118. }
  119. }
  120. FilledTexturePlayerColored::FilledTexturePlayerColored(const ImagePath & imageName, Rect position)
  121. : CFilledTexture(imageName, position)
  122. {
  123. }
  124. void FilledTexturePlayerColored::playerColored(PlayerColor player)
  125. {
  126. // Color transform to make color of brown DIBOX.PCX texture match color of specified player
  127. std::array<ColorFilter, PlayerColor::PLAYER_LIMIT_I> filters = {
  128. ColorFilter::genRangeShifter( 0.25, 0, 0, 1.25, 0.00, 0.00 ), // red
  129. ColorFilter::genRangeShifter( 0, 0, 0, 0.45, 1.20, 4.50 ), // blue
  130. ColorFilter::genRangeShifter( 0.40, 0.27, 0.23, 1.10, 1.20, 1.15 ), // tan
  131. ColorFilter::genRangeShifter( -0.27, 0.10, -0.27, 0.70, 1.70, 0.70 ), // green
  132. ColorFilter::genRangeShifter( 0.47, 0.17, -0.27, 1.60, 1.20, 0.70 ), // orange
  133. ColorFilter::genRangeShifter( 0.12, -0.1, 0.25, 1.15, 1.20, 2.20 ), // purple
  134. ColorFilter::genRangeShifter( -0.13, 0.23, 0.23, 0.90, 1.20, 2.20 ), // teal
  135. ColorFilter::genRangeShifter( 0.44, 0.15, 0.25, 1.00, 1.00, 1.75 ) // pink
  136. };
  137. assert(player.isValidPlayer());
  138. if (!player.isValidPlayer())
  139. {
  140. logGlobal->error("Unable to colorize to invalid player color %d!", static_cast<int>(player.getNum()));
  141. return;
  142. }
  143. texture->adjustPalette(filters[player.getNum()], 0);
  144. }
  145. CAnimImage::CAnimImage(const AnimationPath & name, size_t Frame, size_t Group, int x, int y, ui8 Flags):
  146. frame(Frame),
  147. group(Group),
  148. flags(Flags)
  149. {
  150. pos.x += x;
  151. pos.y += y;
  152. anim = GH.renderHandler().loadAnimation(name);
  153. init();
  154. }
  155. CAnimImage::CAnimImage(std::shared_ptr<CAnimation> Anim, size_t Frame, size_t Group, int x, int y, ui8 Flags):
  156. anim(Anim),
  157. frame(Frame),
  158. group(Group),
  159. flags(Flags)
  160. {
  161. pos.x += x;
  162. pos.y += y;
  163. init();
  164. }
  165. CAnimImage::CAnimImage(const AnimationPath & name, size_t Frame, Rect targetPos, size_t Group, ui8 Flags):
  166. anim(GH.renderHandler().loadAnimation(name)),
  167. frame(Frame),
  168. group(Group),
  169. flags(Flags),
  170. scaledSize(targetPos.w, targetPos.h)
  171. {
  172. pos.x += targetPos.x;
  173. pos.y += targetPos.y;
  174. init();
  175. }
  176. size_t CAnimImage::size()
  177. {
  178. return anim->size(group);
  179. }
  180. bool CAnimImage::isScaled() const
  181. {
  182. return (scaledSize.x != 0);
  183. }
  184. void CAnimImage::setSizeFromImage(const IImage &img)
  185. {
  186. if (isScaled())
  187. {
  188. // At the time of writing this, IImage had no method to scale to different aspect ratio
  189. // Therefore, have to ignore the target height and preserve original aspect ratio
  190. pos.w = scaledSize.x;
  191. pos.h = roundf(float(scaledSize.x) * img.height() / img.width());
  192. }
  193. else
  194. {
  195. pos.w = img.width();
  196. pos.h = img.height();
  197. }
  198. }
  199. void CAnimImage::init()
  200. {
  201. visible = true;
  202. anim->load(frame, group);
  203. if (flags & CShowableAnim::BASE)
  204. anim->load(0,group);
  205. auto img = anim->getImage(frame, group);
  206. if (img)
  207. setSizeFromImage(*img);
  208. }
  209. CAnimImage::~CAnimImage()
  210. {
  211. }
  212. void CAnimImage::showAll(Canvas & to)
  213. {
  214. if(!visible)
  215. return;
  216. std::vector<size_t> frames = {frame};
  217. if((flags & CShowableAnim::BASE) && frame != 0)
  218. {
  219. frames.insert(frames.begin(), 0);
  220. }
  221. for(auto targetFrame : frames)
  222. {
  223. if(auto img = anim->getImage(targetFrame, group))
  224. {
  225. if(isScaled())
  226. {
  227. auto scaled = img->scaleFast(scaledSize);
  228. to.draw(scaled, pos.topLeft());
  229. }
  230. else
  231. to.draw(img, pos.topLeft());
  232. }
  233. }
  234. }
  235. void CAnimImage::setAnimationPath(const AnimationPath & name, size_t frame)
  236. {
  237. this->frame = frame;
  238. anim = GH.renderHandler().loadAnimation(name);
  239. init();
  240. }
  241. void CAnimImage::setScale(Point scale)
  242. {
  243. scaledSize = scale;
  244. }
  245. void CAnimImage::setFrame(size_t Frame, size_t Group)
  246. {
  247. if (frame == Frame && group==Group)
  248. return;
  249. if (anim->size(Group) > Frame)
  250. {
  251. anim->load(Frame, Group);
  252. frame = Frame;
  253. group = Group;
  254. if(auto img = anim->getImage(frame, group))
  255. {
  256. if (player.has_value())
  257. img->playerColored(*player);
  258. setSizeFromImage(*img);
  259. }
  260. }
  261. else
  262. logGlobal->error("Error: accessing unavailable frame %d:%d in CAnimation!", Group, Frame);
  263. }
  264. void CAnimImage::playerColored(PlayerColor currPlayer)
  265. {
  266. player = currPlayer;
  267. anim->getImage(frame, group)->playerColored(*player);
  268. if (flags & CShowableAnim::BASE)
  269. anim->getImage(0, group)->playerColored(*player);
  270. }
  271. bool CAnimImage::isPlayerColored() const
  272. {
  273. return player.has_value();
  274. }
  275. CShowableAnim::CShowableAnim(int x, int y, const AnimationPath & name, ui8 Flags, ui32 frameTime, size_t Group, uint8_t alpha):
  276. anim(GH.renderHandler().loadAnimation(name)),
  277. group(Group),
  278. frame(0),
  279. first(0),
  280. frameTimeTotal(frameTime),
  281. frameTimePassed(0),
  282. flags(Flags),
  283. xOffset(0),
  284. yOffset(0),
  285. alpha(alpha)
  286. {
  287. anim->loadGroup(group);
  288. last = anim->size(group);
  289. auto image = anim->getImage(0, group);
  290. if (!image)
  291. throw std::runtime_error("Failed to load group " + std::to_string(group) + " of animation file " + name.getOriginalName());
  292. pos.w = image->width();
  293. pos.h = image->height();
  294. pos.x+= x;
  295. pos.y+= y;
  296. addUsedEvents(TIME);
  297. }
  298. CShowableAnim::~CShowableAnim()
  299. {
  300. anim->unloadGroup(group);
  301. }
  302. void CShowableAnim::setAlpha(ui32 alphaValue)
  303. {
  304. alpha = std::min<ui32>(alphaValue, 255);
  305. }
  306. bool CShowableAnim::set(size_t Group, size_t from, size_t to)
  307. {
  308. size_t max = anim->size(Group);
  309. if (to < max)
  310. max = to;
  311. if (max < from || max == 0)
  312. return false;
  313. anim->unloadGroup(group);
  314. anim->loadGroup(Group);
  315. group = Group;
  316. frame = first = from;
  317. last = max;
  318. frameTimePassed = 0;
  319. return true;
  320. }
  321. bool CShowableAnim::set(size_t Group)
  322. {
  323. if (anim->size(Group)== 0)
  324. return false;
  325. if (group != Group)
  326. {
  327. anim->unloadGroup(group);
  328. anim->loadGroup(Group);
  329. first = 0;
  330. group = Group;
  331. last = anim->size(Group);
  332. }
  333. frame = 0;
  334. frameTimePassed = 0;
  335. return true;
  336. }
  337. void CShowableAnim::reset()
  338. {
  339. frame = first;
  340. if (callback)
  341. callback();
  342. }
  343. void CShowableAnim::clipRect(int posX, int posY, int width, int height)
  344. {
  345. xOffset = posX;
  346. yOffset = posY;
  347. pos.w = width;
  348. pos.h = height;
  349. }
  350. void CShowableAnim::show(Canvas & to)
  351. {
  352. if ( flags & BASE )// && frame != first) // FIXME: results in graphical glytch in Fortress, upgraded hydra's dwelling
  353. blitImage(first, group, to);
  354. blitImage(frame, group, to);
  355. }
  356. void CShowableAnim::tick(uint32_t msPassed)
  357. {
  358. if ((flags & PLAY_ONCE) && frame + 1 == last)
  359. return;
  360. frameTimePassed += msPassed;
  361. if(frameTimePassed >= frameTimeTotal)
  362. {
  363. frameTimePassed -= frameTimeTotal;
  364. if ( ++frame >= last)
  365. reset();
  366. }
  367. }
  368. void CShowableAnim::showAll(Canvas & to)
  369. {
  370. if ( flags & BASE )// && frame != first)
  371. blitImage(first, group, to);
  372. blitImage(frame, group, to);
  373. }
  374. void CShowableAnim::blitImage(size_t frame, size_t group, Canvas & to)
  375. {
  376. Rect src( xOffset, yOffset, pos.w, pos.h);
  377. auto img = anim->getImage(frame, group);
  378. if(img)
  379. {
  380. img->setAlpha(alpha);
  381. to.draw(img, pos.topLeft(), src);
  382. }
  383. }
  384. void CShowableAnim::rotate(bool on, bool vertical)
  385. {
  386. ui8 flag = vertical? VERTICAL_FLIP:HORIZONTAL_FLIP;
  387. if (on)
  388. flags |= flag;
  389. else
  390. flags &= ~flag;
  391. }
  392. void CShowableAnim::setDuration(int durationMs)
  393. {
  394. frameTimeTotal = durationMs/(last - first);
  395. }
  396. CCreatureAnim::CCreatureAnim(int x, int y, const AnimationPath & name, ui8 flags, ECreatureAnimType type):
  397. CShowableAnim(x, y, name, flags, 100, size_t(type)) // H3 uses 100 ms per frame, irregardless of battle speed settings
  398. {
  399. xOffset = 0;
  400. yOffset = 0;
  401. }
  402. void CCreatureAnim::loopPreview(bool warMachine)
  403. {
  404. std::vector<ECreatureAnimType> available;
  405. static const ECreatureAnimType creaPreviewList[] = {
  406. ECreatureAnimType::HOLDING,
  407. ECreatureAnimType::HITTED,
  408. ECreatureAnimType::DEFENCE,
  409. ECreatureAnimType::ATTACK_FRONT,
  410. ECreatureAnimType::SPECIAL_FRONT
  411. };
  412. static const ECreatureAnimType machPreviewList[] = {
  413. ECreatureAnimType::HOLDING,
  414. ECreatureAnimType::MOVING,
  415. ECreatureAnimType::SHOOT_UP,
  416. ECreatureAnimType::SHOOT_FRONT,
  417. ECreatureAnimType::SHOOT_DOWN
  418. };
  419. auto & previewList = warMachine ? machPreviewList : creaPreviewList;
  420. for (auto & elem : previewList)
  421. if (anim->size(size_t(elem)))
  422. available.push_back(elem);
  423. size_t rnd = CRandomGenerator::getDefault().nextInt((int)available.size() * 2 - 1);
  424. if (rnd >= available.size())
  425. {
  426. ECreatureAnimType type;
  427. if ( anim->size(size_t(ECreatureAnimType::MOVING)) == 0 )//no moving animation present
  428. type = ECreatureAnimType::HOLDING;
  429. else
  430. type = ECreatureAnimType::MOVING;
  431. //display this anim for ~1 second (time is random, but it looks good)
  432. for (size_t i=0; i< 12/anim->size(size_t(type)) + 1; i++)
  433. addLast(type);
  434. }
  435. else
  436. addLast(available[rnd]);
  437. }
  438. void CCreatureAnim::addLast(ECreatureAnimType newType)
  439. {
  440. auto currType = ECreatureAnimType(group);
  441. if (currType != ECreatureAnimType::MOVING && newType == ECreatureAnimType::MOVING)//starting moving - play init sequence
  442. {
  443. queue.push( ECreatureAnimType::MOVE_START );
  444. }
  445. else if (currType == ECreatureAnimType::MOVING && newType != ECreatureAnimType::MOVING )//previous anim was moving - finish it
  446. {
  447. queue.push( ECreatureAnimType::MOVE_END );
  448. }
  449. if (newType == ECreatureAnimType::TURN_L || newType == ECreatureAnimType::TURN_R)
  450. queue.push(newType);
  451. queue.push(newType);
  452. }
  453. void CCreatureAnim::reset()
  454. {
  455. //if we are in the middle of rotation - set flag
  456. if (group == size_t(ECreatureAnimType::TURN_L) && !queue.empty() && queue.front() == ECreatureAnimType::TURN_L)
  457. rotate(true);
  458. if (group == size_t(ECreatureAnimType::TURN_R) && !queue.empty() && queue.front() == ECreatureAnimType::TURN_R)
  459. rotate(false);
  460. while (!queue.empty())
  461. {
  462. ECreatureAnimType at = queue.front();
  463. queue.pop();
  464. if (set(size_t(at)))
  465. return;
  466. }
  467. if (callback)
  468. callback();
  469. while (!queue.empty())
  470. {
  471. ECreatureAnimType at = queue.front();
  472. queue.pop();
  473. if (set(size_t(at)))
  474. return;
  475. }
  476. set(size_t(ECreatureAnimType::HOLDING));
  477. }
  478. void CCreatureAnim::startPreview(bool warMachine)
  479. {
  480. callback = std::bind(&CCreatureAnim::loopPreview, this, warMachine);
  481. }
  482. void CCreatureAnim::clearAndSet(ECreatureAnimType type)
  483. {
  484. while (!queue.empty())
  485. queue.pop();
  486. set(size_t(type));
  487. }