danoniplus 27.1.0 → 27.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/danoni_main.css +7 -1
- package/js/danoni_main.js +269 -289
- package/js/lib/danoni_constants.js +326 -92
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Source by tickle
|
|
7
7
|
* Created : 2019/11/19
|
|
8
|
-
* Revised : 2022/
|
|
8
|
+
* Revised : 2022/04/10 (v27.3.1)
|
|
9
9
|
*
|
|
10
10
|
* https://github.com/cwtickle/danoniplus
|
|
11
11
|
*/
|
|
@@ -83,30 +83,255 @@ const g_windowObj = {
|
|
|
83
83
|
divRoot: { margin: `auto`, letterSpacing: `normal` },
|
|
84
84
|
divBack: { background: `linear-gradient(#000000, #222222)` },
|
|
85
85
|
|
|
86
|
-
optionSprite: { w: 450, h: 325 },
|
|
87
86
|
difList: { x: 165, y: 65, w: 280, h: 255, overflow: `auto` },
|
|
88
87
|
difCover: { x: 25, y: 65, w: 140, h: 255, overflow: `auto`, opacity: 0.95 },
|
|
89
88
|
|
|
90
89
|
scoreDetail: { x: 20, y: 90, w: 420, h: 230, visibility: `hidden` },
|
|
91
90
|
detailObj: { w: 420, h: 230, visibility: `hidden` },
|
|
92
91
|
|
|
93
|
-
|
|
94
|
-
keyconSprite: { overflow: `auto` },
|
|
95
|
-
|
|
96
|
-
loader: { h: 10, backgroundColor: `#333333` },
|
|
97
|
-
|
|
98
|
-
playDataWindow: { w: 450, h: 110 },
|
|
99
|
-
resultWindow: { w: 400, h: 210 },
|
|
92
|
+
colorPickSprite: { x: 0, y: 90, w: 50, h: 280 },
|
|
100
93
|
};
|
|
101
94
|
|
|
95
|
+
const g_lblPosObj = {};
|
|
96
|
+
|
|
102
97
|
// 可変部分のウィンドウサイズを更新
|
|
103
98
|
const updateWindowSiz = _ => {
|
|
104
|
-
Object.assign(g_windowObj
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
99
|
+
Object.assign(g_windowObj, {
|
|
100
|
+
optionSprite: { x: (g_sWidth - 450) / 2, y: 65 + (g_sHeight - 500) / 2, w: 450, h: 325 },
|
|
101
|
+
displaySprite: { x: 25, y: 30, w: (g_sWidth - 450) / 2, h: C_LEN_SETLBL_HEIGHT * 5 },
|
|
102
|
+
keyconSprite: { y: 88 + (g_sHeight - 500) / 2, h: g_sHeight, overflow: `auto` },
|
|
103
|
+
loader: { y: g_sHeight - 10, h: 10, backgroundColor: `#333333` },
|
|
104
|
+
playDataWindow: { x: g_sWidth / 2 - 225, y: 70 + (g_sHeight - 500) / 2, w: 450, h: 110 },
|
|
105
|
+
resultWindow: { x: g_sWidth / 2 - 200, y: 185 + (g_sHeight - 500) / 2, w: 400, h: 210 },
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
Object.assign(g_lblPosObj, {
|
|
109
|
+
|
|
110
|
+
/** タイトル画面 */
|
|
111
|
+
btnReset: {
|
|
112
|
+
x: 0, y: g_sHeight - 20, w: g_sWidth / 4, h: 16, siz: 12, title: g_msgObj.dataReset,
|
|
113
|
+
},
|
|
114
|
+
btnReload: {
|
|
115
|
+
x: 10, y: 10, w: 30, h: 30, siz: 20, title: g_msgObj.reload,
|
|
116
|
+
},
|
|
117
|
+
btnHelp: {
|
|
118
|
+
x: 0, y: g_sHeight - 150, w: 40, h: 40, siz: 30, title: g_msgObj.howto,
|
|
119
|
+
},
|
|
120
|
+
lnkMaker: {
|
|
121
|
+
x: 0, y: g_sHeight - 50, w: g_sWidth / 2, h: C_LNK_HEIGHT,
|
|
122
|
+
align: C_ALIGN_LEFT, title: g_headerObj.creatorUrl,
|
|
123
|
+
},
|
|
124
|
+
lnkArtist: {
|
|
125
|
+
x: g_sWidth / 2, y: g_sHeight - 50, w: g_sWidth / 2, h: C_LNK_HEIGHT,
|
|
126
|
+
align: C_ALIGN_LEFT, title: g_headerObj.artistUrl,
|
|
127
|
+
},
|
|
128
|
+
lnkVersion: {
|
|
129
|
+
x: g_sWidth / 4, y: g_sHeight - 20, w: g_sWidth * 3 / 4 - 20, h: 16,
|
|
130
|
+
align: C_ALIGN_RIGHT, title: g_msgObj.github,
|
|
131
|
+
},
|
|
132
|
+
lnkComparison: {
|
|
133
|
+
x: g_sWidth - 20, y: g_sHeight - 20, w: 20, h: 16, siz: 12, title: g_msgObj.security,
|
|
134
|
+
},
|
|
135
|
+
lblComment: {
|
|
136
|
+
x: 0, y: 70, w: g_sWidth, h: g_sHeight - 180, siz: C_SIZ_DIFSELECTOR, align: C_ALIGN_LEFT,
|
|
137
|
+
overflow: `auto`, background: `#222222`, color: `#cccccc`, display: C_DIS_NONE,
|
|
138
|
+
},
|
|
139
|
+
btnComment: {
|
|
140
|
+
x: g_sWidth - 160, y: (g_sHeight / 2) + 150, w: 140, h: 50, siz: 20, border: `solid 1px #999999`,
|
|
141
|
+
},
|
|
142
|
+
|
|
143
|
+
/** 設定画面 */
|
|
144
|
+
btnBack: {},
|
|
145
|
+
btnKeyConfig: {
|
|
146
|
+
x: g_sWidth / 3,
|
|
147
|
+
},
|
|
148
|
+
btnPlay: {
|
|
149
|
+
x: g_sWidth * 2 / 3,
|
|
150
|
+
},
|
|
151
|
+
btnSwitchSetting: {
|
|
152
|
+
x: g_sWidth / 2 + 175 - C_LEN_SETMINI_WIDTH / 2, y: 25, w: C_LEN_SETMINI_WIDTH, h: 40,
|
|
153
|
+
},
|
|
154
|
+
btnSave: {
|
|
155
|
+
x: 0, y: 5, w: g_sWidth / 5, h: 16, siz: 12,
|
|
156
|
+
title: g_msgObj.dataSave, borderStyle: `solid`,
|
|
157
|
+
},
|
|
158
|
+
|
|
159
|
+
btnReverse: {
|
|
160
|
+
x: 160, y: 0, w: 90, h: 21, siz: C_SIZ_DIFSELECTOR, borderStyle: `solid`,
|
|
161
|
+
},
|
|
162
|
+
lblGauge2: {
|
|
163
|
+
x: C_LEN_SETLBL_LEFT - 35, y: C_LEN_SETLBL_HEIGHT,
|
|
164
|
+
w: C_LEN_SETLBL_WIDTH + 60, h: C_LEN_SETLBL_HEIGHT * 2, siz: 11,
|
|
165
|
+
},
|
|
166
|
+
lnkFadein: {
|
|
167
|
+
x: C_LEN_SETLBL_LEFT, y: 0,
|
|
168
|
+
},
|
|
169
|
+
lblFadeinBar: {
|
|
170
|
+
x: C_LEN_SETLBL_LEFT, y: 0,
|
|
171
|
+
},
|
|
172
|
+
|
|
173
|
+
/** 設定: 譜面明細子画面 */
|
|
174
|
+
lnkScoreDetailB: {
|
|
175
|
+
x: 10, w: 100, visibility: `hidden`,
|
|
176
|
+
},
|
|
177
|
+
lnkScoreDetail: {
|
|
178
|
+
x: 10, w: 100, borderStyle: `solid`,
|
|
179
|
+
},
|
|
180
|
+
|
|
181
|
+
lblTooldif: {
|
|
182
|
+
y: 5, w: 250, siz: C_SIZ_JDGCNTS,
|
|
183
|
+
},
|
|
184
|
+
dataTooldif: {
|
|
185
|
+
x: 270, y: 3, w: 160, siz: 18,
|
|
186
|
+
},
|
|
187
|
+
lblDouji: {},
|
|
188
|
+
lblTate: {
|
|
189
|
+
x: 270,
|
|
190
|
+
},
|
|
191
|
+
dataDouji: {
|
|
192
|
+
x: 200, w: 160,
|
|
193
|
+
},
|
|
194
|
+
dataTate: {
|
|
195
|
+
x: 345, w: 160,
|
|
196
|
+
},
|
|
197
|
+
lblArrowInfo: {
|
|
198
|
+
x: 130, y: 45, w: 290, siz: C_SIZ_JDGCNTS,
|
|
199
|
+
},
|
|
200
|
+
dataArrowInfo: {
|
|
201
|
+
x: 270, y: 45, w: 160, siz: C_SIZ_JDGCNTS,
|
|
202
|
+
},
|
|
203
|
+
lblArrowInfo2: {
|
|
204
|
+
x: 130, y: 70, w: 200, h: 90,
|
|
205
|
+
},
|
|
206
|
+
dataArrowInfo2: {
|
|
207
|
+
x: 140, y: 70, w: 275, h: 150, overflow: `auto`,
|
|
208
|
+
},
|
|
209
|
+
lnkDifInfo: {
|
|
210
|
+
x: 10, y: 30, w: 100, borderStyle: `solid`,
|
|
211
|
+
},
|
|
212
|
+
|
|
213
|
+
/** ディスプレイ画面 */
|
|
214
|
+
scMsg: {
|
|
215
|
+
x: 0, y: g_sHeight - 45, w: g_sWidth, h: 20,
|
|
216
|
+
},
|
|
217
|
+
sdDesc: {
|
|
218
|
+
x: 0, y: 65, w: g_sWidth, h: 20, siz: C_SIZ_MAIN,
|
|
219
|
+
},
|
|
220
|
+
lblAppearancePos: {
|
|
221
|
+
x: C_LEN_SETLBL_LEFT, y: 20, siz: 12, align: C_ALIGN_CENTER,
|
|
222
|
+
},
|
|
223
|
+
lblAppearanceBar: {
|
|
224
|
+
x: C_LEN_SETLBL_LEFT, y: 15,
|
|
225
|
+
},
|
|
226
|
+
lnkLockBtn: {
|
|
227
|
+
x: C_LEN_SETLBL_LEFT + C_LEN_SETLBL_WIDTH - 40, y: 0, w: 40, h: C_LEN_SETLBL_HEIGHT, siz: 12,
|
|
228
|
+
borderStyle: `solid`,
|
|
229
|
+
},
|
|
230
|
+
|
|
231
|
+
/** キーコンフィグ画面 */
|
|
232
|
+
scKcMsg: {
|
|
233
|
+
x: 0, y: g_sHeight - 45, w: g_sWidth, h: 20,
|
|
234
|
+
},
|
|
235
|
+
kcMsg: {
|
|
236
|
+
x: 0, y: g_sHeight - 25, w: g_sWidth, h: 20, siz: C_SIZ_MAIN,
|
|
237
|
+
},
|
|
238
|
+
kcDesc: {
|
|
239
|
+
x: 0, y: 68, w: g_sWidth, h: 20,
|
|
240
|
+
},
|
|
241
|
+
kcShuffleDesc: {
|
|
242
|
+
x: 5, y: g_sHeight - 125, w: g_sWidth, h: 20, align: C_ALIGN_LEFT,
|
|
243
|
+
},
|
|
244
|
+
pickPos: {
|
|
245
|
+
x: 0, w: 50, h: 15, siz: 11, align: C_ALIGN_LEFT, background: `#${g_headerObj.baseBrightFlg ? `eeeeee` : `111111`}80`,
|
|
246
|
+
},
|
|
247
|
+
lnkColorCopy: {
|
|
248
|
+
x: 35, y: -5, w: 30, h: 20, siz: 14,
|
|
249
|
+
},
|
|
250
|
+
|
|
251
|
+
btnKcBack: {
|
|
252
|
+
x: g_sWidth / 3, y: g_sHeight - 75,
|
|
253
|
+
w: g_sWidth / 3, h: C_BTN_HEIGHT / 2, siz: C_LBL_BTNSIZE * 2 / 3,
|
|
254
|
+
},
|
|
255
|
+
lblPattern: {
|
|
256
|
+
x: g_sWidth / 6, y: g_sHeight - 100, w: g_sWidth / 3, h: C_BTN_HEIGHT / 2,
|
|
257
|
+
},
|
|
258
|
+
btnPtnChangeR: {
|
|
259
|
+
x: g_sWidth / 2, y: g_sHeight - 100,
|
|
260
|
+
w: g_sWidth / 6, h: C_BTN_HEIGHT / 2, siz: C_LBL_BTNSIZE * 2 / 3,
|
|
261
|
+
},
|
|
262
|
+
btnPtnChangeL: {
|
|
263
|
+
x: 0, y: g_sHeight - 100,
|
|
264
|
+
w: g_sWidth / 6, h: C_BTN_HEIGHT / 2, siz: C_LBL_BTNSIZE * 2 / 3,
|
|
265
|
+
},
|
|
266
|
+
btnKcReset: {
|
|
267
|
+
x: 0, y: g_sHeight - 75,
|
|
268
|
+
w: g_sWidth / 3, h: C_BTN_HEIGHT / 2, siz: C_LBL_BTNSIZE * 2 / 3,
|
|
269
|
+
},
|
|
270
|
+
|
|
271
|
+
/** メイン画面 */
|
|
272
|
+
stepHit: {
|
|
273
|
+
x: -15, y: -15, w: C_ARW_WIDTH + 30, h: C_ARW_WIDTH + 30,
|
|
274
|
+
},
|
|
275
|
+
filterBar: {
|
|
276
|
+
w: g_headerObj.playingWidth - 50, h: 1, styleName: `lifeBar`, opacity: 0.0625,
|
|
277
|
+
},
|
|
278
|
+
filterView: {
|
|
279
|
+
x: g_headerObj.playingWidth - 70, y: 0, w: 10, h: 10, siz: 10, align: C_ALIGN_RIGHT,
|
|
280
|
+
},
|
|
281
|
+
frzHitTop: {
|
|
282
|
+
x: -8, y: -8, w: C_ARW_WIDTH + 16, h: C_ARW_WIDTH + 16,
|
|
283
|
+
},
|
|
284
|
+
lblCredit: {
|
|
285
|
+
x: 125, y: g_sHeight - 30, w: g_headerObj.playingWidth - 125, h: 20, align: C_ALIGN_LEFT,
|
|
286
|
+
},
|
|
287
|
+
lblDifName: {
|
|
288
|
+
x: 125, y: g_sHeight - 16, w: g_headerObj.playingWidth, h: 20, align: C_ALIGN_LEFT,
|
|
289
|
+
},
|
|
290
|
+
lblTime1: {
|
|
291
|
+
x: 18, y: g_sHeight - 30, w: 40, h: 20, siz: C_SIZ_MAIN, align: C_ALIGN_RIGHT,
|
|
292
|
+
},
|
|
293
|
+
lblTime2: {
|
|
294
|
+
x: 60, y: g_sHeight - 30, w: 60, h: 20, siz: C_SIZ_MAIN,
|
|
295
|
+
},
|
|
296
|
+
lblWord: {
|
|
297
|
+
x: 100, w: g_headerObj.playingWidth - 200, h: 50,
|
|
298
|
+
siz: C_SIZ_MAIN, align: C_ALIGN_LEFT, display: `block`, margin: `auto`,
|
|
299
|
+
},
|
|
300
|
+
finishView: {
|
|
301
|
+
x: g_headerObj.playingWidth / 2 - 150, y: g_sHeight / 2 - 50, w: 300, h: 20, siz: 50,
|
|
302
|
+
},
|
|
303
|
+
musicInfoOFF: {
|
|
304
|
+
x: 20, animationDuration: `4.0s`, animationName: `leftToRightFade`, animationFillMode: `both`,
|
|
305
|
+
},
|
|
306
|
+
|
|
307
|
+
/** 結果画面 */
|
|
308
|
+
lblRank: {
|
|
309
|
+
x: 340, y: 160, w: 70, h: 20, siz: 50, align: C_ALIGN_CENTER,
|
|
310
|
+
},
|
|
311
|
+
lblResultPre: {
|
|
312
|
+
x: g_sWidth / 2 - 150, y: g_sHeight / 2 - 160, w: 200, h: 50, siz: 60, opacity: 0,
|
|
313
|
+
},
|
|
314
|
+
lblResultPre2: {
|
|
315
|
+
x: g_sWidth / 2 + 50, y: 40, w: 200, h: 30, siz: 20,
|
|
316
|
+
},
|
|
317
|
+
btnRsBack: {
|
|
318
|
+
w: g_sWidth / 4, h: C_BTN_HEIGHT * 5 / 4, animationName: `smallToNormalY`,
|
|
319
|
+
},
|
|
320
|
+
btnRsCopy: {
|
|
321
|
+
x: g_sWidth / 4, w: g_sWidth / 2, h: C_BTN_HEIGHT * 5 / 8, siz: 24, animationName: `smallToNormalY`,
|
|
322
|
+
},
|
|
323
|
+
btnRsTweet: {
|
|
324
|
+
x: g_sWidth / 4, y: g_sHeight - 100 + C_BTN_HEIGHT * 5 / 8,
|
|
325
|
+
w: g_sWidth / 4, h: C_BTN_HEIGHT * 5 / 8, siz: 24, animationName: `smallToNormalY`,
|
|
326
|
+
},
|
|
327
|
+
btnRsGitter: {
|
|
328
|
+
x: g_sWidth / 2, y: g_sHeight - 100 + C_BTN_HEIGHT * 5 / 8,
|
|
329
|
+
w: g_sWidth / 4, h: C_BTN_HEIGHT * 5 / 8, siz: 24, animationName: `smallToNormalY`,
|
|
330
|
+
},
|
|
331
|
+
btnRsRetry: {
|
|
332
|
+
x: g_sWidth / 4 * 3, w: g_sWidth / 4, h: C_BTN_HEIGHT * 5 / 4, animationName: `smallToNormalY`,
|
|
333
|
+
},
|
|
334
|
+
});
|
|
110
335
|
};
|
|
111
336
|
|
|
112
337
|
// ウィンドウ位置
|
|
@@ -2369,88 +2594,94 @@ const g_dfColorObj = {
|
|
|
2369
2594
|
setColorInit: [`#6666ff`, `#99ffff`, `#ffffff`, `#ffff99`, `#ff9966`],
|
|
2370
2595
|
setShadowColorInit: [``, ``, ``, ``, ``],
|
|
2371
2596
|
|
|
2372
|
-
setColorType1: [`#6666ff`, `#99ffff`, `#ffffff`, `#ffff99`, `#ff9966`],
|
|
2373
|
-
setColorType2: [`#ffffff`, `#9999ff`, `#99ccff`, `#ffccff`, `#ff9999`],
|
|
2374
|
-
setColorType3: [`#ccccff`, `#ccffff`, `#ffffff`, `#ffffcc`, `#ffcc99`],
|
|
2375
|
-
setColorType4: [`#ffffff`, `#ccccff`, `#99ccff`, `#ffccff`, `#ffcccc`],
|
|
2376
|
-
|
|
2377
|
-
setShadowColorType1: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
|
|
2378
|
-
setShadowColorType2: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
|
|
2379
|
-
setShadowColorType3: [`#6666ff60`, `#33999960`, `#66666660`, `#99993360`, `#cc663360`],
|
|
2380
|
-
setShadowColorType4: [`#66666660`, `#6666ff60`, `#3366cc60`, `#99339960`, `#99333360`],
|
|
2381
|
-
|
|
2382
2597
|
// フリーズアロー初期色情報
|
|
2383
2598
|
frzColorInit: [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2384
2599
|
frzShadowColorInit: [``, ``, ``, ``],
|
|
2385
|
-
|
|
2386
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2387
|
-
[`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
|
|
2388
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2389
|
-
[`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
|
|
2390
|
-
[`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
|
|
2391
|
-
],
|
|
2392
|
-
frzColorType2: [
|
|
2393
|
-
[`#cccccc`, `#999999`, `#cccc33`, `#999933`],
|
|
2394
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2395
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2396
|
-
[`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
|
|
2397
|
-
[`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
|
|
2398
|
-
],
|
|
2399
|
-
frzColorType3: [
|
|
2400
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2401
|
-
[`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
|
|
2402
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2403
|
-
[`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
|
|
2404
|
-
[`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
|
|
2405
|
-
],
|
|
2406
|
-
frzColorType4: [
|
|
2407
|
-
[`#cccccc`, `#999999`, `#cccc33`, `#999933`],
|
|
2408
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2409
|
-
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2410
|
-
[`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
|
|
2411
|
-
[`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
|
|
2412
|
-
],
|
|
2600
|
+
|
|
2413
2601
|
};
|
|
2414
2602
|
|
|
2415
|
-
const
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
[
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
[
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
[
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
[
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2603
|
+
const g_dfColorBaseObj = {
|
|
2604
|
+
|
|
2605
|
+
dark: {
|
|
2606
|
+
setColorType1: [`#6666ff`, `#99ffff`, `#ffffff`, `#ffff99`, `#ff9966`],
|
|
2607
|
+
setColorType2: [`#ffffff`, `#9999ff`, `#99ccff`, `#ffccff`, `#ff9999`],
|
|
2608
|
+
setColorType3: [`#ccccff`, `#ccffff`, `#ffffff`, `#ffffcc`, `#ffcc99`],
|
|
2609
|
+
setColorType4: [`#ffffff`, `#ccccff`, `#99ccff`, `#ffccff`, `#ffcccc`],
|
|
2610
|
+
|
|
2611
|
+
setShadowColorType1: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
|
|
2612
|
+
setShadowColorType2: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
|
|
2613
|
+
setShadowColorType3: [`#6666ff60`, `#33999960`, `#66666660`, `#99993360`, `#cc663360`],
|
|
2614
|
+
setShadowColorType4: [`#66666660`, `#6666ff60`, `#3366cc60`, `#99339960`, `#99333360`],
|
|
2615
|
+
|
|
2616
|
+
frzColorType1: [
|
|
2617
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2618
|
+
[`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
|
|
2619
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2620
|
+
[`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
|
|
2621
|
+
[`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
|
|
2622
|
+
],
|
|
2623
|
+
frzColorType2: [
|
|
2624
|
+
[`#cccccc`, `#999999`, `#cccc33`, `#999933`],
|
|
2625
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2626
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2627
|
+
[`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
|
|
2628
|
+
[`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
|
|
2629
|
+
],
|
|
2630
|
+
frzColorType3: [
|
|
2631
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2632
|
+
[`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
|
|
2633
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2634
|
+
[`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
|
|
2635
|
+
[`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
|
|
2636
|
+
],
|
|
2637
|
+
frzColorType4: [
|
|
2638
|
+
[`#cccccc`, `#999999`, `#cccc33`, `#999933`],
|
|
2639
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2640
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2641
|
+
[`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
|
|
2642
|
+
[`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
|
|
2643
|
+
],
|
|
2644
|
+
},
|
|
2645
|
+
light: {
|
|
2646
|
+
setColorType1: [`#6666ff`, `#66cccc`, `#000000`, `#999966`, `#cc6600`],
|
|
2647
|
+
setColorType2: [`#000000`, `#6666ff`, `#cc0000`, `#cc99cc`, `#cc3366`],
|
|
2648
|
+
setColorType3: [`#000000`, `#000000`, `#000000`, `#000000`, `#000000`],
|
|
2649
|
+
setColorType4: [`#000000`, `#000000`, `#000000`, `#000000`, `#000000`],
|
|
2650
|
+
|
|
2651
|
+
setShadowColorType1: [`#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`],
|
|
2652
|
+
setShadowColorType2: [`#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`],
|
|
2653
|
+
setShadowColorType3: [`#6666ff80`, `#66cccc80`, `#ffffff80`, `#99996680`, `#cc660080`],
|
|
2654
|
+
setShadowColorType4: [`#00000080`, `#6666ff80`, `#cc000080`, `#cc99cc80`, `#cc336680`],
|
|
2655
|
+
|
|
2656
|
+
frzColorType1: [
|
|
2657
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2658
|
+
[`#00ffcc`, `#339999`, `#ffff00`, `#999900`],
|
|
2659
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2660
|
+
[`#cc99ff`, `#9966ff`, `#ffff00`, `#999900`],
|
|
2661
|
+
[`#ff99cc`, `#ff6699`, `#ffff00`, `#999900`]
|
|
2662
|
+
],
|
|
2663
|
+
frzColorType2: [
|
|
2664
|
+
[`#cccccc`, `#999999`, `#ffff00`, `#999900`],
|
|
2665
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2666
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2667
|
+
[`#cc99cc`, `#ff99ff`, `#ffff00`, `#999900`],
|
|
2668
|
+
[`#ff6666`, `#ff9999`, `#ffff00`, `#999900`]
|
|
2669
|
+
],
|
|
2670
|
+
frzColorType3: [
|
|
2671
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2672
|
+
[`#00ffcc`, `#339999`, `#ffff00`, `#999900`],
|
|
2673
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2674
|
+
[`#cc99ff`, `#9966ff`, `#ffff00`, `#999900`],
|
|
2675
|
+
[`#ff99cc`, `#ff6699`, `#ffff00`, `#999900`]
|
|
2676
|
+
],
|
|
2677
|
+
frzColorType4: [
|
|
2678
|
+
[`#cccccc`, `#999999`, `#ffff00`, `#999900`],
|
|
2679
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2680
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2681
|
+
[`#cc99cc`, `#ff99ff`, `#ffff00`, `#999900`],
|
|
2682
|
+
[`#ff6666`, `#ff9999`, `#ffff00`, `#999900`]
|
|
2683
|
+
],
|
|
2684
|
+
},
|
|
2454
2685
|
};
|
|
2455
2686
|
|
|
2456
2687
|
/**
|
|
@@ -2884,6 +3115,7 @@ const g_lang_msgObj = {
|
|
|
2884
3115
|
|
|
2885
3116
|
dataResetConfirm: `この作品のローカル設定をクリアします。よろしいですか?\n(ハイスコアやAdjustment等のデータがクリアされます)`,
|
|
2886
3117
|
keyResetConfirm: `キーを初期配置に戻します。よろしいですか?`,
|
|
3118
|
+
colorCopyConfirm: `フリーズアローの配色を矢印色に置き換えます\n(通常・ヒット時双方を置き換えます)。よろしいですか?`,
|
|
2887
3119
|
|
|
2888
3120
|
difficulty: `譜面を選択します。`,
|
|
2889
3121
|
speed: `矢印の流れる速度を設定します。\n外側のボタンは1x単位、内側は0.25x単位で変更できます。`,
|
|
@@ -2934,6 +3166,7 @@ const g_lang_msgObj = {
|
|
|
2934
3166
|
|
|
2935
3167
|
dataResetConfirm: `Delete the local settings in this game. Is it OK?\n(High score, adjustment, volume and some settings will be initialized)`,
|
|
2936
3168
|
keyResetConfirm: `Resets the assigned key to the initial state. Is it OK?`,
|
|
3169
|
+
colorCopyConfirm: `Replace freeze arrow color scheme with arrow color\n(replace both normal and hit). Is this OK?`,
|
|
2937
3170
|
|
|
2938
3171
|
difficulty: `Select a chart.`,
|
|
2939
3172
|
speed: `Set the speed of the sequences.\nThe outer button can be changed in 1x increments and the inner button in 0.25x increments.`,
|
|
@@ -2995,6 +3228,7 @@ const g_errMsgObj = {
|
|
|
2995
3228
|
* - 挿入場所ごとに名前を分けて定義
|
|
2996
3229
|
*/
|
|
2997
3230
|
const g_customJsObj = {
|
|
3231
|
+
preTitle: [],
|
|
2998
3232
|
title: [],
|
|
2999
3233
|
titleEnterFrame: [],
|
|
3000
3234
|
option: [],
|