-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameLogic.js
86 lines (72 loc) · 1.64 KB
/
gameLogic.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
function animateForwardMovement() {
animateMoveForward(plane);
animateMoveForward(camera);
if (bomb.position.z >= 8) {
animateMoveForward(bomb);
}
}
function animateMoveForward(obj, val) {
val = val || forwardSpeed;
obj.position.y += val;
}
function planeTurn(direction) {
plane.position.x = direction(plane.position.x, sideSpeed);
if(!bombDropped){
bomb.position.x = direction(bomb.position.x, sideSpeed);
}
}
function planeTurnLeft() {
planeTurn(function(a,b){ return a-b; });
}
function planeTurnRight() {
planeTurn(function(a,b){ return a+b; });
}
function dropBomb() {
bombDropped = true;
}
function animateBombFalling() {
if (bombDropped && bomb.position.z >= -8) {
bomb.position.z -= fallSpeed;
bomb.rotation.x -= 0.01;
}
}
function keyboardEvents() {
var keys = {
A: planeTurnLeft,
D: planeTurnRight,
R: location.reload,
W: dropBomb
};
for(var key in keys){
if(keyboard.pressed(key)){
keys[key]();
}
}
}
function incrementAllCoordinates(obj, val) {
obj.x += val;
obj.y += val;
obj.z += val;
}
function animateExplosion() {
if (explosion.scale.x < 60) {
incrementAllCoordinates(explosion.scale, 3);
}
else {
explosion.position.z = -80;
}
}
function hitDetectionBomb() {
bomb.position.z <= 8 && !gameIsOver && gameOver();
}
function animate() {
animateForwardMovement();
animateBombFalling();
startExplosion && animateExplosion();
}
function update(){
keyboardEvents();
hitDetectionBomb();
animate();
}
module.exports = update;