diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-03 14:09:40 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-05-03 14:09:40 -0400 |
commit | dc4a14397ae226d91041389c2a47993f9c22f83d (patch) | |
tree | e881fcac382d53961899bd60565ef77422101f6d /ap_state.h | |
parent | 02c331f4e766558bba580d5b7db883357be005d5 (diff) | |
download | lingo-ap-tracker-dc4a14397ae226d91041389c2a47993f9c22f83d.tar.gz lingo-ap-tracker-dc4a14397ae226d91041389c2a47993f9c22f83d.tar.bz2 lingo-ap-tracker-dc4a14397ae226d91041389c2a47993f9c22f83d.zip |
Added painting shuffle support
Diffstat (limited to 'ap_state.h')
-rw-r--r-- | ap_state.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ap_state.h b/ap_state.h index 5ed7574..8f27a23 100644 --- a/ap_state.h +++ b/ap_state.h | |||
@@ -32,6 +32,12 @@ class APState { | |||
32 | 32 | ||
33 | bool IsColorShuffle() const { return color_shuffle_; } | 33 | bool IsColorShuffle() const { return color_shuffle_; } |
34 | 34 | ||
35 | bool IsPaintingShuffle() const { return painting_shuffle_; } | ||
36 | |||
37 | const std::map<std::string, std::string> GetPaintingMapping() const { | ||
38 | return painting_mapping_; | ||
39 | } | ||
40 | |||
35 | private: | 41 | private: |
36 | void RefreshTracker(); | 42 | void RefreshTracker(); |
37 | 43 | ||
@@ -51,6 +57,9 @@ class APState { | |||
51 | 57 | ||
52 | DoorShuffleMode door_shuffle_mode_ = kNO_DOORS; | 58 | DoorShuffleMode door_shuffle_mode_ = kNO_DOORS; |
53 | bool color_shuffle_ = false; | 59 | bool color_shuffle_ = false; |
60 | bool painting_shuffle_ = false; | ||
61 | |||
62 | std::map<std::string, std::string> painting_mapping_; | ||
54 | }; | 63 | }; |
55 | 64 | ||
56 | APState& GetAPState(); | 65 | APState& GetAPState(); |