danoniplus 36.6.7 → 36.6.9
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/README.md +1 -3
- package/js/danoni_main.js +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
# Dancing☆Onigiri (CW Edition)
|
|
2
2
|
|
|
3
|
-
[](https://www.codefactor.io/repository/github/cwtickle/danoniplus)
|
|
4
|
-
[](https://app.codacy.com/gh/cwtickle/danoniplus/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
|
|
5
3
|
[](https://github.com/cwtickle/danoniplus/actions?query=workflow%3ACodeQL)
|
|
6
4
|
[](https://discord.gg/YVWUdUGyMy)
|
|
7
|
-
[](https://github.com/cwtickle/danoniplus/security/policy)
|
|
8
6
|
[](https://github.com/cwtickle/danoniplus/releases)
|
|
9
7
|
[](https://github.com/cwtickle/danoniplus/blob/develop/LICENSE)
|
|
10
8
|

|
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 : 2024/
|
|
7
|
+
* Revised : 2024/12/19
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 36.6.
|
|
12
|
-
const g_revisedDate = `2024/
|
|
11
|
+
const g_version = `Ver 36.6.9`;
|
|
12
|
+
const g_revisedDate = `2024/12/19`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -7900,7 +7900,7 @@ const scoreConvert = (_dosObj, _scoreId, _preblankFrame, _dummyNo = ``,
|
|
|
7900
7900
|
// g付きの場合は矢印グループから対象の矢印番号を検索
|
|
7901
7901
|
const groupVal = setIntVal(val.slice(1));
|
|
7902
7902
|
for (let j = 0; j < keyNum; j++) {
|
|
7903
|
-
if (g_keyObj[`color${
|
|
7903
|
+
if (g_keyObj[`color${g_keyObj.currentKey}_0`][j] === groupVal) {
|
|
7904
7904
|
colorVals.push(j);
|
|
7905
7905
|
}
|
|
7906
7906
|
}
|
|
@@ -8476,7 +8476,7 @@ const pushArrows = (_dataObj, _speedOnFrame, _motionOnFrame, _firstArrivalFrame)
|
|
|
8476
8476
|
g_workObj.initY[frmPrev] = tmpObj.startY;
|
|
8477
8477
|
g_workObj.arrivalFrame[frmPrev] = tmpObj.arrivalFrm;
|
|
8478
8478
|
g_workObj.motionFrame[frmPrev] = tmpObj.motionFrm;
|
|
8479
|
-
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j
|
|
8479
|
+
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j <= g_workObj.motionFrame[frmPrev]));
|
|
8480
8480
|
|
|
8481
8481
|
if (_frzFlg) {
|
|
8482
8482
|
g_workObj[`mk${camelHeader}Length`][_j] = [];
|
|
@@ -8504,7 +8504,7 @@ const pushArrows = (_dataObj, _speedOnFrame, _motionOnFrame, _firstArrivalFrame)
|
|
|
8504
8504
|
g_workObj.initY[tmpFrame] = g_workObj.initY[frmPrev];
|
|
8505
8505
|
g_workObj.arrivalFrame[tmpFrame] = g_workObj.arrivalFrame[frmPrev];
|
|
8506
8506
|
g_workObj.motionFrame[tmpFrame] = g_workObj.motionFrame[frmPrev];
|
|
8507
|
-
g_workObj.initBoostY[tmpFrame] = sumData(g_workObj.motionOnFrames.filter((val, j) => j
|
|
8507
|
+
g_workObj.initBoostY[tmpFrame] = sumData(g_workObj.motionOnFrames.filter((val, j) => j <= g_workObj.motionFrame[frmPrev]));
|
|
8508
8508
|
|
|
8509
8509
|
} else {
|
|
8510
8510
|
|
|
@@ -8521,7 +8521,7 @@ const pushArrows = (_dataObj, _speedOnFrame, _motionOnFrame, _firstArrivalFrame)
|
|
|
8521
8521
|
g_workObj.initY[frmPrev] = tmpObj.startY;
|
|
8522
8522
|
g_workObj.arrivalFrame[frmPrev] = tmpObj.arrivalFrm;
|
|
8523
8523
|
g_workObj.motionFrame[frmPrev] = tmpObj.motionFrm;
|
|
8524
|
-
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j
|
|
8524
|
+
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j <= g_workObj.motionFrame[frmPrev]));
|
|
8525
8525
|
}
|
|
8526
8526
|
|
|
8527
8527
|
// 出現タイミングを保存
|