├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── README.md ├── hopper ├── patch_tcc_db.py ├── proxy.py └── start.py ├── ida ├── __init__.py ├── endpoints.py ├── globals.py ├── ida_helpers.py ├── notes.md └── proxy.py ├── media ├── dep.png └── dep.svg ├── package.json ├── src ├── api │ ├── client.ts │ ├── endpoints.ts │ ├── hopper.ts │ ├── ida.ts │ └── model.ts ├── bootstrap │ ├── bootstrap.ts │ ├── hopper.ts │ └── ida.ts ├── commands.ts ├── document-manager.ts ├── extension.ts ├── psc │ └── ida-psc-cleaner.ts ├── status.ts ├── terminal.ts ├── util.ts └── views │ ├── base-provider.ts │ ├── hooks.ts │ ├── open-documents.ts │ ├── procs.ts │ ├── selectors.ts │ └── strings.ts ├── test ├── FLEXing ├── extension.test.ts └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/.vscodeignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/README.md -------------------------------------------------------------------------------- /hopper/patch_tcc_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/hopper/patch_tcc_db.py -------------------------------------------------------------------------------- /hopper/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/hopper/proxy.py -------------------------------------------------------------------------------- /hopper/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/hopper/start.py -------------------------------------------------------------------------------- /ida/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/ida/__init__.py -------------------------------------------------------------------------------- /ida/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/ida/endpoints.py -------------------------------------------------------------------------------- /ida/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/ida/globals.py -------------------------------------------------------------------------------- /ida/ida_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/ida/ida_helpers.py -------------------------------------------------------------------------------- /ida/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/ida/notes.md -------------------------------------------------------------------------------- /ida/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/ida/proxy.py -------------------------------------------------------------------------------- /media/dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/media/dep.png -------------------------------------------------------------------------------- /media/dep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/media/dep.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/package.json -------------------------------------------------------------------------------- /src/api/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/api/client.ts -------------------------------------------------------------------------------- /src/api/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/api/endpoints.ts -------------------------------------------------------------------------------- /src/api/hopper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/api/hopper.ts -------------------------------------------------------------------------------- /src/api/ida.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/api/ida.ts -------------------------------------------------------------------------------- /src/api/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/api/model.ts -------------------------------------------------------------------------------- /src/bootstrap/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/bootstrap/bootstrap.ts -------------------------------------------------------------------------------- /src/bootstrap/hopper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/bootstrap/hopper.ts -------------------------------------------------------------------------------- /src/bootstrap/ida.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/bootstrap/ida.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/document-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/document-manager.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/psc/ida-psc-cleaner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/psc/ida-psc-cleaner.ts -------------------------------------------------------------------------------- /src/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/status.ts -------------------------------------------------------------------------------- /src/terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/terminal.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/views/base-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/views/base-provider.ts -------------------------------------------------------------------------------- /src/views/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/views/hooks.ts -------------------------------------------------------------------------------- /src/views/open-documents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/views/open-documents.ts -------------------------------------------------------------------------------- /src/views/procs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/views/procs.ts -------------------------------------------------------------------------------- /src/views/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/views/selectors.ts -------------------------------------------------------------------------------- /src/views/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/src/views/strings.ts -------------------------------------------------------------------------------- /test/FLEXing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/test/FLEXing -------------------------------------------------------------------------------- /test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/test/extension.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NSCake/TweakStudio/HEAD/tsconfig.json --------------------------------------------------------------------------------