|
@@ -247,41 +247,29 @@ function SoundSafari(beatInfo) {
|
|
|
|
|
|
function Target(beat) {
|
|
|
this.beat = beat;
|
|
|
- this.alpha = 0;
|
|
|
this.spectrum = [];
|
|
|
+ this.alpha = 0;
|
|
|
if(points < 4) {
|
|
|
this.alpha = ease(1-points/4);
|
|
|
}
|
|
|
- this.rippleCounter = 0;
|
|
|
+ this.init(0, 0, color(0, 255, 0, this.alpha));
|
|
|
this.reset();
|
|
|
}
|
|
|
|
|
|
+ Target.prototype = new Beater();
|
|
|
+
|
|
|
Target.prototype.reset = function() {
|
|
|
this.y = -20;
|
|
|
this.x = Math.random()*LEVEL_SIZE;
|
|
|
};
|
|
|
|
|
|
- Target.prototype.color = function(p) {
|
|
|
- return color(0, 255, 0, p*this.alpha);
|
|
|
- };
|
|
|
-
|
|
|
Target.prototype.draw = function() {
|
|
|
- var adjPosition = translatePoints(this);
|
|
|
- drawCircle(adjPosition, RADIUS, 3, this.color(1));
|
|
|
- drawCircle(adjPosition, 2, 3, this.color(1));
|
|
|
-
|
|
|
-
|
|
|
- var p = lerp(1, 0, ease(this.rippleCounter/RIPPLE_SIZE));
|
|
|
- drawCircle(adjPosition, RADIUS+7+this.rippleCounter, 1, this.color(p));
|
|
|
- drawCircle(adjPosition, RADIUS+4+this.rippleCounter, 1, this.color(p*0.8));
|
|
|
- drawCircle(adjPosition, RADIUS+1+this.rippleCounter, 1, this.color(p*0.5));
|
|
|
+ this.position = translatePoints(this);
|
|
|
+ Beater.prototype.draw.call(this);
|
|
|
};
|
|
|
|
|
|
Target.prototype.onUpdate = function(dt) {
|
|
|
- this.rippleCounter += RIPPLE_SPEED * dt;
|
|
|
- if(this.rippleCounter > RIPPLE_SIZE) {
|
|
|
- this.rippleCounter = 0;
|
|
|
- }
|
|
|
+ this.update(dt);
|
|
|
|
|
|
if(colliding(player, this)) {
|
|
|
state.point();
|