From dfddd07b8b5cbff7c09103a694aed40bda254a2d Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Thu, 13 Mar 2025 12:47:54 -0400 Subject: Obsolete savefile reader + IPC solves Now, panel solve state is all read from the sync fields in datastorage. The "show hunt panels" field in settings is now a radio box, and you can choose to show all panels. --- src/tracker_panel.cpp | 75 +++++++-------------------------------------------- 1 file changed, 10 insertions(+), 65 deletions(-) (limited to 'src/tracker_panel.cpp') diff --git a/src/tracker_panel.cpp b/src/tracker_panel.cpp index d8ba054..0a756e6 100644 --- a/src/tracker_panel.cpp +++ b/src/tracker_panel.cpp @@ -9,7 +9,6 @@ #include "area_popup.h" #include "game_data.h" #include "global.h" -#include "godot_variant.h" #include "ipc_state.h" #include "tracker_config.h" #include "tracker_state.h" @@ -52,20 +51,18 @@ TrackerPanel::TrackerPanel(wxWindow *parent) : wxPanel(parent, wxID_ANY) { } void TrackerPanel::UpdateIndicators(bool reset) { - if (panels_mode_ && !savedata_path_) { - solved_panels_ = IPC_GetSolvedPanels(); - } - if (reset) { for (AreaIndicator &area : areas_) { const MapArea &map_area = GD_GetMapArea(area.area_id); if (IsAreaPostgame(area.area_id)) { area.active = false; - } else if (panels_mode_) { - area.active = map_area.has_single_panel; } else if (!AP_IsLocationVisible(map_area.classification) && - !(map_area.hunt && GetTrackerConfig().show_hunt_panels) && + !(map_area.hunt && GetTrackerConfig().visible_panels == + TrackerConfig::kHUNT_PANELS) && + !(map_area.has_single_panel && + GetTrackerConfig().visible_panels == + TrackerConfig::kALL_PANELS) && !(AP_IsPaintingShuffle() && !map_area.paintings.empty())) { area.active = false; } else { @@ -85,47 +82,10 @@ void TrackerPanel::UpdateIndicators(bool reset) { Redraw(); } -void TrackerPanel::SetPanelsMode() { panels_mode_ = true; } - -void TrackerPanel::SetSavedataPath(std::string savedata_path) { - if (!savedata_path_) { - refresh_button_ = new wxButton(this, wxID_ANY, "Refresh"); - refresh_button_->Bind(wxEVT_BUTTON, &TrackerPanel::OnRefreshSavedata, this); - SetUpRefreshButton(); - } - - savedata_path_ = savedata_path; - panels_mode_ = true; - - UpdateIndicators(/*reset=*/true); - RefreshSavedata(); -} - -void TrackerPanel::RefreshSavedata() { - solved_panels_.clear(); - - GodotVariant godot_variant = ParseGodotFile(*savedata_path_); - for (const GodotVariant &panel_node : godot_variant.AsArray()) { - const std::vector &fields = panel_node.AsArray(); - if (fields[1].AsBool()) { - const std::vector &nodepath = fields[0].AsNodePath(); - std::string key = fmt::format("{}/{}", nodepath[3], nodepath[4]); - solved_panels_.insert(key); - } - } - - UpdateIndicators(/*reset=*/false); - Refresh(); -} - void TrackerPanel::OnPaint(wxPaintEvent &event) { if (GetSize() != rendered_.GetSize()) { Resize(); Redraw(); - - if (refresh_button_ != nullptr) { - SetUpRefreshButton(); - } } wxBufferedPaintDC dc(this); @@ -174,10 +134,6 @@ void TrackerPanel::OnMouseMove(wxMouseEvent &event) { event.Skip(); } -void TrackerPanel::OnRefreshSavedata(wxCommandEvent &event) { - RefreshSavedata(); -} - void TrackerPanel::Resize() { wxSize panel_size = GetClientSize(); wxSize image_size = map_image_.GetSize(); @@ -281,18 +237,12 @@ void TrackerPanel::Redraw() { // Nope. } else if (IsLocationWinCondition(section)) { has_unchecked = !AP_HasReachedGoal(); - } else if (panels_mode_) { - if (section.single_panel) { - const Panel &panel = GD_GetPanel(*section.single_panel); - if (panel.non_counting) { - has_unchecked = !AP_HasCheckedGameLocation(section.ap_location_id); - } else { - has_unchecked = !GetSolvedPanels().contains(panel.nodepath); - } - } } else if (AP_IsLocationVisible(section.classification)) { has_unchecked = !AP_HasCheckedGameLocation(section.ap_location_id); - } else if (section.hunt && GetTrackerConfig().show_hunt_panels) { + } else if ((section.hunt && GetTrackerConfig().visible_panels == + TrackerConfig::kHUNT_PANELS) || + (section.single_panel && GetTrackerConfig().visible_panels == + TrackerConfig::kALL_PANELS)) { has_unchecked = !AP_IsPanelSolved(GD_GetPanel(*section.single_panel).solve_index); } @@ -306,7 +256,7 @@ void TrackerPanel::Redraw() { } } - if (AP_IsPaintingShuffle() && !panels_mode_) { + if (AP_IsPaintingShuffle()) { for (int painting_id : map_area.paintings) { if (IsPaintingPostgame(painting_id)) { continue; @@ -358,8 +308,3 @@ void TrackerPanel::Redraw() { } } } - -void TrackerPanel::SetUpRefreshButton() { - refresh_button_->SetSize(FromDIP(15), FromDIP(15), wxDefaultCoord, - wxDefaultCoord, wxSIZE_AUTO); -} -- cgit 1.4.1