# display-maps **Repository Path**: mxzeng/display-maps ## Basic Information - **Project Name**: display-maps - **Description**: SPT-AKI Mod 用于接收客户端回传的玩家数据并绘制地图 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2024-01-20 - **Last Updated**: 2024-09-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 整体环境 | 环境 | 版本 | |---------------------------------|-----------| | Node.js | v20.10.0 | | SPT-AKI | v3.7.6 | | IntelliJ IDEA Community Edition | 2023.1.2 | | Visual Studio Community 2022 | 17.7.5 | | UnityEngine | 2019.4.39 | | BepInEx | 5.4.21 | ### SPT-AKI服务器Mod目录 - map-page 网页地图 - src SPT-AKI 服务器mod + html 由map-page编译而来 + MapServer.ts web服务器(6970) + mod.ts mod入口 - types SPT-AKI SDK文件 - window-tools 窗口化工具 - build.mjs mod编译脚本 ### 项目更目录命令 ```shell npm install 安装依赖组件 npm run build 编译Mod ``` ### map-page目录命令 ```shell npm install 安装依赖组件 npm run dev 开发模式打开网页 npm run build 编译为浏览器可识别js代码 ``` --- ### EFT 客户端Mod BepInEx ```text 通过获取GameWorld实例取得地图内存在的组件包括 MainPlayer,AllAlivePlayersList 将数据回传到6970服务器 ``` ### 目录 - lib 依赖项,如果需要升级客户端版本需要替换 - ui 废弃项 - utils 通用工具 - Plugin.cs Mod入口 ```shell dotnet.exe restore 恢复依赖包 dotnet.exe build 编译客户端Mod ```