1 import { ArrayFun
} from "@/utils/array";
2 import { store
} from "@/store";
4 // Turn (human) marks into coordinates
5 function getMarkArray(marks
) {
6 if (!marks
|| marks
== "-") return [];
7 let markArray
= ArrayFun
.init(V
.size
.x
, V
.size
.y
, false);
8 const squares
= marks
.split(",");
9 for (let i
= 0; i
< squares
.length
; i
++) {
10 const coords
= V
.SquareToCoords(squares
[i
]);
11 markArray
[coords
.x
][coords
.y
] = true;
16 // Turn (human) shadow indications into coordinates
17 function getShadowArray(shadow
) {
18 if (!shadow
|| shadow
== "-") return [];
19 let shadowArray
= ArrayFun
.init(V
.size
.x
, V
.size
.y
, false);
20 const squares
= shadow
.split(",");
21 for (let i
= 0; i
< squares
.length
; i
++) {
22 const rownum
= V
.size
.x
- parseInt(squares
[i
]);
25 for (let i
= 0; i
< V
.size
.y
; i
++) shadowArray
[rownum
][i
] = true;
28 if (squares
[i
].length
== 1) {
29 // Shadow a full column
30 const colnum
= V
.ColumnToCoord(squares
[i
]);
31 for (let i
= 0; i
< V
.size
.x
; i
++) shadowArray
[i
][colnum
] = true;
34 if (squares
[i
].indexOf("-") >= 0) {
35 // Shadow a range of squares, horizontally or vertically
36 const firstLastSq
= squares
[i
].split("-");
38 V
.SquareToCoords(firstLastSq
[0]),
39 V
.SquareToCoords(firstLastSq
[1])
42 range
[1].x
== range
[0].x
44 : (range
[1].x
- range
[0].x
) / Math
.abs(range
[1].x
- range
[0].x
),
45 range
[1].y
== range
[0].y
47 : (range
[1].y
- range
[0].y
) / Math
.abs(range
[1].y
- range
[0].y
)
49 // Convention: range always from smaller to larger number
51 let x
= range
[0].x
, y
= range
[0].y
;
52 x
<= range
[1].x
&& y
<= range
[1].y
;
53 x
+= step
[0], y
+= step
[1]
55 shadowArray
[x
][y
] = true;
59 // Shadow just one square:
60 const coords
= V
.SquareToCoords(squares
[i
]);
61 shadowArray
[coords
.x
][coords
.y
] = true;
66 // args: object with position (mandatory), and
67 // orientation, marks, shadow (optional)
68 // TODO: in time, find a strategy to draw middle lines (weiqi, xianqi...)
69 // and maybe also some diagonals (fanorona...)
70 // https://stackoverflow.com/questions/40697231/horizontal-line-in-the-middle-of-divs
72 export function getDiagram(args
) {
73 // Obtain the array of pieces images names:
74 const board
= V
.GetBoard(args
.position
);
75 const orientation
= args
.orientation
|| "w";
76 const markArray
= getMarkArray(args
.marks
);
77 const shadowArray
= getShadowArray(args
.shadow
);
78 const vr
= new V(); //just for pieces images paths
80 const [startX
, startY
, inc
] =
81 orientation
== "w" ? [0, 0, 1] : [V
.size
.x
- 1, V
.size
.y
- 1, -1];
82 for (let i
= startX
; i
>= 0 && i
< V
.size
.x
; i
+= inc
) {
83 boardDiv
+= "<div class='row";
84 if (i
== startX
&& V
.Monochrome
) boardDiv
+= " border-top";
86 for (let j
= startY
; j
>= 0 && j
< V
.size
.y
; j
+= inc
) {
87 boardDiv
+= "<div class='board board" + V
.size
.y
+ " ";
89 boardDiv
+= "monochrome " +
90 (V
.Notoodark
? "middle-square" : "dark-square");
91 if (j
== startY
) boardDiv
+= " border-left";
93 else if ((i
+ j
) % 2 == 0) boardDiv
+= "light-square";
94 else boardDiv
+= "dark-square";
95 boardDiv
+= " " + store
.state
.settings
.bcolor
;
96 if (shadowArray
.length
> 0 && shadowArray
[i
][j
])
97 boardDiv
+= " in-shadow";
99 if (board
[i
][j
] != V
.EMPTY
) {
102 "src='/images/pieces/" +
103 vr
.getPpath(board
[i
][j
], null, null, orientation
) +
104 V
.IMAGE_EXTENSION
+ "' " +
107 if (markArray
.length
> 0 && markArray
[i
][j
])
108 boardDiv
+= "<img src='/images/diag_mark.svg' class='mark-square'/>";
109 boardDiv
+= "</div>";
111 boardDiv
+= "</div>";
116 // Method to replace diagrams in loaded HTML
117 export function replaceByDiag(match
, p1
, p2
) {
118 const diagParts
= p2
.split(" ");
120 position: diagParts
[0],
122 orientation: diagParts
[2],