ObjectLists.cpp 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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(slider)
  104. {
  105. slider->scrollTo((int)first);
  106. moveChildForeground(slider.get());
  107. }
  108. redraw();
  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. std::shared_ptr<CSlider> CListBox::getSlider()
  148. {
  149. return slider;
  150. }
  151. size_t CListBox::getIndexOf(std::shared_ptr<CIntObject> item)
  152. {
  153. size_t i=first;
  154. for(auto iter = items.begin(); iter != items.end(); iter++, i++)
  155. if(*iter == item)
  156. return i;
  157. return size_t(-1);
  158. }
  159. void CListBox::scrollTo(size_t which)
  160. {
  161. //scroll up
  162. if(first > which)
  163. moveToPos(which);
  164. //scroll down
  165. else if (first + items.size() <= which && which < totalSize)
  166. moveToPos(which - items.size() + 1);
  167. }
  168. void CListBox::moveToPos(size_t which)
  169. {
  170. //Calculate new position
  171. size_t maxPossible;
  172. if(totalSize > items.size())
  173. maxPossible = totalSize - items.size();
  174. else
  175. maxPossible = 0;
  176. size_t newPos = std::min(which, maxPossible);
  177. //If move distance is 1 (most of calls from Slider) - use faster shifts instead of resetting all items
  178. if(first - newPos == 1)
  179. {
  180. moveToPrev();
  181. }
  182. else if(newPos - first == 1)
  183. {
  184. moveToNext();
  185. }
  186. else if(newPos != first)
  187. {
  188. first = newPos;
  189. reset();
  190. }
  191. }
  192. void CListBox::moveToNext()
  193. {
  194. //Remove front item and insert new one to end
  195. if(first + items.size() < totalSize)
  196. {
  197. first++;
  198. deleteItem(items.front());
  199. items.pop_front();
  200. items.push_back(createItem(first+items.size()));
  201. updatePositions();
  202. }
  203. }
  204. void CListBox::moveToPrev()
  205. {
  206. //Remove last item and insert new one at start
  207. if(first)
  208. {
  209. first--;
  210. deleteItem(items.back());
  211. items.pop_back();
  212. items.push_front(createItem(first));
  213. updatePositions();
  214. }
  215. }
  216. size_t CListBox::getPos()
  217. {
  218. return first;
  219. }
  220. const std::list<std::shared_ptr<CIntObject>> & CListBox::getItems()
  221. {
  222. return items;
  223. }
  224. CListBoxWithCallback::CListBoxWithCallback(CListBoxWithCallback::MovedPosCallback callback, CreateFunc create, Point pos, Point itemOffset,
  225. size_t visibleSize, size_t totalSize, size_t initialPos, int slider, Rect sliderPos)
  226. : CListBox(create, pos, itemOffset, visibleSize, totalSize, initialPos, slider, sliderPos)
  227. {
  228. movedPosCallback = callback;
  229. }
  230. void CListBoxWithCallback::scrollTo(size_t pos)
  231. {
  232. CListBox::scrollTo(pos);
  233. if(movedPosCallback)
  234. movedPosCallback(getPos());
  235. }
  236. void CListBoxWithCallback::moveToPos(size_t pos)
  237. {
  238. CListBox::moveToPos(pos);
  239. if(movedPosCallback)
  240. movedPosCallback(getPos());
  241. }
  242. void CListBoxWithCallback::moveToNext()
  243. {
  244. CListBox::moveToNext();
  245. if(movedPosCallback)
  246. movedPosCallback(getPos());
  247. }
  248. void CListBoxWithCallback::moveToPrev()
  249. {
  250. CListBox::moveToPrev();
  251. if(movedPosCallback)
  252. movedPosCallback(getPos());
  253. }