Home
last modified time | relevance | path

Searched refs:gResearchItemsInvented (Results 1 – 5 of 5) sorted by relevance

/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/management/
H A DResearch.cpp54 std::vector<ResearchItem> gResearchItemsInvented; variable
72 gResearchItemsInvented.clear(); in research_reset_items()
380 for (auto& researchItem : gResearchItemsInvented) in research_reset_current_item()
411 gResearchItemsInvented.push_back(std::move(item)); in research_insert_researched()
429 for (auto it = gResearchItemsInvented.begin(); it != gResearchItemsInvented.end(); it++) in ResearchRemove()
434 gResearchItemsInvented.erase(it); in ResearchRemove()
721 for (auto& researchItem : gResearchItemsInvented) in research_remove_flags()
730 for (auto it = gResearchItemsInvented.begin(); it != gResearchItemsInvented.end();) in research_fix()
738 it = gResearchItemsInvented.erase(it); in research_fix()
831 gResearchItemsInvented.clear(); in research_items_make_all_unresearched()
[all …]
H A DResearch.h167 extern std::vector<ResearchItem> gResearchItemsInvented;
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2-ui/windows/
H A DEditorInventionsList.cpp160 auto& researchList = scrollIndex == 0 ? gResearchItemsInvented : gResearchItemsUninvented; in move_research_item()
183 auto& researchList = scrollIndex == 0 ? gResearchItemsInvented : gResearchItemsUninvented; in window_editor_inventions_list_get_item_from_scroll_y()
202 auto& researchList = scrollIndex == 0 ? gResearchItemsInvented : gResearchItemsUninvented; in window_editor_inventions_list_get_item_from_scroll_y_include_seps()
362 *height += static_cast<int32_t>(gResearchItemsInvented.size()) * SCROLLABLE_ROW_HEIGHT; in window_editor_inventions_list_scrollgetheight()
587 const auto& researchList = scrollIndex == 0 ? gResearchItemsInvented : gResearchItemsUninvented; in window_editor_inventions_list_scrollpaint()
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/rct2/
H A DS6Exporter.cpp1059 for (const auto& researchItem : gResearchItemsInvented) in ExportResearchList()
H A DS6Importer.cpp1032 gResearchItemsInvented.emplace_back(researchItem); in ImportResearchList()