InfoWindows.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. /*
  2. * InfoWindows.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 "InfoWindows.h"
  12. #include "../CGameInfo.h"
  13. #include "../PlayerLocalState.h"
  14. #include "../CPlayerInterface.h"
  15. #include "../CMusicHandler.h"
  16. #include "../widgets/CComponent.h"
  17. #include "../widgets/MiscWidgets.h"
  18. #include "../widgets/Buttons.h"
  19. #include "../widgets/TextControls.h"
  20. #include "../gui/CGuiHandler.h"
  21. #include "../battle/BattleInterface.h"
  22. #include "../battle/BattleInterfaceClasses.h"
  23. #include "../adventureMap/CAdventureMapInterface.h"
  24. #include "../windows/CMessage.h"
  25. #include "../renderSDL/SDL_Extensions.h"
  26. #include "../gui/CursorHandler.h"
  27. #include "../gui/Shortcut.h"
  28. #include "../../CCallback.h"
  29. #include "../../lib/CGameState.h"
  30. #include "../../lib/CConfigHandler.h"
  31. #include "../../lib/CondSh.h"
  32. #include "../../lib/CGeneralTextHandler.h" //for Unicode related stuff
  33. #include "../../lib/mapObjects/CGHeroInstance.h"
  34. #include "../../lib/mapObjects/CGTownInstance.h"
  35. #include "../../lib/mapObjects/MiscObjects.h"
  36. #include <SDL_surface.h>
  37. void CSimpleWindow::show(SDL_Surface * to)
  38. {
  39. if(bitmap)
  40. CSDL_Ext::blitAt(bitmap,pos.x,pos.y,to);
  41. }
  42. CSimpleWindow::~CSimpleWindow()
  43. {
  44. if (bitmap)
  45. {
  46. SDL_FreeSurface(bitmap);
  47. bitmap=nullptr;
  48. }
  49. }
  50. void CSelWindow::selectionChange(unsigned to)
  51. {
  52. for (unsigned i=0;i<components.size();i++)
  53. {
  54. auto pom = std::dynamic_pointer_cast<CSelectableComponent>(components[i]);
  55. if (!pom)
  56. continue;
  57. pom->select(i==to);
  58. }
  59. redraw();
  60. }
  61. CSelWindow::CSelWindow(const std::string &Text, PlayerColor player, int charperline, const std::vector<std::shared_ptr<CSelectableComponent>> & comps, const std::vector<std::pair<std::string, CFunctionList<void()> > > &Buttons, QueryID askID)
  62. {
  63. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  64. ID = askID;
  65. for (int i = 0; i < Buttons.size(); i++)
  66. {
  67. buttons.push_back(std::make_shared<CButton>(Point(0, 0), Buttons[i].first, CButton::tooltip(), Buttons[i].second));
  68. if (!i && askID.getNum() >= 0)
  69. buttons.back()->addCallback(std::bind(&CSelWindow::madeChoice, this));
  70. buttons[i]->addCallback(std::bind(&CInfoWindow::close, this)); //each button will close the window apart from call-defined actions
  71. }
  72. text = std::make_shared<CTextBox>(Text, Rect(0, 0, 250, 100), 0, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE);
  73. if (buttons.size() > 1 && askID.getNum() >= 0) //cancel button functionality
  74. {
  75. buttons.back()->addCallback([askID]() {
  76. LOCPLINT->cb.get()->selectionMade(0, askID);
  77. });
  78. //buttons.back()->addCallback(std::bind(&CCallback::selectionMade, LOCPLINT->cb.get(), 0, askID));
  79. }
  80. for(int i=0;i<comps.size();i++)
  81. {
  82. comps[i]->recActions = 255-DISPOSE;
  83. addChild(comps[i].get());
  84. components.push_back(comps[i]);
  85. comps[i]->onSelect = std::bind(&CSelWindow::selectionChange,this,i);
  86. if(i<8)
  87. comps[i]->assignedKey = vstd::next(EShortcut::SELECT_INDEX_1,i);
  88. }
  89. CMessage::drawIWindow(this, Text, player);
  90. }
  91. void CSelWindow::madeChoice()
  92. {
  93. if(ID.getNum() < 0)
  94. return;
  95. int ret = -1;
  96. for (int i=0;i<components.size();i++)
  97. {
  98. if(std::dynamic_pointer_cast<CSelectableComponent>(components[i])->selected)
  99. {
  100. ret = i;
  101. }
  102. }
  103. LOCPLINT->cb->selectionMade(ret+1,ID);
  104. }
  105. CInfoWindow::CInfoWindow(std::string Text, PlayerColor player, const TCompsInfo & comps, const TButtonsInfo & Buttons)
  106. {
  107. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  108. type |= BLOCK_ADV_HOTKEYS;
  109. ID = QueryID(-1);
  110. for(auto & Button : Buttons)
  111. {
  112. std::shared_ptr<CButton> button = std::make_shared<CButton>(Point(0,0), Button.first, CButton::tooltip(), std::bind(&CInfoWindow::close, this));
  113. button->setBorderColor(Colors::METALLIC_GOLD);
  114. button->addCallback(Button.second); //each button will close the window apart from call-defined actions
  115. buttons.push_back(button);
  116. }
  117. text = std::make_shared<CTextBox>(Text, Rect(0, 0, 250, 100), 0, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE);
  118. if(!text->slider)
  119. {
  120. text->resize(text->label->textSize);
  121. }
  122. if(buttons.size() == 1)
  123. buttons.front()->assignedKey = EShortcut::GLOBAL_RETURN;
  124. if(buttons.size() == 2)
  125. {
  126. buttons.front()->assignedKey = EShortcut::GLOBAL_ACCEPT;
  127. buttons.back()->assignedKey = EShortcut::GLOBAL_CANCEL;
  128. }
  129. for(auto & comp : comps)
  130. {
  131. comp->recActions = 0xff & ~DISPOSE;
  132. addChild(comp.get());
  133. comp->recActions &= ~(SHOWALL | UPDATE);
  134. components.push_back(comp);
  135. }
  136. CMessage::drawIWindow(this,Text,player);
  137. }
  138. CInfoWindow::CInfoWindow()
  139. {
  140. ID = QueryID(-1);
  141. }
  142. void CInfoWindow::close()
  143. {
  144. WindowBase::close();
  145. if(LOCPLINT)
  146. LOCPLINT->showingDialog->setn(false);
  147. }
  148. void CInfoWindow::show(SDL_Surface * to)
  149. {
  150. CIntObject::show(to);
  151. }
  152. CInfoWindow::~CInfoWindow() = default;
  153. void CInfoWindow::showAll(SDL_Surface * to)
  154. {
  155. CSimpleWindow::show(to);
  156. CIntObject::showAll(to);
  157. }
  158. void CInfoWindow::showInfoDialog(const std::string &text, const TCompsInfo & components, PlayerColor player)
  159. {
  160. GH.pushInt(CInfoWindow::create(text, player, components));
  161. }
  162. void CInfoWindow::showYesNoDialog(const std::string & text, const TCompsInfo & components, const CFunctionList<void( ) > &onYes, const CFunctionList<void()> &onNo, PlayerColor player)
  163. {
  164. assert(!LOCPLINT || LOCPLINT->showingDialog->get());
  165. std::vector<std::pair<std::string,CFunctionList<void()> > > pom;
  166. pom.push_back(std::pair<std::string,CFunctionList<void()> >("IOKAY.DEF",0));
  167. pom.push_back(std::pair<std::string,CFunctionList<void()> >("ICANCEL.DEF",0));
  168. std::shared_ptr<CInfoWindow> temp = std::make_shared<CInfoWindow>(text, player, components, pom);
  169. temp->buttons[0]->addCallback( onYes );
  170. temp->buttons[1]->addCallback( onNo );
  171. GH.pushInt(temp);
  172. }
  173. std::shared_ptr<CInfoWindow> CInfoWindow::create(const std::string &text, PlayerColor playerID, const TCompsInfo & components)
  174. {
  175. std::vector<std::pair<std::string,CFunctionList<void()> > > pom;
  176. pom.push_back(std::pair<std::string,CFunctionList<void()> >("IOKAY.DEF",0));
  177. return std::make_shared<CInfoWindow>(text, playerID, components, pom);
  178. }
  179. std::string CInfoWindow::genText(std::string title, std::string description)
  180. {
  181. return std::string("{") + title + "}" + "\n\n" + description;
  182. }
  183. CInfoPopup::CInfoPopup(SDL_Surface * Bitmap, int x, int y, bool Free)
  184. :free(Free),bitmap(Bitmap)
  185. {
  186. init(x, y);
  187. }
  188. CInfoPopup::CInfoPopup(SDL_Surface * Bitmap, const Point &p, ETextAlignment alignment, bool Free)
  189. : free(Free),bitmap(Bitmap)
  190. {
  191. switch(alignment)
  192. {
  193. case ETextAlignment::BOTTOMRIGHT:
  194. init(p.x - Bitmap->w, p.y - Bitmap->h);
  195. break;
  196. case ETextAlignment::CENTER:
  197. init(p.x - Bitmap->w/2, p.y - Bitmap->h/2);
  198. break;
  199. case ETextAlignment::TOPLEFT:
  200. init(p.x, p.y);
  201. break;
  202. default:
  203. assert(0); //not implemented
  204. }
  205. }
  206. CInfoPopup::CInfoPopup(SDL_Surface *Bitmap, bool Free)
  207. {
  208. CCS->curh->hide();
  209. free=Free;
  210. bitmap=Bitmap;
  211. if(bitmap)
  212. {
  213. pos.x = GH.screenDimensions().x / 2 - bitmap->w / 2;
  214. pos.y = GH.screenDimensions().y / 2 - bitmap->h / 2;
  215. pos.h = bitmap->h;
  216. pos.w = bitmap->w;
  217. }
  218. }
  219. void CInfoPopup::close()
  220. {
  221. if(free)
  222. SDL_FreeSurface(bitmap);
  223. WindowBase::close();
  224. }
  225. void CInfoPopup::show(SDL_Surface * to)
  226. {
  227. CSDL_Ext::blitAt(bitmap,pos.x,pos.y,to);
  228. }
  229. CInfoPopup::~CInfoPopup()
  230. {
  231. CCS->curh->show();
  232. }
  233. void CInfoPopup::init(int x, int y)
  234. {
  235. CCS->curh->hide();
  236. pos.x = x;
  237. pos.y = y;
  238. pos.h = bitmap->h;
  239. pos.w = bitmap->w;
  240. // Put the window back on screen if necessary
  241. vstd::amax(pos.x, 0);
  242. vstd::amax(pos.y, 0);
  243. vstd::amin(pos.x, GH.screenDimensions().x - bitmap->w);
  244. vstd::amin(pos.y, GH.screenDimensions().y - bitmap->h);
  245. }
  246. void CRClickPopup::clickRight(tribool down, bool previousState)
  247. {
  248. if(down)
  249. return;
  250. close();
  251. }
  252. void CRClickPopup::close()
  253. {
  254. WindowBase::close();
  255. }
  256. void CRClickPopup::createAndPush(const std::string &txt, const CInfoWindow::TCompsInfo &comps)
  257. {
  258. PlayerColor player = LOCPLINT ? LOCPLINT->playerID : PlayerColor(1); //if no player, then use blue
  259. if(settings["session"]["spectate"].Bool())//TODO: there must be better way to implement this
  260. player = PlayerColor(1);
  261. auto temp = std::make_shared<CInfoWindow>(txt, player, comps);
  262. temp->center(GH.getCursorPosition()); //center on mouse
  263. #ifdef VCMI_IOS
  264. // TODO: enable also for android?
  265. temp->moveBy({0, -temp->pos.h / 2});
  266. #endif
  267. temp->fitToScreen(10);
  268. GH.pushIntT<CRClickPopupInt>(temp);
  269. }
  270. void CRClickPopup::createAndPush(const std::string & txt, std::shared_ptr<CComponent> component)
  271. {
  272. CInfoWindow::TCompsInfo intComps;
  273. intComps.push_back(component);
  274. createAndPush(txt, intComps);
  275. }
  276. void CRClickPopup::createAndPush(const CGObjectInstance * obj, const Point & p, ETextAlignment alignment)
  277. {
  278. auto iWin = createInfoWin(p, obj); //try get custom infowindow for this obj
  279. if(iWin)
  280. {
  281. GH.pushInt(iWin);
  282. }
  283. else
  284. {
  285. if(LOCPLINT->localState->getCurrentHero())
  286. CRClickPopup::createAndPush(obj->getHoverText(LOCPLINT->localState->getCurrentHero()));
  287. else
  288. CRClickPopup::createAndPush(obj->getHoverText(LOCPLINT->playerID));
  289. }
  290. }
  291. CRClickPopup::CRClickPopup()
  292. {
  293. addUsedEvents(RCLICK);
  294. }
  295. CRClickPopup::~CRClickPopup()
  296. {
  297. }
  298. CRClickPopupInt::CRClickPopupInt(std::shared_ptr<CIntObject> our)
  299. {
  300. CCS->curh->hide();
  301. defActions = SHOWALL | UPDATE;
  302. our->recActions = defActions;
  303. inner = our;
  304. addChild(our.get(), false);
  305. }
  306. CRClickPopupInt::~CRClickPopupInt()
  307. {
  308. CCS->curh->show();
  309. }
  310. Point CInfoBoxPopup::toScreen(Point p)
  311. {
  312. auto bounds = adventureInt->terrainAreaPixels();
  313. vstd::abetween(p.x, bounds.top() + 100, bounds.bottom() - 100);
  314. vstd::abetween(p.y, bounds.left() + 100, bounds.right() - 100);
  315. return p;
  316. }
  317. CInfoBoxPopup::CInfoBoxPopup(Point position, const CGTownInstance * town)
  318. : CWindowObject(RCLICK_POPUP | PLAYER_COLORED, "TOWNQVBK", toScreen(position))
  319. {
  320. InfoAboutTown iah;
  321. LOCPLINT->cb->getTownInfo(town, iah, LOCPLINT->localState->getCurrentTown()); //todo: should this be nearest hero?
  322. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  323. tooltip = std::make_shared<CTownTooltip>(Point(9, 10), iah);
  324. }
  325. CInfoBoxPopup::CInfoBoxPopup(Point position, const CGHeroInstance * hero)
  326. : CWindowObject(RCLICK_POPUP | PLAYER_COLORED, "HEROQVBK", toScreen(position))
  327. {
  328. InfoAboutHero iah;
  329. LOCPLINT->cb->getHeroInfo(hero, iah, LOCPLINT->localState->getCurrentHero());//todo: should this be nearest hero?
  330. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  331. tooltip = std::make_shared<CHeroTooltip>(Point(9, 10), iah);
  332. }
  333. CInfoBoxPopup::CInfoBoxPopup(Point position, const CGGarrison * garr)
  334. : CWindowObject(RCLICK_POPUP | PLAYER_COLORED, "TOWNQVBK", toScreen(position))
  335. {
  336. InfoAboutTown iah;
  337. LOCPLINT->cb->getTownInfo(garr, iah);
  338. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  339. tooltip = std::make_shared<CArmyTooltip>(Point(9, 10), iah);
  340. }
  341. std::shared_ptr<WindowBase> CRClickPopup::createInfoWin(Point position, const CGObjectInstance * specific) //specific=0 => draws info about selected town/hero
  342. {
  343. if(nullptr == specific)
  344. specific = LOCPLINT->localState->getCurrentArmy();
  345. if(nullptr == specific)
  346. {
  347. logGlobal->error("createInfoWin: no object to describe");
  348. return nullptr;
  349. }
  350. switch(specific->ID)
  351. {
  352. case Obj::HERO:
  353. return std::make_shared<CInfoBoxPopup>(position, dynamic_cast<const CGHeroInstance *>(specific));
  354. case Obj::TOWN:
  355. return std::make_shared<CInfoBoxPopup>(position, dynamic_cast<const CGTownInstance *>(specific));
  356. case Obj::GARRISON:
  357. case Obj::GARRISON2:
  358. return std::make_shared<CInfoBoxPopup>(position, dynamic_cast<const CGGarrison *>(specific));
  359. default:
  360. return std::shared_ptr<WindowBase>();
  361. }
  362. }