-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform5.php
132 lines (113 loc) · 3.89 KB
/
form5.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exercici batalla naval</title>
<style>
h2 {
text-align: center;
}
div {
margin: 0 auto;
width: 30%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
width: 400px;
height: 40px;
text-align: center;
}
</style>
</head>
<body>
<h2>Naval battle</h2>
<div>
<?php
$N = 10;
// Imprimir el tablero con letras del abecedario y números
function imprimirTablero($tablero) {
echo "<table>";
echo "<tr>";
echo "\t\t<td> </td>";
for ($i = 1; $i <= count($tablero); $i++) {
echo "\t\t<td>$i</td>";
}
echo "</tr>";
for ($i = 65; $i < 65 + count($tablero); $i++) {
echo "<tr>";
$letter = chr($i);
echo "\t\t<td>$letter</td>\n";
for ($j = 1; $j <= count($tablero); $j++) {
echo "<td>{$tablero[$i - 65][$j - 1]}</td>";
}
echo "</tr>";
}
echo "</table>";
}
$barcos = [
['nombre' => 'fragata', 'longitud' => 1],
['nombre' => 'submarino', 'longitud' => 2],
['nombre' => 'destructor', 'longitud' => 3],
['nombre' => 'portaaviones', 'longitud' => 4],
];
// Creació array bidimensional 10 x 10 amb espais en blanc
$tablero = array_fill(0, $N, array_fill(0, $N, " "));
// Función para colocar un barco en el tablero
function colocarBarco(&$tablero, $fila, $columna, $longitud, $orientacion) {
if ($orientacion === 'horizontal') {
for ($i = $columna; $i < $columna + $longitud; $i++) {
$tablero[$fila][$i] = 'B';
}
} elseif ($orientacion === 'vertical') {
for ($i = $fila; $i < $fila + $longitud; $i++) {
$tablero[$i][$columna] = 'B';
}
}
}
// Fem els randoms entre els vaixells i files i columnes
function colocarBarcoAleatorio(&$tablero, $longitud) {
$N = count($tablero);
do {
$fila = rand(0, $N - 1);
$columna = rand(0, $N - 1);
$orientacion = rand(0, 1) ? 'horizontal' : 'vertical';
} while (!esUbicacionValida($tablero, $fila, $columna, $longitud, $orientacion));
colocarBarco($tablero, $fila, $columna, $longitud, $orientacion);
}
// Función para verificar si una ubicación para un barco es válida
function esUbicacionValida($tablero, $fila, $columna, $longitud, $orientacion) {
$N = count($tablero);
if ($orientacion === 'horizontal') {
if ($columna + $longitud > $N) {
return false; // El barco se sale de los límites del tablero
}
for ($i = $columna; $i < $columna + $longitud; $i++) {
if ($tablero[$fila][$i] !== ' ') {
return false; // El barco se solapa con otro barco
}
}
} elseif ($orientacion === 'vertical') {
if ($fila + $longitud > $N) {
return false; // El barco se sale de los límites del tablero
}
for ($i = $fila; $i < $fila + $longitud; $i++) {
if ($tablero[$i][$columna] !== ' ') {
return false; // El barco se solapa con otro barco
}
}
}
return true;
}
foreach ($barcos as $barco) {
colocarBarcoAleatorio($tablero, $barco['longitud']);
}
// Imprimir el tablero con los barcos
echo "<br><br>";
imprimirTablero($tablero);
?>
</div>
</body>
</html>