Compare commits
3 commits
2024.02.10
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a73e487a5 | |||
| 1523860c9a | |||
| a36c9a95f0 |
2 changed files with 14 additions and 8 deletions
13
MFOR.py
13
MFOR.py
|
|
@ -146,12 +146,13 @@ def main():
|
|||
settings.update({"-PALSUITS-": True})
|
||||
if "p" in args.palettes:
|
||||
settings.update({"-PALSPRITES-": True})
|
||||
settings = {key: settings[key] for key in sorted(settings.keys())}
|
||||
start_randomizer(args.file, settings)
|
||||
if len(logic) > 0:
|
||||
print("\nRandom settings:")
|
||||
for item in logic:
|
||||
print(item)
|
||||
|
||||
settings = {key: settings[key] for key in sorted(settings.keys())}
|
||||
start_randomizer(args.file, settings)
|
||||
if len(logic) > 0:
|
||||
print("\nRandom settings:")
|
||||
for item in logic:
|
||||
print(item)
|
||||
|
||||
else:
|
||||
import GUI
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@ Caveat emptor: the project is already diverging from the original decompilation
|
|||
- [x] Reconstructing missing parts of code
|
||||
- [x] Patching
|
||||
- [x] Generating BPS patches (python-bps-continued used to apply base patch as it's platform independent, but FLIPS to generate BPS files)
|
||||
- [ ] Potentially merging/reimplementing the new features from v2024.02.10
|
||||
- [x] Potentially merging/reimplementing the new features from v2024.02.10
|
||||
- [ ] Merging the logic edits from v2024.02.10
|
||||
- [ ] Solver refactoring
|
||||
- [x] CI/CD for Windows frozen builds
|
||||
|
||||
|
|
@ -39,6 +40,10 @@ Caveat emptor: the project is already diverging from the original decompilation
|
|||
- ????
|
||||
- PROFIT
|
||||
|
||||
Prebuilt release builds might be available on the [releases](https://git.inabaudonge.reisen/OpenMFOR/OpenMFOR/releases) tab.
|
||||
|
||||
If you feel more inclined testing the tip of the development branches or playing with the logic, part of the following guide can be used on Windows too to run the randomizer from sources rather than PyInstaller packed executables.
|
||||
|
||||
## Install (any OS)
|
||||
|
||||
On *NIX OSes, the only strict prerequisites are Python 3.x and pip. For the GUI, sourcing `python3-tk` from your package manager is highly recommended.
|
||||
|
|
@ -71,7 +76,6 @@ The randomizer currently works **only** with the USA (and, by proxy, the Austral
|
|||
## Help
|
||||
|
||||
* [OpenMFOR Discord guild](https://discord.gg/QV3p8MWKab) since we've been told to refrain to bring this up on the wider community server over ongoing diplomacy issues.
|
||||
|
||||
* soon™ we might have an IRC channel or a Matrix group bridged to the Discord guild.
|
||||
|
||||
## Special Thanks
|
||||
|
|
@ -81,6 +85,7 @@ The randomizer currently works **only** with the USA (and, by proxy, the Austral
|
|||
- [tcprescott's python-bps-continued](https://github.com/tcprescott/python-bps-continued) since this makes at least rolling the seeds completely platform independent.
|
||||
- [Alcaro's Floating IPS](https://github.com/Alcaro/Flips)
|
||||
- Fedor Batogonov's [docker-pyinstaller](https://gitlab.com/batonogov/docker-pyinstaller) used by the CI/CD to make Windows builds on AppVeyor
|
||||
- The testers in the various Discord guilds that are spotting the massive scams before I do! (SkullAdult, Mr. Fox, baria, Fpiz_, jakoliath)
|
||||
|
||||
[Kazuto88](https://github.com/Kazuto88) being the original randomizer developer. The following lines are his special thanks to the people that contributed to making this a reality:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue