about summary refs log tree commit diff stats
path: root/src/global.cpp
blob: 1eb3f8d0da185eaa8897da0a3af2c0f2c2d76324 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "global.h"

#include <whereami.h>

#include <filesystem>
#include <string>
#include <string_view>

#include "ap_state.h"
#include "game_data.h"

const std::filesystem::path& GetExecutableDirectory() {
  static const std::filesystem::path* executable_directory = []() {
    int length = wai_getExecutablePath(NULL, 0, NULL);
    std::string buf(length, 0);
    wai_getExecutablePath(buf.data(), length, NULL);

    std::filesystem::path exec_path(buf);
    return new std::filesystem::path(exec_path.parent_path());
  }();

  return *executable_directory;
}

std::string GetAbsolutePath(std::string_view path) {
  return (GetExecutableDirectory() / path).string();
}

bool IsLocationWinCondition(const Location& location) {
  switch (AP_GetVictoryCondition()) {
    case kTHE_END:
      return location.ap_location_name ==
             "Orange Tower Seventh Floor - THE END";
    case kTHE_MASTER:
      return location.ap_location_name ==
             "Orange Tower Seventh Floor - THE MASTER";
    case kLEVEL_2:
      return location.ap_location_name == "Second Room - LEVEL 2";
    case kPILGRIMAGE:
      return location.ap_location_name == "Pilgrim Antechamber - PILGRIM";
  }
}
s="w"> std::string &GetUser() const { return ap_user_; } const std::string &GetPass() const { return ap_pass_; } virtual wxEvent *Clone() const { return new ApConnectEvent(*this); } private: std::string ap_server_; std::string ap_user_; std::string ap_pass_; }; struct StateUpdate { std::vector<ItemState> items; std::vector<std::string> paintings; bool achievements = false; bool open_panels_tab = false; bool cleared_locations = false; bool hunt_panels = false; bool player_position = false; }; class StateChangedEvent : public wxEvent { public: StateChangedEvent(wxEventType eventType, int winid, StateUpdate state) : wxEvent(winid, eventType), state_(std::move(state)) {} const StateUpdate &GetState() const { return state_; } virtual wxEvent *Clone() const { return new StateChangedEvent(*this); } private: StateUpdate state_; }; wxDECLARE_EVENT(STATE_RESET, wxCommandEvent); wxDECLARE_EVENT(STATE_CHANGED, StateChangedEvent); wxDECLARE_EVENT(STATUS_CHANGED, wxCommandEvent); wxDECLARE_EVENT(CONNECT_TO_AP, ApConnectEvent); class TrackerFrame : public wxFrame { public: TrackerFrame(); void ConnectToAp(std::string server, std::string user, std::string pass); void UpdateStatusMessage(); void ResetIndicators(); void UpdateIndicators(StateUpdate state); private: void OnExit(wxCommandEvent &event); void OnAbout(wxCommandEvent &event); void OnApConnect(wxCommandEvent &event); void OnIpcConnect(wxCommandEvent &event); void OnSettings(wxCommandEvent &event); void OnCheckForUpdates(wxCommandEvent &event); void OnZoomIn(wxCommandEvent &event); void OnZoomOut(wxCommandEvent &event); void OnChangePage(wxBookCtrlEvent &event); void OnOpenFile(wxCommandEvent &event); void OnSashPositionChanged(wxSplitterEvent &event); void OnStateReset(wxCommandEvent &event); void OnStateChanged(StateChangedEvent &event); void OnStatusChanged(wxCommandEvent &event); void OnConnectToAp(ApConnectEvent &event); std::unique_ptr<Updater> updater_; wxSplitterWindow *splitter_window_; wxNotebook *notebook_; TrackerPanel *tracker_panel_; AchievementsPane *achievements_pane_; ItemsPane *items_pane_; OptionsPane *options_pane_; PaintingsPane *paintings_pane_; SubwayMap *subway_map_; TrackerPanel *panels_panel_ = nullptr; wxMenuItem *zoom_in_menu_item_; wxMenuItem *zoom_out_menu_item_; IconCache icons_; }; #endif /* end of include guard: TRACKER_FRAME_H_86BD8DFB */