-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfire.js
123 lines (122 loc) · 5.79 KB
/
fire.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
module.exports = class fire{
constructor(x, y){
this.x = x;
this.y = y;
this.count = 0;
this.directions = [
[this.x - 1, this.y - 1],
[this.x, this.y - 1],
[this.x + 1, this.y - 1],
[this.x - 1, this.y],
[this.x + 1, this.y],
[this.x - 1, this.y + 1],
[this.x, this.y + 1],
[this.x + 1, this.y + 1]
];
this.toRemove = [];
}
spread(){ // spread once per 2 tacts
if(this.count == 1){
for(var i in this.directions){
var slot = this.directions[i];
if(global.matrix[slot[1]]){
if(global.matrix[slot[1]][slot[0]] != undefined){
this.toRemove.push(slot); // add slot to an array
if(global.matrix[slot[1]][slot[0]] == 1){ // is grass -- remove
for(var i = 0; i < global.grassArray.length; i++) {
if(slot[0] == global.grassArray[i].x && slot[1] == global.grassArray[i].y) {
global.grassArray.splice(i, 1);
break;
}
}
}
else if(global.matrix[slot[1]][slot[0]] == 2 || global.matrix[slot[1]][slot[0]] == 2.5){ // is grassEater -- remove
for(var i = 0; i < global.grassEaterArray.length; i++) {
if(slot[0] == global.grassEaterArray[i].x && slot[1] == global.grassEaterArray[i].y) {
global.grassEaterArray.splice(i, 1);
break;
}
}
}
else if(global.matrix[slot[1]][slot[0]] == 3){ // is predator -- remove
for(var i = 0; i < global.predatorArray.length; i++) {
if(slot[0] == global.predatorArray[i].x && slot[1] == global.predatorArray[i].y) {
global.predatorArray.splice(i, 1);
break;
}
}
}
global.matrix[slot[1]][slot[0]] = 4;
}
}
}
}
else if(this.count == 2){
this.directions = [ //another 16 slots =(
[this.x - 2, this.y - 2],
[this.x - 1, this.y - 2],
[this.x, this.y - 2],
[this.x + 1, this.y - 2],
[this.x + 2, this.y - 2],
[this.x + 2, this.y - 1],
[this.x + 2, this.y],
[this.x + 2, this.y + 1],
[this.x + 2, this.y + 2],
[this.x + 1, this.y + 2],
[this.x, this.y + 2],
[this.x - 1, this.y + 2],
[this.x - 2, this.y + 2],
[this.x - 2, this.y + 1],
[this.x - 2, this.y],
[this.x - 2, this.y - 1],
];
for(var i in this.directions){
var slot = this.directions[i];
if(global.matrix[slot[1]]){
if(global.matrix[slot[1]][slot[0]] != undefined){
this.toRemove.push(slot); // add slot to the toRemove array
if(global.matrix[slot[1]][slot[0]] == 1){ // is grass -- remove
for(var i = 0; i < global.grassArray.length; i++) {
if(slot[0] == global.grassArray[i].x && slot[1] == global.grassArray[i].y) {
global.grassArray.splice(i, 1);
break;
}
}
}
else if(global.matrix[slot[1]][slot[0]] == 2 || global.matrix[slot[1]][slot[0]] == 2.5){ // is grassEater -- remove
for(var i = 0; i < global.grassEaterArray.length; i++) {
if(slot[0] == global.grassEaterArray[i].x && slot[1] == global.grassEaterArray[i].y) {
global.grassEaterArray.splice(i, 1);
break;
}
}
}
else if(global.matrix[slot[1]][slot[0]] == 3 || global.matrix[slot[1]][slot[0]] == 3.5){ // is predator -- remove
for(var i = 0; i < global.predatorArray.length; i++) {
if(slot[0] == global.predatorArray[i].x && slot[1] == global.predatorArray[i].y) {
global.predatorArray.splice(i, 1);
break;
}
}
}
else if(global.matrix[slot[1]][slot[0]] == 10){ // is predator -- remove
global.superPredatorHealth--;
console.log(global.superPredatorHealth, global.humanHealth);
}
global.matrix[slot[1]][slot[0]] = 4;
}
}
}
}
else if(this.count >= 5){ // clean the area with fire at the end
for(var e in this.toRemove){
var slot = this.toRemove[e];
global.matrix[slot[1]][slot[0]] = 0;
}
global.matrix[global.fireArray[0].y][global.fireArray[0].x] = 0;
global.fireArray = []; // empty global.fireArray
}
this.count++;
}
}
var random = require("./random.js");