Files
emod-cli/debug_mod/DEBUG_ENV_SCRIPT/DebugServerSystem.py
Blank038 1a7bc6aca1 feat(mcp): 增加游戏内方块调试桥接
新增 stdio MCP server 和 mcp 子命令,通过调试会话状态文件连接内置 TCP bridge,并提供 place_block 工具。

Bridge 将请求投递到服务端 System 的游戏线程执行,限制请求大小与队列长度,并按会话端口安全清理状态文件和连接。
2026-07-21 21:04:45 +08:00

34 lines
918 B
Python

# -*- coding: utf-8 -*-
import mod.server.extraServerApi as serverApi
from . import IPCSystem, Lifecycle, MCPBridge
ServerSystem = serverApi.GetServerSystemCls()
class DebugServerSystem(ServerSystem):
def __init__(self, namespace, system_name):
ServerSystem.__init__(self, namespace, system_name)
self._initialized = False
def Update(self):
if not self._initialized:
Lifecycle.activate(self)
IPCSystem.ON_SERVER_INIT()
MCPBridge.ON_SERVER_INIT()
self._initialized = True
IPCSystem.UPDATE_SERVER()
MCPBridge.UPDATE()
return ServerSystem.Update(self)
def Destroy(self):
try:
MCPBridge.ON_SERVER_EXIT()
finally:
try:
IPCSystem.ON_SERVER_EXIT()
finally:
self._initialized = False
Lifecycle.deactivate(self)