-
Notifications
You must be signed in to change notification settings - Fork 231
/
index.js
198 lines (173 loc) · 6.4 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
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
194
195
196
197
198
/**
* Author: Michael Hadley, mikewesthad.com
* Asset Credits:
* - Tuxemon, https://github.com/Tuxemon/Tuxemon
*/
const config = {
type: Phaser.AUTO,
width: 800,
height: 600,
parent: "game-container",
pixelArt: true,
physics: {
default: "arcade",
arcade: {
gravity: { y: 0 },
},
},
scene: {
preload: preload,
create: create,
update: update,
},
};
const game = new Phaser.Game(config);
let cursors;
let player;
let showDebug = false;
function preload() {
this.load.image("tiles", "../assets/tilesets/tuxmon-sample-32px-extruded.png");
this.load.tilemapTiledJSON("map", "../assets/tilemaps/tuxemon-town.json");
// An atlas is a way to pack multiple images together into one texture. I'm using it to load all
// the player animations (walking left, walking right, etc.) in one image. For more info see:
// https://labs.phaser.io/view.html?src=src/animation/texture%20atlas%20animation.js
// If you don't use an atlas, you can do the same thing with a spritesheet, see:
// https://labs.phaser.io/view.html?src=src/animation/single%20sprite%20sheet.js
this.load.atlas("atlas", "../assets/atlas/atlas.png", "../assets/atlas/atlas.json");
}
function create() {
const map = this.make.tilemap({ key: "map" });
// Parameters are the name you gave the tileset in Tiled and then the key of the tileset image in
// Phaser's cache (i.e. the name you used in preload)
const tileset = map.addTilesetImage("tuxmon-sample-32px-extruded", "tiles");
// Parameters: layer name (or index) from Tiled, tileset, x, y
const belowLayer = map.createLayer("Below Player", tileset, 0, 0);
const worldLayer = map.createLayer("World", tileset, 0, 0);
const aboveLayer = map.createLayer("Above Player", tileset, 0, 0);
worldLayer.setCollisionByProperty({ collides: true });
// By default, everything gets depth sorted on the screen in the order we created things. Here, we
// want the "Above Player" layer to sit on top of the player, so we explicitly give it a depth.
// Higher depths will sit on top of lower depth objects.
aboveLayer.setDepth(10);
// Object layers in Tiled let you embed extra info into a map - like a spawn point or custom
// collision shapes. In the tmx file, there's an object layer with a point named "Spawn Point"
const spawnPoint = map.findObject("Objects", (obj) => obj.name === "Spawn Point");
// Create a sprite with physics enabled via the physics system. The image used for the sprite has
// a bit of whitespace, so I'm using setSize & setOffset to control the size of the player's body.
player = this.physics.add
.sprite(spawnPoint.x, spawnPoint.y, "atlas", "misa-front")
.setSize(30, 40)
.setOffset(0, 24);
// Watch the player and worldLayer for collisions, for the duration of the scene:
this.physics.add.collider(player, worldLayer);
// Create the player's walking animations from the texture atlas. These are stored in the global
// animation manager so any sprite can access them.
const anims = this.anims;
anims.create({
key: "misa-left-walk",
frames: anims.generateFrameNames("atlas", {
prefix: "misa-left-walk.",
start: 0,
end: 3,
zeroPad: 3,
}),
frameRate: 10,
repeat: -1,
});
anims.create({
key: "misa-right-walk",
frames: anims.generateFrameNames("atlas", {
prefix: "misa-right-walk.",
start: 0,
end: 3,
zeroPad: 3,
}),
frameRate: 10,
repeat: -1,
});
anims.create({
key: "misa-front-walk",
frames: anims.generateFrameNames("atlas", {
prefix: "misa-front-walk.",
start: 0,
end: 3,
zeroPad: 3,
}),
frameRate: 10,
repeat: -1,
});
anims.create({
key: "misa-back-walk",
frames: anims.generateFrameNames("atlas", {
prefix: "misa-back-walk.",
start: 0,
end: 3,
zeroPad: 3,
}),
frameRate: 10,
repeat: -1,
});
const camera = this.cameras.main;
camera.startFollow(player);
camera.setBounds(0, 0, map.widthInPixels, map.heightInPixels);
cursors = this.input.keyboard.createCursorKeys();
// Help text that has a "fixed" position on the screen
this.add
.text(16, 16, 'Arrow keys to move\nPress "D" to show hitboxes', {
font: "18px monospace",
fill: "#000000",
padding: { x: 20, y: 10 },
backgroundColor: "#ffffff",
})
.setScrollFactor(0)
.setDepth(30);
// Debug graphics
this.input.keyboard.once("keydown-D", (event) => {
// Turn on physics debugging to show player's hitbox
this.physics.world.createDebugGraphic();
// Create worldLayer collision graphic above the player, but below the help text
const graphics = this.add.graphics().setAlpha(0.75).setDepth(20);
worldLayer.renderDebug(graphics, {
tileColor: null, // Color of non-colliding tiles
collidingTileColor: new Phaser.Display.Color(243, 134, 48, 255), // Color of colliding tiles
faceColor: new Phaser.Display.Color(40, 39, 37, 255), // Color of colliding face edges
});
});
}
function update(time, delta) {
const speed = 175;
const prevVelocity = player.body.velocity.clone();
// Stop any previous movement from the last frame
player.body.setVelocity(0);
// Horizontal movement
if (cursors.left.isDown) {
player.body.setVelocityX(-speed);
} else if (cursors.right.isDown) {
player.body.setVelocityX(speed);
}
// Vertical movement
if (cursors.up.isDown) {
player.body.setVelocityY(-speed);
} else if (cursors.down.isDown) {
player.body.setVelocityY(speed);
}
// Normalize and scale the velocity so that player can't move faster along a diagonal
player.body.velocity.normalize().scale(speed);
// Update the animation last and give left/right animations precedence over up/down animations
if (cursors.left.isDown) {
player.anims.play("misa-left-walk", true);
} else if (cursors.right.isDown) {
player.anims.play("misa-right-walk", true);
} else if (cursors.up.isDown) {
player.anims.play("misa-back-walk", true);
} else if (cursors.down.isDown) {
player.anims.play("misa-front-walk", true);
} else {
player.anims.stop();
// If we were moving, pick and idle frame to use
if (prevVelocity.x < 0) player.setTexture("atlas", "misa-left");
else if (prevVelocity.x > 0) player.setTexture("atlas", "misa-right");
else if (prevVelocity.y < 0) player.setTexture("atlas", "misa-back");
else if (prevVelocity.y > 0) player.setTexture("atlas", "misa-front");
}
}