To build for linux64:
$ make -j$(nproc)
To build for win64:
$ PLATFORM=win64 make -j$(nproc)
Requires GNU make and gcc/mingw.
Building for windows is currently broken, I'll work on that some time.
This program is based on the source code to SimCityPak and SporeModder-FX.
What do the programs do:
- test_update: Downloads the SimCity game scripts into ./update. (You first have to run
mkdir update
for it to work.) - test_package
file
: Prints information in parsing the .package filefile
. - test_crcbin
dir
: Prints information in parsing the directory containins .bin files.
Quick "style guide":
- Source files must not exceed 1000 lines. If it is longer than 1000 lines, break it up into smaller modules.
- Each source file must have it's own header file, unless it has an entrypoint (main() function).