danoniplus 27.0.0 → 27.3.0

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.
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * Source by tickle
7
7
  * Created : 2019/11/19
8
- * Revised : 2022/03/18 (v27.0.0)
8
+ * Revised : 2022/04/10 (v27.3.0)
9
9
  *
10
10
  * https://github.com/cwtickle/danoniplus
11
11
  */
@@ -73,30 +73,282 @@ const C_TYP_CALC = `calc`;
73
73
 
74
74
  // ウィンドウサイズ
75
75
  let [g_sWidth, g_sHeight] = [
76
- setVal($id(`canvas-frame`).width, 600, C_TYP_FLOAT), setVal($id(`canvas-frame`).height, 500, C_TYP_FLOAT)
76
+ setVal($id(`canvas-frame`).width, 500, C_TYP_FLOAT), setVal($id(`canvas-frame`).height, 500, C_TYP_FLOAT)
77
77
  ];
78
+ $id(`canvas-frame`).width = `${g_sWidth}px`;
79
+ $id(`canvas-frame`).margin = `auto`;
78
80
 
79
81
  // 固定ウィンドウサイズ
80
82
  const g_windowObj = {
81
83
  divRoot: { margin: `auto`, letterSpacing: `normal` },
82
84
  divBack: { background: `linear-gradient(#000000, #222222)` },
83
85
 
84
- optionSprite: { x: (g_sWidth - 450) / 2, y: 65 + (g_sHeight - 500) / 2, w: 450, h: 325 },
85
86
  difList: { x: 165, y: 65, w: 280, h: 255, overflow: `auto` },
86
87
  difCover: { x: 25, y: 65, w: 140, h: 255, overflow: `auto`, opacity: 0.95 },
87
88
 
88
89
  scoreDetail: { x: 20, y: 90, w: 420, h: 230, visibility: `hidden` },
89
90
  detailObj: { w: 420, h: 230, visibility: `hidden` },
90
91
 
91
- displaySprite: { x: 25, y: 30, w: (g_sWidth - 450) / 2, h: C_LEN_SETLBL_HEIGHT * 5 },
92
- keyconSprite: { y: 88 + (g_sHeight - 500) / 2, h: g_sHeight, overflow: `auto` },
93
-
94
- loader: { y: g_sHeight - 10, h: 10, backgroundColor: `#333333` },
92
+ colorPickSprite: { x: 0, y: 90, w: 50, h: 280 },
93
+ };
95
94
 
96
- playDataWindow: { x: g_sWidth / 2 - 225, y: 70 + (g_sHeight - 500) / 2, w: 450, h: 110 },
97
- resultWindow: { x: g_sWidth / 2 - 200, y: 185 + (g_sHeight - 500) / 2, w: 400, h: 210 },
95
+ const g_lblPosObj = {};
96
+
97
+ // 可変部分のウィンドウサイズを更新
98
+ const updateWindowSiz = _ => {
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
+ });
98
335
  };
99
336
 
337
+ // ウィンドウ位置
338
+ const g_windowAlign = {
339
+ left: _ => {
340
+ $id(`canvas-frame`).marginLeft = `0px`;
341
+ $id(`canvas-frame`).marginRight = `auto`;
342
+ },
343
+ center: _ => {
344
+ $id(`canvas-frame`).margin = `auto`;
345
+ },
346
+ right: _ => {
347
+ $id(`canvas-frame`).marginLeft = `auto`;
348
+ $id(`canvas-frame`).marginRight = `0px`;
349
+ },
350
+ }
351
+
100
352
  const g_imgObj = {};
101
353
 
102
354
  // 画像ファイル
@@ -2252,7 +2504,19 @@ const g_keyObj = {
2252
2504
  'Right': [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1],
2253
2505
  },
2254
2506
 
2255
- dummy: 0 // ダミー(カンマ抜け落ち防止)
2507
+ // 横幅最小値
2508
+ minWidth: 500,
2509
+ minWidthDefault: 600,
2510
+
2511
+ minWidth5: 500,
2512
+ minWidth7i: 550,
2513
+ minWidth9A: 650,
2514
+ minWidth11i: 650,
2515
+ minWidth13: 650,
2516
+ minWidth16i: 650,
2517
+ minWidth17: 800,
2518
+ minWidth23: 900,
2519
+
2256
2520
  };
2257
2521
 
2258
2522
  // デフォルト配列のコピー (g_keyObj.aaa_X から g_keyObj.aaa_Xd を作成)
@@ -2330,88 +2594,94 @@ const g_dfColorObj = {
2330
2594
  setColorInit: [`#6666ff`, `#99ffff`, `#ffffff`, `#ffff99`, `#ff9966`],
2331
2595
  setShadowColorInit: [``, ``, ``, ``, ``],
2332
2596
 
2333
- setColorType1: [`#6666ff`, `#99ffff`, `#ffffff`, `#ffff99`, `#ff9966`],
2334
- setColorType2: [`#ffffff`, `#9999ff`, `#99ccff`, `#ffccff`, `#ff9999`],
2335
- setColorType3: [`#ccccff`, `#ccffff`, `#ffffff`, `#ffffcc`, `#ffcc99`],
2336
- setColorType4: [`#ffffff`, `#ccccff`, `#99ccff`, `#ffccff`, `#ffcccc`],
2337
-
2338
- setShadowColorType1: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
2339
- setShadowColorType2: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
2340
- setShadowColorType3: [`#6666ff60`, `#33999960`, `#66666660`, `#99993360`, `#cc663360`],
2341
- setShadowColorType4: [`#66666660`, `#6666ff60`, `#3366cc60`, `#99339960`, `#99333360`],
2342
-
2343
2597
  // フリーズアロー初期色情報
2344
2598
  frzColorInit: [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2345
2599
  frzShadowColorInit: [``, ``, ``, ``],
2346
- frzColorType1: [
2347
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2348
- [`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
2349
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2350
- [`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
2351
- [`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
2352
- ],
2353
- frzColorType2: [
2354
- [`#cccccc`, `#999999`, `#cccc33`, `#999933`],
2355
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2356
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2357
- [`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
2358
- [`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
2359
- ],
2360
- frzColorType3: [
2361
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2362
- [`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
2363
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2364
- [`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
2365
- [`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
2366
- ],
2367
- frzColorType4: [
2368
- [`#cccccc`, `#999999`, `#cccc33`, `#999933`],
2369
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2370
- [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
2371
- [`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
2372
- [`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
2373
- ],
2600
+
2374
2601
  };
2375
2602
 
2376
- const g_dfColorLightObj = {
2377
- setColorType1: [`#6666ff`, `#66cccc`, `#000000`, `#999966`, `#cc6600`],
2378
- setColorType2: [`#000000`, `#6666ff`, `#cc0000`, `#cc99cc`, `#cc3366`],
2379
- setColorType3: [`#000000`, `#000000`, `#000000`, `#000000`, `#000000`],
2380
- setColorType4: [`#000000`, `#000000`, `#000000`, `#000000`, `#000000`],
2381
-
2382
- setShadowColorType1: [`#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`],
2383
- setShadowColorType2: [`#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`],
2384
- setShadowColorType3: [`#6666ff80`, `#66cccc80`, `#ffffff80`, `#99996680`, `#cc660080`],
2385
- setShadowColorType4: [`#00000080`, `#6666ff80`, `#cc000080`, `#cc99cc80`, `#cc336680`],
2386
-
2387
- frzColorType1: [
2388
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2389
- [`#00ffcc`, `#339999`, `#ffff00`, `#999900`],
2390
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2391
- [`#cc99ff`, `#9966ff`, `#ffff00`, `#999900`],
2392
- [`#ff99cc`, `#ff6699`, `#ffff00`, `#999900`]
2393
- ],
2394
- frzColorType2: [
2395
- [`#cccccc`, `#999999`, `#ffff00`, `#999900`],
2396
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2397
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2398
- [`#cc99cc`, `#ff99ff`, `#ffff00`, `#999900`],
2399
- [`#ff6666`, `#ff9999`, `#ffff00`, `#999900`]
2400
- ],
2401
- frzColorType3: [
2402
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2403
- [`#00ffcc`, `#339999`, `#ffff00`, `#999900`],
2404
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2405
- [`#cc99ff`, `#9966ff`, `#ffff00`, `#999900`],
2406
- [`#ff99cc`, `#ff6699`, `#ffff00`, `#999900`]
2407
- ],
2408
- frzColorType4: [
2409
- [`#cccccc`, `#999999`, `#ffff00`, `#999900`],
2410
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2411
- [`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
2412
- [`#cc99cc`, `#ff99ff`, `#ffff00`, `#999900`],
2413
- [`#ff6666`, `#ff9999`, `#ffff00`, `#999900`]
2414
- ],
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
+ },
2415
2685
  };
2416
2686
 
2417
2687
  /**
@@ -2845,6 +3115,7 @@ const g_lang_msgObj = {
2845
3115
 
2846
3116
  dataResetConfirm: `この作品のローカル設定をクリアします。よろしいですか?\n(ハイスコアやAdjustment等のデータがクリアされます)`,
2847
3117
  keyResetConfirm: `キーを初期配置に戻します。よろしいですか?`,
3118
+ colorCopyConfirm: `フリーズアローの配色を矢印色に置き換えます\n(通常・ヒット時双方を置き換えます)。よろしいですか?`,
2848
3119
 
2849
3120
  difficulty: `譜面を選択します。`,
2850
3121
  speed: `矢印の流れる速度を設定します。\n外側のボタンは1x単位、内側は0.25x単位で変更できます。`,
@@ -2895,6 +3166,7 @@ const g_lang_msgObj = {
2895
3166
 
2896
3167
  dataResetConfirm: `Delete the local settings in this game. Is it OK?\n(High score, adjustment, volume and some settings will be initialized)`,
2897
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?`,
2898
3170
 
2899
3171
  difficulty: `Select a chart.`,
2900
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.`,
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
  /**
3
3
  * Dancing☆Onigiri 設定用jsファイル
4
- * Template Update: 2022/02/23 (v26.3.1)
4
+ * Template Update: 2022/03/25 (v27.1.0)
5
5
  *
6
6
  * このファイルでは、作品全体に対しての初期設定を行うことができます。
7
7
  * 譜面データ側で個別に同様の項目が設定されている場合は、譜面データ側の設定が優先されます。
@@ -12,7 +12,7 @@
12
12
 
13
13
  /*
14
14
  ------------------------------------------------------------------------
15
- 制作者クレジット
15
+ 制作者クレジット・基本設定
16
16
  https://github.com/cwtickle/danoniplus/wiki/dos-s0001-makerInfo
17
17
  ------------------------------------------------------------------------
18
18
  */
@@ -23,6 +23,14 @@ g_presetObj.tuning = `name`;
23
23
  /** 譜面製作者URL */
24
24
  g_presetObj.tuningUrl = `https://www.google.co.jp/`;
25
25
 
26
+ /** 自動横幅拡張設定 (true:有効、false:無効 / デフォルトは true) */
27
+ //g_presetObj.autoSpread = false;
28
+
29
+ /** 個人サイト別の最小横幅設定 */
30
+ //g_presetObj.autoMinWidth = 600;
31
+
32
+ /** 個人サイト別のウィンドウ位置 (left:左寄せ, center:中央, right:右寄せ)*/
33
+ //g_presetObj.windowAlign = `center`;
26
34
 
27
35
  /*
28
36
  ------------------------------------------------------------------------
@@ -43,7 +51,6 @@ g_presetObj.skinType = `default`;
43
51
  /** 背景・マスクモーションで使用する画像パスの指定方法を他の設定に合わせる設定 (trueで有効化) */
44
52
  //g_presetObj.syncBackPath = true;
45
53
 
46
-
47
54
  /*
48
55
  ------------------------------------------------------------------------
49
56
  ゲージ設定
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "danoniplus",
3
- "version": "27.0.0",
3
+ "version": "27.3.0",
4
4
  "description": "Dancing☆Onigiri (CW Edition) - Web-based Rhythm Game",
5
5
  "main": "index.js",
6
6
  "scripts": {