Commit Graph

188 Commits

Author SHA1 Message Date
Jeremy Saklad cb11bf7c07
Move Skull to different file 2021-08-03 12:19:21 -05:00
Jeremy Saklad ebbcf965cd
Move Torso to different file 2021-08-03 12:16:16 -05:00
Jeremy Saklad ee71de9b8a
Move Action to different file
In order to move remaining enumerations into other files, dependencies
in this file need to be moved as well.

The folder is named "objects" because "types" is taken as a name.
2021-08-03 12:12:11 -05:00
Jeremy Saklad 27add1aa47
Move Cost enumeration to different file
Having a single extremely large file harms readability. To solve this
problem, the Cost enumeration is now in a distinct file.
2021-08-03 12:02:06 -05:00
Jeremy Saklad f13497e9b8
Add README
This should make it easier for people to actually use the tool.
2021-08-03 11:33:35 -05:00
Jeremy Saklad 985414aeab
Add Windows-specific curses dependency
The curses module is not included with Python on Windows, and must be
installed as a package. The Pipfile has been updated to do this when run
on Windows.
2021-07-20 11:15:56 -05:00
Jeremy Saklad b07752ce95
Add insect fascination for Diplomat
This fascination effectively requires an Insect declaration, and scales
with all three skeleton attributes multiplied together.
2021-07-14 10:39:20 -05:00
Jeremy Saklad 545e46e301
Make world quality arguments optional
In the absence of provided values, the script will use the "normal"
values for everything. While this may produce suboptimal results, it
could prove helpful for creating worst-case scenario designs.
2021-07-11 15:49:50 -05:00
Jeremy Saklad c73023d4dc
Reorganize command-line arguments
All arguments are now enclosed in a single argument group to improve the
generated help text.

Due to how argparse works, this means that the script now allows
redundant command-line arguments like specifying the occasional buyer
and explicit buyers.

The grammar of the help text has been made slightly more consistent.
2021-07-11 15:49:50 -05:00
Jeremy Saklad 630d63a555
Remove arguments from verbosity flag
'-v' and '--verbose' no longer accept an argument, optional or
otherwise. Instead, they simply act as a flag.

This dramatically simplifies the help text and implementation of the
flags.
2021-07-11 15:49:46 -05:00
Jeremy Saklad 12773d479e
Remove comments on Diplomat difficulty
It has been confirmed that no Trifling Diplomat option is meant to have
a Shadowy check.
2021-07-09 10:46:56 -05:00
Jeremy Saklad a709f5404b
Erase comment on Trifling Diplomat bird difficulty
The Trifling Diplomat does not have a Shadowy challenge at all for this
fascination, so the difficulty level is effectively zero.
2021-07-08 16:15:35 -05:00
Jeremy Saklad afbad8b532
Clean up requirements
Declarations that require a specific range of torso style now use one
constraint to model that, rather than two.

Inconsistent whitespace has been cleaned up.

Skipping tails is only possible if there are tails to skip.
2021-07-07 15:12:03 -05:00
Jeremy Saklad 82363c8172
Update fluctuation bonuses for hybrid buyers
The multiplier is now 1/2 instead of 4/5.

This means that is no longer necessary to multiply before dividing.
2021-07-07 14:17:55 -05:00
Jeremy Saklad 76a7effb6e
Add the Enterprising Boot Salesman
This buyer scales with the number of legs on the skeleton.
2021-07-06 14:18:07 -05:00
Jeremy Saklad cf45cd81ce
Add Menace fluctuation
This fluctuation affects buyers similarly to the existing fluctuations,
and uses a similar implementation as a result.
2021-07-06 13:19:29 -05:00
Jeremy Saklad 283bf92243
Add bird fascination for Diplomat
This fascination effectively requires a Bird declaration, and scales
with all three skeleton attributes multiplied together.
2021-07-06 12:33:03 -05:00
Jeremy Saklad 673b6160c6
Define DiplomatFascination functionally
Rather than laboriously replicating every fascination the Trifling
Diplomat has, the script now exploits the consistent member names to
generate the list automatically.

This should not have any effect on usage, but will ease future
maintainance.
2021-07-06 12:18:49 -05:00
Jeremy Saklad 9b7162527d
Add DiplomatFascination to public interface
Its prior exclusion was a mistake: this is necessary to use Solve.
2021-07-06 12:05:10 -05:00
Jeremy Saklad dc75b4d157
Fix missing variable name 2021-07-06 11:42:20 -05:00
Jeremy Saklad 0c08586f24
Remove unnecessary use of setattr()
If an attribute is referenced using a string literal, there is no reason
to use setattr().
2021-07-06 11:27:13 -05:00
Jeremy Saklad 3a97dba0cb
Change names of DiplomatFascination members
The new names are more consistent with other enumerations, namely
Declaration and Fluctuation.
2021-07-06 11:25:15 -05:00
Jeremy Saklad a2e8fe8b62
Add fossilised fish fascination for Diplomat
This fascination effectively requires a Fish declaration, and scales
with all three skeleton attributes multiplied together.
2021-06-29 15:56:42 -05:00
Jeremy Saklad dd01457cc4
Fix description of Zoological Mania option
Not all declarations have a 10% bonus associated with them.
2021-06-25 18:40:39 -05:00
Jeremy Saklad 7a6a0697e3
Add the Trifling Diplomat
This buyer actually changes based on a world quality. As such, it has
been implemented in a similar fashion to Occasional Buyer.

The scaling for this buyer's difficulty level has not been established
at the time of this writing, so it is being treated as 0.
2021-06-25 18:37:41 -05:00
Jeremy Saklad b13c416d5e
Stop requiring desired buyers or occasional buyer
If no occasional or desired buyers are specified, the script will choose
from among the buyers that are definitely present.
2021-06-25 17:37:32 -05:00
Jeremy Saklad d09e43bedb
Simplify and normalize argument parsing
The script now uses dictionary unpacking to pass arguments, rather than
explicitly listing each one.

The parser now suppresses missing parameters by default. This means that
the default values of the Solve function can be taken advantage, rather
than having to repeat them for the parser's sake.
2021-06-25 17:11:43 -05:00
Jeremy Saklad 7565f30d32
Update formula for Zoological Mania bonus
Certain declarations now have their value boosted by 15% during
Zoological Mania, rather than just 10%.

The list of declarations is currently hardcoded, and may need to be
updated in the future.
2021-06-24 08:45:59 -05:00
Jeremy Saklad f7c8753c12
Update fluctuation effects on hybrid buyers
The formula for hybrid buyers has been changed to make the fluctuation
bonus scale with the corresponding attribute.
2021-06-22 09:04:41 -05:00
Jeremy Saklad a860c8acde
Add the Ingenuous Malacologist
This buyer scales with the number of tentacles on the skeleton.
2021-06-22 08:25:12 -05:00
Jeremy Saklad 4d6220a25a
Update exponent of quadratic buyers with boost
Quadratic buyers now use a power of 2.1 rather than 2.2 when affected by
Bone Market Fluctuations.
2021-06-22 05:45:33 -05:00
Jeremy Saklad de85deb48d
Fix crash due to terminal overflow
The program will now scroll the screen when outputting intermediate
solutions without sufficient space, rather than crashing.
2021-06-19 08:21:37 -05:00
Jeremy Saklad afeabe603a
Fix whitespace 2021-06-19 08:21:37 -05:00
Jeremy Saklad b7f47da9d0
Add command-line parameter for Shadowy level
This argument determines how difficult selling to a buyer is, which
influences how much Implausibility the solver produces.
2021-06-19 08:21:30 -05:00
TheTaques eb94bb3b44
Add command-line parameter for workers
This allows users to adjust the number of CPU threads that the solver uses, which may be useful if you want to leave it running while you use it.
2021-06-18 16:18:40 -05:00
Jeremy Saklad a8b835aba3
Add module-level information
A docstring has been added describing the module's purpose.

__all__ has been added. It is limited to the declarations needed to use
Solve().

The author's name has been added.
2021-06-18 15:28:56 -05:00
Jeremy Saklad aee575848b
Only run main() if program is run directly
Checking that __name__ is "__main__" prevents main() from being run if
this script is imported as a module.
2021-06-18 15:13:03 -05:00
Jeremy Saklad 4808f23a98
Clean up imports
Imports are now sorted lexicographically, and import specific
declarations when appropriate.
2021-06-18 15:08:28 -05:00
Jeremy Saklad 7e259e3d69
Use docstrings instead of comments if appropriate
Unlike comments, docstrings support runtime introspection and other
features.

The docstrings are arguably a bit sparse, but this is sufficient for the
time being.
2021-06-18 14:44:30 -05:00
Jeremy Saklad 65fa45eac7
Fix identifier for torso style variable
The previous identifier used an underscore instead of a space to
separate the words.
2021-06-18 13:49:44 -05:00
Jeremy Saklad ebdc1cd803
Standardize quotes across script
Single quotes are used for identifiers.

Double quotes are used for strings that are meant to be read by users.
2021-06-18 13:48:20 -05:00
Jeremy Saklad f60adb09a8
Fix line breaks in enumerations 2021-06-18 13:47:09 -05:00
Jeremy Saklad c6c04c1025
Count starting limbs in cost of adding joints
Some torsos, notably the Headless Skeleton, come with pre-filled limbs
that must be factored into the calculation.
2021-06-17 11:26:24 -05:00
Jeremy Saklad 244e87e4bf
Change Knotted Humerus value
It has been buffed.
2021-06-17 11:13:48 -05:00
Jeremy Saklad 4025cc2b3f
Adjust values to reflect recent changes
There have been a few nerfs to various overpowered sources and
components.
2021-06-17 08:30:48 -05:00
Jeremy Saklad 5a43e0c9e6
Add ability to specify multiple buyers at once
Users can now specify multiple buyers, allowing the solver to figure out
the best skeleton that could be sold to any of them. This could be
useful for buyers that share a payout.
2021-06-16 17:28:16 -05:00
Jeremy Saklad 9b47e777b4
Fix Exhaustion of Colourful Phantasist
The Colourful Phantasist includes the minimum secondary reward in the
exhaustion formula.
2021-06-16 15:53:10 -05:00
Jeremy Saklad 3032ec320a
Add command-line parameter for occasional buyers
Some buyers are only available based on a world quality. The solver now
skips buyers if they are not available. This is specified using a new
parameter, which is mutually-exclusive with specifying a specific
buyer.

If no buyer is specified, this world quality must be specified instead to tell
the solver who is around.
2021-06-16 15:30:48 -05:00
Jeremy Saklad 2dd7643909
Add command-line parameter for time limit
You can now pass an optional time limit to the script, which causes the
solver to return the best solution it has once the duration has elapsed.
2021-06-16 11:32:05 -05:00
Jeremy Saklad 29238cd245
Change minimum of Phantasist's derived exhaustion
If the minimum is 0, then that value will never be allowed to be
negative. Since it is calculated even when that is not the selected
buyer, that prevents overcorrections that should be permitted.
2021-06-15 17:48:41 -05:00