更新:添加鼠标图标识别、复活逻辑优化、参数配置加载修复、目标血量100%检测

This commit is contained in:
王鹏
2026-04-19 15:53:45 +08:00
parent 33dc741fd9
commit 6ec468a78b
46 changed files with 900 additions and 131 deletions

View File

@@ -1,13 +1,13 @@
# -*- mode: python ; coding: utf-8 -*-
# WoW 多键控制器 GUI - PyInstaller 打包配置
# 打包命令: pyinstaller build_wow_multikey.spec
block_cipher = None
# 巡逻打怪 / 录制模式需要
added_files = [
('recorder\\*.json', 'recorder'),
('game_state_config.json', '.'),
('ddl', 'ddl'),
('images', 'images'),
('loot_path.json', '.'),
]
a = Analysis(
@@ -21,7 +21,7 @@ a = Analysis(
'coordinate_patrol', 'death_manager', 'logistics_manager',
'stuck_handler', 'player_movement', 'player_position',
'pygetwindow', 'pyautogui', 'PIL',
'flight_mode',
'flight_mode', 'hardware_control', 'pydirectinput',
],
hookspath=[],
hooksconfig={},
@@ -49,7 +49,7 @@ exe = EXE(
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False, # GUI 程序,无控制台窗口
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,