ObjectLists.cpp 5.6 KB

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