danoniplus 27.1.0 → 27.2.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.
- package/css/danoni_main.css +7 -1
- package/js/danoni_main.js +100 -9
- package/js/lib/danoni_constants.js +87 -78
- package/package.json +1 -1
package/css/danoni_main.css
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
本体cssファイル
|
|
5
5
|
|
|
6
6
|
Created : 2018/10/08
|
|
7
|
-
Revised :
|
|
7
|
+
Revised : 2022/03/27 (v27.2.0)
|
|
8
8
|
|
|
9
9
|
https://github.com/cwtickle/danoniplus
|
|
10
10
|
------------------------------------------ */
|
|
@@ -49,6 +49,12 @@ input[type=range]:focus {
|
|
|
49
49
|
outline: 0;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
input[type=color] {
|
|
53
|
+
width:25px;
|
|
54
|
+
height:25px;
|
|
55
|
+
border:none;
|
|
56
|
+
}
|
|
57
|
+
|
|
52
58
|
/* 左から右へ */
|
|
53
59
|
@keyframes leftToRight {
|
|
54
60
|
0% {
|
package/js/danoni_main.js
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Source by tickle
|
|
6
6
|
* Created : 2018/10/08
|
|
7
|
-
* Revised : 2022/03/
|
|
7
|
+
* Revised : 2022/03/27
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 27.
|
|
12
|
-
const g_revisedDate = `2022/03/
|
|
11
|
+
const g_version = `Ver 27.2.0`;
|
|
12
|
+
const g_revisedDate = `2022/03/27`;
|
|
13
13
|
const g_alphaVersion = ``;
|
|
14
14
|
|
|
15
15
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
@@ -965,6 +965,24 @@ const createImg = (_id, _imgPath, _x, _y, _width, _height) => {
|
|
|
965
965
|
return div;
|
|
966
966
|
};
|
|
967
967
|
|
|
968
|
+
/**
|
|
969
|
+
* ColorPickerの作成
|
|
970
|
+
* @param {string} _id
|
|
971
|
+
* @param {string} _color
|
|
972
|
+
* @param {object} _obj
|
|
973
|
+
* @returns
|
|
974
|
+
*/
|
|
975
|
+
const createColorPicker = (_parentObj, _id, { x = 0, y = 0 } = {}) => {
|
|
976
|
+
const picker = document.createElement(`input`);
|
|
977
|
+
picker.setAttribute(`type`, `color`);
|
|
978
|
+
picker.id = _id;
|
|
979
|
+
picker.style.left = `${x}px`;
|
|
980
|
+
picker.style.top = `${y}px`;
|
|
981
|
+
picker.style.position = `absolute`;
|
|
982
|
+
_parentObj.appendChild(picker);
|
|
983
|
+
return picker;
|
|
984
|
+
};
|
|
985
|
+
|
|
968
986
|
/**
|
|
969
987
|
* 色付きオブジェクトの作成 (拡張属性対応)
|
|
970
988
|
* @param {string} _id
|
|
@@ -1225,6 +1243,7 @@ const clearWindow = (_redrawFlg = false, _customDisplayName = ``) => {
|
|
|
1225
1243
|
// レイヤー情報取得
|
|
1226
1244
|
const layer0 = document.querySelector(`#layer0`);
|
|
1227
1245
|
const l0ctx = layer0.getContext(`2d`);
|
|
1246
|
+
layer0.width = g_sWidth;
|
|
1228
1247
|
|
|
1229
1248
|
// 線画、図形をクリア
|
|
1230
1249
|
l0ctx.clearRect(0, 0, g_sWidth, g_sHeight);
|
|
@@ -1232,24 +1251,26 @@ const clearWindow = (_redrawFlg = false, _customDisplayName = ``) => {
|
|
|
1232
1251
|
if (document.querySelector(`#layer1`) !== null) {
|
|
1233
1252
|
const layer1 = document.querySelector(`#layer1`);
|
|
1234
1253
|
const l1ctx = layer1.getContext(`2d`);
|
|
1254
|
+
layer1.width = g_sWidth;
|
|
1235
1255
|
l1ctx.clearRect(0, 0, g_sWidth, g_sHeight);
|
|
1236
1256
|
|
|
1237
1257
|
// 線画 (title-line)
|
|
1238
1258
|
l1ctx.beginPath();
|
|
1239
1259
|
l1ctx.strokeStyle = `#cccccc`;
|
|
1240
1260
|
l1ctx.moveTo(0, 0);
|
|
1241
|
-
l1ctx.lineTo(
|
|
1261
|
+
l1ctx.lineTo(layer1.width, 0);
|
|
1242
1262
|
l1ctx.stroke();
|
|
1243
1263
|
|
|
1244
1264
|
l1ctx.beginPath();
|
|
1245
1265
|
l1ctx.strokeStyle = `#cccccc`;
|
|
1246
1266
|
l1ctx.moveTo(0, g_sHeight);
|
|
1247
|
-
l1ctx.lineTo(
|
|
1267
|
+
l1ctx.lineTo(layer1.width, g_sHeight);
|
|
1248
1268
|
l1ctx.stroke();
|
|
1249
1269
|
}
|
|
1250
1270
|
if (document.querySelector(`#layer2`) !== null) {
|
|
1251
1271
|
const layer2 = document.querySelector(`#layer2`);
|
|
1252
1272
|
const l2ctx = layer2.getContext(`2d`);
|
|
1273
|
+
layer2.width = g_sWidth;
|
|
1253
1274
|
l2ctx.clearRect(0, 0, g_sWidth, g_sHeight);
|
|
1254
1275
|
}
|
|
1255
1276
|
}
|
|
@@ -2604,10 +2625,9 @@ const headerConvert = _dosObj => {
|
|
|
2604
2625
|
}
|
|
2605
2626
|
|
|
2606
2627
|
// 初期色情報
|
|
2628
|
+
const baseColor = (obj.baseBrightFlg ? `light` : `dark`);
|
|
2629
|
+
Object.assign(g_dfColorObj, g_dfColorBaseObj[baseColor]);
|
|
2607
2630
|
Object.keys(g_dfColorObj).forEach(key => obj[key] = g_dfColorObj[key].concat());
|
|
2608
|
-
if (obj.baseBrightFlg) {
|
|
2609
|
-
Object.keys(g_dfColorLightObj).forEach(key => obj[key] = g_dfColorLightObj[key].concat());
|
|
2610
|
-
}
|
|
2611
2631
|
obj.frzColorDefault = [];
|
|
2612
2632
|
|
|
2613
2633
|
// ダミー用初期矢印色
|
|
@@ -5895,11 +5915,26 @@ const keyConfigInit = (_kcType = g_kcType) => {
|
|
|
5895
5915
|
lnkKcType.textContent = getStgDetailName(g_kcType);
|
|
5896
5916
|
};
|
|
5897
5917
|
|
|
5918
|
+
/**
|
|
5919
|
+
* ColorPickerの色切替
|
|
5920
|
+
* @param {number} _j
|
|
5921
|
+
* @param {string} _type
|
|
5922
|
+
* @param {string} _color
|
|
5923
|
+
*/
|
|
5924
|
+
const changeColorPicker = (_j, _type, _color) => {
|
|
5925
|
+
if (_color !== ``) {
|
|
5926
|
+
document.getElementById(`pick${_type}${_j}`).value = _color.slice(0, 7);
|
|
5927
|
+
document.getElementById(`pick${_type}${_j}`).style.display = C_DIS_INHERIT;
|
|
5928
|
+
} else {
|
|
5929
|
+
document.getElementById(`pick${_type}${_j}`).style.display = C_DIS_NONE;
|
|
5930
|
+
}
|
|
5931
|
+
};
|
|
5932
|
+
|
|
5898
5933
|
/**
|
|
5899
5934
|
* ColorTypeの制御
|
|
5900
5935
|
* @param {number} _scrollNum
|
|
5901
5936
|
*/
|
|
5902
|
-
const setColorType = (_scrollNum = 1) => {
|
|
5937
|
+
const setColorType = (_scrollNum = 1, _reloadFlg = true) => {
|
|
5903
5938
|
const nextNum = getNextNum(_scrollNum, `colorTypes`, g_colorType);
|
|
5904
5939
|
g_colorType = g_keycons.colorTypes[nextNum];
|
|
5905
5940
|
if (g_headerObj.colorUse) {
|
|
@@ -5908,6 +5943,15 @@ const keyConfigInit = (_kcType = g_kcType) => {
|
|
|
5908
5943
|
changeSetColor();
|
|
5909
5944
|
viewGroupObj.color(`_${g_keycons.colorGroupNum}`);
|
|
5910
5945
|
lnkColorType.textContent = `${getStgDetailName(g_colorType)}${g_localStorage.colorType === g_colorType ? ' *' : ''}`;
|
|
5946
|
+
if (_reloadFlg) {
|
|
5947
|
+
colorPickSprite.style.display = ([`Default`, `Type0`].includes(g_colorType) ? C_DIS_NONE : C_DIS_INHERIT);
|
|
5948
|
+
for (let j = 0; j < g_headerObj.setColor.length; j++) {
|
|
5949
|
+
changeColorPicker(j, `arrow`, g_headerObj.setColor[j]);
|
|
5950
|
+
changeColorPicker(j, `arrowShadow`, g_headerObj.setShadowColor[j]);
|
|
5951
|
+
changeColorPicker(j, `frz`, g_headerObj.frzColor[j][0]);
|
|
5952
|
+
changeColorPicker(j, `frzBar`, g_headerObj.frzColor[j][1]);
|
|
5953
|
+
}
|
|
5954
|
+
}
|
|
5911
5955
|
};
|
|
5912
5956
|
|
|
5913
5957
|
const setImgType = (_scrollNum = 1) => {
|
|
@@ -5920,6 +5964,53 @@ const keyConfigInit = (_kcType = g_kcType) => {
|
|
|
5920
5964
|
keyConfigInit(g_kcType);
|
|
5921
5965
|
};
|
|
5922
5966
|
|
|
5967
|
+
const colorPickSprite = createEmptySprite(divRoot, `colorPickSprite`, g_windowObj.colorPickSprite);
|
|
5968
|
+
if ([`Default`, `Type0`].includes(g_colorType)) {
|
|
5969
|
+
colorPickSprite.style.display = C_DIS_NONE;
|
|
5970
|
+
}
|
|
5971
|
+
const pickPos = { x: 0, w: 50, h: 15, siz: 11, align: C_ALIGN_LEFT, background: `#${g_headerObj.baseBrightFlg ? `eeeeee` : `111111`}80` };
|
|
5972
|
+
multiAppend(colorPickSprite,
|
|
5973
|
+
createDivCss2Label(`lblPickArrow`, g_lblNameObj.s_arrow, Object.assign({ y: 0 }, pickPos)),
|
|
5974
|
+
createDivCss2Label(`lblPickFrz`, g_lblNameObj.s_frz, Object.assign({ y: 140 }, pickPos)),
|
|
5975
|
+
createCss2Button(`lnkColorCopy`, `[↓]`, _ => {
|
|
5976
|
+
if (window.confirm(g_msgObj.colorCopyConfirm)) {
|
|
5977
|
+
for (let j = 0; j < g_headerObj.setColor.length; j++) {
|
|
5978
|
+
g_headerObj[`frzColor${g_colorType}`][j] = [...Array(g_headerObj[`frzColor${g_colorType}`][j].length)].fill(g_headerObj[`setColor${g_colorType}`][j]);
|
|
5979
|
+
[``, `Bar`].forEach((val, k) =>
|
|
5980
|
+
document.getElementById(`pickfrz${val}${j}`).value = g_headerObj[`frzColor${g_colorType}`][j][k]);
|
|
5981
|
+
}
|
|
5982
|
+
}
|
|
5983
|
+
}, { x: 35, y: -5, w: 30, h: 20, siz: 14 }, g_cssObj.button_Start),
|
|
5984
|
+
);
|
|
5985
|
+
|
|
5986
|
+
/**
|
|
5987
|
+
* ColorPicker部分の作成
|
|
5988
|
+
* @param {number} _j
|
|
5989
|
+
* @param {string} _type
|
|
5990
|
+
* @param {function} _func
|
|
5991
|
+
* @param {object} _obj
|
|
5992
|
+
*/
|
|
5993
|
+
const createColorPickWindow = (_j, _type, _func, { x = 0, y = 15 } = {}) => {
|
|
5994
|
+
const picker = createColorPicker(colorPickSprite, `pick${_type}${_j}`, { x, y: y + 25 * _j });
|
|
5995
|
+
picker.addEventListener(`change`, _func);
|
|
5996
|
+
};
|
|
5997
|
+
|
|
5998
|
+
for (let j = 0; j < g_headerObj.setColor.length; j++) {
|
|
5999
|
+
createColorPickWindow(j, `arrow`, _ => {
|
|
6000
|
+
g_headerObj[`setColor${g_colorType}`][j] = document.getElementById(`pickarrow${j}`).value;
|
|
6001
|
+
setColorType(0, false);
|
|
6002
|
+
});
|
|
6003
|
+
|
|
6004
|
+
createColorPickWindow(j, `arrowShadow`, _ => {
|
|
6005
|
+
g_headerObj[`setShadowColor${g_colorType}`][j] = `${document.getElementById(`pickarrowShadow${j}`).value}80`;
|
|
6006
|
+
setColorType(0, false);
|
|
6007
|
+
}, { x: 25 });
|
|
6008
|
+
|
|
6009
|
+
[``, `Bar`].forEach((val, k) =>
|
|
6010
|
+
createColorPickWindow(j, `frz${val}`, _ =>
|
|
6011
|
+
g_headerObj[`frzColor${g_colorType}`][j][k] = document.getElementById(`pickfrz${val}${j}`).value, { x: 25 * k, y: 155 }));
|
|
6012
|
+
}
|
|
6013
|
+
|
|
5923
6014
|
// ConfigType, ColorTypeの初期設定
|
|
5924
6015
|
setConfigType(0);
|
|
5925
6016
|
setColorType(0);
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*
|
|
6
6
|
* Source by tickle
|
|
7
7
|
* Created : 2019/11/19
|
|
8
|
-
* Revised : 2022/03/
|
|
8
|
+
* Revised : 2022/03/27 (v27.2.0)
|
|
9
9
|
*
|
|
10
10
|
* https://github.com/cwtickle/danoniplus
|
|
11
11
|
*/
|
|
@@ -92,6 +92,7 @@ const g_windowObj = {
|
|
|
92
92
|
|
|
93
93
|
displaySprite: { x: 25, y: 30, h: C_LEN_SETLBL_HEIGHT * 5 },
|
|
94
94
|
keyconSprite: { overflow: `auto` },
|
|
95
|
+
colorPickSprite: { x: 0, y: 90, w: 50, h: 280 },
|
|
95
96
|
|
|
96
97
|
loader: { h: 10, backgroundColor: `#333333` },
|
|
97
98
|
|
|
@@ -2369,88 +2370,94 @@ const g_dfColorObj = {
|
|
|
2369
2370
|
setColorInit: [`#6666ff`, `#99ffff`, `#ffffff`, `#ffff99`, `#ff9966`],
|
|
2370
2371
|
setShadowColorInit: [``, ``, ``, ``, ``],
|
|
2371
2372
|
|
|
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
2373
|
// フリーズアロー初期色情報
|
|
2383
2374
|
frzColorInit: [`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2384
2375
|
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
|
-
],
|
|
2376
|
+
|
|
2413
2377
|
};
|
|
2414
2378
|
|
|
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
|
-
|
|
2379
|
+
const g_dfColorBaseObj = {
|
|
2380
|
+
|
|
2381
|
+
dark: {
|
|
2382
|
+
setColorType1: [`#6666ff`, `#99ffff`, `#ffffff`, `#ffff99`, `#ff9966`],
|
|
2383
|
+
setColorType2: [`#ffffff`, `#9999ff`, `#99ccff`, `#ffccff`, `#ff9999`],
|
|
2384
|
+
setColorType3: [`#ccccff`, `#ccffff`, `#ffffff`, `#ffffcc`, `#ffcc99`],
|
|
2385
|
+
setColorType4: [`#ffffff`, `#ccccff`, `#99ccff`, `#ffccff`, `#ffcccc`],
|
|
2386
|
+
|
|
2387
|
+
setShadowColorType1: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
|
|
2388
|
+
setShadowColorType2: [`#00000080`, `#00000080`, `#00000080`, `#00000080`, `#00000080`],
|
|
2389
|
+
setShadowColorType3: [`#6666ff60`, `#33999960`, `#66666660`, `#99993360`, `#cc663360`],
|
|
2390
|
+
setShadowColorType4: [`#66666660`, `#6666ff60`, `#3366cc60`, `#99339960`, `#99333360`],
|
|
2391
|
+
|
|
2392
|
+
frzColorType1: [
|
|
2393
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2394
|
+
[`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
|
|
2395
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2396
|
+
[`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
|
|
2397
|
+
[`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
|
|
2398
|
+
],
|
|
2399
|
+
frzColorType2: [
|
|
2400
|
+
[`#cccccc`, `#999999`, `#cccc33`, `#999933`],
|
|
2401
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2402
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2403
|
+
[`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
|
|
2404
|
+
[`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
|
|
2405
|
+
],
|
|
2406
|
+
frzColorType3: [
|
|
2407
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2408
|
+
[`#00ffcc`, `#339999`, `#cccc33`, `#999933`],
|
|
2409
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2410
|
+
[`#cc99ff`, `#9966ff`, `#cccc33`, `#999933`],
|
|
2411
|
+
[`#ff99cc`, `#ff6699`, `#cccc33`, `#999933`]
|
|
2412
|
+
],
|
|
2413
|
+
frzColorType4: [
|
|
2414
|
+
[`#cccccc`, `#999999`, `#cccc33`, `#999933`],
|
|
2415
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2416
|
+
[`#66ffff`, `#6600ff`, `#cccc33`, `#999933`],
|
|
2417
|
+
[`#cc99cc`, `#ff99ff`, `#cccc33`, `#999933`],
|
|
2418
|
+
[`#ff6666`, `#ff9999`, `#cccc33`, `#999933`]
|
|
2419
|
+
],
|
|
2420
|
+
},
|
|
2421
|
+
light: {
|
|
2422
|
+
setColorType1: [`#6666ff`, `#66cccc`, `#000000`, `#999966`, `#cc6600`],
|
|
2423
|
+
setColorType2: [`#000000`, `#6666ff`, `#cc0000`, `#cc99cc`, `#cc3366`],
|
|
2424
|
+
setColorType3: [`#000000`, `#000000`, `#000000`, `#000000`, `#000000`],
|
|
2425
|
+
setColorType4: [`#000000`, `#000000`, `#000000`, `#000000`, `#000000`],
|
|
2426
|
+
|
|
2427
|
+
setShadowColorType1: [`#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`],
|
|
2428
|
+
setShadowColorType2: [`#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`, `#ffffff80`],
|
|
2429
|
+
setShadowColorType3: [`#6666ff80`, `#66cccc80`, `#ffffff80`, `#99996680`, `#cc660080`],
|
|
2430
|
+
setShadowColorType4: [`#00000080`, `#6666ff80`, `#cc000080`, `#cc99cc80`, `#cc336680`],
|
|
2431
|
+
|
|
2432
|
+
frzColorType1: [
|
|
2433
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2434
|
+
[`#00ffcc`, `#339999`, `#ffff00`, `#999900`],
|
|
2435
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2436
|
+
[`#cc99ff`, `#9966ff`, `#ffff00`, `#999900`],
|
|
2437
|
+
[`#ff99cc`, `#ff6699`, `#ffff00`, `#999900`]
|
|
2438
|
+
],
|
|
2439
|
+
frzColorType2: [
|
|
2440
|
+
[`#cccccc`, `#999999`, `#ffff00`, `#999900`],
|
|
2441
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2442
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2443
|
+
[`#cc99cc`, `#ff99ff`, `#ffff00`, `#999900`],
|
|
2444
|
+
[`#ff6666`, `#ff9999`, `#ffff00`, `#999900`]
|
|
2445
|
+
],
|
|
2446
|
+
frzColorType3: [
|
|
2447
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2448
|
+
[`#00ffcc`, `#339999`, `#ffff00`, `#999900`],
|
|
2449
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2450
|
+
[`#cc99ff`, `#9966ff`, `#ffff00`, `#999900`],
|
|
2451
|
+
[`#ff99cc`, `#ff6699`, `#ffff00`, `#999900`]
|
|
2452
|
+
],
|
|
2453
|
+
frzColorType4: [
|
|
2454
|
+
[`#cccccc`, `#999999`, `#ffff00`, `#999900`],
|
|
2455
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2456
|
+
[`#66ffff`, `#6600ff`, `#ffff00`, `#999900`],
|
|
2457
|
+
[`#cc99cc`, `#ff99ff`, `#ffff00`, `#999900`],
|
|
2458
|
+
[`#ff6666`, `#ff9999`, `#ffff00`, `#999900`]
|
|
2459
|
+
],
|
|
2460
|
+
},
|
|
2454
2461
|
};
|
|
2455
2462
|
|
|
2456
2463
|
/**
|
|
@@ -2884,6 +2891,7 @@ const g_lang_msgObj = {
|
|
|
2884
2891
|
|
|
2885
2892
|
dataResetConfirm: `この作品のローカル設定をクリアします。よろしいですか?\n(ハイスコアやAdjustment等のデータがクリアされます)`,
|
|
2886
2893
|
keyResetConfirm: `キーを初期配置に戻します。よろしいですか?`,
|
|
2894
|
+
colorCopyConfirm: `フリーズアローの配色を矢印色に置き換えます\n(通常・ヒット時双方を置き換えます)。よろしいですか?`,
|
|
2887
2895
|
|
|
2888
2896
|
difficulty: `譜面を選択します。`,
|
|
2889
2897
|
speed: `矢印の流れる速度を設定します。\n外側のボタンは1x単位、内側は0.25x単位で変更できます。`,
|
|
@@ -2934,6 +2942,7 @@ const g_lang_msgObj = {
|
|
|
2934
2942
|
|
|
2935
2943
|
dataResetConfirm: `Delete the local settings in this game. Is it OK?\n(High score, adjustment, volume and some settings will be initialized)`,
|
|
2936
2944
|
keyResetConfirm: `Resets the assigned key to the initial state. Is it OK?`,
|
|
2945
|
+
colorCopyConfirm: `Replace freeze arrow color scheme with arrow color\n(replace both normal and hit). Is this OK?`,
|
|
2937
2946
|
|
|
2938
2947
|
difficulty: `Select a chart.`,
|
|
2939
2948
|
speed: `Set the speed of the sequences.\nThe outer button can be changed in 1x increments and the inner button in 0.25x increments.`,
|