-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
249 lines (205 loc) · 8.97 KB
/
main.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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
import * as THREE from './three.module.js';
// Configuración básica de Three.js
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
const renderer = new THREE.WebGLRenderer();
renderer.setSize(window.innerWidth, window.innerHeight);
document.body.appendChild(renderer.domElement);
// Ajustar el canvas y la cámara cuando se redimensione la ventana
window.addEventListener('resize', () => {
renderer.setSize(window.innerWidth, window.innerHeight);
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
});
// Cargar texturas
const textureLoader = new THREE.TextureLoader();
let groundTexture, vehicleTexture, turretTexture;
groundTexture = textureLoader.load('assets/textures/ground.png');
groundTexture.wrapS = THREE.RepeatWrapping;
groundTexture.wrapT = THREE.RepeatWrapping;
groundTexture.repeat.set(10, 10);
vehicleTexture = textureLoader.load('assets/textures/metal.jpg');
turretTexture = textureLoader.load('assets/textures/metal2.jpg');
// Cargar texturas para los obstáculos
const metal3Texture = textureLoader.load('assets/textures/metal3.jpg');
const metal4Texture = textureLoader.load('assets/textures/metal4.jpg');
// Añadir luz ambiental y direccional
const light = new THREE.AmbientLight(0xffffff, 1);
scene.add(light);
const directionalLight = new THREE.DirectionalLight(0xffffff, 2);
directionalLight.position.set(5, 10, 7.5);
scene.add(directionalLight);
// Plano de suelo con textura
const planeGeometry = new THREE.PlaneGeometry(50, 50);
const planeMaterial = new THREE.MeshBasicMaterial({ map: groundTexture, side: THREE.DoubleSide });
const plane = new THREE.Mesh(planeGeometry, planeMaterial);
plane.rotation.x = -Math.PI / 2;
scene.add(plane);
// Configuración de la cámara
camera.position.z = 20;
camera.position.y = 10;
camera.lookAt(0, 0, 0);
// Estructura básica del vehículo
const vehicleGroup = new THREE.Group();
// Base del vehículo (cilindro)
const baseRadius = 1;
const baseHeight = 1;
const baseGeometry = new THREE.CylinderGeometry(baseRadius, baseRadius, baseHeight, 32);
const baseMaterial = new THREE.MeshBasicMaterial({ map: vehicleTexture });
const base = new THREE.Mesh(baseGeometry, baseMaterial);
base.rotation.x = Math.PI / 2;
vehicleGroup.add(base);
// Torreta del vehículo (esfera completa) con nueva textura
const turretGeometry = new THREE.SphereGeometry(0.7, 32, 32);
const turretMaterial = new THREE.MeshBasicMaterial({ map: turretTexture });
const turret = new THREE.Mesh(turretGeometry, turretMaterial);
turret.position.y = 0.75; // Posición inicial de la torreta
vehicleGroup.add(turret);
// Cañón del tanque (añadido como hijo de la torreta)
const cannonGeometry = new THREE.CylinderGeometry(0.1, 0.1, 1.5, 32);
const cannonMaterial = new THREE.MeshBasicMaterial({ color: 0x333333 });
const cannon = new THREE.Mesh(cannonGeometry, cannonMaterial);
cannon.rotation.z = Math.PI / 2;
cannon.position.set(0.75, 0, 0);
turret.add(cannon);
scene.add(vehicleGroup);
// Variables de velocidad y rotación
const speed = 0.1;
const rotationSpeed = 0.05;
const tiltAngle = 0.1;
// Almacenar proyectiles
const projectiles = [];
const projectileSpeed = 0.5;
const maxProjectileDistance = 50;
const fireRate = 1; // Proyectiles por segundo
let lastShotTime = 0;
// Lista de obstáculos
const obstacles = [];
// Función para crear un obstáculo aleatorio (cubo, cilindro, pirámide) con una de las texturas
function createObstacle(x, y, z) {
let obstacleGeometry;
const randomShape = Math.floor(Math.random() * 3); // Elegir entre 0, 1, o 2 para la forma
// Escoger aleatoriamente la forma del obstáculo
if (randomShape === 0) {
obstacleGeometry = new THREE.BoxGeometry(1, 1, 1); // Cubo
} else if (randomShape === 1) {
obstacleGeometry = new THREE.CylinderGeometry(0.5, 0.5, 1, 32); // Cilindro
} else {
obstacleGeometry = new THREE.ConeGeometry(0.5, 1, 4); // Pirámide
}
// Elegir aleatoriamente la textura para el obstáculo
const randomTexture = Math.random() < 0.5 ? metal3Texture : metal4Texture;
const obstacleMaterial = new THREE.MeshBasicMaterial({ map: randomTexture });
// Crear el obstáculo
const obstacle = new THREE.Mesh(obstacleGeometry, obstacleMaterial);
obstacle.position.set(x, y, z);
scene.add(obstacle);
obstacles.push(obstacle);
}
// Crear obstáculos en posiciones aleatorias y dispersas
for (let i = 0; i < 10; i++) {
const x = Math.random() * 40 - 20;
const z = Math.random() * 40 - 20;
createObstacle(x, 0.5, z);
}
// Escuchar eventos de teclado
const keys = {};
document.addEventListener('keydown', (event) => {
keys[event.key] = true;
// Disparar proyectil con la tecla Espacio, con limitación de frecuencia
if (event.key === ' ' && Date.now() - lastShotTime >= 1000 / fireRate) {
shootProjectile();
lastShotTime = Date.now();
applyRecoil();
}
});
document.addEventListener('keyup', (event) => {
keys[event.key] = false;
});
// Función para disparar un proyectil
function shootProjectile() {
// Crear geometría y material para el proyectil
const projectileGeometry = new THREE.SphereGeometry(0.1, 8, 8);
const projectileMaterial = new THREE.MeshBasicMaterial({ color: 0xff0000 });
const projectile = new THREE.Mesh(projectileGeometry, projectileMaterial);
// Obtener la posición y dirección actuales del cañón en el espacio global
const cannonWorldPosition = new THREE.Vector3();
cannon.getWorldPosition(cannonWorldPosition);
const cannonDirection = new THREE.Vector3();
cannon.getWorldDirection(cannonDirection);
const angleOffset = Math.PI / 2; // Valor para ajustar el ángulo de disparo
cannonDirection.applyAxisAngle(new THREE.Vector3(0, 1, 0), angleOffset);
// Colocar el proyectil al final del cañón y darle la dirección ajustada
projectile.position.copy(cannonWorldPosition).add(cannonDirection.clone().multiplyScalar(0.85));
projectile.direction = cannonDirection.clone();
// Almacenar la posición inicial para el cálculo de distancia
projectile.initialPosition = projectile.position.clone();
// Añadir el proyectil al escenario y a la lista de proyectiles
scene.add(projectile);
projectiles.push(projectile);
}
// Función para aplicar retroceso
function applyRecoil() {
const recoilDirection = new THREE.Vector3();
cannon.getWorldDirection(recoilDirection);
// Invertir la dirección para el retroceso
recoilDirection.applyAxisAngle(new THREE.Vector3(0, 1, 0), Math.PI / 2); // Alinea el retroceso con el ángulo de disparo
recoilDirection.multiplyScalar(-0.2); // Ajusta el valor para mayor o menor retroceso
// Aplicar el retroceso moviendo el vehículo en la dirección opuesta
vehicleGroup.position.add(recoilDirection);
// Después de 100 ms, devolver el vehículo a su posición original
setTimeout(() => {
vehicleGroup.position.sub(recoilDirection);
}, 100);
}
// Función para actualizar la posición de los proyectiles y detectar colisiones
function updateProjectiles() {
for (let i = projectiles.length - 1; i >= 0; i--) {
const projectile = projectiles[i];
projectile.position.addScaledVector(projectile.direction, projectileSpeed);
const distance = projectile.position.distanceTo(projectile.initialPosition);
if (distance > maxProjectileDistance) {
scene.remove(projectile);
projectiles.splice(i, 1);
continue;
}
// Detección de colisiones con obstáculos
for (let j = obstacles.length - 1; j >= 0; j--) {
const obstacle = obstacles[j];
if (projectile.position.distanceTo(obstacle.position) < 0.6) { // Distancia de colisión
scene.remove(obstacle);
obstacles.splice(j, 1);
scene.remove(projectile);
projectiles.splice(i, 1);
break;
}
}
}
}
// Función de animación y movimiento
function animate() {
requestAnimationFrame(animate);
if (keys['w']) {
vehicleGroup.position.z -= speed;
base.rotation.x = -tiltAngle;
} else if (keys['s']) {
vehicleGroup.position.z += speed;
base.rotation.x = tiltAngle;
} else {
base.rotation.x = 0;
}
if (keys['a']) {
vehicleGroup.position.x -= speed;
base.rotation.z = tiltAngle;
} else if (keys['d']) {
vehicleGroup.position.x += speed;
base.rotation.z = -tiltAngle;
} else {
base.rotation.z = 0;
}
if (keys['ArrowLeft']) turret.rotation.y += rotationSpeed;
if (keys['ArrowRight']) turret.rotation.y -= rotationSpeed;
updateProjectiles();
renderer.render(scene, camera);
}
animate();