about summary refs log tree commit diff stats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* Assigned IDs for the_galleryStar Rauchenberger2025-08-131-0/+7
|
* Converted to proto2Star Rauchenberger2025-08-126-19/+18
| | | | | | | | | | | | | | | | | 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.
* Add gravity to paintings/portsStar Rauchenberger2025-08-111-2/+6
|
* Assigned IDs for the_congruentStar Rauchenberger2025-08-103-0/+91
| | | | | Keyholders are packed now. Doors can rely on keyholders and rooms. Paintings can be exit only.
* Assigned IDs for the_colorfulStar Rauchenberger2025-08-102-0/+21
| | | | | | Also fixed bug where the ID assigner didn't read letter and mastery IDs and would thus reuse them. I reassigned all IDs because of this (since we don't need to worry about ID stability yet).
* Added support for masteriesStar Rauchenberger2025-08-099-7/+196
| | | | | Also assigned IDs for the_butterfly, as well as already configured letters.
* Propagate complete_at to packed datafileStar Rauchenberger2025-08-091-2/+6
|
* Assigned IDs for the_bearerStar Rauchenberger2025-08-091-0/+4
| | | | | assign_ids now doesn't assign IDs for event doors, since they can't ever be locations or items.
* Added special IDsStar Rauchenberger2025-08-072-0/+13
|
* Assign AP IDs to doors and panels protoStar Rauchenberger2025-08-073-0/+202
|
* Started apworldStar Rauchenberger2025-08-071-0/+8
| | | | | | | vcpkg's libprotobuf is older than what PIP has, but neither are completely up to date either. Ugh. Doors have a room now because that's where the location will go.
* Process the rest of the defined protosStar Rauchenberger2025-08-072-2/+200
|
* Protobuf works! Parsing connectionsStar Rauchenberger2025-08-074-3/+473
|
* Trying out protobuf I guessStar Rauchenberger2025-08-071-0/+21
id='n328' href='#n328'>328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549