04301d74fd17eda38b8501d18f07ffe76f620d9f
1 import ChessRules
from "/base_rules.js";
3 export default class RefusalRules
extends ChessRules
{
7 select: C
.Options
.select
,
11 variable: "refuseany",
25 let parts
= super.getPartFen(o
);
26 parts
["lastmove"] = o
.init
? null : this.lastMove
;
30 setOtherVariables(fenParsed
) {
31 super.setOtherVariables(fenParsed
);
32 this.lastMove
= JSON
.parse(fenParsed
.lastmove
);
34 // Fill with empty values to avoid checking lastMove != null
36 start: {x: -1, y: -1}, end: {x: -1, y: -1}, vanish: [{c: ''}]
42 if (super.canIplay(x
, y
))
44 // Check if playing last move, reversed:
45 const lm
= this.lastMove
;
46 return (!lm
.noRef
&& x
== lm
.end
.x
&& y
== lm
.end
.y
);
49 getPotentialMovesFrom([x
, y
]) {
50 const moveColor
= this.getColor(x
, y
);
51 if (moveColor
!= this.turn
) {
52 let revLm
= JSON
.parse(JSON
.stringify(this.lastMove
));
53 [revLm
.appear
, revLm
.vanish
] = [revLm
.vanish
, revLm
.appear
];
54 [revLm
.start
, revLm
.end
] = [revLm
.end
, revLm
.start
];
55 if (!this.options
["refuseany"]) {
56 // After refusing this move, can my opponent play a different move?
57 this.playOnBoard(revLm
);
59 outerLoop: for (let i
=0; i
<this.size
.x
; i
++) {
60 for (let j
=0; j
<this.size
.y
; j
++) {
61 if (this.getColor(i
, j
) == moveColor
) {
62 const potentialOppMoves
= super.getPotentialMovesFrom([i
, j
]);
64 super.filterValid(potentialOppMoves
, moveColor
).length
;
70 this.undoOnBoard(revLm
);
74 // Also reverse segments in Cylinder mode:
75 if (this.options
["cylinder"])
76 revLm
.segments
= revLm
.segments
.map(seg
=> [seg
[1], seg
[0]]);
78 delete revLm
["segments"];
80 revLm
.noRef
= true; //cannot refuse a refusal move :)
83 return super.getPotentialMovesFrom([x
, y
]);
88 return super.getEpSquare(move);
93 const color
= this.turn
;
94 const lm
= this.lastMove
;
95 let rMoves
= moves
.filter(m
=> {
97 !lm
.refusal
|| //it's my first move attempt on this turn
98 m
.start
.x
!= lm
.end
.x
|| m
.start
.y
!= lm
.end
.y
||
99 m
.end
.x
!= lm
.start
.x
|| m
.end
.y
!= lm
.start
.y
||
100 // Doing the same move again: maybe pawn promotion?
101 (m
.vanish
[0].p
== 'p' && m
.appear
[0].p
!= lm
.appear
[0].p
)
104 return super.filterValid(rMoves
);
109 // My previous move was already refused?
110 move.noRef
= this.lastMove
.vanish
[0].c
== this.turn
;
114 this.lastMove
= move;
115 super.postPlay(move);
118 atLeastOneMove(color
) {
119 if (!this.lastMove
.noRef
)
121 return super.atLeastOneMove(color
);