about summary refs log tree commit diff stats
path: root/src/ap_state.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ap_state.h')
-rw-r--r--src/ap_state.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/ap_state.h b/src/ap_state.h new file mode 100644 index 0000000..d880c71 --- /dev/null +++ b/src/ap_state.h
@@ -0,0 +1,33 @@
1#ifndef AP_STATE_H_664A4180
2#define AP_STATE_H_664A4180
3
4#include <map>
5#include <string>
6
7#include "game_data.h"
8
9class TrackerFrame;
10
11enum DoorShuffleMode { kNO_DOORS = 0, kSIMPLE_DOORS = 1, kCOMPLEX_DOORS = 2 };
12
13void AP_SetTrackerFrame(TrackerFrame* tracker_frame);
14
15void AP_Connect(std::string server, std::string player, std::string password);
16
17bool AP_HasCheckedGameLocation(int area_id, int section_id);
18
19bool AP_HasColorItem(LingoColor color);
20
21bool AP_HasItem(const std::string& item, int quantity = 1);
22
23DoorShuffleMode AP_GetDoorShuffleMode();
24
25bool AP_IsColorShuffle();
26
27bool AP_IsPaintingShuffle();
28
29const std::map<std::string, std::string> AP_GetPaintingMapping();
30
31int AP_GetMasteryRequirement();
32
33#endif /* end of include guard: AP_STATE_H_664A4180 */