about summary refs log tree commit diff stats
path: root/tools/assign_ids/main.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added symbol shuffleStar Rauchenberger2025-09-091-0/+18
| | | | | Also fixed unlocked letters + any double letter cyan doors, and tweaked some logic related to important panels with symbols on them.
* Downgrade protobufStar Rauchenberger2025-09-081-0/+1
| | | | This allows the generated Python file to be compatible with the frozen Archipelago install.
* Added door groupsStar Rauchenberger2025-09-071-0/+20
|
* [Data] Strip unnecessary AP IDsStar Rauchenberger2025-09-041-16/+61
| | | | This was causing issues in the client, specifically for The Ancient.
* Added keyholder sanityStar Rauchenberger2025-09-021-0/+23
|
* Added progressive doorsStar Rauchenberger2025-09-011-33/+31
|
* Prevent assigning ap_id==0Star Rauchenberger2025-08-271-1/+1
|
* Added "endings" object typeStar Rauchenberger2025-08-201-0/+13
|
* Store IDs in a yaml fileStar Rauchenberger2025-08-191-9/+8
| | | | This is much more efficient than the txtpb format, and we only need an interface for it in C++ since the IDs will be packed into the binary proto representation.
* Minor changes for compiling on WindowsStar Rauchenberger2025-08-161-1/+1
|
* Converted to proto2Star Rauchenberger2025-08-121-2/+1
| | | | | | | | | | | | | | | | | 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_colorfulStar Rauchenberger2025-08-101-0/+12
| | | | | | 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-091-0/+30
| | | | | Also assigned IDs for the_butterfly, as well as already configured letters.
* 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-071-0/+8
|
* Assign AP IDs to doors and panelsStar Rauchenberger2025-08-071-0/+172
href='#n367'>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 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565