danoniplus 34.7.12 → 34.7.14
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 -1
- package/js/danoni_main.js +12 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://codeclimate.com/github/cwtickle/danoniplus/maintainability)
|
|
4
4
|
[](https://github.com/cwtickle/danoniplus/actions?query=workflow%3ACodeQL)
|
|
5
5
|
[](https://gitlab.com/cwtickle/danonicw/-/issues)
|
|
6
|
-
[](https://github.com/cwtickle/danoniplus/security/policy)
|
|
7
7
|
[](https://github.com/cwtickle/danoniplus/releases)
|
|
8
8
|
[](https://github.com/cwtickle/danoniplus/blob/develop/LICENSE)
|
|
9
9
|

|
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 :
|
|
7
|
+
* Revised : 2025/01/28
|
|
8
8
|
*
|
|
9
9
|
* https://github.com/cwtickle/danoniplus
|
|
10
10
|
*/
|
|
11
|
-
const g_version = `Ver 34.7.
|
|
12
|
-
const g_revisedDate = `
|
|
11
|
+
const g_version = `Ver 34.7.14`;
|
|
12
|
+
const g_revisedDate = `2025/01/28`;
|
|
13
13
|
|
|
14
14
|
// カスタム用バージョン (danoni_custom.js 等で指定可)
|
|
15
15
|
let g_localVersion = ``;
|
|
@@ -8057,7 +8057,7 @@ const pushArrows = (_dataObj, _speedOnFrame, _motionOnFrame, _firstArrivalFrame)
|
|
|
8057
8057
|
g_workObj.initY[frmPrev] = tmpObj.startY;
|
|
8058
8058
|
g_workObj.arrivalFrame[frmPrev] = tmpObj.arrivalFrm;
|
|
8059
8059
|
g_workObj.motionFrame[frmPrev] = tmpObj.motionFrm;
|
|
8060
|
-
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j
|
|
8060
|
+
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j <= g_workObj.motionFrame[frmPrev]));
|
|
8061
8061
|
|
|
8062
8062
|
if (_frzFlg) {
|
|
8063
8063
|
g_workObj[`mk${camelHeader}Length`][_j] = [];
|
|
@@ -8085,7 +8085,7 @@ const pushArrows = (_dataObj, _speedOnFrame, _motionOnFrame, _firstArrivalFrame)
|
|
|
8085
8085
|
g_workObj.initY[tmpFrame] = g_workObj.initY[frmPrev];
|
|
8086
8086
|
g_workObj.arrivalFrame[tmpFrame] = g_workObj.arrivalFrame[frmPrev];
|
|
8087
8087
|
g_workObj.motionFrame[tmpFrame] = g_workObj.motionFrame[frmPrev];
|
|
8088
|
-
g_workObj.initBoostY[tmpFrame] = sumData(g_workObj.motionOnFrames.filter((val, j) => j
|
|
8088
|
+
g_workObj.initBoostY[tmpFrame] = sumData(g_workObj.motionOnFrames.filter((val, j) => j <= g_workObj.motionFrame[frmPrev]));
|
|
8089
8089
|
|
|
8090
8090
|
} else {
|
|
8091
8091
|
|
|
@@ -8102,7 +8102,7 @@ const pushArrows = (_dataObj, _speedOnFrame, _motionOnFrame, _firstArrivalFrame)
|
|
|
8102
8102
|
g_workObj.initY[frmPrev] = tmpObj.startY;
|
|
8103
8103
|
g_workObj.arrivalFrame[frmPrev] = tmpObj.arrivalFrm;
|
|
8104
8104
|
g_workObj.motionFrame[frmPrev] = tmpObj.motionFrm;
|
|
8105
|
-
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j
|
|
8105
|
+
g_workObj.initBoostY[frmPrev] = sumData(g_workObj.motionOnFrames.filter((val, j) => j <= g_workObj.motionFrame[frmPrev]));
|
|
8106
8106
|
}
|
|
8107
8107
|
|
|
8108
8108
|
// 出現タイミングを保存
|
|
@@ -9412,6 +9412,10 @@ const mainInit = _ => {
|
|
|
9412
9412
|
|
|
9413
9413
|
arrowOFF: (_j, _k, _cnt) => {
|
|
9414
9414
|
|
|
9415
|
+
// 直前のフリーズアローが未判定で、自身の判定範囲がキター(O.K.)の範囲内のとき判定対象を矢印側へ移す
|
|
9416
|
+
// 本来はシャキン(Great)の範囲内としたいところだが、実装が複雑になるため上記条件とする
|
|
9417
|
+
judgeNextFunc.frzOFF(_j, g_workObj.judgFrzCnt[_j] + 1, _cnt);
|
|
9418
|
+
|
|
9415
9419
|
if (g_workObj.judgArrowCnt[_j] === _k - 1 && _cnt <= g_judgObj.arrowJ[g_judgPosObj.shakin]) {
|
|
9416
9420
|
const prevArrowName = `arrow${_j}_${g_workObj.judgArrowCnt[_j]}`;
|
|
9417
9421
|
const prevArrow = g_attrObj[prevArrowName];
|
|
@@ -9439,7 +9443,7 @@ const mainInit = _ => {
|
|
|
9439
9443
|
const prevFrz = g_attrObj[prevFrzName];
|
|
9440
9444
|
|
|
9441
9445
|
// 自身より前のフリーズアローが移動中かつキター(O.K.)の領域外のとき
|
|
9442
|
-
if (prevFrz.isMoving && prevFrz.cnt < (-1) * g_judgObj.frzJ[g_judgPosObj.kita]) {
|
|
9446
|
+
if (prevFrz && prevFrz.isMoving && prevFrz.cnt < (-1) * g_judgObj.frzJ[g_judgPosObj.kita]) {
|
|
9443
9447
|
|
|
9444
9448
|
// 自身より前のフリーズアローが未判定の場合、強制的に枠外判定を行う
|
|
9445
9449
|
if (prevFrz.cnt >= (-1) * g_judgObj.frzJ[g_judgPosObj.iknai] && !prevFrz.judgEndFlg) {
|
|
@@ -9701,7 +9705,7 @@ const mainInit = _ => {
|
|
|
9701
9705
|
judgeMotionFunc[`${_name}NG`](_j, _k, frzName, currentFrz.cnt);
|
|
9702
9706
|
|
|
9703
9707
|
} else {
|
|
9704
|
-
currentFrz.frzBarLength -=
|
|
9708
|
+
currentFrz.frzBarLength -= movY * currentFrz.dir;
|
|
9705
9709
|
if (currentFrz.frzBarLength > 0) {
|
|
9706
9710
|
currentFrz.y -= movY;
|
|
9707
9711
|
$id(frzName).top = wUnit(currentFrz.y);
|