about summary refs log tree commit diff stats
path: root/proto/data.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/data.proto')
-rw-r--r--proto/data.proto44
1 files changed, 41 insertions, 3 deletions
diff --git a/proto/data.proto b/proto/data.proto index 24b98fe..e9cc7d7 100644 --- a/proto/data.proto +++ b/proto/data.proto
@@ -27,6 +27,9 @@ enum DoorType {
27 27
28 // This door is an item if gravestone shuffle is enabled, and is a location as long as panelsanity is not on. 28 // This door is an item if gravestone shuffle is enabled, and is a location as long as panelsanity is not on.
29 GRAVESTONE = 6; 29 GRAVESTONE = 6;
30
31 // This door is never a location, and is an item as long as gallery painting shuffle is on.
32 GALLERY_PAINTING = 7;
30} 33}
31 34
32enum DoorGroupType { 35enum DoorGroupType {
@@ -44,6 +47,16 @@ enum DoorGroupType {
44 47
45 // Groups with this type become an item if cyan door behavior is set to item. 48 // Groups with this type become an item if cyan door behavior is set to item.
46 CYAN_DOORS = 3; 49 CYAN_DOORS = 3;
50
51 // Groups with this type always become an item if door shuffle is on.
52 SHUFFLE_GROUP = 4;
53}
54
55enum MapType {
56 NORMAL_MAP = 0;
57 ICARUS = 1;
58 GIFT_MAP = 2;
59 DEMO = 3;
47} 60}
48 61
49enum AxisDirection { 62enum AxisDirection {
@@ -81,6 +94,18 @@ enum PuzzleSymbol {
81 QUESTION = 19; 94 QUESTION = 19;
82} 95}
83 96
97message Vec3d {
98 optional double x = 1;
99 optional double y = 2;
100 optional double z = 3;
101}
102
103message VersionNumber {
104 optional uint64 major = 1;
105 optional uint64 minor = 2;
106 optional uint64 patch = 3;
107}
108
84message ProxyIdentifier { 109message ProxyIdentifier {
85 optional uint64 panel = 1; 110 optional uint64 panel = 1;
86 optional string answer = 2; 111 optional string answer = 2;
@@ -103,6 +128,9 @@ message Connection {
103 } 128 }
104 129
105 optional bool roof_access = 7; 130 optional bool roof_access = 7;
131 optional bool purple_ending = 8;
132 optional bool cyan_ending = 9;
133 optional bool vanilla_only = 10;
106} 134}
107 135
108message Door { 136message Door {
@@ -119,14 +147,16 @@ message Door {
119 optional uint64 complete_at = 12; 147 optional uint64 complete_at = 12;
120 148
121 optional string control_center_color = 6; 149 optional string control_center_color = 6;
122 repeated string switches = 7;
123 repeated KeyholderAnswer keyholders = 13; 150 repeated KeyholderAnswer keyholders = 13;
124 repeated uint64 rooms = 14; 151 repeated uint64 rooms = 14;
125 repeated uint64 doors = 15; 152 repeated uint64 doors = 15;
126 repeated uint64 endings = 16; 153 optional bool white_ending = 16;
127 optional bool double_letters = 18; 154 optional bool double_letters = 18;
155 repeated string senders = 19;
128 156
129 optional DoorType type = 8; 157 optional DoorType type = 8;
158 optional bool latch = 20;
159 optional bool legacy_location = 21;
130 160
131 optional string location_name = 17; 161 optional string location_name = 17;
132} 162}
@@ -169,12 +199,16 @@ message PaintingData {
169 199
170message Port { 200message Port {
171 optional uint64 id = 1; 201 optional uint64 id = 1;
202 optional uint64 ap_id = 11;
172 optional uint64 room_id = 2; 203 optional uint64 room_id = 2;
173 optional string name = 3; 204 optional string name = 3;
174 205
206 optional string display_name = 10;
175 optional string path = 4; 207 optional string path = 4;
176 optional string orientation = 5; 208 optional Vec3d destination = 5;
209 optional double rotation = 8;
177 optional AxisDirection gravity = 7; 210 optional AxisDirection gravity = 7;
211 optional bool no_shuffle = 9;
178 212
179 optional uint64 required_door = 6; 213 optional uint64 required_door = 6;
180} 214}
@@ -240,6 +274,8 @@ message Map {
240 optional uint64 id = 1; 274 optional uint64 id = 1;
241 optional string name = 2; 275 optional string name = 2;
242 optional string display_name = 3; 276 optional string display_name = 3;
277 optional uint64 worldport_entrance = 4;
278 optional MapType type = 5;
243} 279}
244 280
245message Progressive { 281message Progressive {
@@ -258,6 +294,8 @@ message DoorGroup {
258} 294}
259 295
260message AllObjects { 296message AllObjects {
297 optional VersionNumber version = 15;
298
261 repeated Map maps = 7; 299 repeated Map maps = 7;
262 repeated Room rooms = 1; 300 repeated Room rooms = 1;
263 repeated Door doors = 2; 301 repeated Door doors = 2;