From dacbe8e3fbda85f7c2e7e7b660795f2a080a9d25 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 13 Mar 2025 11:55:55 -0400 Subject: Use sync fields for hunt panels --- src/game_data.cpp | 31 +++++++++++++++++++++++++++---- 1 file changed, 27 insertions(+), 4 deletions(-) (limited to 'src/game_data.cpp') diff --git a/src/game_data.cpp b/src/game_data.cpp index 7c221e9..a5af66b 100644 --- a/src/game_data.cpp +++ b/src/game_data.cpp @@ -33,6 +33,7 @@ struct GameData { std::map room_by_painting_; std::map room_by_sunwarp_; + std::map panel_by_solve_index_; std::vector achievement_panels_; @@ -77,6 +78,8 @@ struct GameData { rooms_.reserve(lingo_config.size() * 2); + std::vector panel_location_ids; + for (const auto &room_it : lingo_config) { int room_id = AddOrGetRoom(room_it.first.as()); room_definition_order_.push_back(room_id); @@ -266,10 +269,11 @@ struct GameData { ids_config["panels"][rooms_[room_id].name] && ids_config["panels"][rooms_[room_id].name] [panels_[panel_id].name]) { - panels_[panel_id].ap_location_id = - ids_config["panels"][rooms_[room_id].name] - [panels_[panel_id].name] - .as(); + int location_id = ids_config["panels"][rooms_[room_id].name] + [panels_[panel_id].name] + .as(); + panels_[panel_id].ap_location_id = location_id; + panel_location_ids.push_back(location_id); } else { TrackerLog(fmt::format("Missing AP location ID for panel {} - {}", rooms_[room_id].name, @@ -563,6 +567,21 @@ struct GameData { } } + // Determine the panel solve indices from the sorted location IDs. + std::sort(panel_location_ids.begin(), panel_location_ids.end()); + + std::map solve_index_by_location_id; + for (int i = 0; i < panel_location_ids.size(); i++) { + solve_index_by_location_id[panel_location_ids[i]] = i; + } + + for (Panel &panel : panels_) { + if (panel.ap_location_id != -1) { + panel.solve_index = solve_index_by_location_id[panel.ap_location_id]; + panel_by_solve_index_[panel.solve_index] = panel.id; + } + } + map_areas_.reserve(areas_config.size()); std::map fold_areas; @@ -938,6 +957,10 @@ const Panel &GD_GetPanel(int panel_id) { return GetState().panels_.at(panel_id); } +int GD_GetPanelBySolveIndex(int solve_index) { + return GetState().panel_by_solve_index_.at(solve_index); +} + const std::vector &GD_GetPaintings() { return GetState().paintings_; } -- cgit 1.4.1