ObjectLists.cpp 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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. if(slider)
  164. slider->scrollTo(which);
  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. }