* feat(controller): 集成 MaaWin32ControlUnit 支持 Win32 窗口截图与控制 - 提取公共滑动插值逻辑到 SwipeHelper.hpp,重构 Minitouch/PlayTools 控制器 - 新增 Win32ControlUnitLoader 动态加载 MaaWin32ControlUnit.dll - 新增 Win32Controller 实现 ControllerAPI,适配 touch_down/move/up 接口 - 添加 AsstAsyncAttachWindow 公开 API 用于绑定 Win32 窗口 - 添加 Win32 截图/输入方式的类型定义和枚举常量 * feat(api): 增加同步版本的 AsstAttachWindow 接口 模仿 AsstConnect 实现同步绑定 Win32 窗口的接口,方便简单场景下直接调用。 该接口标记为 deprecated,建议使用异步版本 AsstAsyncAttachWindow。 * fix: can build MaaCore * feat: 完成整体适配 * feat(ci): 添加 MaaFramework Win32ControlUnit 下载步骤 使用 robinraju/release-downloader 从 MaaFramework 最新 release 下载 win-x64 版本并提取 MaaWin32ControlUnit 到构建产物中 * docs: 添加 Win32Controller 调试所需 MaaWin32ControlUnit 的说明 在开发文档的环境配置步骤中说明调试 Win32Controller 需要手动下载 MaaWin32ControlUnit.dll,并欢迎社区贡献自动下载脚本 * fix(i18n): 修改 UseAttachWindowWarning 措辞为"仅供尝鲜" * fix: 小细节修复 * ci: fix maafw filename * feat: PC 移至连接配置 * feat: 调整描述 * chore: 调整 PC 在连接配置中的顺序 * feat: 设置指引和开始唤醒界面 PC 选项绑定 --------- Co-authored-by: uye <99072975+ABA2396@users.noreply.github.com>
7.3 KiB
order, icon
| order | icon |
|---|---|
| 1 | iconoir:developer |
Development Guide
::: tip This page mainly describes the PR workflow and MAA's file formatting requirements. If you want to learn specifically how to make changes to MAA's operational logic, please refer to the Protocol Documentation :::
::: tip You can Ask DeepWiki to learn about the overall architecture of the MAA project. :::
I don't know programming but just want to modify some JSON files/documents, how can I do it?
Welcome to the Web-based PR Tutorial that anyone can understand (purely web-based on Github.com)
I want to make simple modifications to a few lines of code, but configuring the environment is too tedious and pure web editing is difficult to use. What should I do?
Use the GitHub Codespaces online development environment and try it out!
We've preset several different development environments for you to choose from:
-
Blank environment with a bare Linux container (default)
-
Lightweight environment, suitable for documentation site frontend development
-
Full environment, suitable for MAA Core related development (not recommended, suggest local development with full environment setup. See next section)
Complete Environment Setup (Windows)
-
If you forked the repository long ago, first delete it via your repository's
Settingsat the bottom. -
Visit the MAA main repository, click
Fork, thenCreate fork. -
Clone the dev branch of your repository with submodules:
git clone --recurse-submodules <your repository link> -b dev::: warning If using Git GUI clients like Visual Studio without
--recurse-submodulessupport, rungit submodule update --initafter cloning to initialize submodules. ::: -
Download prebuilt third-party libraries
Python environment required - search for Python installation tutorials if needed
(tools/maadeps-download.py is located in the project root)python tools/maadeps-download.py -
Configure development environment
- Download and install
CMake - Download and install
Visual Studio 2026 Community, selectingDesktop development with C++and.NET Desktop Developmentduring installation.
- Download and install
-
Execute cmake project configuration
mkdir -p build cmake -G "Visual Studio 18 2026" -B build -DBUILD_WPF_GUI=ON -DBUILD_DEBUG_DEMO=ON -
Double-click
build/MAA.slnxto open the project in Visual Studio. -
Configure Visual Studio settings
- Select
Debugandx64in the top configuration bar - Right-click
MaaWpfGui- Set as Startup Project - Press F5 to run
::: tip To debug Win32Controller (Windows window control) features, you need to manually download the corresponding platform package from MaaFramework Releases, and place
MaaWin32ControlUnit.dllfrom thebindirectory into MAA's DLL directory (e.g.build/bin/Debug). PRs for an auto-download script are welcome! ::: - Select
-
Now you're ready to happily
mess aroundstart developing! -
Commit regularly with meaningful messages during development
If you're not familiar with git usage, you might want to create a new branch for changes instead of committing directly todev:
git branch your_own_branch
git checkout your_own_branch
This keeps your changes isolated from upstream dev updates.
-
After development, push your local branch (e.g.
dev) to your remote repository:git push origin dev -
Submit a Pull Request at the MAA main repository. Ensure your changes are based on the
devbranch, notmaster. -
To sync upstream changes:
-
Add upstream repository:
git remote add upstream https://github.com/MaaAssistantArknights/MaaAssistantArknights.git -
Fetch updates:
git fetch upstream -
Rebase (recommended) or merge:
git rebase upstream/dev # rebaseor
git merge # merge -
Repeat steps 8, 9, 10, 11.
-
::: tip After opening Visual Studio, Git operations can be performed using VS's built-in "Git Changes" instead of command-line tools. :::
MAA File Formatting Requirements
MAA uses a series of formatting tools to ensure that the code and resource files in the repository are visually unified for easy maintenance and reading.
Please ensure that it has been formatted before submission, or enable Pre-commit Hooks for automatic formatting.
The currently enabled formatting tools are as follows:
| File Type | Format Tool |
|---|---|
| C++ | clang-format |
| Json/Yaml | Prettier |
| Markdown | markdownlint |
Use Pre-commit Hooks to Automatically Format Code
-
Ensure that you have Python and Node environments on your computer.
-
Execute the following command in the root directory of the project:
pip install pre-commit pre-commit install
If pre-commit still cannot be used after pip install, please check if the pip installation path has been added to the PATH.
The formatting tool will automatically run every time you submit to ensure that your code format conforms to the style guide.
Enable clang-format in Visual Studio
-
Install clang-format version 20.1.0 or higher.
python -m pip install clang-format -
Use tools like 'Everything' to locate the installation location of clang-format.exe. As a reference, if you are using Anaconda, clang-format.exe will be installed in YourAnacondaPath/Scripts/clang-format.exe.
-
In Visual Studio, search for 'clang-format' in Tools-Options.
-
Click
Enable ClangFormat supportand selectUse custom clang-format.exe fileand choose theclang-format.exelocated in Step 2.
You are all set with the clang-format integrated in Visual Studio supporting c++20 features!
You can also format with tools\ClangFormatter\clang-formatter.py directly, by executing in the root folder of the project:
python tools\ClangFormatter\clang-formatter.py --clang-format=PATH\TO\YOUR\clang-format.exe --input=src\MaaCore
