about summary refs log tree commit diff stats
path: root/tools/datapacker/container.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added door groupsStar Rauchenberger12 days1-0/+17
|
* Added progressive doorsStar Rauchenberger2025-09-011-0/+17
|
* Renamed Painting and Keyholder protosStar Rauchenberger2025-08-271-2/+2
|
* Added "endings" object typeStar Rauchenberger2025-08-201-0/+16
|
* Converted to proto2Star Rauchenberger2025-08-121-5/+5
| | | | | | | | | | | | | | | | | This will let us use an older version of protobuf in Python, and allows us to use the Godot protobuf implementation at all. Scalar fields with custom defaults in data.proto were changed to not have a default, because Godot doesn't handle it properly. The equivalent fields in human.proto still have the defaults, and datapacker copies the default value in if necessary. The Panel message in data.proto was also renamed to PanelData because otherwise it conflicts with the native Godot class named Panel. The double field in Letter was renamed to level2, because Godot couldn't handle it well. Finally, common.proto was removed and its contents were moved into data.proto, which allows us to generate code for Python without needing to edit it. NOTE: I had to slightly modify the Godot protobuf code generator. I'll need to upload that somewhere.
* Assigned IDs for the_congruentStar Rauchenberger2025-08-101-0/+40
| | | | | Keyholders are packed now. Doors can rely on keyholders and rooms. Paintings can be exit only.
* Added support for masteriesStar Rauchenberger2025-08-091-0/+77
| | | | | Also assigned IDs for the_butterfly, as well as already configured letters.
* Protobuf works! Parsing connectionsStar Rauchenberger2025-08-071-0/+205
n216' href='#n216'>216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342