-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEngineCollision.class.js
187 lines (142 loc) · 4.1 KB
/
EngineCollision.class.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
import * as Helpers from './library.inc.js'
var in_array = Helpers.in_array
var Collision = function() {};
/*
* Collision List
* List of Objects which will be checked against each other for Collisions
*/
Collision.prototype.Objects = [];
Collision.prototype.collisions = new Set();
/*
* Method to add Objects to the Collision List
*/
Collision.prototype.add = function(obj) {
this.Objects[obj.id] = obj;
};
/*
* Method to remove Objects from the Collision List
*/
Collision.prototype.rm = function(obj) {
delete this.Objects[obj.id];
};
/*
* Clear and rebuild QuadTree
*/
Collision.prototype.rebuildQuadTree = function() {
window.myEngine.quadtree.clear();
for(var a in this.Objects) {
window.myEngine.quadtree.insert(this.Objects[a]);
}
};
/*
* Method to check for Collisions
*/
Collision.prototype.check = function() {
var a, b, c, d;
var handle, match;
var handle_s, match_s;
for(a in this.Objects) {
handle = this.Objects[a];
// TODO too slow if this is removed
if(handle.name !== 'char'
&& handle.name !== 'beatnik'
&& handle.name !== 'ringbounce') {
continue;
}
// TODO: find better way
handle.in_air = true;
// don't check undefined handle
if(handle === undefined) {
continue;
}
// don't check if handle has no sensors
// this might happen in the first cycles of the game looop
if(handle.sensors === undefined) {
continue;
}
// get the possible collisions, QuadTree decides
var possible_collisions = window.myEngine.quadtree.retrieve(handle);
for(var i=0; i<possible_collisions.length; i++) {
match = possible_collisions[i];
// don't check undefined match
if(match === undefined) {
continue;
}
// don't check if object is colliding with itself
if(handle === match) {
continue;
}
// TODO
// don't check two objects twice
// if(in_array(match.checkedCollisionWith, handle.id)) {
// continue;
// }
// don't check if handle has no sensors
// this might, but should NOT happen in the first cycles of the game looop
if(match.sensors === undefined) {
continue;
}
for(c in handle.sensors) {
handle_s = handle.sensors[c];
for(d in match.sensors) {
match_s = match.sensors[d];
// don't collide objects with sensors which are not supposed to collide
if(in_array(handle.name, match_s.match_objects) === false) {
continue;
}
// don't collide sensors of different type
if(handle_s.type !== undefined
&& match_s.match_sensors !== undefined) {
if(in_array(handle_s.type, match_s.match_sensors) === false) {
continue;
}
}
// check for intersection of sensors
if(Collision.collision_check_single_strict_with_sensor(handle_s, match_s) === true) {
// each sensor has to know with which object it is colliding
handle_s.colliding_with.add( match );
match_s.colliding_with.add( handle );
// add flag for faster decisions
handle_s.colliding = true;
match_s.colliding = true;
// each object has to know which of its sensors are colliding
handle.colliding_sensors.add(handle_s.name);
match.colliding_sensors.add(match_s.name);
// this.collisions.push( [handle, match] );
this.collisions.add( handle );
this.collisions.add( match );
}
} // end "for(d in match.sensors)"
} // end "for(c in handle.sensors)"
} // end "for(b in this.Objects)"
} // end "for(a in this.Objects)"
};
/*
* Method to act out Collisions
*/
Collision.prototype.act = function() {
this.collisions.forEach(function(item) {
item.collide();
});
this.collisions.clear();
};
/*
* Method to correct Angles of collided Objects
*/
Collision.prototype.correctAngles = function() {
};
/*
* Method to check if any two sensors are overlapping/colliding
*/
Collision.collision_check_single_strict_with_sensor = function(a, b) {
if (a.x >= (b.x + b.width))
return false;
if (( a.x + a.width) <= b.x)
return false;
if (a.y >= (b.y + b.height))
return false;
if ((a.y + a.height) <= b.y)
return false;
return true;
};
export { Collision }