-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsave.ts
307 lines (282 loc) · 8.95 KB
/
save.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
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
import {
ISaveOptionsDifficulty,
ISaveOptionsDifficultyList,
ISaveOptionsInfo,
} from './types/bsmap/save.ts';
import { ILoadInfoData } from './types/bsmap/infoDiff.ts';
import * as optimize from './optimize.ts';
import globals from './globals.ts';
import logger from './logger.ts';
import { deepCheck } from './beatmap/shared/dataCheck.ts';
import {
DifficultyCheck as V1DifficultyCheck,
InfoCheck as V1InfoCheck,
} from './beatmap/v1/dataCheck.ts';
import {
DifficultyCheck as V2DifficultyCheck,
InfoCheck as V2InfoCheck,
} from './beatmap/v2/dataCheck.ts';
import { DifficultyCheck as V3DifficultyCheck } from './beatmap/v3/dataCheck.ts';
import { IWrapInfo } from './types/beatmap/wrapper/info.ts';
import { IWrapDifficulty } from './types/beatmap/wrapper/difficulty.ts';
import { resolve } from './deps.ts';
function tag(name: string): string[] {
return ['save', name];
}
const optionsInfo: Required<ISaveOptionsInfo> = {
directory: '',
filePath: 'Info.dat',
format: 0,
optimize: {
enabled: true,
floatTrim: 4,
stringTrim: true,
purgeZeros: true,
throwError: true,
},
validate: { enabled: true, reparse: true },
dataCheck: {
enabled: true,
throwError: true,
},
sort: true,
};
const optionsDifficulty: Required<ISaveOptionsDifficulty> = {
directory: '',
filePath: 'UnnamedPath.dat',
format: 0,
optimize: {
enabled: true,
floatTrim: 4,
stringTrim: true,
purgeZeros: true,
throwError: true,
},
validate: { enabled: true, reparse: true },
dataCheck: {
enabled: true,
throwError: true,
},
sort: true,
};
const optionsDifficultyList: Required<ISaveOptionsDifficultyList> = {
directory: '',
format: 0,
optimize: { enabled: true },
validate: { enabled: true, reparse: true },
dataCheck: {
enabled: true,
throwError: true,
},
sort: true,
};
/** Set default option value for save function. */
export const defaultOptions = {
info: optionsInfo,
difficulty: optionsDifficulty,
difficultyList: optionsDifficultyList,
};
async function _writeJSONFile(data: Record<string, unknown>, path: string, format?: number) {
logger.tInfo(tag('_writeJSONFile'), `Async writing JSON file to ${path}`);
await Deno.writeTextFile(path, JSON.stringify(data, null, format));
}
function _writeJSONFileSync(data: Record<string, unknown>, path: string, format?: number) {
logger.tInfo(tag('_writeJSONFileSync'), `Sync writing JSON file to ${path}`);
Deno.writeTextFileSync(path, JSON.stringify(data, null, format));
}
function _info(data: IWrapInfo, options: ISaveOptionsInfo) {
const opt: Required<ISaveOptionsInfo> = {
directory: '',
filePath: '',
format: options.format ?? defaultOptions.info.format,
optimize: options.optimize ?? defaultOptions.info.optimize,
validate: options.validate ?? defaultOptions.info.validate,
dataCheck: options.dataCheck ?? defaultOptions.info.dataCheck,
sort: options.sort ?? defaultOptions.info.sort,
};
if (opt.sort) {
logger.tInfo(tag('_info'), 'Sorting beatmap objects');
data.sort();
}
const ver = parseInt(data.version.at(0) || '0');
const json = data.toJSON();
if (opt.optimize.enabled) {
optimize.info(json, ver, opt.optimize);
}
if (opt.dataCheck.enabled) {
logger.tInfo(tag('_info'), 'Checking info data value');
const dataCheck = ver === 2 ? V2InfoCheck : ver === 1 ? V1InfoCheck : {};
deepCheck(json, dataCheck, 'info', data.version, opt.dataCheck.throwError);
}
return json;
}
/**
* Asynchronously save beatmap info.
* ```ts
* await save.info(info);
* ```
*/
export async function info(data: IWrapInfo, options: ISaveOptionsInfo = {}) {
logger.tInfo(tag('info'), 'Async saving info');
await _writeJSONFile(
_info(data, options),
resolve(
options.directory ?? (globals.directory || defaultOptions.info.directory),
options.filePath ?? (data.filename || defaultOptions.info.filePath || 'Info.dat'),
),
options.format,
);
}
/**
* Synchronously save beatmap info.
* ```ts
* save.infoSync(info);
* ```
*/
export function infoSync(data: IWrapInfo, options: ISaveOptionsInfo = {}) {
logger.tInfo(tag('infoSync'), 'Sync saving info');
_writeJSONFileSync(
_info(data, options),
resolve(
options.directory ?? (globals.directory || defaultOptions.info.directory),
options.filePath ?? (data.filename || defaultOptions.info.filePath || 'Info.dat'),
),
options.format,
);
}
function _difficulty(data: IWrapDifficulty, options: ISaveOptionsDifficulty) {
const opt: Required<ISaveOptionsDifficulty> = {
directory: '',
filePath: '',
format: options.format ?? defaultOptions.difficulty.format,
optimize: options.optimize ?? defaultOptions.difficulty.optimize,
validate: options.validate ?? defaultOptions.difficulty.validate,
dataCheck: options.dataCheck ?? defaultOptions.difficulty.dataCheck,
sort: options.sort ?? defaultOptions.difficulty.sort,
};
if (opt.validate.enabled) {
logger.tInfo(tag('_difficulty'), 'Validating beatmap');
if (!data.isValid()) {
logger.tWarn(tag('_difficulty'), 'Invalid data detected in beatmap');
if (opt.validate.reparse) {
data.reparse();
} else {
throw new Error('Preventing save of beatmap');
}
}
}
if (opt.sort) {
logger.tInfo(tag('_difficulty'), 'Sorting beatmap objects');
data.sort();
}
const ver = parseInt(data.version.at(0) || '0');
const json = data.toJSON();
if (opt.optimize.enabled) {
if (ver <= 2) {
if (typeof options.optimize?.purgeZeros === 'boolean') {
opt.optimize.purgeZeros = options.optimize.purgeZeros;
} else opt.optimize.purgeZeros = false;
}
optimize.difficulty(json, ver, opt.optimize);
}
if (opt.dataCheck.enabled) {
logger.tInfo(tag('_difficulty'), 'Checking difficulty data value');
const dataCheck = ver === 3
? V3DifficultyCheck
: ver === 2
? V2DifficultyCheck
: ver === 1
? V1DifficultyCheck
: {};
deepCheck(json, dataCheck, 'difficulty', data.version, opt.dataCheck.throwError);
}
return json;
}
/**
* Asynchronously save beatmap difficulty.
* ```ts
* await save.difficulty(difficulty);
* ```
*/
export async function difficulty(data: IWrapDifficulty, options: ISaveOptionsDifficulty = {}) {
logger.tInfo(tag('difficulty'), 'Async saving difficulty');
await _writeJSONFile(
_difficulty(data, options),
resolve(
options.directory ?? (globals.directory || defaultOptions.difficulty.directory),
options.filePath ??
(data.filename || defaultOptions.difficulty.filePath || 'UnnamedDifficulty.dat'),
),
options.format,
);
}
/**
* Synchronously save beatmap difficulty.
* ```ts
* save.difficultySync(difficulty);
* ```
*/
export function difficultySync(data: IWrapDifficulty, options: ISaveOptionsDifficulty = {}) {
logger.tInfo(tag('difficultySync'), 'Sync saving difficulty');
_writeJSONFileSync(
_difficulty(data, options),
resolve(
options.directory ?? (globals.directory || defaultOptions.difficulty.directory),
options.filePath ??
(data.filename || defaultOptions.difficulty.filePath || 'UnnamedDifficulty.dat'),
),
options.format,
);
}
/**
* Asynchronously save multiple beatmap difficulties.
* ```ts
* await save.difficultyList(difficulties);
* ```
*/
export async function difficultyList(
difficulties: ILoadInfoData[],
options: ISaveOptionsDifficultyList = {},
) {
logger.tInfo(tag('difficultyList'), 'Async saving list of difficulty');
await Promise.allSettled(
difficulties.map(async (dl) => {
await _writeJSONFile(
_difficulty(dl.data, options),
resolve(
options.directory ?? (globals.directory || defaultOptions.difficulty.directory),
dl.settings.filename ||
dl.data.filename ||
defaultOptions.difficulty.filePath ||
'UnnamedDifficulty.dat',
),
options.format,
);
}),
);
}
/**
* Synchronously save multiple beatmap difficulties.
* ```ts
* save.difficultyList(difficulties);
* ```
*/
export function difficultyListSync(
difficulties: ILoadInfoData[],
options: ISaveOptionsDifficultyList = {},
) {
logger.tInfo(tag('difficultyListSync'), 'Sync saving list of difficulty');
for (const dl of difficulties) {
_writeJSONFileSync(
_difficulty(dl.data, options),
resolve(
options.directory ?? (globals.directory || defaultOptions.difficulty.directory),
dl.settings.filename ||
dl.data.filename ||
defaultOptions.difficulty.filePath ||
'UnnamedDifficulty.dat',
),
options.format,
);
}
}