-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
220 lines (205 loc) · 7.26 KB
/
main.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
var game = new Phaser.Game(320, 480, Phaser.AUTO, 'game');
var score = 0,
count = 0;
// 敌人类
function Enemy(config) {
this.init = function () {
this.enemys = game.add.group();
this.enemys.enableBody = true;
this.enemys.createMultiple(10, config['pic']);
this.enemys.setAll('outOfBoundsKill', true);
this.enemys.setAll('checkWorldBounds', true);
this.enemyWidth = game.width - game.cache.getImage(config['pic']).width;
game.time.events.loop(config['time'], this.createEnemy, this);
this.enemyBullets = game.add.group();
this.enemyBullets.enableBody = true;
this.enemyBullets.createMultiple(100, 'enemyfire');
this.enemyBullets.setAll('outOfBoundsKill', true);
this.enemyBullets.setAll('checkWorldBounds', true);
this.explodes = game.add.group();
this.explodes.createMultiple(10, 'explode1');
this.explodes.forEach(function (ex) {
ex.animations.add('explode1')
}, this);
};
this.createEnemy = function () {
var en = this.enemys.getFirstExists(false);
if (en) {
en.reset(game.rnd.integerInRange(0, this.enemyWidth),
-game.cache.getImage(config['pic']).height);
en.hp = config.hp;
en.body.velocity.y = config['velocity'];
}
};
this.killEnemy = function (enemy, myBullet) {
myBullet.kill();
enemy.hp -= 1;
if (enemy.hp <= 0) {
enemy.kill();
var ex = this.explodes.getFirstExists(false);
ex.reset(enemy.x, enemy.y);
ex.play('explode1', 30, false, true);
score += config['score'];
count++;
config['state'].updateText();
}
};
this.fire = function () {
this.enemys.forEachExists(function (en) {
var bullet = this.enemyBullets.getFirstExists(false);
if (bullet) {
if (game.time.now > (en.nextFireTime || 0)) {
bullet.reset(en.x + en.width/2 - bullet.width/2, en.y + en.height);
bullet.body.velocity.y = 300;
en.nextFireTime = game.time.now + config['bulletTime'];
}
}
}, this);
};
}
game.States = {};
// 启动前、加载“加载中图片”、调整舞台缩放
game.States.boot = function () {
this.preload = function () {
if (!game.device.desktop) {
this.scale.scaleMode = Phaser.ScaleManager.EXACT_FIT;
this.scale.forcePortrait = true;
this.scale.refresh();
}
game.load.image('loadding', 'images/loadding.gif');
};
this.create = function () {
game.state.start('preload');
};
}
// 载入中画面
game.States.preload = function () {
this.preload = function () {
var loddingSprite = game.add.sprite(50, game.height/2, 'loadding');
game.load.setPreloadSprite(loddingSprite);
game.load.image('background', 'images/bg.jpg');
game.load.spritesheet('myplane', 'images/myplane.png', 50, 50, 5);
game.load.spritesheet('explode1', 'images/explode1.png', 57, 41, 3);
game.load.image('myfire', 'images/myfire.png');
game.load.image('enemyfire', 'images/enemyfire.png');
game.load.image('enemy1', 'images/enemy1.png');
game.load.image('enemy2', 'images/enemy2.png');
game.load.image('love', 'images/love.png');
};
this.create = function () {
game.state.start('main');
};
};
// 游戏主画面
game.States.main = function () {
// 初始化引擎、背景、主角、敌人、记分板
this.create = function () {
game.physics.startSystem(Phaser.Physics.ARCADE);
var bg = game.add.tileSprite(0, 0, game.width, game.height, 'background');
bg.autoScroll(0, 20);
this.myplane = game.add.sprite(135, game.height - 50, 'myplane');
this.myplane.animations.add('fly');
this.myplane.animations.play('fly', 12, true);
game.physics.arcade.enable(this.myplane);
this.myplane.body.collideWorldBounds = true;
this.myplane.inputEnabled = true;
this.myplane.input.enableDrag(false);
this.mylv = 2;
this.myfires = game.add.group();
this.myfires.enableBody = true;
this.myfires.createMultiple(50, 'myfire');
this.myfires.setAll('outOfBoundsKill', true);
this.myfires.setAll('checkWorldBounds', true);
this.nextFireTime = 0;
this.myfireWidth = game.cache.getImage('myfire').width;
var enemyType = [{
state: this,
pic: 'enemy1',
time: 1000,
velocity: 100,
hp: 1,
score: 10,
bulletTime: 1000
},{
state: this,
pic: 'enemy2',
time: 6000,
velocity: 50,
hp: 8,
score: 100,
bulletTime: 1300
}];
this.enemy1 = new Enemy(enemyType[0]);
this.enemy1.init();
this.enemy2 = new Enemy(enemyType[1]);
this.enemy2.init();
var style = {font: "16px Arial", fill: "#0ff"};
this.text = game.add.text(0, 0, "Score: 0", style);
this.love = game.add.sprite(0, 0, 'love');
game.physics.arcade.enable(this.love);
this.love.outOfBoundsKill = true;
this.love.checkWorldBounds = true;
this.love.kill();
game.time.events.loop(15000, this.createLove, this.love);
};
this.update = function () {
this.myFireBullet();
this.enemy1.fire();
this.enemy2.fire();
game.physics.arcade.overlap(this.enemy1.enemyBullets, this.myplane, this.hitMe, null, this);
game.physics.arcade.overlap(this.enemy2.enemyBullets, this.myplane, this.hitMe, null, this);
game.physics.arcade.overlap(this.enemy1.enemys, this.myplane, this.hitMe, null, this);
game.physics.arcade.overlap(this.enemy2.enemys, this.myplane, this.hitMe, null, this);
game.physics.arcade.overlap(this.enemy1.enemys, this.myfires, this.enemy1.killEnemy, null, this.enemy1);
game.physics.arcade.overlap(this.enemy2.enemys, this.myfires, this.enemy2.killEnemy, null, this.enemy2);
game.physics.arcade.overlap(this.myplane, this.love, this.getLove, null, this);
};
// 自己发射子弹
this.myFireBullet = function () {
if (this.myplane.alive && game.time.now > this.nextFireTime) {
var positionArr = [
[this.myplane.x + this.myplane.width/2 - this.myfireWidth/2],
[this.myplane.x, this.myplane.x + this.myplane.width - this.myfireWidth],
];
positionArr.push(positionArr[0].concat(positionArr[1]));
positionArr[this.mylv-1].forEach(function (pos, i) {
var bullet = this.myfires.getFirstExists(false);
if (bullet) {
bullet.reset(pos, this.myplane.y - bullet.height);
bullet.body.velocity.y = -400;
if (this.mylv == 3) {
bullet.body.velocity.x = [0, -30, 30][i];
}
this.nextFireTime = game.time.now + 200;
}
}, this);
}
};
this.hitMe = function (myplane, bullet) {
bullet.kill();
this.mylv -= 1;
if (this.mylv <= 0) {
this.gameOver();
}
};
this.gameOver = function () {
this.myplane.kill();
document.title = '飞机大战 我在击落了' + count + '架飞机,得了' + score + '分';
};
this.updateText = function() {
this.text.setText("Score: " + score);
};
this.createLove = function () {
this.reset(game.rnd.integerInRange(0, game.width - game.cache.getImage('love').width),
-game.cache.getImage('love').height);
this.body.velocity.y = 50;
};
this.getLove = function () {
this.mylv = Math.min(this.mylv + 1, 3);
this.love.kill();
}
};
game.state.add('boot', game.States.boot);
game.state.add('preload', game.States.preload);
game.state.add('main', game.States.main);
game.state.start('boot');