-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.txt
28 lines (20 loc) · 1.01 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
To extend this program:
- Make a new python file in the generators directory.
- Code your generator in there, it should return a list of dictionairies
[
{"name" : "beat 1A"},
ect..
]
(If you want to make use of the normal slr v5 generator used my bingosync. Import it using
from generators.baseGens.slrv5 import slrv5
then call
slrv5.genBoardSlrv5(json, seed)
)
- Go to the generatorHandler.py file and a value to the gameModeDict dictionairy. Which key is the name of your generator,
and its value is a lambda function from json and seed to board file. (If you don't want to support any json but want something
specific to the gen, simpelly take the json argument but don't use it)
(The generator will always recieve a number between 0 and 999999 as a string (TODO: Make this not true))
- Add your name to the credits
(and test the code obviously)
Notes:
- The generatorJsons are actually python files for build purposes, when adding something there, please don't add any code for readablility sake.