This repository was archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEveryoneWarp.js
408 lines (374 loc) · 9.33 KB
/
EveryoneWarp.js
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/* global ll mc JsonConfigFile Format PermType logger file */
// LiteLoaderScript Dev Helper
/// <reference path="../HelperLib/src/index.d.ts"/>
const pluginName = 'EveryoneWarp'
const confDir = `plugins/${pluginName}`
const confPath = `${confDir}/warps.json`
const warpConf = new JsonConfigFile(confPath)
const newNavigationTask = ll.imports('NavAPI_newTask')
const clearNavigationTask = ll.imports('NavAPI_clearTask')
const hasNavigationTask = ll.imports('NavAPI_hasTask')
const { Red, DarkGreen, Green, Aqua, White, LightPurple, Bold, Clear, MinecoinGold } =
Format
/**
* @typedef {Object} FloatPosObject
* @property {number} x
* @property {number} y
* @property {number} z
* @property {number} dimId
*/
/**
* @typedef {Object} WarpPlayerData
* @property {string} name
* @property {string} realName
* @property {string} xuid
*/
/**
* @typedef {Object} WarpData
* @property {WarpPlayerData} player
* @property {FloatPosObject} pos
* @property {string} name
* @property {string} date
* @property {string?} desc
*/
/**
* @returns {WarpData[]}
*/
function getWarpConf() {
return warpConf.get('warps', [])
}
/**
* @param {WarpData[]} conf
* @returns {boolean}
*/
function setWarpConf(conf) {
return warpConf.set('warps', conf)
}
/**
* @param {FloatPosObject} pos
* @returns {string}
*/
function formatPos(pos) {
const { x, y, z, dimId } = pos
const dim = (() => {
switch (dimId) {
case 0:
return '主世界'
case 1:
return '地狱'
case 2:
return '末地'
default:
return '未知'
}
})()
return (
`${Green}${x.toFixed(2)} ` +
`${Red}${y.toFixed(2)} ` +
`${Aqua}${z.toFixed(2)}` +
`${White}, ${LightPurple}${dim}`
)
}
/**
* @param {Date} date
* @returns {string}
*/
function formatDate(date) {
const yr = date.getFullYear()
const mon = date.getMonth() + 1
const day = date.getDate()
const hr = date.getHours()
const min = date.getMinutes().toString().padStart(2, '0')
const sec = date.getSeconds().toString().padStart(2, '0')
return `${yr}-${mon}-${day} ${hr}:${min}:${sec}`
}
/**
* @param {LLSE_Player} pl
* @param {FloatPosObject} pos
* @param {string} warpName
* @param {string?} desc
* @returns {WarpData}
*/
function getWarpObj(pl, pos, warpName, desc = null) {
const { name, realName, xuid } = pl
return {
player: { name, realName, xuid },
pos,
name: warpName,
date: new Date().toJSON(),
desc,
}
}
/**
* @param {LLSE_SimpleForm} form
* @param {WarpData[]} warps
* @returns {LLSE_SimpleForm}
*/
function addWarpButton(form, warps) {
let formTmp = form
warps.forEach((i) => {
const {
player: { name: playerName },
pos,
name,
} = i
formTmp = form.addButton(
`${Bold}${DarkGreen}${name}${Clear}\n` +
`${formatPos(pos)}${Clear} - ${MinecoinGold}${playerName}`,
)
})
return formTmp
}
/**
* @param {LLSE_Player} pl_
*/
function addWarp(pl_) {
const {
pos: { x: x_, y: y_, z: z_, dimid: dimId_ },
} = pl_
const strX = x_.toFixed(2).toString()
const strY = y_.toFixed(2).toString()
const strZ = z_.toFixed(2).toString()
const form = mc
.newCustomForm()
.setTitle('添加Warp')
.addInput('Warp名称', '', `${pl_.name} 创建的Warp`)
.addInput('X坐标', strX, strX)
.addInput('Y坐标', strY, strY)
.addInput('Z坐标', strZ, strZ)
.addDropdown('维度', ['主世界', '地狱', '末地'], dimId_)
.addInput('Warp简介')
pl_.sendForm(form, (pl, data) => {
if (data) {
const [name, x, y, z, dimId, desc] = data
if (!name) {
pl.tell(`${Red}请输入合法内容`)
return
}
const pos = {
x: x ? Number(x) : x_,
y: y ? Number(y) : y_,
z: z ? Number(z) : z_,
dimId,
}
const obj = getWarpObj(pl, pos, name, desc)
const warps = getWarpConf()
warps.push(obj)
setWarpConf(warps)
pl.tell(
`${Green}创建Warp ${MinecoinGold}${name} ${Green}成功!\n` +
`坐标:${formatPos(pos)}`,
)
} else {
pl.tell(`${Red}操作取消`)
}
})
}
/**
* @param {LLSE_Player} pl
* @param {string} tip
* @param {() => any} callback
*/
function confirmBox(pl, tip, callback) {
pl.sendModalForm('确认', tip, `${Green}我想好了`, `${Red}我手滑了`, (_, res) => {
if (res) {
callback()
} else {
pl.tell(`${Red}操作取消`)
}
})
}
/**
* @param {any} obj1
* @param {any} obj2
* @returns {boolean}
*/
function compareObject(obj1, obj2) {
return JSON.stringify(obj1) === JSON.stringify(obj2)
}
/**
* @param {LLSE_Player} pl
* @param {WarpData} warpObj
*/
function deleteWarp(pl, warpObj) {
const { name, pos } = warpObj
confirmBox(
pl,
`真的要删除Warp ${Bold}${MinecoinGold}${name}${Clear}` +
`(${formatPos(pos)}${Clear}) 吗?`,
() => {
const conf = getWarpConf()
const index = conf.findIndex((x) => compareObject(x, warpObj))
if (index === -1) {
pl.tell(`${Red}Warp不存在!`)
return
}
conf.splice(index, 1)
setWarpConf(conf)
pl.tell(
`${Green}已删除Warp ${MinecoinGold}${name}\n` +
`${Green}坐标: ${formatPos(pos)}`,
)
},
)
}
/**
* @param {LLSE_Player} pl_
*/
function deleteWarpForm(pl_) {
const form = mc
.newSimpleForm()
.setTitle('删除Warp')
.setContent('请选择你要删除的Warp')
/** @type {WarpData[]} */
const playerWarps = []
getWarpConf().forEach((it) => {
if (it.player.xuid === pl_.xuid || pl_.permLevel > 0) {
playerWarps.push(it)
}
})
pl_.sendForm(addWarpButton(form, playerWarps), (pl, id) => {
if (id !== undefined && id !== null) {
const warp = playerWarps[id]
deleteWarp(pl, warp)
}
})
}
/**
* @param {LLSE_Player} pl
*/
function warpList(pl) {
/**
* @param {LLSE_Player} pl_
* @param {WarpData} warp
*/
function warpDetail(pl_, warp) {
const {
player: { name: playerName, xuid },
pos,
name,
date,
desc,
} = warp
const isOwner = pl_.xuid === xuid || pl.permLevel > 0
let form = mc
.newSimpleForm()
.setTitle('Warp详情')
.setContent(
`- ${DarkGreen}名称: ${Bold}${Green}${name}${Clear}\n` +
`- ${DarkGreen}创建者: ` +
`${Bold}${Green}${playerName}${Clear}${Green}(${xuid})${Clear}\n` +
`- ${DarkGreen}坐标: ${Bold}${formatPos(pos)}${Clear}\n` +
`- ${DarkGreen}创建日期: ` +
`${Bold}${Green}${formatDate(new Date(date))}${Clear}\n` +
`- ${DarkGreen}简介: ${Bold}${Green}${desc || '无'}`,
)
.addButton(`${DarkGreen}导航`)
if (isOwner) form = form.addButton(`${DarkGreen}删除`)
form = form.addButton(`${DarkGreen}返回Warp列表`)
pl_.sendForm(form, (pl__, id) => {
if (id !== undefined && id !== null) {
switch (id) {
case 0: {
const { xuid: xuidP } = pl__
if (hasNavigationTask(xuidP)) clearNavigationTask(xuidP)
newNavigationTask(xuidP, warp)
break
}
case 1:
if (isOwner) {
deleteWarp(pl, warp)
break
}
// fallthrough
case 2:
warpList(pl__)
break
default:
}
}
})
}
const warps = getWarpConf()
const form = mc
.newSimpleForm()
.setTitle(pluginName)
.setContent(`目前已有 ${Green}${warps.length}${Clear} 个Warp`)
pl.sendForm(addWarpButton(form, warps), (p, i) => {
if (i !== undefined && i !== null) {
warpDetail(p, warps[i])
}
})
}
/**
* @param {LLSE_Player} pl_
*/
function warpManage(pl_) {
pl_.sendForm(
mc
.newSimpleForm()
.setTitle('Warp管理')
.addButton('添加Warp')
.addButton('删除Warp')
.addButton('取消导航'),
(pl, id) => {
if (id !== undefined && id !== null) {
switch (id) {
case 0:
addWarp(pl)
break
case 1:
deleteWarpForm(pl)
break
case 2:
clearNavigationTask(pl.xuid)
break
default:
}
}
},
)
}
mc.listen('onServerStarted', () => {
;(() => {
const cmd = mc.newCommand('warpmanage', '管理Warp', PermType.Any)
cmd.setAlias('warpm')
cmd.setCallback((_, origin, out) => {
if (!origin.player) {
out.error('该命令只能由玩家执行')
return false
}
warpManage(origin.player)
return true
})
cmd.overload()
cmd.setup()
})()
;(() => {
const cmd = mc.newCommand('warplist', '查看Warp', PermType.Any)
cmd.setAlias('warp')
cmd.setCallback((_, origin, out) => {
if (!origin.player) {
out.error('该命令只能由玩家执行')
return false
}
warpList(origin.player)
return true
})
cmd.overload()
cmd.setup()
})()
})
;(() => {
const oldConfDir = `plugins/EveryoneWrap`
const oldConfPath = `${oldConfDir}/warps.json`
if (file.exists(oldConfPath)) {
setWarpConf(new JsonConfigFile(oldConfPath).get('wraps'))
file.rename(oldConfPath, `${confDir}/warps_old.json`)
logger.info('旧的插件数据迁移完毕')
}
})()
ll.registerPlugin(pluginName, '公共坐标点', [0, 2, 2], {
Author: 'student_2333',
License: 'Apache-2.0',
})