summary refs log tree commit diff stats
path: root/proto/human.proto
diff options
context:
space:
mode:
Diffstat (limited to 'proto/human.proto')
-rw-r--r--proto/human.proto12
1 files changed, 11 insertions, 1 deletions
diff --git a/proto/human.proto b/proto/human.proto index 205b867..d48f687 100644 --- a/proto/human.proto +++ b/proto/human.proto
@@ -86,7 +86,6 @@ message HumanDoor {
86 optional uint64 complete_at = 9; 86 optional uint64 complete_at = 9;
87 87
88 optional string control_center_color = 6; 88 optional string control_center_color = 6;
89 repeated string switches = 7;
90 repeated KeyholderIdentifier keyholders = 10; 89 repeated KeyholderIdentifier keyholders = 10;
91 repeated RoomIdentifier rooms = 11; 90 repeated RoomIdentifier rooms = 11;
92 repeated DoorIdentifier doors = 12; 91 repeated DoorIdentifier doors = 12;
@@ -203,6 +202,16 @@ message HumanProgressives {
203 repeated HumanProgressive progressives = 1; 202 repeated HumanProgressive progressives = 1;
204} 203}
205 204
205message HumanDoorGroup {
206 optional string name = 1;
207 optional DoorGroupType type = 2;
208 repeated DoorIdentifier doors = 3;
209}
210
211message HumanDoorGroups {
212 repeated HumanDoorGroup door_groups = 1;
213}
214
206message IdMappings { 215message IdMappings {
207 message RoomIds { 216 message RoomIds {
208 map<string, uint64> panels = 1; 217 map<string, uint64> panels = 1;
@@ -220,4 +229,5 @@ message IdMappings {
220 map<string, uint64> letters = 3; 229 map<string, uint64> letters = 3;
221 map<string, uint64> endings = 4; 230 map<string, uint64> endings = 4;
222 map<string, uint64> progressives = 5; 231 map<string, uint64> progressives = 5;
232 map<string, uint64> door_groups = 6;
223} 233}