-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsave.ts
260 lines (246 loc) · 8.79 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
// deno-lint-ignore-file require-await
import {
ISaveOptionsDifficulty,
ISaveOptionsDifficultyList,
ISaveOptionsInfo,
} from './types/bsmap/save.ts';
import { IDifficultyList } from './types/bsmap/list.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 DifficultyCheckV1,
InfoCheck as InfoCheckV1,
} from './beatmap/v1/dataCheck.ts';
import {
DifficultyCheck as DifficultyCheckV2,
InfoCheck as InfoCheckV2,
} from './beatmap/v2/dataCheck.ts';
import { DifficultyCheck as DifficultyCheckV3 } from './beatmap/v3/dataCheck.ts';
import { IDifficulty as IDifficultyV2 } from './types/beatmap/v2/difficulty.ts';
import { Info as InfoV2 } from './beatmap/v2/info.ts';
import { IWrapInfo } from './types/beatmap/wrapper/info.ts';
import { IWrapDifficulty } from './types/beatmap/wrapper/difficulty.ts';
import { resolve } from './deps.ts';
import { IInfo } from './types/beatmap/v2/info.ts';
function tag(name: string): string[] {
return ['save', name];
}
const optionsInfo: Required<ISaveOptionsInfo> = {
directory: '',
filePath: 'Info.dat',
format: 0,
optimize: { enabled: true },
validate: { enabled: true, reparse: true },
dataCheck: {
enabled: true,
throwError: true,
},
};
const optionsDifficulty: Required<ISaveOptionsDifficulty> = {
directory: '',
filePath: 'UnnamedPath.dat',
format: 0,
optimize: { enabled: true },
validate: { enabled: true, reparse: true },
dataCheck: {
enabled: true,
throwError: true,
},
};
const optionsDifficultyList: Required<ISaveOptionsDifficultyList> = {
directory: '',
format: 0,
optimize: { enabled: true },
validate: { enabled: true, reparse: true },
dataCheck: {
enabled: true,
throwError: true,
},
};
/** Set default option value for save function. */
export const defaultOptions = {
info: optionsInfo,
difficulty: optionsDifficulty,
difficultyList: optionsDifficultyList,
};
function _info(data: IWrapInfo, options: ISaveOptionsInfo) {
const opt: Required<ISaveOptionsInfo> = {
directory: options.directory ?? (globals.directory || defaultOptions.info.directory),
filePath: options.filePath ?? (defaultOptions.info.filePath || 'Info.dat'),
format: options.format ?? defaultOptions.info.format,
optimize: options.optimize ?? defaultOptions.info.optimize,
validate: options.validate ?? defaultOptions.info.validate,
dataCheck: options.dataCheck ?? defaultOptions.difficulty.dataCheck,
};
const ver = data instanceof InfoV2 ? 2 : 1;
const objectData = data.toJSON();
if (opt.optimize.enabled) {
optimize.info(objectData as IInfo, opt.optimize);
}
if (opt.dataCheck.enabled) {
if (ver === 1) {
deepCheck(objectData, InfoCheckV1, 'difficulty', '1.0.0', opt.dataCheck.throwError);
}
if (ver === 2) {
deepCheck(objectData, InfoCheckV2, 'difficulty', '2.2.0', opt.dataCheck.throwError);
}
}
const p = resolve(opt.directory, opt.filePath);
logger.tInfo(tag('_info'), `Writing to ${p}`);
Deno.writeTextFileSync(
p,
opt.format ? JSON.stringify(objectData, null, opt.format) : JSON.stringify(objectData),
);
}
/** Asynchronously save beatmap info.
* ```ts
* await save.info(info);
* ```
*/
export async function info(data: IWrapInfo, options: ISaveOptionsInfo = {}) {
logger.tInfo(tag('info'), `Async saving info`);
_info(data, options);
}
/** Synchronously save beatmap info.
* ```ts
* save.infoSync(info);
* ```
*/
export function infoSync(data: IWrapInfo, options: ISaveOptionsInfo = {}) {
logger.tInfo(tag('infoSync'), `Sync saving info`);
_info(data, options);
}
function _difficulty(data: IWrapDifficulty, options: ISaveOptionsDifficulty) {
const opt: Required<ISaveOptionsDifficulty> = {
directory: options.directory ?? (globals.directory || defaultOptions.difficulty.directory),
filePath: options.filePath ??
(data.filename || defaultOptions.difficulty.filePath || 'UnnamedDifficulty.dat'),
format: options.format ?? defaultOptions.info.format,
optimize: options.optimize ?? defaultOptions.info.optimize,
validate: options.validate ?? defaultOptions.info.validate,
dataCheck: options.dataCheck ?? defaultOptions.difficulty.dataCheck,
};
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');
}
}
}
const ver = data.version;
const objectData = data.toJSON();
if (opt.optimize.enabled) {
optimize.difficulty(objectData as IDifficultyV2, opt.optimize);
}
if (opt.dataCheck.enabled) {
if (ver.startsWith('1')) {
deepCheck(objectData, DifficultyCheckV1, 'difficulty', ver, opt.dataCheck.throwError);
}
if (ver.startsWith('2')) {
deepCheck(objectData, DifficultyCheckV2, 'difficulty', ver, opt.dataCheck.throwError);
}
if (ver.startsWith('3')) {
deepCheck(objectData, DifficultyCheckV3, 'difficulty', ver, opt.dataCheck.throwError);
}
}
const p = resolve(opt.directory, opt.filePath);
logger.tInfo(tag('_difficulty'), `Writing to ${p}`);
Deno.writeTextFileSync(
p,
opt.format ? JSON.stringify(objectData, null, opt.format) : JSON.stringify(objectData),
);
}
/** Asynchronously save beatmap difficulty.
* ```ts
* await save.difficulty(difficulty);
* ```
*/
export async function difficulty(data: IWrapDifficulty, options: ISaveOptionsDifficulty = {}) {
logger.tInfo(tag('difficulty'), `Async saving difficulty`);
_difficulty(data, options);
}
/** Synchronously save beatmap difficulty.
* ```ts
* save.difficultySync(difficulty);
* ```
*/
export function difficultySync(data: IWrapDifficulty, options: ISaveOptionsDifficulty = {}) {
logger.tInfo(tag('difficultySync'), `Sync saving difficulty`);
_difficulty(data, options);
}
function _difficultyList(difficulties: IDifficultyList, options: ISaveOptionsDifficultyList) {
const opt: Required<ISaveOptionsDifficultyList> = {
directory: options.directory ??
(globals.directory || defaultOptions.difficultyList.directory),
format: options.format ?? defaultOptions.info.format,
optimize: options.optimize ?? defaultOptions.info.optimize,
validate: options.validate ?? defaultOptions.info.validate,
dataCheck: options.dataCheck ?? defaultOptions.difficulty.dataCheck,
};
difficulties.forEach((dl) => {
logger.tInfo(tag('_difficultyList'), `Saving ${dl.characteristic} ${dl.difficulty}`);
if (opt.validate.enabled) {
logger.tInfo(tag('_difficulty'), 'Validating beatmap');
if (!dl.data.isValid()) {
logger.tWarn(tag('_difficulty'), 'Invalid data detected in beatmap');
if (opt.validate.reparse) {
dl.data.reparse();
} else {
throw new Error('Preventing save of beatmap');
}
}
}
const ver = dl.data.version;
const objectData = dl.data.toJSON();
if (opt.optimize.enabled) {
optimize.difficulty(objectData, opt.optimize);
}
if (opt.dataCheck.enabled) {
if (ver.startsWith('1')) {
deepCheck(objectData, DifficultyCheckV1, 'difficulty', ver, opt.dataCheck.throwError);
}
if (ver.startsWith('2')) {
deepCheck(objectData, DifficultyCheckV2, 'difficulty', ver, opt.dataCheck.throwError);
}
if (ver.startsWith('3')) {
deepCheck(objectData, DifficultyCheckV3, 'difficulty', ver, opt.dataCheck.throwError);
}
}
const p = resolve(opt.directory, dl.settings.filename);
logger.tInfo(tag('_difficultyList'), `Writing to ${p}`);
Deno.writeTextFileSync(
p,
opt.format ? JSON.stringify(objectData, null, opt.format) : JSON.stringify(objectData),
);
});
}
/** Asynchronously save multiple beatmap difficulties.
* ```ts
* await save.difficultyList(difficulties);
* ```
*/
export async function difficultyList(
difficulties: IDifficultyList,
options: ISaveOptionsDifficultyList = {},
) {
logger.tInfo(tag('difficultyList'), `Async saving list of difficulty`);
_difficultyList(difficulties, options);
}
/** Synchronously save multiple beatmap difficulties.
* ```ts
* save.difficultyList(difficulties);
* ```
*/
export function difficultyListSync(
difficulties: IDifficultyList,
options: ISaveOptionsDifficultyList = {},
) {
logger.tInfo(tag('difficultyListSync'), `Sync saving list of difficulty`);
_difficultyList(difficulties, options);
}