I’m doing this puzzle, and sometimes when I give a new game the pieces go wrong, I added a function for it and from what I see it doesn’t work, my head can’t take it anymore. And I would also like to simplify the code a bit, that’s why I asked before.
JavaScript
x
121
121
1
var recuento = 0;
2
var movimientos = 0;
3
4
var CheckArray = new Array(9);
5
6
function swapTiles(cell1, cell2) {
7
var elem1 = document.getElementById(cell1),
8
elem2 = document.getElementById(cell2);
9
10
var tempClass = elem1.className;
11
var tempText = elem1.textContent;
12
13
elem1.className = elem2.className;
14
15
elem1.textContent = elem2.textContent;
16
elem2.className = tempClass;
17
elem2.textContent = tempText;
18
}
19
20
21
function shuffle() {
22
for (var row = 1; row <= 3; row++) {
23
for (var column = 1; column <= 3; column++) {
24
var row2 = Math.floor(Math.random() * 3 + 1);
25
var column2 = Math.floor(Math.random() * 3 + 1);
26
27
swapTiles("cell" + row + column, "cell" + row2 + column2);
28
}
29
}
30
Check();
31
}
32
33
function Check() {
34
CheckArray[0] = document.getElementById("cell11").getAttribute('class');
35
CheckArray[1] = document.getElementById("cell12").getAttribute('class');
36
CheckArray[2] = document.getElementById("cell13").getAttribute('class');
37
CheckArray[3] = document.getElementById("cell21").getAttribute('class');
38
CheckArray[4] = document.getElementById("cell22").getAttribute('class');
39
CheckArray[5] = document.getElementById("cell23").getAttribute('class');
40
CheckArray[6] = document.getElementById("cell31").getAttribute('class');
41
CheckArray[7] = document.getElementById("cell32").getAttribute('class');
42
for (var x = 0; x < 8; x++) {
43
CheckArray[x] = CheckArray[x].replaceAll('title', '');
44
}
45
for (let i = 0; i < CheckArray.length; i++) {
46
for (let j = 0; j < n - 1 - i; j++) {
47
if (CheckArray[j] > CheckArray[j + 1]) {
48
let aux = CheckArray[j];
49
CheckArray[j] = CheckArray[j + 1];
50
CheckArray[j + 1] = aux;
51
movimientos++;
52
}
53
}
54
}
55
if (movimientos % 2 == 0) {} else {
56
alert("No es pot resoldre");
57
}
58
}
59
60
function Comprobar() {
61
var a = document.getElementById("cell11").getAttribute('class');
62
var b = document.getElementById("cell12").getAttribute('class');
63
var c = document.getElementById("cell13").getAttribute('class');
64
var d = document.getElementById("cell21").getAttribute('class');
65
var e = document.getElementById("cell22").getAttribute('class');
66
var f = document.getElementById("cell23").getAttribute('class');
67
var g = document.getElementById("cell31").getAttribute('class');
68
var h = document.getElementById("cell32").getAttribute('class');
69
var i = document.getElementById("cell33").getAttribute('class');
70
71
resultado = a + b + c + d + e + f + g + h + i;
72
document.getElementById("test").innerHTML = resultado;
73
74
if ((resultado === "tile1tile2tile3tile4tile5tile6tile7tile8tile9") == true) {
75
alert("Has guanyat, felicitats!");
76
} else {}
77
}
78
79
function clickTile(row, column) {
80
var cell = document.getElementById("cell" + row + column);
81
var tile = cell.className;
82
if (tile != "tile9") {
83
if (column < 3) {
84
if (document.getElementById("cell" + row + (column + 1)).className == "tile9") {
85
swapTiles("cell" + row + column, "cell" + row + (column + 1));
86
recuento++;
87
document.getElementById("control").innerHTML = recuento;
88
Comprobar();
89
return;
90
}
91
}
92
if (column > 1) {
93
if (document.getElementById("cell" + row + (column - 1)).className == "tile9") {
94
swapTiles("cell" + row + column, "cell" + row + (column - 1));
95
recuento++;
96
document.getElementById("control").innerHTML = recuento;
97
Comprobar();
98
return;
99
}
100
}
101
if (row > 1) {
102
if (document.getElementById("cell" + (row - 1) + column).className == "tile9") {
103
swapTiles("cell" + row + column, "cell" + (row - 1) + column);
104
recuento++;
105
document.getElementById("control").innerHTML = recuento;
106
Comprobar();
107
return;
108
}
109
}
110
if (row < 3) {
111
if (document.getElementById("cell" + (row + 1) + column).className == "tile9") {
112
swapTiles("cell" + row + column, "cell" + (row + 1) + column);
113
recuento++;
114
document.getElementById("control").innerHTML = recuento;
115
Comprobar();
116
return;
117
}
118
}
119
}
120
121
}
JavaScript
1
60
60
1
body {
2
background: #6ca0e4c4;
3
}
4
5
.tile1,
6
.tile2,
7
.tile3,
8
.tile4,
9
.tile5,
10
.tile6,
11
.tile7,
12
.tile8,
13
.tile9 {
14
display: table-cell;
15
width: 180px;
16
height: 180px;
17
text-align: center;
18
vertical-align: middle;
19
background-image: url("attacusAtlas.png");
20
font-size: 10pt;
21
cursor: pointer;
22
border: 2px solid white;
23
}
24
25
.tile1 {
26
background-position: left top;
27
}
28
29
.tile2 {
30
background-position: center top;
31
}
32
33
.tile3 {
34
background-position: right top;
35
}
36
37
.tile4 {
38
background-position: left center;
39
}
40
41
.tile5 {
42
background-position: center center;
43
}
44
45
.tile6 {
46
background-position: right center;
47
}
48
49
.tile7 {
50
background-position: left bottom;
51
}
52
53
.tile8 {
54
background-position: center bottom;
55
}
56
57
.tile9 {
58
background: white;
59
cursor: default;
60
}
JavaScript
1
42
42
1
<h1 class="green">Sliding Puzzle.</h1>
2
<p> Hola, aquest és un <b>puzzle 3x3</b> .</p>
3
<h2 id="movimientos"></h2>
4
<h2 id="control"></h2>
5
<h2 id="test"></h2>
6
7
<center>
8
<button onClick="shuffle();">New Game</button><br><br>
9
<div class="dropdown">
10
<button onclick="myFunction()" class="dropbtn">Seleccionar dificultat</button>
11
<div id="myDropdown" class="dropdown-content">
12
<a href="3x3.html">Fácil</a>
13
<a href="4x4.html">Normal</a>
14
</div>
15
</div>
16
<h2 id="movimientos"></h2>
17
<h2 id="control"></h2>
18
<h2 id="test"></h2>
19
<br><br>
20
21
<div id="table" style="display: table;">
22
<div id="row1" style="display: table-row;">
23
<div id="cell11" class="tile1" onClick="clickTile(1,1);">1</div>
24
<div id="cell12" class="tile2" onClick="clickTile(1,2);">2</div>
25
<div id="cell13" class="tile3" onClick="clickTile(1,3);">3</div>
26
27
28
</div>
29
<div id="row2" style="display: table-row;">
30
<div id="cell21" class="tile4" onClick="clickTile(2,1);">4</div>
31
<div id="cell22" class="tile5" onClick="clickTile(2,2);">5</div>
32
<div id="cell23" class="tile6" onClick="clickTile(2,3);">6</div>
33
34
35
</div>
36
<div id="row3" style="display: table-row;">
37
<div id="cell31" class="tile7" onClick="clickTile(3,1);">7</div>
38
<div id="cell32" class="tile8" onClick="clickTile(3,2);">8</div>
39
<div id="cell33" class="tile9" onClick="clickTile(3,3);">9</div>
40
</div>
41
</div>
42
</center>
Advertisement
Answer
Something like this ought to work. Since I don’t know what you want to do with the results, I just put them in an array (cell_classes
).
JavaScript
1
10
10
1
let cell_classes = [];
2
3
for(i = 1; i <= 4; i++){
4
for(j = 1; j <= 4; j++){
5
const tmp = document.getElementById("cell" + i + "" + j).getAttribute('class');
6
7
cell_classes.push(tmp);
8
}
9
}
10