-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* memfile fix attempt * memfile fix * update pr branch * readd crash address for pr tests * fix other refs * copy pasta * more granular actor pos/angle control * simplify menu closing logic, add proc id to actor list * migrate checkers to their own menu * minor cleanup * more actor view optimizations * skip startup logos * rm extra mappings in tools menu * lfc checker wip * use new docker image(s) * tell dme about the env it's running in * crash test * fix: Crash test at the end of main * removed redundant declaration * rm crash test * actor view address, update button combo checks for pause/delete * skip wii intros * rm extra testing * remove counters from save manager * use fpcEx_Search * very basic sound test menu * add set scent option in pause menu * rm debug logging * ee checker * golden bugs menu * allow setting of charlo donation * add leever range viewer * add funraising flags, sort rupee flags into their own menu * sort pause menu into sub menus * sort tools menu into sub menus * intro cs flag WIP * fix actor spawner * add coro/rusl td * update hundo saves, add stage info display * updating (simplifying) docker config * added wii BiTE saves * Update README.md Removed comment about the old patcher using a lot of memory. * account for dScnLogo_c size difference on PAL * rm wii fade on warning menu * use same class name for dScnLogo_c * add missing enum * keep fade function * rm intro cs flag feature for now * fix bombs * update release automation * fixed wii nand writing --------- Co-authored-by: kipcode66 <[email protected]> Co-authored-by: TakaRikka <[email protected]> Co-authored-by: kipcode66 <[email protected]>
- Loading branch information
1 parent
dac181e
commit f967268
Showing
280 changed files
with
7,144 additions
and
1,507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,43 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.241.1/containers/ubuntu | ||
{ | ||
"name": "Ubuntu", | ||
"name": "TGPZ", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
// Update 'VARIANT' to pick an Ubuntu version: jammy / ubuntu-22.04, focal / ubuntu-20.04, bionic /ubuntu-18.04 | ||
// Use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon. | ||
"args": { "VARIANT": "ubuntu-20.04" } | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"extensions": [ | ||
"ms-vscode.cpptools-extension-pack", | ||
"ms-vscode.makefile-tools", | ||
"ms-python.python", | ||
"ms-vscode.hexeditor", | ||
"twxs.cmake", | ||
"Gruntfuggly.todo-tree", | ||
"bungcip.better-toml", | ||
"mhutchie.git-graph" | ||
], | ||
"features": { | ||
"ghcr.io/devcontainers/features/python:1": { | ||
"version": "3.12.5" | ||
} | ||
}, | ||
|
||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-vscode.cpptools-extension-pack", | ||
"ms-vscode.makefile-tools", | ||
"ms-python.python", | ||
"ms-python.vscode-pylance", | ||
"ms-python.vscode-pylance", | ||
"ms-vscode.hexeditor", | ||
"twxs.cmake", | ||
"Gruntfuggly.todo-tree", | ||
"bungcip.better-toml", | ||
"mhutchie.git-graph" | ||
] | ||
} | ||
}, | ||
|
||
"onCreateCommand": "python3 -m pip install Pillow pycryptodome", | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"runArgs": [ | ||
"--network=host" | ||
], | ||
] | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
// "postCreateCommand": "uname -a", | ||
|
||
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "vscode" | ||
//"remoteUser": "vscode" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef C_PHASE_H | ||
#define C_PHASE_H | ||
|
||
#include "../../dolphin/types.h" | ||
|
||
typedef int (*cPhs__Handler)(void*); | ||
|
||
enum cPhs__Step { | ||
/* 0x0 */ cPhs_INIT_e, | ||
/* 0x1 */ cPhs_LOADING_e, | ||
/* 0x2 */ cPhs_NEXT_e, | ||
/* 0x3 */ cPhs_UNK3_e, // appears to be an alternate error code, unsure how it differs | ||
/* 0x4 */ cPhs_COMPLEATE_e, | ||
/* 0x5 */ cPhs_ERROR_e, | ||
}; | ||
|
||
typedef struct request_of_phase_process_class { | ||
cPhs__Handler* mpHandlerTable; | ||
int id; | ||
} request_of_phase_process_class; | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.