mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 14:40:38 +00:00
116 lines
4.6 KiB
TypeScript
116 lines
4.6 KiB
TypeScript
/// <reference path="../../build/phaser.d.ts" />
|
|
|
|
/**
|
|
* Phaser - FX - Camera - Shake
|
|
*
|
|
* A simple camera shake effect.
|
|
*/
|
|
|
|
module Phaser.FX.Camera {
|
|
|
|
export class Shake {
|
|
|
|
constructor(game: Game, camera: Phaser.Camera) {
|
|
|
|
this._game = game;
|
|
this._parent = camera;
|
|
|
|
}
|
|
|
|
private _game: Game;
|
|
private _parent: Phaser.Camera;
|
|
|
|
private _fxShakeIntensity: number = 0;
|
|
private _fxShakeDuration: number = 0;
|
|
private _fxShakeComplete = null;
|
|
private _fxShakeOffset: Point = new Point(0, 0);
|
|
private _fxShakeDirection: number = 0;
|
|
private _fxShakePrevX: number = 0;
|
|
private _fxShakePrevY: number = 0;
|
|
|
|
public static SHAKE_BOTH_AXES: number = 0;
|
|
public static SHAKE_HORIZONTAL_ONLY: number = 1;
|
|
public static SHAKE_VERTICAL_ONLY: number = 2;
|
|
|
|
/**
|
|
* A simple camera shake effect.
|
|
*
|
|
* @param Intensity Percentage of screen size representing the maximum distance that the screen can move while shaking.
|
|
* @param Duration The length in seconds that the shaking effect should last.
|
|
* @param OnComplete A function you want to run when the shake effect finishes.
|
|
* @param Force Force the effect to reset (default = true, unlike flash() and fade()!).
|
|
* @param Direction Whether to shake on both axes, just up and down, or just side to side (use class constants SHAKE_BOTH_AXES, SHAKE_VERTICAL_ONLY, or SHAKE_HORIZONTAL_ONLY).
|
|
*/
|
|
public start(intensity: number = 0.05, duration: number = 0.5, onComplete = null, force: bool = true, direction: number = Shake.SHAKE_BOTH_AXES) {
|
|
|
|
if (!force && ((this._fxShakeOffset.x != 0) || (this._fxShakeOffset.y != 0)))
|
|
{
|
|
return;
|
|
}
|
|
|
|
// If a shake is not already running we need to store the offsets here
|
|
if (this._fxShakeOffset.x == 0 && this._fxShakeOffset.y == 0)
|
|
{
|
|
this._fxShakePrevX = this._parent.x;
|
|
this._fxShakePrevY = this._parent.y;
|
|
}
|
|
|
|
this._fxShakeIntensity = intensity;
|
|
this._fxShakeDuration = duration;
|
|
this._fxShakeComplete = onComplete;
|
|
this._fxShakeDirection = direction;
|
|
this._fxShakeOffset.setTo(0, 0);
|
|
|
|
}
|
|
|
|
public postUpdate() {
|
|
|
|
// Update the "shake" special effect
|
|
if (this._fxShakeDuration > 0)
|
|
{
|
|
this._fxShakeDuration -= this._game.time.elapsed;
|
|
|
|
if (this._game.math.roundTo(this._fxShakeDuration, -2) <= 0)
|
|
{
|
|
this._fxShakeDuration = 0;
|
|
this._fxShakeOffset.setTo(0, 0);
|
|
this._parent.x = this._fxShakePrevX;
|
|
this._parent.y = this._fxShakePrevY;
|
|
|
|
if (this._fxShakeComplete != null)
|
|
{
|
|
this._fxShakeComplete();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ((this._fxShakeDirection == Shake.SHAKE_BOTH_AXES) || (this._fxShakeDirection == Shake.SHAKE_HORIZONTAL_ONLY))
|
|
{
|
|
//this._fxShakeOffset.x = ((this._game.math.random() * this._fxShakeIntensity * this.worldView.width * 2 - this._fxShakeIntensity * this.worldView.width) * this._zoom;
|
|
this._fxShakeOffset.x = (this._game.math.random() * this._fxShakeIntensity * this._parent.worldView.width * 2 - this._fxShakeIntensity * this._parent.worldView.width);
|
|
}
|
|
|
|
if ((this._fxShakeDirection == Shake.SHAKE_BOTH_AXES) || (this._fxShakeDirection == Shake.SHAKE_VERTICAL_ONLY))
|
|
{
|
|
//this._fxShakeOffset.y = (this._game.math.random() * this._fxShakeIntensity * this.worldView.height * 2 - this._fxShakeIntensity * this.worldView.height) * this._zoom;
|
|
this._fxShakeOffset.y = (this._game.math.random() * this._fxShakeIntensity * this._parent.worldView.height * 2 - this._fxShakeIntensity * this._parent.worldView.height);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public preRender(camera: Phaser.Camera, cameraX: number, cameraY: number, cameraWidth: number, cameraHeight: number) {
|
|
|
|
if ((this._fxShakeOffset.x != 0) || (this._fxShakeOffset.y != 0))
|
|
{
|
|
this._parent.x = this._fxShakePrevX + this._fxShakeOffset.x;
|
|
this._parent.y = this._fxShakePrevY + this._fxShakeOffset.y;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|