mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 06:54:31 -04:00
44c43610ce
* cmake: disable edit&continue flags * goos: make the build system work for alternate file paths nicely * vs: update vs config * vscode: extend terminal buffer! * vs: fix presets * debugger: fix exception handler * game: add logo to application * decomp: get `cam-master` to "work" -- manually changed return type * debugger: fix printing issue * game: get the camera actually working * game: neutralize the analog sticks * game: support analog sticks * tests: update ref tests * temp commit - inprogress stuff * fix `send-macro` * turn camera stuff back on, seems to work. Still kernel-dispatch problem though * address feedback * formatting
95 lines
3.2 KiB
YAML
95 lines
3.2 KiB
YAML
version: '3'
|
|
|
|
tasks:
|
|
format:
|
|
cmds:
|
|
- cmd: python ./third-party/run-clang-format/run-clang-format.py -r common decompiler game goalc test -i
|
|
# npm install -g prettier
|
|
- cmd: prettier --write ./decompiler/config/jak1_ntsc_black_label/*.jsonc
|
|
ignore_error: true
|
|
run-game:
|
|
cmds:
|
|
- ./out/build/Release/bin/gk.exe -fakeiso -debug
|
|
run-game-headless:
|
|
cmds:
|
|
- ./out/build/Release/bin/gk.exe -fakeiso -debug -nodisplay
|
|
repl:
|
|
env:
|
|
OPENGOAL_DECOMP_DIR: "jak1/"
|
|
cmds:
|
|
# (mi) | (test-play)
|
|
- ./out/build/Release/bin/goalc.exe -auto-lt
|
|
decomp:
|
|
cmds:
|
|
- ./out/build/Release/bin/decompiler.exe "./decompiler/config/jak1_ntsc_black_label.jsonc" "./iso_data/jak1" "./decompiler_out/jak1"
|
|
decomp-clean:
|
|
cmds:
|
|
- rm ./decompiler_out/**/*.asm
|
|
- rm ./decompiler_out/**/*disasm.gc
|
|
decomp-file:
|
|
cmds:
|
|
- python ./scripts/next-decomp-file.py --files "{{.FILES}}"
|
|
- task: decomp
|
|
decomp-list:
|
|
cmds:
|
|
- python ./scripts/next-decomp-file.py --list "{{.LIST}}"
|
|
vars:
|
|
LIST: '{{default "0" .LIST}}'
|
|
# python -m pip install -U watchdog[watchmedo]
|
|
decomp-watch:
|
|
cmds:
|
|
- watchmedo shell-command --drop --patterns="*.gc;*.jsonc" --recursive --command='task decomp-file FILES="{{.FILES}}"' ./decompiler/config/
|
|
clean-all-types:
|
|
cmds:
|
|
- python ./scripts/cleanup-all-types.py
|
|
analyze-ee-memory:
|
|
cmds:
|
|
- ./out/build/Release/bin/memory_dump_tool.exe "{{.FILE}}" ./ > ee-analysis.log
|
|
watch-pcsx2:
|
|
cmds:
|
|
- watchmedo shell-command --drop --patterns="*.p2s" --recursive --command='task analyze-ee-memory FILE="${watch_src_path}"' "{{.SAVESTATE_DIR}}"
|
|
vars:
|
|
SAVESTATE_DIR: '{{default "." .SAVESTATE_DIR}}'
|
|
offline-tests:
|
|
cmds:
|
|
- ./out/build/Release/bin/offline-test.exe "./iso_data/jak1"
|
|
add-reference-test:
|
|
cmds:
|
|
- task: decomp-file
|
|
- python ./scripts/add-reference-test.py --file "{{.FILES}}"
|
|
- task: offline-tests
|
|
add-reference-test-no-decomp:
|
|
cmds:
|
|
- python ./scripts/add-reference-test.py --file "{{.FILES}}"
|
|
- task: offline-tests
|
|
update-reference-tests:
|
|
cmds:
|
|
- cmd: python ./scripts/default-file-or-folder.py --path failures
|
|
- cmd: ./out/build/Release/bin/offline-test.exe "./iso_data/jak1" --dump-mode
|
|
ignore_error: true
|
|
- python ./scripts/update_decomp_reference.py ./failures ./test/decompiler/reference/
|
|
- task: offline-tests
|
|
find-label-types:
|
|
cmds:
|
|
- python ./scripts/next-decomp-file.py --files "{{.FILES}}"
|
|
- task: decomp
|
|
- python ./scripts/find-label-types.py --file "{{.FILES}}"
|
|
type-test:
|
|
cmds:
|
|
- ./out/build/Release/bin/goalc-test.exe --gtest_brief=0 --gtest_filter="*MANUAL_TEST_TypeConsistencyWithBuildFirst*"
|
|
update-gsrc:
|
|
cmds:
|
|
- python ./scripts/next-decomp-file.py --files "{{.FILES}}"
|
|
- task: decomp
|
|
- python ./scripts/update-goal-src.py --files "{{.FILES}}"
|
|
- task: type-test
|
|
# TODO - make a script that checks for function/method splits
|
|
file-good?:
|
|
cmds:
|
|
- task: type-test
|
|
- task: offline-tests
|
|
- task: find-label-types
|
|
cast-repl:
|
|
cmds:
|
|
- cmd: python ./scripts/cast-repl.py
|