diff options
Diffstat (limited to 'proto')
| -rw-r--r-- | proto/data.proto | 40 | ||||
| -rw-r--r-- | proto/human.proto | 57 |
2 files changed, 93 insertions, 4 deletions
| diff --git a/proto/data.proto b/proto/data.proto index 014cbeb..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 | ||
| 32 | enum DoorGroupType { | 35 | enum DoorGroupType { |
| @@ -49,6 +52,13 @@ enum DoorGroupType { | |||
| 49 | SHUFFLE_GROUP = 4; | 52 | SHUFFLE_GROUP = 4; |
| 50 | } | 53 | } |
| 51 | 54 | ||
| 55 | enum MapType { | ||
| 56 | NORMAL_MAP = 0; | ||
| 57 | ICARUS = 1; | ||
| 58 | GIFT_MAP = 2; | ||
| 59 | DEMO = 3; | ||
| 60 | } | ||
| 61 | |||
| 52 | enum AxisDirection { | 62 | enum AxisDirection { |
| 53 | AXIS_DIRECTION_UNKNOWN = 0; | 63 | AXIS_DIRECTION_UNKNOWN = 0; |
| 54 | 64 | ||
| @@ -84,6 +94,18 @@ enum PuzzleSymbol { | |||
| 84 | QUESTION = 19; | 94 | QUESTION = 19; |
| 85 | } | 95 | } |
| 86 | 96 | ||
| 97 | message Vec3d { | ||
| 98 | optional double x = 1; | ||
| 99 | optional double y = 2; | ||
| 100 | optional double z = 3; | ||
| 101 | } | ||
| 102 | |||
| 103 | message VersionNumber { | ||
| 104 | optional uint64 major = 1; | ||
| 105 | optional uint64 minor = 2; | ||
| 106 | optional uint64 patch = 3; | ||
| 107 | } | ||
| 108 | |||
| 87 | message ProxyIdentifier { | 109 | message ProxyIdentifier { |
| 88 | optional uint64 panel = 1; | 110 | optional uint64 panel = 1; |
| 89 | optional string answer = 2; | 111 | optional string answer = 2; |
| @@ -106,6 +128,9 @@ message Connection { | |||
| 106 | } | 128 | } |
| 107 | 129 | ||
| 108 | 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; | ||
| 109 | } | 134 | } |
| 110 | 135 | ||
| 111 | message Door { | 136 | message Door { |
| @@ -125,10 +150,13 @@ message Door { | |||
| 125 | repeated KeyholderAnswer keyholders = 13; | 150 | repeated KeyholderAnswer keyholders = 13; |
| 126 | repeated uint64 rooms = 14; | 151 | repeated uint64 rooms = 14; |
| 127 | repeated uint64 doors = 15; | 152 | repeated uint64 doors = 15; |
| 128 | repeated uint64 endings = 16; | 153 | optional bool white_ending = 16; |
| 129 | optional bool double_letters = 18; | 154 | optional bool double_letters = 18; |
| 155 | repeated string senders = 19; | ||
| 130 | 156 | ||
| 131 | optional DoorType type = 8; | 157 | optional DoorType type = 8; |
| 158 | optional bool latch = 20; | ||
| 159 | optional bool legacy_location = 21; | ||
| 132 | 160 | ||
| 133 | optional string location_name = 17; | 161 | optional string location_name = 17; |
| 134 | } | 162 | } |
| @@ -171,12 +199,16 @@ message PaintingData { | |||
| 171 | 199 | ||
| 172 | message Port { | 200 | message Port { |
| 173 | optional uint64 id = 1; | 201 | optional uint64 id = 1; |
| 202 | optional uint64 ap_id = 11; | ||
| 174 | optional uint64 room_id = 2; | 203 | optional uint64 room_id = 2; |
| 175 | optional string name = 3; | 204 | optional string name = 3; |
| 176 | 205 | ||
| 206 | optional string display_name = 10; | ||
| 177 | optional string path = 4; | 207 | optional string path = 4; |
| 178 | optional string orientation = 5; | 208 | optional Vec3d destination = 5; |
| 209 | optional double rotation = 8; | ||
| 179 | optional AxisDirection gravity = 7; | 210 | optional AxisDirection gravity = 7; |
| 211 | optional bool no_shuffle = 9; | ||
| 180 | 212 | ||
| 181 | optional uint64 required_door = 6; | 213 | optional uint64 required_door = 6; |
| 182 | } | 214 | } |
| @@ -242,6 +274,8 @@ message Map { | |||
| 242 | optional uint64 id = 1; | 274 | optional uint64 id = 1; |
| 243 | optional string name = 2; | 275 | optional string name = 2; |
| 244 | optional string display_name = 3; | 276 | optional string display_name = 3; |
| 277 | optional uint64 worldport_entrance = 4; | ||
| 278 | optional MapType type = 5; | ||
| 245 | } | 279 | } |
| 246 | 280 | ||
| 247 | message Progressive { | 281 | message Progressive { |
| @@ -260,6 +294,8 @@ message DoorGroup { | |||
| 260 | } | 294 | } |
| 261 | 295 | ||
| 262 | message AllObjects { | 296 | message AllObjects { |
| 297 | optional VersionNumber version = 15; | ||
| 298 | |||
| 263 | repeated Map maps = 7; | 299 | repeated Map maps = 7; |
| 264 | repeated Room rooms = 1; | 300 | repeated Room rooms = 1; |
| 265 | repeated Door doors = 2; | 301 | repeated Door doors = 2; |
| diff --git a/proto/human.proto b/proto/human.proto index d48f687..c586599 100644 --- a/proto/human.proto +++ b/proto/human.proto | |||
| @@ -66,6 +66,21 @@ message HumanConnection { | |||
| 66 | // If true, this connection will only be logically allowed if the Daedalus | 66 | // If true, this connection will only be logically allowed if the Daedalus |
| 67 | // Roof Access option is enabled. | 67 | // Roof Access option is enabled. |
| 68 | optional bool roof_access = 7; | 68 | optional bool roof_access = 7; |
| 69 | |||
| 70 | // This means that the connection intentionally skips the target object's | ||
| 71 | // required door. | ||
| 72 | optional bool bypass_target_door = 8; | ||
| 73 | |||
| 74 | // This means that the connection should additionally require all purple | ||
| 75 | // letters when the Strict Purple Ending option is on. | ||
| 76 | optional bool purple_ending = 9; | ||
| 77 | |||
| 78 | // This means that the connection should additionally require all cyan letters | ||
| 79 | // when the Strict Cyan Ending option is on. | ||
| 80 | optional bool cyan_ending = 10; | ||
| 81 | |||
| 82 | // This means that the connection only exists when doors are not shuffled. | ||
| 83 | optional bool vanilla_only = 11; | ||
| 69 | } | 84 | } |
| 70 | 85 | ||
| 71 | message HumanConnections { | 86 | message HumanConnections { |
| @@ -89,12 +104,26 @@ message HumanDoor { | |||
| 89 | repeated KeyholderIdentifier keyholders = 10; | 104 | repeated KeyholderIdentifier keyholders = 10; |
| 90 | repeated RoomIdentifier rooms = 11; | 105 | repeated RoomIdentifier rooms = 11; |
| 91 | repeated DoorIdentifier doors = 12; | 106 | repeated DoorIdentifier doors = 12; |
| 92 | repeated string endings = 13; | 107 | optional bool white_ending = 13; |
| 93 | optional bool double_letters = 15; | 108 | optional bool double_letters = 15; |
| 94 | 109 | ||
| 110 | // Sender nodes to be added to the list of requirements for triggering the | ||
| 111 | // location. Only for senders that have no logic requirements. | ||
| 112 | repeated string senders = 16; | ||
| 113 | |||
| 95 | optional DoorType type = 4; | 114 | optional DoorType type = 4; |
| 96 | optional string location_room = 5; | 115 | optional string location_room = 5; |
| 97 | optional string location_name = 14; | 116 | optional string location_name = 14; |
| 117 | |||
| 118 | // Non-item doors that are latched will stay open once opened, even if the | ||
| 119 | // opening trigger is deactivated. This applies to EVENT/LOCATION_ONLY doors, | ||
| 120 | // as well as item-locked doors when not shuffling doors. | ||
| 121 | optional bool latch = 17; | ||
| 122 | |||
| 123 | // If true, the client will treat this door like a location, even though no | ||
| 124 | // location is created for it in the generator. This helps provide backwards | ||
| 125 | // compatability with older worlds. | ||
| 126 | optional bool legacy_location = 18; | ||
| 98 | } | 127 | } |
| 99 | 128 | ||
| 100 | message HumanDoors { | 129 | message HumanDoors { |
| @@ -134,9 +163,16 @@ message HumanPainting { | |||
| 134 | 163 | ||
| 135 | message HumanPort { | 164 | message HumanPort { |
| 136 | optional string name = 1; | 165 | optional string name = 1; |
| 166 | optional string display_name = 8; | ||
| 137 | optional string path = 2; | 167 | optional string path = 2; |
| 138 | 168 | ||
| 139 | optional string orientation = 3; | 169 | optional bool no_shuffle = 7; |
| 170 | |||
| 171 | // These specify how the player should be placed when a randomized entrance | ||
| 172 | // sends them to this port. "rotation" is in degrees and is counter-clockwise | ||
| 173 | // from the positive X axis. | ||
| 174 | optional Vec3d destination = 3; | ||
| 175 | optional double rotation = 6; | ||
| 140 | optional AxisDirection gravity = 5 [default = Y_MINUS]; | 176 | optional AxisDirection gravity = 5 [default = Y_MINUS]; |
| 141 | 177 | ||
| 142 | optional DoorIdentifier required_door = 4; | 178 | optional DoorIdentifier required_door = 4; |
| @@ -190,7 +226,18 @@ message HumanRoom { | |||
| 190 | 226 | ||
| 191 | message HumanMap { | 227 | message HumanMap { |
| 192 | optional string display_name = 1; | 228 | optional string display_name = 1; |
| 229 | optional MapType type = 4; | ||
| 230 | |||
| 231 | optional PortIdentifier worldport_entrance = 3; | ||
| 232 | |||
| 233 | // These two fields are used by the validator and nothing else. excluded_nodes | ||
| 234 | // are objects in the tscn that are intentionally not mentioned in the txtpb. | ||
| 235 | // custom_nodes are the reverse of that; objects that are mentioned in the | ||
| 236 | // txtpb but not present in the tscn. These are generally created dynamically | ||
| 237 | // by the game mod, but may also be used for places where the validator is | ||
| 238 | // just wrong about the contents of the map file. | ||
| 193 | repeated string excluded_nodes = 2; | 239 | repeated string excluded_nodes = 2; |
| 240 | repeated string custom_nodes = 5; | ||
| 194 | } | 241 | } |
| 195 | 242 | ||
| 196 | message HumanProgressive { | 243 | message HumanProgressive { |
| @@ -212,11 +259,17 @@ message HumanDoorGroups { | |||
| 212 | repeated HumanDoorGroup door_groups = 1; | 259 | repeated HumanDoorGroup door_groups = 1; |
| 213 | } | 260 | } |
| 214 | 261 | ||
| 262 | message HumanGlobalMetadata { | ||
| 263 | repeated string special_names = 1; | ||
| 264 | optional VersionNumber version = 2; | ||
| 265 | } | ||
| 266 | |||
| 215 | message IdMappings { | 267 | message IdMappings { |
| 216 | message RoomIds { | 268 | message RoomIds { |
| 217 | map<string, uint64> panels = 1; | 269 | map<string, uint64> panels = 1; |
| 218 | map<string, uint64> masteries = 2; | 270 | map<string, uint64> masteries = 2; |
| 219 | map<string, uint64> keyholders = 3; | 271 | map<string, uint64> keyholders = 3; |
| 272 | map<string, uint64> ports = 4; | ||
| 220 | } | 273 | } |
| 221 | 274 | ||
| 222 | message MapIds { | 275 | message MapIds { |
