tmodloader-mcp 0.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tmodloader_mcp-0.6.0/.gitignore +16 -0
- tmodloader_mcp-0.6.0/CHANGELOG.md +1463 -0
- tmodloader_mcp-0.6.0/LICENSE +21 -0
- tmodloader_mcp-0.6.0/PKG-INFO +526 -0
- tmodloader_mcp-0.6.0/README.md +505 -0
- tmodloader_mcp-0.6.0/docs/MOD_CONTRACT.md +787 -0
- tmodloader_mcp-0.6.0/pyproject.toml +85 -0
- tmodloader_mcp-0.6.0/responder/CaptureBounds.cs +61 -0
- tmodloader_mcp-0.6.0/responder/CaptureFind.cs +54 -0
- tmodloader_mcp-0.6.0/responder/DevArtifacts.cs +265 -0
- tmodloader_mcp-0.6.0/responder/DevBridgeGate.cs +73 -0
- tmodloader_mcp-0.6.0/responder/DevChat.cs +267 -0
- tmodloader_mcp-0.6.0/responder/DevCommandBridge.cs +251 -0
- tmodloader_mcp-0.6.0/responder/DevCommandRegistry.cs +209 -0
- tmodloader_mcp-0.6.0/responder/DevCommands.cs +235 -0
- tmodloader_mcp-0.6.0/responder/DevMutationArgs.cs +636 -0
- tmodloader_mcp-0.6.0/responder/DevMutations.cs +525 -0
- tmodloader_mcp-0.6.0/responder/DevResponder.cs +1460 -0
- tmodloader_mcp-0.6.0/responder/FrameShot.cs +173 -0
- tmodloader_mcp-0.6.0/responder/README.md +224 -0
- tmodloader_mcp-0.6.0/responder/SHA256SUMS +13 -0
- tmodloader_mcp-0.6.0/responder/ShotRegion.cs +109 -0
- tmodloader_mcp-0.6.0/responder/tests/CaptureBoundsTests.cs +96 -0
- tmodloader_mcp-0.6.0/responder/tests/CaptureFindTests.cs +76 -0
- tmodloader_mcp-0.6.0/responder/tests/DevArtifactNamesTests.cs +108 -0
- tmodloader_mcp-0.6.0/responder/tests/DevArtifactsTests.cs +298 -0
- tmodloader_mcp-0.6.0/responder/tests/DevBridgeGateTests.cs +135 -0
- tmodloader_mcp-0.6.0/responder/tests/DevCommandRegistryTests.cs +339 -0
- tmodloader_mcp-0.6.0/responder/tests/DevCommandsTests.cs +360 -0
- tmodloader_mcp-0.6.0/responder/tests/DevMutationsTests.cs +911 -0
- tmodloader_mcp-0.6.0/responder/tests/DevResponderContractTests.cs +231 -0
- tmodloader_mcp-0.6.0/responder/tests/PlayerTokenTests.cs +52 -0
- tmodloader_mcp-0.6.0/responder/tests/Responder.Tests.csproj +44 -0
- tmodloader_mcp-0.6.0/responder/tests/ShotRegionTests.cs +121 -0
- tmodloader_mcp-0.6.0/responder/tests/VendorBoundaryTests.cs +129 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/__init__.py +0 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/api.py +262 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/build.py +141 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/captures.py +204 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/commands.py +182 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/config.py +565 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/diag.py +201 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/heartbeat.py +197 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/inventory.py +130 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/logs.py +453 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/saves.py +469 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/server.py +1667 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/session.py +2716 -0
- tmodloader_mcp-0.6.0/src/tmodloader_mcp/triggers.py +542 -0
- tmodloader_mcp-0.6.0/template/README.md +70 -0
- tmodloader_mcp-0.6.0/tests/live_bridge_check.py +232 -0
- tmodloader_mcp-0.6.0/tests/live_capture_check.py +217 -0
- tmodloader_mcp-0.6.0/tests/live_check.py +122 -0
- tmodloader_mcp-0.6.0/tests/live_entities_check.py +296 -0
- tmodloader_mcp-0.6.0/tests/live_mutations_check.py +269 -0
- tmodloader_mcp-0.6.0/tests/live_protocol_check.py +449 -0
- tmodloader_mcp-0.6.0/tests/live_round2_check.py +370 -0
- tmodloader_mcp-0.6.0/tests/live_server_address_check.py +149 -0
- tmodloader_mcp-0.6.0/tests/test_addressing.py +2230 -0
- tmodloader_mcp-0.6.0/tests/test_api_search.py +365 -0
- tmodloader_mcp-0.6.0/tests/test_artifact_names.py +205 -0
- tmodloader_mcp-0.6.0/tests/test_build.py +167 -0
- tmodloader_mcp-0.6.0/tests/test_captures.py +382 -0
- tmodloader_mcp-0.6.0/tests/test_commands.py +267 -0
- tmodloader_mcp-0.6.0/tests/test_config.py +677 -0
- tmodloader_mcp-0.6.0/tests/test_diag.py +279 -0
- tmodloader_mcp-0.6.0/tests/test_doc_links.py +198 -0
- tmodloader_mcp-0.6.0/tests/test_heartbeat.py +226 -0
- tmodloader_mcp-0.6.0/tests/test_inventory.py +164 -0
- tmodloader_mcp-0.6.0/tests/test_live_check_contract.py +509 -0
- tmodloader_mcp-0.6.0/tests/test_log_files.py +124 -0
- tmodloader_mcp-0.6.0/tests/test_log_watch.py +224 -0
- tmodloader_mcp-0.6.0/tests/test_logs.py +356 -0
- tmodloader_mcp-0.6.0/tests/test_mcp_json.py +74 -0
- tmodloader_mcp-0.6.0/tests/test_mcp_protocol.py +887 -0
- tmodloader_mcp-0.6.0/tests/test_mod_contract_doc.py +185 -0
- tmodloader_mcp-0.6.0/tests/test_pids.py +92 -0
- tmodloader_mcp-0.6.0/tests/test_player_token.py +53 -0
- tmodloader_mcp-0.6.0/tests/test_reply_tags.py +246 -0
- tmodloader_mcp-0.6.0/tests/test_saves.py +516 -0
- tmodloader_mcp-0.6.0/tests/test_server_surface.py +287 -0
- tmodloader_mcp-0.6.0/tests/test_session_lifecycle.py +1483 -0
- tmodloader_mcp-0.6.0/tests/test_template_mod.py +129 -0
- tmodloader_mcp-0.6.0/tests/test_triggers.py +339 -0
- tmodloader_mcp-0.6.0/tests/test_vendor_manifest.py +101 -0
- tmodloader_mcp-0.6.0/tests/test_wait_until.py +532 -0
- tmodloader_mcp-0.6.0/tests/test_world_path.py +55 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.venv/
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.pyc
|
|
4
|
+
dist/
|
|
5
|
+
.pytest_cache/
|
|
6
|
+
.ruff_cache/
|
|
7
|
+
|
|
8
|
+
# .NET build artifacts
|
|
9
|
+
bin/
|
|
10
|
+
obj/
|
|
11
|
+
|
|
12
|
+
# The API indexer's build output. The index it produces is cached under the
|
|
13
|
+
# user's cache directory, keyed to the tModLoader it describes - neither
|
|
14
|
+
# belongs in version control.
|
|
15
|
+
tools/ApiIndex/bin/
|
|
16
|
+
tools/ApiIndex/obj/
|