├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Utility ├── __init__.py ├── debug_cmd.py ├── devmode_cmd.py ├── helpers_compile.py ├── helpers_debug.py ├── helpers_decompile.py ├── helpers_exec.py ├── helpers_package.py ├── helpers_path.py ├── helpers_symlink.py ├── helpers_time.py ├── helpers_type_hints.py ├── helpers_venv.py ├── injector.py └── process_module.py ├── assets └── .gitkeep ├── bundle_build.py ├── cleanup.py ├── compile.py ├── debug_setup.py ├── debug_teardown.py ├── decompile.py ├── devmode.py ├── fix_tuning_names.py ├── protoc └── .gitkeep ├── pycdc └── .gitkeep ├── settings.py.orig ├── src ├── helpers │ ├── __init__.py │ └── injector.py └── main.py ├── sync_packages.py └── type_hints.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/README.md -------------------------------------------------------------------------------- /Utility/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/__init__.py -------------------------------------------------------------------------------- /Utility/debug_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/debug_cmd.py -------------------------------------------------------------------------------- /Utility/devmode_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/devmode_cmd.py -------------------------------------------------------------------------------- /Utility/helpers_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_compile.py -------------------------------------------------------------------------------- /Utility/helpers_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_debug.py -------------------------------------------------------------------------------- /Utility/helpers_decompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_decompile.py -------------------------------------------------------------------------------- /Utility/helpers_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_exec.py -------------------------------------------------------------------------------- /Utility/helpers_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_package.py -------------------------------------------------------------------------------- /Utility/helpers_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_path.py -------------------------------------------------------------------------------- /Utility/helpers_symlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_symlink.py -------------------------------------------------------------------------------- /Utility/helpers_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_time.py -------------------------------------------------------------------------------- /Utility/helpers_type_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_type_hints.py -------------------------------------------------------------------------------- /Utility/helpers_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/helpers_venv.py -------------------------------------------------------------------------------- /Utility/injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/injector.py -------------------------------------------------------------------------------- /Utility/process_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/Utility/process_module.py -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundle_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/bundle_build.py -------------------------------------------------------------------------------- /cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/cleanup.py -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/compile.py -------------------------------------------------------------------------------- /debug_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/debug_setup.py -------------------------------------------------------------------------------- /debug_teardown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/debug_teardown.py -------------------------------------------------------------------------------- /decompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/decompile.py -------------------------------------------------------------------------------- /devmode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/devmode.py -------------------------------------------------------------------------------- /fix_tuning_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/fix_tuning_names.py -------------------------------------------------------------------------------- /protoc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycdc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings.py.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/settings.py.orig -------------------------------------------------------------------------------- /src/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/helpers/injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/src/helpers/injector.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/src/main.py -------------------------------------------------------------------------------- /sync_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/sync_packages.py -------------------------------------------------------------------------------- /type_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mycroftjr/Sims4ScriptingTemplate/HEAD/type_hints.py --------------------------------------------------------------------------------