-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
71 lines (58 loc) · 2.26 KB
/
index.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
import Phaser from 'phaser'
export default class extends Phaser.Sprite {
constructor( opts ){
super( opts.game, opts.x || 0, opts.y || 0, opts.key || '', opts.frame || '' )
// Enable player physics
this.game.physics.enable( this, Phaser.Physics.ARCADE )
// Player specifics
this.body.collideWorldBounds = opts.hasOwnProperty('collideWorldBounds') ? opts.collideWorldBounds : true
this.body.setSize( opts.width || 64, opts.height || 64 )
this.health = opts.health || 1
// Shortcut to current state object
this.state = this.game.state.states[this.game.state.current]
// Set up speed values
this.speed = opts.speed || 350
// Set up controls
if( opts.hasOwnProperty('controls') ){
this.cursors = this.game.input.keyboard.createCursorKeys()
}
// Set up diagonal movement dampener
this.matchDiagonalSpeed = opts.matchDiagonalSpeed || true
// Shortcut to inverse of Pythagorean constant
// (used to make diagonal speed match straight speed)
this.pythInverse = 1 / Math.SQRT2
}
update(){
// basic living/dying checks
if( !this.alive ) return
if( this.health <= 0 ){
this.die()
}
// horizontal movement
if( this.cursors.left.isDown ){
this.body.velocity.x = -1
} else if ( this.cursors.right.isDown ){
this.body.velocity.x = 1
} else {
this.body.velocity.x = 0
}
// vertical movement
if( this.cursors.up.isDown ){
this.body.velocity.y = -1
} else if ( this.cursors.down.isDown ){
this.body.velocity.y = 1
} else {
this.body.velocity.y = 0
}
// If the player is moving diagonally, the resultant vector
// will have a magnitude greather than the defined speed.
// This section makes the magnitude of the player's movement
// match the defined speed.
let targetSpeed =
(this.body.velocity.x != 0 && this.body.velocity.y != 0) ?
this.speed * this.pythInverse :
this.speed
this.body.velocity.x *= targetSpeed
this.body.velocity.y *= targetSpeed
}
}