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/ipc_state.cpp | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'src/ipc_state.cpp') diff --git a/src/ipc_state.cpp b/src/ipc_state.cpp index a99fa89..6e2a440 100644 --- a/src/ipc_state.cpp +++ b/src/ipc_state.cpp @@ -39,7 +39,6 @@ struct IPCState { std::string game_ap_user; std::optional> player_position; - std::set solved_panels; // Thread state std::unique_ptr ws; @@ -103,12 +102,6 @@ struct IPCState { return player_position; } - std::set GetSolvedPanels() { - std::lock_guard state_guard(state_mutex); - - return solved_panels; - } - private: void Thread() { for (;;) { @@ -134,7 +127,6 @@ struct IPCState { game_ap_user.clear(); player_position = std::nullopt; - solved_panels.clear(); if (address.empty()) { initialized = false; @@ -273,7 +265,6 @@ struct IPCState { slot_matches = false; player_position = std::nullopt; - solved_panels.clear(); } } @@ -314,14 +305,6 @@ struct IPCState { std::make_tuple(msg["position"]["x"], msg["position"]["z"]); tracker_frame->UpdateIndicators(StateUpdate{.player_position = true}); - } else if (msg["cmd"] == "SolvePanels") { - std::lock_guard state_guard(state_mutex); - - for (std::string panel : msg["panels"]) { - solved_panels.insert(std::move(panel)); - } - - tracker_frame->UpdateIndicators(StateUpdate{.open_panels_tab = true}); } } @@ -382,7 +365,3 @@ bool IPC_IsConnected() { return GetState().IsConnected(); } std::optional> IPC_GetPlayerPosition() { return GetState().GetPlayerPosition(); } - -std::set IPC_GetSolvedPanels() { - return GetState().GetSolvedPanels(); -} -- cgit 1.4.1