-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrectangleEmitter.js
193 lines (167 loc) · 3.3 KB
/
rectangleEmitter.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
var rectangleEmitter = {
/**
* The canvas object
*/
canvas: null,
/**
* CanvasContext The canvas context object
*/
context: null,
/**
* Object The blast zone for particles.
*/
blastZone: {
x: 0,
y: 0,
width: 800,
height: 600
},
/**
* Particle The type of particle to create.
*/
particle: null,
/**
* array The list of particles in the emitter.
*/
particles: [],
/**
* The max number of particles.
*/
maxParticles: 1000,
/**
* The intervalID for the FPS interval
*/
fpsId: null,
/**
* The interval ID for the seconds tick.
*/
tickId: null,
/**
* Sets the canvas object.
*
* @param canvas DOMCanvasElement The canvas to draw on.
*/
setCanvas: function(canvas){
this.canvas = canvas;
this.context = canvas.getContext('2d');
},
/**
* Sets the blast zone.
*
* @param x int The x coord
* @param y int The y-coor
* @param width int The width
* @param height int The height
*/
setBlastZone: function(x, y, width, height){
this.blastZone = {
'x': x,
'y': y,
'width': width,
'height': height
};
},
/** Starts the emitter.
*
* @param fps The frame rate or 30 by default
*/
start:function(fps){
var rate = fps || 30;
this.fpsId = setInterval(this.frameUpdate, 1000/rate, this); // Framerate update
this.tickId = setInterval(this.tick, 1000, this); // Every second tick...
},
/**
* Pauses the emitter but doesn't clear the screen.
*/
pause:function(){
clearInterval(this.intervalId);
},
/**
* Stops the emitter and clears the screen.
*/
stop:function(){
clearInterval(this.intervalId);
this.clear();
},
/**
* Clears off the particles.
*/
clear:function(){
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
},
/**
* Adds a particle to the screen.
*
* @param particle The particle to add
*/
addParticle:function(particle){
if (this.particles.length < this.maxParticles){
var p = Object.create(particle);
p.randomize(this.blastZone);
// Add the particle
this.particles.push(p);
}
},
/**
* Draws the whole canvas.
*/
draw:function(){
this.clear();
var i = this.particles.length;
while (i--){
this.particles[i].draw(this.context);
}
},
/**
* Updates the particles on the screen.
*/
update:function(){
var p;
var i = this.particles.length;
while(i--){
p = this.particles[i];
p.update();
// Remove the particle if it is "dead"
if (p.y > this.canvas.height){
this.particles.splice(i, 1);
}
}
},
/**
* Applies actions to all of the particles.
*/
applyActions:function(){
var i = this.particles.length;
while(i--){
this.particles[i].action();
}
},
/**
* Run the action ahead the number of seconds (so the screen isn't blank on init).
*
* @param seconds int The number of seconds to run ahead.
*/
runAhead: function(seconds){
for (i = 0; i < seconds; i += 1){
this.frameUpdate(this);
}
},
/**
* The FPS update
*
* @param self The reference to the emitter that is lost during setInterval.
*/
frameUpdate:function(self){
self.addParticle(self.particle);
self.update();
self.draw();
},
/**
* The seconds "tick" interval
*
* @param self The reference to the emitter that is lost during setInterval.
*/
tick:function(self){
self.applyActions();
}
};