ObjectLists.cpp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. /*
  2. * ObjectLists.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 "ObjectLists.h"
  12. #include "../gui/CGuiHandler.h"
  13. #include "Slider.h"
  14. CObjectList::CObjectList(CreateFunc create)
  15. : createObject(create)
  16. {
  17. }
  18. void CObjectList::deleteItem(std::shared_ptr<CIntObject> item)
  19. {
  20. if(!item)
  21. return;
  22. item->deactivate();
  23. removeChild(item.get());
  24. }
  25. std::shared_ptr<CIntObject> CObjectList::createItem(size_t index)
  26. {
  27. OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
  28. std::shared_ptr<CIntObject> item = createObject(index);
  29. if(!item)
  30. item = std::make_shared<CIntObject>();
  31. item->recActions = defActions;
  32. addChild(item.get());
  33. if (isActive())
  34. item->activate();
  35. return item;
  36. }
  37. CTabbedInt::CTabbedInt(CreateFunc create, Point position, size_t ActiveID)
  38. : CObjectList(create),
  39. activeTab(nullptr),
  40. activeID(ActiveID)
  41. {
  42. defActions &= ~DISPOSE;
  43. pos += position;
  44. reset();
  45. }
  46. void CTabbedInt::setActive(size_t which)
  47. {
  48. if(which != activeID)
  49. {
  50. activeID = which;
  51. reset();
  52. }
  53. }
  54. size_t CTabbedInt::getActive() const
  55. {
  56. return activeID;
  57. }
  58. void CTabbedInt::reset()
  59. {
  60. deleteItem(activeTab);
  61. activeTab = createItem(activeID);
  62. activeTab->moveTo(pos.topLeft());
  63. if(isActive())
  64. redraw();
  65. }
  66. std::shared_ptr<CIntObject> CTabbedInt::getItem()
  67. {
  68. return activeTab;
  69. }
  70. CListBox::CListBox(CreateFunc create, Point Pos, Point ItemOffset, size_t VisibleSize,
  71. size_t TotalSize, size_t InitialPos, int Slider, Rect SliderPos)
  72. : CObjectList(create),
  73. first(InitialPos),
  74. totalSize(TotalSize),
  75. itemOffset(ItemOffset)
  76. {
  77. pos += Pos;
  78. items.resize(VisibleSize, nullptr);
  79. if(Slider & 1)
  80. {
  81. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  82. slider = std::make_shared<CSlider>(
  83. SliderPos.topLeft(),
  84. SliderPos.w,
  85. std::bind(&CListBox::moveToPos, this, _1),
  86. (int)VisibleSize,
  87. (int)TotalSize,
  88. (int)InitialPos,
  89. Slider & 2 ? Orientation::HORIZONTAL : Orientation::VERTICAL,
  90. Slider & 4 ? CSlider::BLUE : CSlider::BROWN
  91. );
  92. slider->setPanningStep(itemOffset.x + itemOffset.y);
  93. }
  94. reset();
  95. }
  96. // Used to move active items after changing list position
  97. void CListBox::updatePositions()
  98. {
  99. Point itemPos = pos.topLeft();
  100. for (auto & elem : items)
  101. {
  102. (elem)->moveTo(itemPos);
  103. itemPos += itemOffset;
  104. }
  105. if (isActive())
  106. {
  107. redraw();
  108. if (slider)
  109. slider->scrollTo((int)first);
  110. }
  111. }
  112. void CListBox::reset()
  113. {
  114. // hack to ensure that all items will be recreated with new address
  115. // save current item list so all shared_ptr's will be destroyed only on scope exit and not inside loop below
  116. // see comment in EventDispatcher::handleLeftButtonClick for details on why this hack is needed
  117. auto itemsCopy = items;
  118. size_t current = first;
  119. for (auto & elem : items)
  120. {
  121. deleteItem(elem);
  122. elem = createItem(current++);
  123. }
  124. updatePositions();
  125. }
  126. void CListBox::resize(size_t newSize)
  127. {
  128. if (totalSize == newSize)
  129. return;
  130. totalSize = newSize;
  131. if (slider)
  132. slider->setAmount((int)totalSize);
  133. reset();
  134. }
  135. size_t CListBox::size()
  136. {
  137. return totalSize;
  138. }
  139. std::shared_ptr<CIntObject> CListBox::getItem(size_t which)
  140. {
  141. if(which < first || which > first + items.size() || which > totalSize)
  142. return std::shared_ptr<CIntObject>();
  143. size_t i=first;
  144. for (auto iter = items.begin(); iter != items.end(); iter++, i++)
  145. if( i == which)
  146. return *iter;
  147. return std::shared_ptr<CIntObject>();
  148. }
  149. size_t CListBox::getIndexOf(std::shared_ptr<CIntObject> item)
  150. {
  151. size_t i=first;
  152. for(auto iter = items.begin(); iter != items.end(); iter++, i++)
  153. if(*iter == item)
  154. return i;
  155. return size_t(-1);
  156. }
  157. void CListBox::scrollTo(size_t which)
  158. {
  159. //scroll up
  160. if(first > which)
  161. moveToPos(which);
  162. //scroll down
  163. else if (first + items.size() <= which && which < totalSize)
  164. moveToPos(which - items.size() + 1);
  165. }
  166. void CListBox::moveToPos(size_t which)
  167. {
  168. //Calculate new position
  169. size_t maxPossible;
  170. if(totalSize > items.size())
  171. maxPossible = totalSize - items.size();
  172. else
  173. maxPossible = 0;
  174. size_t newPos = std::min(which, maxPossible);
  175. //If move distance is 1 (most of calls from Slider) - use faster shifts instead of resetting all items
  176. if(first - newPos == 1)
  177. {
  178. moveToPrev();
  179. }
  180. else if(newPos - first == 1)
  181. {
  182. moveToNext();
  183. }
  184. else if(newPos != first)
  185. {
  186. first = newPos;
  187. reset();
  188. }
  189. }
  190. void CListBox::moveToNext()
  191. {
  192. //Remove front item and insert new one to end
  193. if(first + items.size() < totalSize)
  194. {
  195. first++;
  196. deleteItem(items.front());
  197. items.pop_front();
  198. items.push_back(createItem(first+items.size()));
  199. updatePositions();
  200. }
  201. }
  202. void CListBox::moveToPrev()
  203. {
  204. //Remove last item and insert new one at start
  205. if(first)
  206. {
  207. first--;
  208. deleteItem(items.back());
  209. items.pop_back();
  210. items.push_front(createItem(first));
  211. updatePositions();
  212. }
  213. }
  214. size_t CListBox::getPos()
  215. {
  216. return first;
  217. }
  218. const std::list<std::shared_ptr<CIntObject>> & CListBox::getItems()
  219. {
  220. return items;
  221. }
  222. CListBoxWithCallback::CListBoxWithCallback(CListBoxWithCallback::MovedPosCallback callback, CreateFunc create, Point pos, Point itemOffset,
  223. size_t visibleSize, size_t totalSize, size_t initialPos, int slider, Rect sliderPos)
  224. : CListBox(create, pos, itemOffset, visibleSize, totalSize, initialPos, slider, sliderPos)
  225. {
  226. movedPosCallback = callback;
  227. }
  228. void CListBoxWithCallback::scrollTo(size_t pos)
  229. {
  230. CListBox::scrollTo(pos);
  231. if(movedPosCallback)
  232. movedPosCallback(getPos());
  233. }
  234. void CListBoxWithCallback::moveToPos(size_t pos)
  235. {
  236. CListBox::moveToPos(pos);
  237. if(movedPosCallback)
  238. movedPosCallback(getPos());
  239. }
  240. void CListBoxWithCallback::moveToNext()
  241. {
  242. CListBox::moveToNext();
  243. if(movedPosCallback)
  244. movedPosCallback(getPos());
  245. }
  246. void CListBoxWithCallback::moveToPrev()
  247. {
  248. CListBox::moveToPrev();
  249. if(movedPosCallback)
  250. movedPosCallback(getPos());
  251. }