diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-06-06 15:54:41 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-06-06 15:54:41 -0400 |
| commit | 8ddab49cc13d809ca75dcd7f645661a3d3cb05c4 (patch) | |
| tree | ba1e5f3237dbb7cdc939c35e193f5e6e46845a77 /src/subway_map.h | |
| parent | ac38dd0a5c394eefc39b7a8cf7b96762f18c8b31 (diff) | |
| parent | 6f5287b3921c843a6b322ccbdfcbef00a8f16980 (diff) | |
| download | lingo-ap-tracker-8ddab49cc13d809ca75dcd7f645661a3d3cb05c4.tar.gz lingo-ap-tracker-8ddab49cc13d809ca75dcd7f645661a3d3cb05c4.tar.bz2 lingo-ap-tracker-8ddab49cc13d809ca75dcd7f645661a3d3cb05c4.zip | |
Merge branch 'subway'
Diffstat (limited to 'src/subway_map.h')
| -rw-r--r-- | src/subway_map.h | 92 |
1 files changed, 92 insertions, 0 deletions
| diff --git a/src/subway_map.h b/src/subway_map.h new file mode 100644 index 0000000..feee8ff --- /dev/null +++ b/src/subway_map.h | |||
| @@ -0,0 +1,92 @@ | |||
| 1 | #ifndef SUBWAY_MAP_H_BD2D843E | ||
| 2 | #define SUBWAY_MAP_H_BD2D843E | ||
| 3 | |||
| 4 | #include <wx/wxprec.h> | ||
| 5 | |||
| 6 | #ifndef WX_PRECOMP | ||
| 7 | #include <wx/wx.h> | ||
| 8 | #endif | ||
| 9 | |||
| 10 | #include <memory> | ||
| 11 | #include <optional> | ||
| 12 | #include <set> | ||
| 13 | #include <string> | ||
| 14 | #include <vector> | ||
| 15 | |||
| 16 | #include <quadtree/Quadtree.h> | ||
| 17 | |||
| 18 | #include "game_data.h" | ||
| 19 | #include "network_set.h" | ||
| 20 | |||
| 21 | class SubwayMap : public wxPanel { | ||
| 22 | public: | ||
| 23 | SubwayMap(wxWindow *parent); | ||
| 24 | |||
| 25 | void OnConnect(); | ||
| 26 | void UpdateIndicators(); | ||
| 27 | void UpdateSunwarp(SubwaySunwarp from_sunwarp, SubwaySunwarp to_sunwarp); | ||
| 28 | void Zoom(bool in); | ||
| 29 | |||
| 30 | private: | ||
| 31 | void OnPaint(wxPaintEvent &event); | ||
| 32 | void OnMouseMove(wxMouseEvent &event); | ||
| 33 | void OnMouseScroll(wxMouseEvent &event); | ||
| 34 | void OnMouseLeave(wxMouseEvent &event); | ||
| 35 | void OnMouseClick(wxMouseEvent &event); | ||
| 36 | void OnTimer(wxTimerEvent &event); | ||
| 37 | void OnZoomSlide(wxCommandEvent &event); | ||
| 38 | void OnClickHelp(wxCommandEvent &event); | ||
| 39 | |||
| 40 | void Redraw(); | ||
| 41 | void SetUpHelpButton(); | ||
| 42 | |||
| 43 | wxPoint MapPosToRenderPos(wxPoint pos) const; | ||
| 44 | wxPoint MapPosToVirtualPos(wxPoint pos) const; | ||
| 45 | wxPoint RenderPosToMapPos(wxPoint pos) const; | ||
| 46 | |||
| 47 | void EvaluateScroll(wxPoint pos); | ||
| 48 | |||
| 49 | void SetZoomPos(wxPoint pos); | ||
| 50 | void SetScrollSpeed(int scroll_x, int scroll_y); | ||
| 51 | void SetZoom(double zoom, wxPoint static_point); | ||
| 52 | |||
| 53 | wxImage map_image_; | ||
| 54 | wxImage owl_image_; | ||
| 55 | wxBitmap unchecked_eye_; | ||
| 56 | wxBitmap checked_eye_; | ||
| 57 | |||
| 58 | wxBitmap rendered_; | ||
| 59 | int render_x_ = 0; | ||
| 60 | int render_y_ = 0; | ||
| 61 | int render_width_ = 1; | ||
| 62 | int render_height_ = 1; | ||
| 63 | |||
| 64 | double zoom_ = 1.0; | ||
| 65 | int zoom_x_ = 0; // in render space | ||
| 66 | int zoom_y_ = 0; | ||
| 67 | |||
| 68 | bool scroll_mode_ = false; | ||
| 69 | wxTimer* scroll_timer_; | ||
| 70 | int scroll_x_ = 0; | ||
| 71 | int scroll_y_ = 0; | ||
| 72 | |||
| 73 | wxSlider *zoom_slider_; | ||
| 74 | |||
| 75 | wxButton *help_button_; | ||
| 76 | |||
| 77 | std::optional<wxPoint> mouse_position_; | ||
| 78 | |||
| 79 | struct GetItemBox { | ||
| 80 | quadtree::Box<float> operator()(const int &id) const; | ||
| 81 | }; | ||
| 82 | |||
| 83 | std::unique_ptr<quadtree::Quadtree<int, GetItemBox>> tree_; | ||
| 84 | std::optional<int> hovered_item_; | ||
| 85 | std::optional<int> actual_hover_; | ||
| 86 | bool sticky_hover_ = false; | ||
| 87 | |||
| 88 | NetworkSet networks_; | ||
| 89 | std::set<std::string> checked_paintings_; | ||
| 90 | }; | ||
| 91 | |||
| 92 | #endif /* end of include guard: SUBWAY_MAP_H_BD2D843E */ | ||
