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 0
/
Copy pathDeathQuery.js
281 lines (253 loc) · 6.51 KB
/
DeathQuery.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
/* global ll mc JsonConfigFile Format PermType */
// LiteXLoader Dev Helper
/// <reference path="../HelperLib/src/index.d.ts"/>
const pluginName = 'DeathQuery'
const deathLog = new JsonConfigFile(`plugins/${pluginName}/deathLog.json`)
const config = new JsonConfigFile(`plugins/${pluginName}/config.json`)
const maxRecords = config.init('maxRecords', 5)
const { Green, Red, Aqua, DarkGreen, LightPurple, MinecoinGold, Clear, Bold, White } =
Format
/**
* @typedef {Object} FloatPosData
* @property {number} x
* @property {number} y
* @property {number} z
* @property {string} dim
* @property {number} dimId
*/
/**
* @typedef {Object} EntityData
* @property {string} name
* @property {string} type
* @property {number} health
* @property {number} maxHealth
* @property {FloatPosData} pos
*/
/**
* @typedef {Object} DeathLogItem
* @property {FloatPosData} pos
* @property {string} time
* @property {EntityData?} src
*/
/**
*
* @param {LLSE_Player} pl
* @param {LLSE_Entity?} src
* @returns {DeathLogItem}
*/
function getLogItem(pl, src) {
/**
* @param {FloatPos} pos
*/
function posItem(pos) {
const { x, y, z, dim, dimid: dimId } = pos
return { x, y, z, dim, dimId }
}
function srcItem() {
if (src) {
const { name, type, health, maxHealth, pos } = src
return { name, type, health, maxHealth, pos: posItem(pos) }
}
return null
}
return {
pos: posItem(pl.pos),
time: new Date().toJSON(),
src: srcItem(),
}
}
/**
*
* @param {LLSE_Player} pl
* @param {LLSE_Entity?} src
* @returns
*/
function logDeath(pl, src) {
const { xuid } = pl
const item = getLogItem(pl, src)
let log = deathLog.get(xuid, [])
log = [item].concat(log.slice(0, maxRecords - 1))
deathLog.set(xuid, log)
return item
}
/**
* @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 {FloatPosData} 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 {DeathLogItem} it
* @returns {string}
*/
function formatDeathFull(it) {
const { pos, time, src } = it
const txt = []
txt.push(
`- ${DarkGreen}死亡时间: ` +
`${Bold}${MinecoinGold}${formatDate(new Date(time))}${Clear}`,
)
txt.push(`- ${DarkGreen}死亡地点: ${Bold}${formatPos(pos)}${Clear}`)
if (src) {
const { name, type, health, maxHealth, pos: posSrc } = src
txt.push(`- ${DarkGreen}伤害来源信息:${Clear}`)
txt.push(
` - ${DarkGreen}名称: ${Bold}${MinecoinGold}${name} ${Clear}${MinecoinGold}(${type})${Clear}`,
)
txt.push(` - ${DarkGreen}坐标: ${Bold}${formatPos(posSrc)}${Clear}`)
txt.push(
` - ${DarkGreen}生命值: ${Bold}${MinecoinGold}${health}${Clear} / ${Bold}${Green}${maxHealth}`,
)
}
return txt.join('\n')
}
/**
* @param {DeathLogItem} it
* @returns {string}
*/
function formatDeathSimple(it) {
const { pos, time, src } = it
let txt =
`${DarkGreen}位置: ${Bold}${formatPos(pos)}${Clear}\n` +
`${MinecoinGold}${formatDate(new Date(time))}${Clear}`
if (src) {
txt += ` ${DarkGreen}死于${Bold}${Green}${src.name}`
}
return txt
}
/**
* @param {LLSE_Player} pl
*/
function deathLogForm(pl) {
/**
* @param {DeathLogItem[]} log
* @returns {(pl_: LLSE_Player, i: number?) => any}
*/
function deathLogFullForm(log) {
return (pl_, i) => {
if (i !== null && i !== undefined) {
pl_.sendForm(
mc
.newSimpleForm()
.setTitle(`${Bold}${Green}详细记录`)
.setContent(formatDeathFull(log[i]))
.addButton(`${Green}返回上一级`),
(p_, i_) => {
if (i_ === 0) deathLogForm(p_)
},
)
}
}
}
/** @type {DeathLogItem[]} */
const log = deathLog.get(pl.xuid, [])
let form = mc.newSimpleForm().setTitle(`${Bold}${Green}死亡记录查询`)
if (log.length > 0) {
form.setContent(
`${DarkGreen}已为你记录 ${Green}${log.length}${DarkGreen}/${Green}${maxRecords} ${DarkGreen}条死亡记录 `,
)
log.forEach((i) => {
form = form.addButton(formatDeathSimple(i))
})
} else {
form.setContent(
`${DarkGreen}目前还没有死亡记录(上限 ${Green}${maxRecords}${DarkGreen} 条)`,
)
}
pl.sendForm(form, deathLogFullForm(log))
}
/**
* @param {LLSE_Player} pl
*/
function clearLog(pl) {
pl.sendModalForm(
'提示',
`${Red}真的要清空死亡记录吗?`,
`${DarkGreen}我想好了`,
`${Red}我手滑了`,
(pl_, res) => {
if (res === true) {
deathLog.set(pl.xuid, [])
pl_.tell(`${Green}死亡记录已清空`)
} else pl_.tell(`${Red}操作取消`)
},
)
}
function registerQueryCmd() {
const cmd = mc.newCommand('deathlog', '查看最近死亡记录', PermType.Any)
cmd.setAlias('dl')
cmd.setCallback((_, origin, out) => {
if (!origin.player) {
out.error('该命令只能由玩家执行')
return false
}
deathLogForm(origin.player)
return true
})
cmd.overload()
cmd.setup()
}
function registerClearCmd() {
const cmd = mc.newCommand('cleardeathlog', '清除死亡记录', PermType.Any)
cmd.setAlias('cdl')
cmd.setCallback((_, origin, out) => {
if (!origin.player) {
out.error('该命令只能由玩家执行')
return false
}
clearLog(origin.player)
return true
})
cmd.overload()
cmd.setup()
}
function registerCmd() {
registerQueryCmd()
registerClearCmd()
}
mc.listen('onPlayerDie', (pl, src_) => {
const { pos } = logDeath(pl, src_)
pl.tell(
`${DarkGreen}您的上一次暴毙位置: ${Bold}${formatPos(pos)}${Clear}\n` +
`${DarkGreen}使用 ${Bold}${MinecoinGold}/deathlog${Clear} 查看最近死亡记录`,
)
})
mc.listen('onServerStarted', () => {
registerCmd()
})
ll.registerPlugin(pluginName, '自助查询死亡记录', [0, 1, 4], {
Author: 'student_2333',
License: 'Apache-2.0',
})