summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* Lingo: Various generation optimizations (#2479)Star Rauchenberger2023-11-257-169/+330
| | | | | | | | | | | Almost all of the events have been eradicated, which significantly improves both generation speed and playthrough calculation. Previously, checking for access to a location involved checking for access to each panel in the location, as well as recursively checking for access to any panels required by those panels. This potentially performed the same check multiple times. The access requirements for locations are now calculated and flattened in generate_early, so that the access function can directly check for the required rooms, doors, and colors. These flattened access requirements are also used for Entrance checking, and register_indirect_condition is used to make sure that can_reach(Region) is safe to use. The Mastery and Level 2 rules now just run a bunch of access rules and count the number of them that succeed, instead of relying on event items. Finally: the Level 2 panel hunt is now enabled even when Level 2 is not the victory condition, as I feel that generation is fast enough now for that to be acceptable.
* Lingo: Move datafiles into a subdirectory (#2459)Star Rauchenberger2023-11-244-5/+68
|
* Lingo: Demote warpless painting items to filler (#2481)Star Rauchenberger2023-11-241-2/+11
|
* Lingo: Change docs to link to the client in the Steam Workshop (#2486)Star Rauchenberger2023-11-231-9/+7
|
* Lingo: Sync config with game update (#2447)Star Rauchenberger2023-11-163-8/+28
|
* Lingo: Made entrance names unique (#2454)Star Rauchenberger2023-11-121-4/+11
|
* Lingo: Removed "Reached" event items (#2442)Star Rauchenberger2023-11-102-8/+2
|
* Lingo: Fix edge case painting shuffle accessibility issues (#2441)Star Rauchenberger2023-11-103-30/+58
| | | | | | | | | | | | | | | | | | | * Lingo: Fix painting shuffle logic issue in The Wise * Lingo: More generic painting cycle prevention * Lingo: okay how about now * Lingo: Consider Owl Hallway blocked painting areas in vanilla doors * Lingo: so honestly I should've seen this one coming * Lingo: Refined req_blocked for vanilla doors * Lingo: Orange Tower Basement is also owl-blocked * Lingo: Rewrite randomize_paintings to eliminate rerolls Now, mapping is done in two phases, rather than assigning everything at once and then rerolling if the mapping is non-viable.
* Lingo: New game (#1806)Star Rauchenberger2023-11-0821-0/+11542
Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com> Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com> Co-authored-by: Phar <zach@alliware.com>