-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
78 lines (64 loc) · 2.17 KB
/
index.js
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
/* eslint-disable max-len */
/* eslint-disable no-console */
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const maze = [
['⬜️', '⬜️', '⬛️', '⬜️', '⬛️', '⬜️'],
['⬜️', '⬛️', '⬛️', '⬜️', '⬜️', '⬜️'],
['⬜️', '⬜️', '⬜️', '⬜️', '⬛️', '⬛️'],
['⬜️', '⬛️', '⬜️', '⬛️', '⬜️', '🚪'],
['⬜️', '⬜️', '⬜️', '⬜️', '⬜️', '⬛️'],
['⬜️', '⬛️', '⬛️', '⬜️', '⬛️', '⬜️'],
];
const start = { x: 0, y: 0 }; // Posición inicial de Mickey
// Coloca a Mickey en la posición inicial
maze[start.x][start.y] = '🐭';
// Función para mostrar el laberinto
const printMaze = () => {
console.log(`\n${maze.map((row) => row.join(' ')).join('\n')}`);
};
// Función para mover a Mickey
const moveMickey = (direction) => {
const newPos = { ...start };
const options = {
arriba: () => newPos.x--,
abajo: () => newPos.x++,
izquierda: () => newPos.y--,
derecha: () => newPos.y++,
};
options[direction]
? options[direction]()
: console.log('Dirección inválida. Usa: arriba, abajo, izquierda, derecha.');
// Validar movimiento
if (newPos.x < 0 || newPos.x >= 6 || newPos.y < 0 || newPos.y >= 6) {
console.log('Movimiento inválido. Fuera del laberinto.');
return;
}
if (maze[newPos.x][newPos.y] === '⬛️') {
console.log('Movimiento inválido. Obstáculo en la celda.');
return;
}
// Mueve a Mickey
maze[start.x][start.y] = '⬜️'; // Borra la posición anterior de Mickey
start.x = newPos.x;
start.y = newPos.y;
if (maze[start.x][start.y] === '🚪') {
printMaze();
console.log('¡Felicidades! Mickey ha encontrado la salida.');
rl.close();
return;
}
maze[start.x][start.y] = '🐭'; // Coloca a Mickey en la nueva posición
printMaze();
};
// Inicio del juego
printMaze();
rl.question('¿Hacia dónde quieres mover a Mickey? (arriba, abajo, izquierda, derecha): ', (direction) => {
moveMickey(direction.trim().toLowerCase());
rl.on('line', (input) => {
moveMickey(input.trim().toLowerCase());
});
});