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.
Files changed (87) hide show
  1. tmodloader_mcp-0.6.0/.gitignore +16 -0
  2. tmodloader_mcp-0.6.0/CHANGELOG.md +1463 -0
  3. tmodloader_mcp-0.6.0/LICENSE +21 -0
  4. tmodloader_mcp-0.6.0/PKG-INFO +526 -0
  5. tmodloader_mcp-0.6.0/README.md +505 -0
  6. tmodloader_mcp-0.6.0/docs/MOD_CONTRACT.md +787 -0
  7. tmodloader_mcp-0.6.0/pyproject.toml +85 -0
  8. tmodloader_mcp-0.6.0/responder/CaptureBounds.cs +61 -0
  9. tmodloader_mcp-0.6.0/responder/CaptureFind.cs +54 -0
  10. tmodloader_mcp-0.6.0/responder/DevArtifacts.cs +265 -0
  11. tmodloader_mcp-0.6.0/responder/DevBridgeGate.cs +73 -0
  12. tmodloader_mcp-0.6.0/responder/DevChat.cs +267 -0
  13. tmodloader_mcp-0.6.0/responder/DevCommandBridge.cs +251 -0
  14. tmodloader_mcp-0.6.0/responder/DevCommandRegistry.cs +209 -0
  15. tmodloader_mcp-0.6.0/responder/DevCommands.cs +235 -0
  16. tmodloader_mcp-0.6.0/responder/DevMutationArgs.cs +636 -0
  17. tmodloader_mcp-0.6.0/responder/DevMutations.cs +525 -0
  18. tmodloader_mcp-0.6.0/responder/DevResponder.cs +1460 -0
  19. tmodloader_mcp-0.6.0/responder/FrameShot.cs +173 -0
  20. tmodloader_mcp-0.6.0/responder/README.md +224 -0
  21. tmodloader_mcp-0.6.0/responder/SHA256SUMS +13 -0
  22. tmodloader_mcp-0.6.0/responder/ShotRegion.cs +109 -0
  23. tmodloader_mcp-0.6.0/responder/tests/CaptureBoundsTests.cs +96 -0
  24. tmodloader_mcp-0.6.0/responder/tests/CaptureFindTests.cs +76 -0
  25. tmodloader_mcp-0.6.0/responder/tests/DevArtifactNamesTests.cs +108 -0
  26. tmodloader_mcp-0.6.0/responder/tests/DevArtifactsTests.cs +298 -0
  27. tmodloader_mcp-0.6.0/responder/tests/DevBridgeGateTests.cs +135 -0
  28. tmodloader_mcp-0.6.0/responder/tests/DevCommandRegistryTests.cs +339 -0
  29. tmodloader_mcp-0.6.0/responder/tests/DevCommandsTests.cs +360 -0
  30. tmodloader_mcp-0.6.0/responder/tests/DevMutationsTests.cs +911 -0
  31. tmodloader_mcp-0.6.0/responder/tests/DevResponderContractTests.cs +231 -0
  32. tmodloader_mcp-0.6.0/responder/tests/PlayerTokenTests.cs +52 -0
  33. tmodloader_mcp-0.6.0/responder/tests/Responder.Tests.csproj +44 -0
  34. tmodloader_mcp-0.6.0/responder/tests/ShotRegionTests.cs +121 -0
  35. tmodloader_mcp-0.6.0/responder/tests/VendorBoundaryTests.cs +129 -0
  36. tmodloader_mcp-0.6.0/src/tmodloader_mcp/__init__.py +0 -0
  37. tmodloader_mcp-0.6.0/src/tmodloader_mcp/api.py +262 -0
  38. tmodloader_mcp-0.6.0/src/tmodloader_mcp/build.py +141 -0
  39. tmodloader_mcp-0.6.0/src/tmodloader_mcp/captures.py +204 -0
  40. tmodloader_mcp-0.6.0/src/tmodloader_mcp/commands.py +182 -0
  41. tmodloader_mcp-0.6.0/src/tmodloader_mcp/config.py +565 -0
  42. tmodloader_mcp-0.6.0/src/tmodloader_mcp/diag.py +201 -0
  43. tmodloader_mcp-0.6.0/src/tmodloader_mcp/heartbeat.py +197 -0
  44. tmodloader_mcp-0.6.0/src/tmodloader_mcp/inventory.py +130 -0
  45. tmodloader_mcp-0.6.0/src/tmodloader_mcp/logs.py +453 -0
  46. tmodloader_mcp-0.6.0/src/tmodloader_mcp/saves.py +469 -0
  47. tmodloader_mcp-0.6.0/src/tmodloader_mcp/server.py +1667 -0
  48. tmodloader_mcp-0.6.0/src/tmodloader_mcp/session.py +2716 -0
  49. tmodloader_mcp-0.6.0/src/tmodloader_mcp/triggers.py +542 -0
  50. tmodloader_mcp-0.6.0/template/README.md +70 -0
  51. tmodloader_mcp-0.6.0/tests/live_bridge_check.py +232 -0
  52. tmodloader_mcp-0.6.0/tests/live_capture_check.py +217 -0
  53. tmodloader_mcp-0.6.0/tests/live_check.py +122 -0
  54. tmodloader_mcp-0.6.0/tests/live_entities_check.py +296 -0
  55. tmodloader_mcp-0.6.0/tests/live_mutations_check.py +269 -0
  56. tmodloader_mcp-0.6.0/tests/live_protocol_check.py +449 -0
  57. tmodloader_mcp-0.6.0/tests/live_round2_check.py +370 -0
  58. tmodloader_mcp-0.6.0/tests/live_server_address_check.py +149 -0
  59. tmodloader_mcp-0.6.0/tests/test_addressing.py +2230 -0
  60. tmodloader_mcp-0.6.0/tests/test_api_search.py +365 -0
  61. tmodloader_mcp-0.6.0/tests/test_artifact_names.py +205 -0
  62. tmodloader_mcp-0.6.0/tests/test_build.py +167 -0
  63. tmodloader_mcp-0.6.0/tests/test_captures.py +382 -0
  64. tmodloader_mcp-0.6.0/tests/test_commands.py +267 -0
  65. tmodloader_mcp-0.6.0/tests/test_config.py +677 -0
  66. tmodloader_mcp-0.6.0/tests/test_diag.py +279 -0
  67. tmodloader_mcp-0.6.0/tests/test_doc_links.py +198 -0
  68. tmodloader_mcp-0.6.0/tests/test_heartbeat.py +226 -0
  69. tmodloader_mcp-0.6.0/tests/test_inventory.py +164 -0
  70. tmodloader_mcp-0.6.0/tests/test_live_check_contract.py +509 -0
  71. tmodloader_mcp-0.6.0/tests/test_log_files.py +124 -0
  72. tmodloader_mcp-0.6.0/tests/test_log_watch.py +224 -0
  73. tmodloader_mcp-0.6.0/tests/test_logs.py +356 -0
  74. tmodloader_mcp-0.6.0/tests/test_mcp_json.py +74 -0
  75. tmodloader_mcp-0.6.0/tests/test_mcp_protocol.py +887 -0
  76. tmodloader_mcp-0.6.0/tests/test_mod_contract_doc.py +185 -0
  77. tmodloader_mcp-0.6.0/tests/test_pids.py +92 -0
  78. tmodloader_mcp-0.6.0/tests/test_player_token.py +53 -0
  79. tmodloader_mcp-0.6.0/tests/test_reply_tags.py +246 -0
  80. tmodloader_mcp-0.6.0/tests/test_saves.py +516 -0
  81. tmodloader_mcp-0.6.0/tests/test_server_surface.py +287 -0
  82. tmodloader_mcp-0.6.0/tests/test_session_lifecycle.py +1483 -0
  83. tmodloader_mcp-0.6.0/tests/test_template_mod.py +129 -0
  84. tmodloader_mcp-0.6.0/tests/test_triggers.py +339 -0
  85. tmodloader_mcp-0.6.0/tests/test_vendor_manifest.py +101 -0
  86. tmodloader_mcp-0.6.0/tests/test_wait_until.py +532 -0
  87. 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/