-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFS22.ts
63 lines (57 loc) · 1.95 KB
/
FS22.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// /**
// * @description 模拟农场22 支持
// */
// import { join, extname, basename } from "node:path"
// import { ElMessage } from "element-plus";
// export const supportedGames: ISupportedGames = {
// GlossGameId: 265,
// steamAppID: 1248130,
// installdir: join("Farming Simulator 22"),
// gameName: "Farming Simulator 22",
// gameExe: "FarmingSimulator2022.exe",
// startExe: [
// {
// name: "Steam 启动",
// cmd: "steam://rungameid/1248130"
// },
// {
// name: "直接启动",
// exePath: join("x64", "FarmingSimulator2022.exe")
// }
// ],
// archivePath: join(FileHandler.getMyDocuments(), "My Games", "FarmingSimulator2022"),
// gameCoverImg: "https://mod.3dmgame.com/static/upload/game/61a9e018c601c.png",
// modType: [
// {
// id: 1,
// name: "通用类型",
// installPath: join(FileHandler.getMyDocuments(), "My Games", "FarmingSimulator2022", "mods"),
// async install(mod) {
// return Manager.installByFile(mod, this.installPath ?? "", 'modDesc.xml', true, false, false)
// },
// async uninstall(mod) {
// return Manager.installByFile(mod, this.installPath ?? "", 'modDesc.xml', false, false, false)
// }
// },
// {
// id: 99,
// name: "未知",
// installPath: "",
// async install(mod) {
// ElMessage.warning("未知类型, 请手动安装")
// return false
// },
// async uninstall(mod) {
// return true
// }
// }
// ],
// checkModType(mod) {
// let mods = false
// mod.modFiles.forEach(item => {
// if (basename(item) == 'modDesc.xml') mods = true
// })
// if (mods) return 1
// return 99
// }
// }