MaaFw 4.4.0b1__py3-none-manylinux2014_x86_64.whl → 5.4.0__py3-none-manylinux2014_x86_64.whl
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.
Potentially problematic release.
This version of MaaFw might be problematic. Click here for more details.
- maa/agent/agent_server.py +221 -3
- maa/agent_client.py +170 -2
- maa/bin/libMaaAdbControlUnit.so +0 -0
- maa/bin/libMaaAgentClient.so +0 -0
- maa/bin/libMaaAgentServer.so +0 -0
- maa/bin/libMaaCustomControlUnit.so +0 -0
- maa/bin/libMaaFramework.so +0 -0
- maa/bin/libMaaToolkit.so +0 -0
- maa/bin/libMaaUtils.so +0 -0
- maa/bin/libc++.so.1 +0 -0
- maa/bin/libc++abi.so.1 +0 -0
- maa/bin/libfastdeploy_ppocr.so +0 -0
- maa/bin/libonnxruntime.so.1 +0 -0
- maa/bin/{libopencv_world4.so.408 → libopencv_world4.so.411} +0 -0
- maa/bin/libunwind.so.1 +0 -0
- maa/bin/plugins/libMaaPluginDemo.so +0 -0
- maa/buffer.py +168 -0
- maa/context.py +402 -10
- maa/controller.py +685 -44
- maa/custom_action.py +43 -0
- maa/custom_recognition.py +61 -9
- maa/define.py +450 -20
- maa/event_sink.py +103 -0
- maa/job.py +77 -1
- maa/library.py +118 -50
- maa/pipeline.py +509 -0
- maa/resource.py +430 -21
- maa/tasker.py +630 -90
- maa/toolkit.py +52 -91
- {maafw-4.4.0b1.dist-info → maafw-5.4.0.dist-info}/METADATA +90 -45
- maafw-5.4.0.dist-info/RECORD +35 -0
- {maafw-4.4.0b1.dist-info → maafw-5.4.0.dist-info}/WHEEL +1 -1
- maa/bin/libMaaDbgControlUnit.so +0 -0
- maa/notification_handler.py +0 -197
- maafw-4.4.0b1.dist-info/RECORD +0 -30
- {maafw-4.4.0b1.dist-info → maafw-5.4.0.dist-info}/licenses/LICENSE.md +0 -0
maa/toolkit.py
CHANGED
|
@@ -3,15 +3,27 @@ import json
|
|
|
3
3
|
from dataclasses import dataclass
|
|
4
4
|
from pathlib import Path
|
|
5
5
|
from typing import Dict, List, Union, Optional, Any
|
|
6
|
-
from collections import defaultdict
|
|
7
6
|
|
|
8
7
|
from .define import *
|
|
9
8
|
from .library import Library
|
|
10
|
-
from .notification_handler import NotificationHandler
|
|
11
9
|
|
|
12
10
|
|
|
13
11
|
@dataclass
|
|
14
12
|
class AdbDevice:
|
|
13
|
+
"""ADB 设备信息 / ADB device information
|
|
14
|
+
|
|
15
|
+
通过 Toolkit.find_adb_devices 获取。
|
|
16
|
+
Obtained via Toolkit.find_adb_devices.
|
|
17
|
+
|
|
18
|
+
Attributes:
|
|
19
|
+
name: 设备名称 / Device name
|
|
20
|
+
adb_path: adb 可执行文件路径 / Path to adb executable
|
|
21
|
+
address: 设备地址 (如 127.0.0.1:5555) / Device address (e.g., 127.0.0.1:5555)
|
|
22
|
+
screencap_methods: 可用的截图方式位掩码 / Available screenshot methods bitmask
|
|
23
|
+
input_methods: 可用的输入方式位掩码 / Available input methods bitmask
|
|
24
|
+
config: 额外配置信息 / Extra configuration
|
|
25
|
+
"""
|
|
26
|
+
|
|
15
27
|
name: str
|
|
16
28
|
adb_path: Path
|
|
17
29
|
address: str
|
|
@@ -22,17 +34,42 @@ class AdbDevice:
|
|
|
22
34
|
|
|
23
35
|
@dataclass
|
|
24
36
|
class DesktopWindow:
|
|
37
|
+
"""桌面窗口信息 / Desktop window information
|
|
38
|
+
|
|
39
|
+
通过 Toolkit.find_desktop_windows 获取。
|
|
40
|
+
Obtained via Toolkit.find_desktop_windows.
|
|
41
|
+
|
|
42
|
+
Attributes:
|
|
43
|
+
hwnd: 窗口句柄 / Window handle
|
|
44
|
+
class_name: 窗口类名 / Window class name
|
|
45
|
+
window_name: 窗口标题 / Window title
|
|
46
|
+
"""
|
|
47
|
+
|
|
25
48
|
hwnd: ctypes.c_void_p
|
|
26
49
|
class_name: str
|
|
27
50
|
window_name: str
|
|
28
51
|
|
|
29
52
|
|
|
30
53
|
class Toolkit:
|
|
54
|
+
"""工具包 / Toolkit
|
|
55
|
+
|
|
56
|
+
提供设备发现、配置初始化等辅助功能。
|
|
57
|
+
Provides auxiliary functions such as device discovery and configuration initialization.
|
|
58
|
+
"""
|
|
31
59
|
|
|
32
60
|
### public ###
|
|
33
61
|
|
|
34
62
|
@staticmethod
|
|
35
63
|
def init_option(user_path: Union[str, Path], default_config: Dict = {}) -> bool:
|
|
64
|
+
"""从 user_path 中加载全局配置 / Load global config from user_path
|
|
65
|
+
|
|
66
|
+
Args:
|
|
67
|
+
user_path: 配置存储路径 / Config storage path
|
|
68
|
+
default_config: 默认配置 / Default config
|
|
69
|
+
|
|
70
|
+
Returns:
|
|
71
|
+
bool: 是否成功 / Whether successful
|
|
72
|
+
"""
|
|
36
73
|
Toolkit._set_api_properties()
|
|
37
74
|
|
|
38
75
|
return bool(
|
|
@@ -46,6 +83,14 @@ class Toolkit:
|
|
|
46
83
|
def find_adb_devices(
|
|
47
84
|
specified_adb: Optional[Union[str, Path]] = None
|
|
48
85
|
) -> List[AdbDevice]:
|
|
86
|
+
"""搜索所有已知安卓模拟器 / Search all known Android emulators
|
|
87
|
+
|
|
88
|
+
Args:
|
|
89
|
+
specified_adb: 可选,指定 adb 路径进行搜索 / Optional, search using specified adb path
|
|
90
|
+
|
|
91
|
+
Returns:
|
|
92
|
+
List[AdbDevice]: 设备列表 / Device list
|
|
93
|
+
"""
|
|
49
94
|
Toolkit._set_api_properties()
|
|
50
95
|
|
|
51
96
|
list_handle = Library.toolkit().MaaToolkitAdbDeviceListCreate()
|
|
@@ -92,6 +137,11 @@ class Toolkit:
|
|
|
92
137
|
|
|
93
138
|
@staticmethod
|
|
94
139
|
def find_desktop_windows() -> List[DesktopWindow]:
|
|
140
|
+
"""查询所有窗口信息 / Query all window info
|
|
141
|
+
|
|
142
|
+
Returns:
|
|
143
|
+
List[DesktopWindow]: 窗口列表 / Window list
|
|
144
|
+
"""
|
|
95
145
|
Toolkit._set_api_properties()
|
|
96
146
|
|
|
97
147
|
list_handle = Library.toolkit().MaaToolkitDesktopWindowListCreate()
|
|
@@ -122,70 +172,9 @@ class Toolkit:
|
|
|
122
172
|
Library.toolkit().MaaToolkitDesktopWindowListDestroy(list_handle)
|
|
123
173
|
return windows
|
|
124
174
|
|
|
125
|
-
@staticmethod
|
|
126
|
-
def pi_register_custom_recognition(
|
|
127
|
-
name: str, recognition: "CustomRecognition", inst_id: int = 0 # type: ignore
|
|
128
|
-
) -> bool:
|
|
129
|
-
Toolkit._set_api_properties()
|
|
130
|
-
|
|
131
|
-
# avoid gc
|
|
132
|
-
Toolkit._pi_custom_recognition_holder[inst_id][name] = recognition
|
|
133
|
-
|
|
134
|
-
return bool(
|
|
135
|
-
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomRecognition(
|
|
136
|
-
ctypes.c_uint64(inst_id),
|
|
137
|
-
name.encode(),
|
|
138
|
-
recognition.c_handle,
|
|
139
|
-
recognition.c_arg,
|
|
140
|
-
)
|
|
141
|
-
)
|
|
142
|
-
|
|
143
|
-
@staticmethod
|
|
144
|
-
def pi_register_custom_action(
|
|
145
|
-
name: str, action: "CustomAction", inst_id: int = 0 # type: ignore
|
|
146
|
-
) -> bool:
|
|
147
|
-
Toolkit._set_api_properties()
|
|
148
|
-
|
|
149
|
-
# avoid gc
|
|
150
|
-
Toolkit._pi_custom_recognition_holder[inst_id][name] = action
|
|
151
|
-
|
|
152
|
-
return bool(
|
|
153
|
-
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomAction(
|
|
154
|
-
ctypes.c_uint64(inst_id),
|
|
155
|
-
name.encode(),
|
|
156
|
-
action.c_handle,
|
|
157
|
-
action.c_arg,
|
|
158
|
-
),
|
|
159
|
-
)
|
|
160
|
-
|
|
161
|
-
@staticmethod
|
|
162
|
-
def pi_run_cli(
|
|
163
|
-
resource_path: Union[str, Path],
|
|
164
|
-
user_path: Union[str, Path],
|
|
165
|
-
directly: bool = False,
|
|
166
|
-
notification_handler: Optional[NotificationHandler] = None,
|
|
167
|
-
inst_id: int = 0,
|
|
168
|
-
) -> bool:
|
|
169
|
-
Toolkit._set_api_properties()
|
|
170
|
-
|
|
171
|
-
Toolkit._pi_notification_handler = notification_handler
|
|
172
|
-
|
|
173
|
-
return bool(
|
|
174
|
-
Library.toolkit().MaaToolkitProjectInterfaceRunCli(
|
|
175
|
-
ctypes.c_uint64(inst_id),
|
|
176
|
-
str(resource_path).encode(),
|
|
177
|
-
str(user_path).encode(),
|
|
178
|
-
directly,
|
|
179
|
-
*NotificationHandler._gen_c_param(Toolkit._pi_notification_handler),
|
|
180
|
-
)
|
|
181
|
-
)
|
|
182
|
-
|
|
183
175
|
### private ###
|
|
184
176
|
|
|
185
177
|
_api_properties_initialized: bool = False
|
|
186
|
-
_pi_custom_recognition_holder = defaultdict(dict)
|
|
187
|
-
_pi_custom_action_holder = defaultdict(dict)
|
|
188
|
-
_pi_notification_handler: Optional[NotificationHandler] = None
|
|
189
178
|
|
|
190
179
|
@staticmethod
|
|
191
180
|
def _set_api_properties():
|
|
@@ -305,31 +294,3 @@ class Toolkit:
|
|
|
305
294
|
Library.toolkit().MaaToolkitDesktopWindowGetWindowName.argtypes = [
|
|
306
295
|
MaaToolkitDesktopWindowHandle
|
|
307
296
|
]
|
|
308
|
-
|
|
309
|
-
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomRecognition.restype = (
|
|
310
|
-
None
|
|
311
|
-
)
|
|
312
|
-
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomRecognition.argtypes = [
|
|
313
|
-
ctypes.c_uint64,
|
|
314
|
-
ctypes.c_char_p,
|
|
315
|
-
MaaCustomRecognitionCallback,
|
|
316
|
-
ctypes.c_void_p,
|
|
317
|
-
]
|
|
318
|
-
|
|
319
|
-
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomAction.restype = None
|
|
320
|
-
Library.toolkit().MaaToolkitProjectInterfaceRegisterCustomAction.argtypes = [
|
|
321
|
-
ctypes.c_uint64,
|
|
322
|
-
ctypes.c_char_p,
|
|
323
|
-
MaaCustomActionCallback,
|
|
324
|
-
ctypes.c_void_p,
|
|
325
|
-
]
|
|
326
|
-
|
|
327
|
-
Library.toolkit().MaaToolkitProjectInterfaceRunCli.restype = MaaBool
|
|
328
|
-
Library.toolkit().MaaToolkitProjectInterfaceRunCli.argtypes = [
|
|
329
|
-
ctypes.c_uint64,
|
|
330
|
-
ctypes.c_char_p,
|
|
331
|
-
ctypes.c_char_p,
|
|
332
|
-
MaaBool,
|
|
333
|
-
MaaNotificationCallback,
|
|
334
|
-
ctypes.c_void_p,
|
|
335
|
-
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: MaaFw
|
|
3
|
-
Version:
|
|
3
|
+
Version: 5.4.0
|
|
4
4
|
Summary: An automation black-box testing framework based on image recognition
|
|
5
5
|
Project-URL: Homepage, https://github.com/MaaXYZ/MaaFramework
|
|
6
6
|
Author: MaaXYZ
|
|
@@ -35,10 +35,13 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
|
|
|
35
35
|
<img alt="activity" src="https://img.shields.io/github/commit-activity/m/MaaXYZ/MaaFramework?color=%23ff69b4">
|
|
36
36
|
<img alt="stars" src="https://img.shields.io/github/stars/MaaXYZ/MaaFramework?style=social">
|
|
37
37
|
<br>
|
|
38
|
-
<a href="https://pypi.org/project/MaaFw/" target="_blank"><img alt="pypi" src="https://img.shields.io/
|
|
38
|
+
<a href="https://pypi.org/project/MaaFw/" target="_blank"><img alt="pypi" src="https://img.shields.io/pypi/dm/maafw?logo=pypi&label=PyPI"></a>
|
|
39
39
|
<a href="https://www.nuget.org/packages/Maa.Framework.Runtimes" target="_blank"><img alt="nuget" src="https://img.shields.io/badge/NuGet-004880?logo=nuget"></a>
|
|
40
40
|
<a href="https://www.npmjs.com/package/@maaxyz/maa-node" target="_blank"><img alt="npm" src="https://img.shields.io/badge/npm-CB3837?logo=npm"></a>
|
|
41
|
-
<a href="https://mirrorchyan.com/zh/projects?source=maafw-badge" target="_blank"><img alt="mirrorc" src="
|
|
41
|
+
<a href="https://mirrorchyan.com/zh/projects?source=maafw-badge" target="_blank"><img alt="mirrorc" src="./docs/static/mirrorc-zh.svg"></a>
|
|
42
|
+
<br>
|
|
43
|
+
<a href="https://maafw.xyz/" target="_blank"><img alt="website" src="./docs/static/maafw.svg"></a>
|
|
44
|
+
<a href="https://deepwiki.com/MaaXYZ/MaaFramework" target="_blank"><img alt="deepwiki" src="https://deepwiki.com/badge.svg"></a>
|
|
42
45
|
</p>
|
|
43
46
|
|
|
44
47
|
<div align="center">
|
|
@@ -55,23 +58,25 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
|
|
|
55
58
|
|
|
56
59
|
## 即刻开始
|
|
57
60
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
+
> [!TIP]
|
|
62
|
+
> 访问我们的 [官网](https://maafw.xyz/) 以获得更优秀的文档阅读体验。
|
|
63
|
+
> 找不到相关文档?试试问 [AI](https://deepwiki.com/MaaXYZ/MaaFramework) !
|
|
64
|
+
|
|
65
|
+
- [快速开始](docs/zh_cn/1.1-快速开始.md) & [术语解释](docs/zh_cn/1.2-术语解释.md)
|
|
66
|
+
- [代码集成](docs/zh_cn/2.1-集成文档.md) & [API](docs/zh_cn/2.2-集成接口一览.md)
|
|
67
|
+
- [Pipeline 低代码协议](docs/zh_cn/3.1-任务流水线协议.md)
|
|
68
|
+
- [项目接口 PI 协议](docs/zh_cn/3.3-ProjectInterfaceV2协议.md)
|
|
61
69
|
|
|
62
70
|
## 社区项目
|
|
63
71
|
|
|
64
72
|
### 通用 UI
|
|
65
73
|
|
|
66
|
-
- [
|
|
67
|
-
基于 MAA 全新架构的 通用 GUI。由 MaaFramework 强力驱动!
|
|
68
|
-
|
|
69
|
-
- [MFW-PyQt6](https://github.com/overflow65537/MFW-PyQt6)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
70
|
-
基于PyQt6的通用GUI。由 MaaFramework 强力驱动!
|
|
71
|
-
|
|
72
|
-
- [MFAAvalonia](https://github.com/SweetSmellFox/MFAAvalonia)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
74
|
+
- [MFAAvalonia](https://github.com/SweetSmellFox/MFAAvalonia)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
73
75
|
基于 Avalonia 的 通用 GUI。由 MaaFramework 强力驱动!
|
|
74
76
|
|
|
77
|
+
- [MFW-CFA](https://github.com/overflow65537/MFW-PyQt6)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
78
|
+
基于PySide6的通用GUI。由 MaaFramework 强力驱动!
|
|
79
|
+
|
|
75
80
|
### 开发工具
|
|
76
81
|
|
|
77
82
|
- [MaaDebugger](https://github.com/MaaXYZ/MaaDebugger)     [](https://pypi.org/project/MaaDebugger/)
|
|
@@ -80,71 +85,100 @@ _✨ 基于图像识别的自动化黑盒测试框架 ✨_
|
|
|
80
85
|
- [maa-support-extension](https://github.com/neko-para/maa-support-extension)    [](https://marketplace.visualstudio.com/items?itemName=nekosu.maa-support)
|
|
81
86
|
MaaFramework VSCode 插件
|
|
82
87
|
|
|
83
|
-
- [
|
|
84
|
-
基于
|
|
88
|
+
- [MFAToolsPlus](https://github.com/SweetSmellFox/MFAToolsPlus)    
|
|
89
|
+
基于 Avalonia 框架开发的跨平台开发工具箱,提供便捷的数据获取和模拟测试方法
|
|
90
|
+
|
|
91
|
+
- [MaaPipelineEditor](https://github.com/kqcoxn/MaaPipelineEditor)     [](https://mpe.codax.site/stable/)
|
|
92
|
+
可视化阅读与构建 Pipeline,[功能完备](https://github.com/kqcoxn/MaaPipelineEditor?tab=readme-ov-file#%E4%BA%AE%E7%82%B9),极致轻量跨平台,提供渐进式[本地功能扩展](https://mpe.codax.site/docs/guide/server/deploy.html),无缝兼容新旧项目
|
|
93
|
+
|
|
94
|
+
- [MaaInspector](https://github.com/TanyaShue/MaaInspector)   
|
|
95
|
+
基于 vue-flow 的可视化编辑器,集成节点预览,编辑,调试于一体的简单好用的 MaaFramework Pipeline 编辑器
|
|
85
96
|
|
|
86
|
-
- [
|
|
87
|
-
基于
|
|
97
|
+
- [MaaMCP](https://github.com/MaaXYZ/MaaMCP)     [](https://pypi.org/project/maa-mcp)
|
|
98
|
+
基于 MaaFramework 的 MCP 服务器 为 AI 助手提供 Android 设备和 Windows 桌面自动化能力
|
|
99
|
+
|
|
100
|
+
- [MaaLogAnalyzer](https://github.com/Windsland52/MAALogAnalyzer)     [](https://maaloganalyzer.maafw.xyz/)
|
|
101
|
+
MaaFramework 用户日志分析工具,支持可视化任务执行流程和全文搜索
|
|
88
102
|
|
|
89
103
|
### 应用程序
|
|
90
104
|
|
|
91
|
-
- [M9A](https://github.com/MaaXYZ/M9A)      [      [](https://mirrorchyan.com/zh/projects?source=maafw-badge) [](https://1999.fan)
|
|
92
106
|
亿韭韭韭 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
93
107
|
|
|
94
|
-
- [
|
|
95
|
-
森空岛 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
96
|
-
|
|
97
|
-
- [MSBA](https://github.com/overflow65537/MAA_SnowBreak)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
108
|
+
- [MSBA](https://github.com/overflow65537/MAA_SnowBreak)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
98
109
|
尘白禁区 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
99
110
|
|
|
100
|
-
- [MaaYYs](https://github.com/TanyaShue/MaaYYs)      [      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
101
112
|
阴阳师小助手。图像技术 + 模拟控制,当赛博屯屯鼠,自动日常,解放你的双手!由 MaaFramework 强力驱动!
|
|
102
113
|
|
|
103
|
-
- [
|
|
104
|
-
战舰少女R 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
105
|
-
|
|
106
|
-
- [MPA](https://github.com/overflow65537/MAA_Punish)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
114
|
+
- [MPA](https://github.com/overflow65537/MAA_Punish)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
107
115
|
战双帕弥什 小助手。图像技术 + 模拟控制,解放双手!由 玛丽的黑咖啡 2.0 强力驱动!
|
|
108
116
|
|
|
109
|
-
- [MaaYuan](https://github.com/syoius/MaaYuan)     [     [](https://mirrorchyan.com/zh/projects?source=maafw-badge) [](https://maayuan.top)
|
|
110
118
|
代号鸢/如鸢 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
111
119
|
|
|
112
|
-
- [Maa-HBR](https://github.com/KarylDAZE/Maa-HBR)     [     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
113
121
|
炽焰天穹/HBR 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
114
122
|
|
|
115
|
-
- [MaaGF2Exilium](https://github.com/DarkLingYun/MaaGF2Exilium)     [     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
116
124
|
少女前线2: 追放自动化助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
117
125
|
|
|
118
|
-
- [MaaAshEchoes](https://github.com/moulai/MaaAshEchoes)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
119
|
-
白荆回廊 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
120
|
-
|
|
121
126
|
- [MaaXuexi](https://github.com/ravizhan/MaaXuexi)     
|
|
122
127
|
学习强国 自动化助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
123
128
|
|
|
124
|
-
- [
|
|
125
|
-
无期迷途 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
126
|
-
|
|
127
|
-
- [MAA_MHXY_MG](https://github.com/gitlihang/Maa_MHXY_MG)    
|
|
129
|
+
- [MAA_MHXY_MG](https://github.com/gitlihang/Maa_MHXY_MG)     [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
128
130
|
梦幻西游手游 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
129
131
|
|
|
130
|
-
- [MNMA](https://github.com/kqcoxn/MaaNewMoonAccompanying)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
131
|
-
新月同行 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
132
|
-
|
|
133
132
|
- [MaaTOT](https://github.com/Coxwtwo/MaaTOT)    
|
|
134
133
|
未定事件簿 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
135
134
|
|
|
136
|
-
- [MaaGumballs](https://github.com/KhazixW2/MaaGumballs)      [      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
137
136
|
不思议迷宫小助手是一款由图像识别与模拟控制技术驱动的辅助工具。它能够帮助大家解放双手,一键开启敲砖大冒险,由 MaaFramework 强力支持。
|
|
138
137
|
|
|
139
|
-
- [MMleo](https://github.com/fictionalflaw/MMleo)      [      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
140
139
|
偶像梦幻祭2小助手。使用图像识别+模拟控制技术,解放双手!助力屯屯鼠的制作人生涯!由 MaaFramework 强力驱动!
|
|
141
140
|
|
|
142
141
|
- [autodori](https://github.com/EvATive7/autodori)     
|
|
143
142
|
BanG Dream邦多利小助手。图像识别+模拟控制,解放双手!由 MaaFramework、弦卷财団、TGW Group 强力驱动!
|
|
144
143
|
|
|
145
|
-
- [SLIMEIM_Maa](https://github.com/miaojiuqing/SLIMEIM_Maa)      [      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
146
145
|
魔王与龙的建国谭小助手。使用图像识别+模拟控制技术,解放双手!由 MaaFramework 强力驱动!
|
|
146
|
+
|
|
147
|
+
- [Maa_bbb](https://github.com/miaojiuqing/Maa_bbb)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
148
|
+
崩坏三小助手。使用图像识别+模拟控制技术,解放双手!PC端与模拟器端同步支持,由 MaaFramework 强力驱动!
|
|
149
|
+
|
|
150
|
+
- [MAN](https://github.com/duorua/narutomobile)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge) [](https://naruto.natsuu.top)
|
|
151
|
+
火影忍者摸头村小助手。使用图像识别+模拟控制技术,解放双手!PC端与模拟器端同步支持,由 MaaFramework 强力驱动!
|
|
152
|
+
|
|
153
|
+
- [MaaGakumasu](https://github.com/SuperWaterGod/MaaGakumasu)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
154
|
+
学园偶像大师小助手。使用图像技术 + 模拟控制 + 深度学习,解放双手!由 MaaFramework 强力驱动!
|
|
155
|
+
|
|
156
|
+
- [MaaStarResonance](https://github.com/233Official/MaaStarResonance)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge)
|
|
157
|
+
星痕共鸣小助手。使用图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
158
|
+
|
|
159
|
+
- [MAG](https://github.com/Kazaorus/MAG)     
|
|
160
|
+
深空之眼小助手。使用图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
161
|
+
|
|
162
|
+
- [MAAAE](https://github.com/NewWYoming/MAAAE)     
|
|
163
|
+
白荆回廊 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
164
|
+
|
|
165
|
+
- [MBCCtools](https://github.com/quietlysnow/MBCCtools)    
|
|
166
|
+
无期迷途 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
167
|
+
|
|
168
|
+
- [MaaEOV](https://github.com/Tigerisu/MaaEOV)    
|
|
169
|
+
异象回声 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
170
|
+
|
|
171
|
+
- [MAA Star Resonance](https://github.com/26F-Studio/maa-star-resonance)    
|
|
172
|
+
星痕共鸣小助手。使用 Electron + 文本图像识别 + ADB模拟控制 技术,解放双手!由 MaaFramework 和 Quasar 强力驱动!
|
|
173
|
+
|
|
174
|
+
- [StellaSora-Auto-Helper](https://github.com/SodaCodeSave/StellaSora-Auto-Helper)    
|
|
175
|
+
星塔旅人 小助手。图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
147
176
|
|
|
177
|
+
- [MaaDuDuL](https://github.com/kqcoxn/MaaDuDuL)      [](https://mirrorchyan.com/zh/projects?source=maafw-badge) [](https://mddl.codax.site)
|
|
178
|
+
嘟嘟脸恶作剧 小助手。图像技术 + 模拟控制,自动捏脸,解放双手!由 MaaFramework 强力驱动!
|
|
179
|
+
|
|
180
|
+
- [MaaLYSK](https://github.com/Witty36/MaaLYSK)      [](https://mirrorchyan.com/zh/projects?rid=MaaLYSK) [](https://maalysk.top)
|
|
181
|
+
恋与深空 小助手。使用图像技术 + 模拟控制,解放双手!由 MaaFramework 强力驱动!
|
|
148
182
|
|
|
149
183
|
## 生态共建
|
|
150
184
|
|
|
@@ -229,6 +263,8 @@ _请留意,仅当您准备开发 MaaFramework 本身时,才需要阅读本
|
|
|
229
263
|
A massively spiffy yet delicately unobtrusive compression library.
|
|
230
264
|
- [gzip-hpp](https://github.com/mapbox/gzip-hpp)
|
|
231
265
|
Gzip header-only C++ library
|
|
266
|
+
- [ViGEmClient](https://github.com/nefarius/ViGEmClient)
|
|
267
|
+
ViGEm Client SDK for feeder development.
|
|
232
268
|
- ~~[protobuf](https://github.com/protocolbuffers/protobuf)~~
|
|
233
269
|
~~Protocol Buffers - Google's data interchange format~~
|
|
234
270
|
- ~~[grpc](https://github.com/grpc/grpc)~~
|
|
@@ -236,15 +272,24 @@ _请留意,仅当您准备开发 MaaFramework 本身时,才需要阅读本
|
|
|
236
272
|
- ~~[thrift](https://github.com/apache/thrift)~~
|
|
237
273
|
~~Apache Thrift~~
|
|
238
274
|
|
|
275
|
+
### 思路灵感
|
|
276
|
+
|
|
277
|
+
- [MaaAssistantArknights](https://github.com/MaaAssistantArknights/MaaAssistantArknights)
|
|
278
|
+
《明日方舟》小助手,全日常一键长草!| A one-click tool for the daily tasks of Arknights, supporting all clients.
|
|
279
|
+
**MaaFramework 参考了该项目中 ADB 控制器部分实现思路,但未使用其任何源代码。**
|
|
280
|
+
- [ok-script](https://github.com/ok-oldking/ok-script)
|
|
281
|
+
全新Python游戏自动化框架(支持Windows和模拟器)
|
|
282
|
+
**MaaFramework 参考该项目中 Win32 控制器部分实现思路,但未使用其任何源代码。**
|
|
283
|
+
|
|
239
284
|
### 开发者
|
|
240
285
|
|
|
241
286
|
感谢以下开发者对 MaaFramework 作出的贡献:
|
|
242
287
|
|
|
243
288
|
[](https://github.com/MaaXYZ/MaaFramework/graphs/contributors)
|
|
244
289
|
|
|
245
|
-
##
|
|
290
|
+
## 沟通交流
|
|
246
291
|
|
|
247
|
-
|
|
292
|
+
欢迎开发者加入官方 QQ 群(595990173),交流集成与开发实践。群内仅讨论开发相关议题,不提供日常使用/客服支持;为保证讨论质量,长期离题或违规的成员可能会被移除。
|
|
248
293
|
|
|
249
294
|
## 赞助
|
|
250
295
|
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
maa/__init__.py,sha256=t2Z9yJWrSZfH16xYN67bKpiPEHDf7iaiw4wi0PjmU8U,250
|
|
2
|
+
maa/agent_client.py,sha256=73lhcUxJTmJ3xAZd6qWK6fMPNDTAFDR2tj6xyhuiT2Q,9949
|
|
3
|
+
maa/buffer.py,sha256=vQnO1nEGGqELrZ6CaMWEkNw0_LibCHU0puCaC0blCbc,21492
|
|
4
|
+
maa/context.py,sha256=2Lx_PVA8f-6IDbOqpRjExvCFzjjbnz81iyqcBYUDcZw,19139
|
|
5
|
+
maa/controller.py,sha256=nvHc-86HqXj2F4nO4a90AXa2FBpfznwrKJcjxFpyVHU,44727
|
|
6
|
+
maa/custom_action.py,sha256=a3mdXZUoILwztXqBLIvcN8wXt_VTGe6VcCKvqpYMVvw,4314
|
|
7
|
+
maa/custom_recognition.py,sha256=aRzSt-5Jpc5VQ0WFsdDYHBSYdwxs1F6q4JQCqCMgqQA,5745
|
|
8
|
+
maa/define.py,sha256=xNePbSRXQ97Y9cJXJ0j3EuLOVZJJG8zNzrBzECTdqvw,26332
|
|
9
|
+
maa/event_sink.py,sha256=XClpIymfxuSVm1mAf2r9S1FOZ_XaXxj2HZFH_bUFDxM,3006
|
|
10
|
+
maa/job.py,sha256=uTpI8cegmFXg1oW-SrYv_TRNRkZjILN6_sEje9TLUSU,3883
|
|
11
|
+
maa/library.py,sha256=AM0nEZ5yG0y4Fx-ohXh216Hydrw7t6nC0kmR7OPcKP4,6200
|
|
12
|
+
maa/pipeline.py,sha256=e52P6fJUTZLcrqdXV1Sb73IVVlB-SHAR9YcJFT986QQ,13690
|
|
13
|
+
maa/resource.py,sha256=pcFvw8tj6esWOpW5LUrsV_0YHs7oxO21G6ylTeZsiTU,25871
|
|
14
|
+
maa/tasker.py,sha256=yrp4rripyjHclHIcJ6e_tj1uuvyUfDcibs32S_JJTbo,32645
|
|
15
|
+
maa/toolkit.py,sha256=xjxzareyw6yHq_TCc-xt32mMrf94nWQ1YO3YWiE5zAc,10182
|
|
16
|
+
maa/agent/__init__.py,sha256=K4vyyD6YgLR6PEQl86t4oKP4eViCdNr3Br94dNk8YjM,257
|
|
17
|
+
maa/agent/agent_server.py,sha256=3hQZQTIo1k22osLDZ-F3GBZeeAcd9E_sbidvM_L5uIg,10506
|
|
18
|
+
maa/bin/libMaaAdbControlUnit.so,sha256=IqD1bCS2RdyhgT5DhCLPG1rU7rShDRzKIUCxGcSChvQ,616984
|
|
19
|
+
maa/bin/libMaaAgentClient.so,sha256=KuTd_I8lGnjNBSEaHqZpQJDnZ_SbHKYK0gxgKKZ09Es,1745712
|
|
20
|
+
maa/bin/libMaaAgentServer.so,sha256=Ltz-qrVpSP7-6ayWXC_s_H-GOoNmW8HJHeHlRxgXVc4,1934784
|
|
21
|
+
maa/bin/libMaaCustomControlUnit.so,sha256=ahQrvQ8hs_T8dE00Ch9SvS6ofpulHYLfQeCrFHFq1Ic,163392
|
|
22
|
+
maa/bin/libMaaFramework.so,sha256=if0nWSVLtaj_9pvFT5sR8ExLNvofnhZtlaAH9yBoxDg,3478584
|
|
23
|
+
maa/bin/libMaaToolkit.so,sha256=l5eDTcGUcey2QgwiElguK93FoiJ9K3UW21Bt0A58FE0,340408
|
|
24
|
+
maa/bin/libMaaUtils.so,sha256=67ecByp-uWPEvNhJh0Zyc6yDEP2HgzJ6paLLR51mDX0,569616
|
|
25
|
+
maa/bin/libc++.so.1,sha256=ggBMtgwTDWMnchyP829X7B9ZIWO6Btxiq9WTFvNiANk,1047320
|
|
26
|
+
maa/bin/libc++abi.so.1,sha256=wR6WL8PRtdq_wQxoZQ65c_HnHWP8LS5pff4ARFT5vOg,288608
|
|
27
|
+
maa/bin/libfastdeploy_ppocr.so,sha256=rBwu-jSVWXpSV2KUD_H0UQj8HTQzJOBLJqSglba7QcA,7008264
|
|
28
|
+
maa/bin/libonnxruntime.so.1,sha256=-jiLmHL_msJ1a4WNPPitSA5II6jHMc3iHLL0FCYCb_k,19104720
|
|
29
|
+
maa/bin/libopencv_world4.so.411,sha256=Gw_s-oTUVp0bJr0HtJ6iWMxkh7tnKSzlYd1FglTJv8U,14751704
|
|
30
|
+
maa/bin/libunwind.so.1,sha256=IEUCsMmBrVvGXg651iJ2S0x7QJmdzdOiwJdk-LRtUqw,49576
|
|
31
|
+
maa/bin/plugins/libMaaPluginDemo.so,sha256=LrGAJH57HtB1_toYu4tGWhgoh45RcCl7CVidD5lrmbk,7624
|
|
32
|
+
maafw-5.4.0.dist-info/licenses/LICENSE.md,sha256=RG51X65V_wNLuyG-RGcLXxFsKyZnlH5wNvK_5mMlOag,7560
|
|
33
|
+
maafw-5.4.0.dist-info/METADATA,sha256=cXcG-wvjfTXs720nPsahyd-CEkEOPZXoYkxeUGk4pT8,31345
|
|
34
|
+
maafw-5.4.0.dist-info/WHEEL,sha256=_QGO4ofAsna8OpukveH1bK8r-vJ5sY3u5vtvbtcaHKc,104
|
|
35
|
+
maafw-5.4.0.dist-info/RECORD,,
|
maa/bin/libMaaDbgControlUnit.so
DELETED
|
Binary file
|