Pygameを使ってシューティングゲームにスコアを表示しよう
今回は前回のシューティングゲームにスコアを表示します。
的に当たるごとに100点ずつ加算されていきます。
3回外れるとゲームオーバーとなります。
Pythonスクリプト
今回のスクリプトは、以下のようになります。
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 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
### インポート import sys import time import random import pygame from pygame.locals import * ### 定数 WIDTH = 400 # 画面横サイズ HEIGHT = 400 # 画面縦サイズ BTY_W_SIZE = 50 # 砲台横サイズ BTY_H_SIZE = 50 # 砲台縦サイズ BTY_H_POS = 30 # 砲台縦位置 MSL_W_SIZE = 10 # ミサイル横サイズ MSL_H_SIZE = 10 # ミサイル縦サイズ ENY_W_SIZE = 30 # エネミー横サイズ ENY_H_SIZE = 10 # エネミー縦サイズ MSL_SPD = 20 # ミサイル移動速度 ENY_H_POS = 30 # エネミー縦位置 F_RATE = 30 # フレームレート W_TIME = 30 # 待ち時間 FONT_SIZE = 50 # フォントサイズ F_P_SIZE = 25 # 得点用フォントサイズ MES_TIME = 400 # メッセージ表示時間 ### 画面定義(X軸,Y軸,横,縦) SURFACE = Rect(0, 0, WIDTH, HEIGHT) ### ミス miss = 0 ############################ ### 砲台クラス ############################ class Battery(pygame.sprite.Sprite): ############################ ### 初期化メソッド ############################ def __init__(self, name): pygame.sprite.Sprite.__init__(self) ### ファイル読み込み self.image = pygame.image.load(name).convert_alpha() ### 画像サイズ変更 self.image = pygame.transform.scale(self.image, (BTY_W_SIZE, BTY_H_SIZE)) ### 砲台オブジェクト生成 self.rect = self.image.get_rect() ### 砲台位置 self.rect.centerx = int(SURFACE.width / 2) self.rect.centery = SURFACE.bottom - BTY_H_POS ############################ ### 砲台描画 ############################ def draw(self, surface): surface.blit(self.image, self.rect) ############################ ### ミサイルクラス ############################ class Missile(pygame.sprite.Sprite): ############################ ### 初期化メソッド ############################ def __init__(self, name, battery, enemies, score): pygame.sprite.Sprite.__init__(self) ### ファイル読み込み self.image = pygame.image.load(name).convert() ### 画像サイズ変更 self.image = pygame.transform.scale(self.image, (MSL_W_SIZE, MSL_H_SIZE)) ### ミサイルオブジェクト生成 self.rect = self.image.get_rect() ### 他オブジェクト保存 self.battery = battery self.enemy = enemies self.score = score ### ミサイル初期位置 self.rect.centerx = self.battery.rect.centerx self.rect.bottom = self.battery.rect.top ############################ ### ミサイル移動 ############################ def update(self, surface): ### ミサイル速度 self.rect.centery -= MSL_SPD ### 命中判定 enemy_list = pygame.sprite.spritecollide(self, self.enemy, True) ### 命中した場合、画面にHITを表示 if len(enemy_list) > 0: ### スコア計算 self.score.cal_score(1) ### 命中したか画面外に出た場合、ミサイルを消去 if len(enemy_list) > 0 or self.rect.top < 0: self.kill() ############################ ### エネミークラス ############################ class Enemy(pygame.sprite.Sprite): ############################ ### 初期化メソッド ############################ def __init__(self, name): pygame.sprite.Sprite.__init__(self) ### ファイル読み込み self.image = pygame.image.load(name).convert() ### 画像サイズ変更 self.image = pygame.transform.scale(self.image, (ENY_W_SIZE, ENY_H_SIZE)) ### エネミーオブジェクト生成 self.rect = self.image.get_rect() ### エネミー初期位置 self.rect.left = 0 self.rect.top = ENY_H_POS ############################ ### エネミー移動 ############################ def update(self): global miss ### エネミー速度 self.rect.centerx += random.randint(6,10) ### 画面外に出たら消去 if self.rect.left > SURFACE.width: miss += 1 self.kill() ############################ ### スコアクラス ############################ class Score(): ############################ ### 初期化メソッド ############################ def __init__(self): self.font = pygame.font.SysFont("hgep006", F_P_SIZE) self.point = 0 ############################ ### スコア計算 ############################ def cal_score(self, point): self.point += point * 100 ############################ ### スコア描画 ############################ def draw(self, surface): text = self.font.render("{:04d}".format(self.point), True, (63,255,63)) surface.blit(text, [10, 5]) ############################ ### メイン関数 ############################ def main(): global miss ### 画面初期化 pygame.init() surface = pygame.display.set_mode(SURFACE.size) ### 砲台作成 battery = Battery("battery.png") ### ミサイルグループ missiles = pygame.sprite.Group() ### エネミーグループ enemies = pygame.sprite.Group() ### スコア作成 score = Score() ### 時間オブジェクト生成 clock = pygame.time.Clock() ### 無限ループ while True: ### フレームレート設定 clock.tick(F_RATE) ### 背景色設定 surface.fill((0,0,0)) ### 終了判定 if miss > 2: ### メッセージ表示 font = pygame.font.Font(None, FONT_SIZE) text = font.render("GAME OVER", True, (255,64,64)) surface.blit(text, [95,182]) ### スコアを描画 score.draw(surface) ### 画面更新 pygame.display.update() ### イベント処理 for event in pygame.event.get(): ### 終了処理 if event.type == QUIT or (event.type == KEYDOWN and event.key == K_ESCAPE): exit() ### ゲームオーバー continue ### エネミー出現 if len(enemies) == 0: if random.randint(0,20) > 19: enemies.add(Enemy("enemy.png")) ### スプライトを更新 missiles.update(surface) enemies.update() ### スプライトを描画 battery.draw(surface) missiles.draw(surface) enemies.draw(surface) score.draw(surface) ### 画面更新 pygame.display.update() pygame.time.wait(W_TIME) ### イベント処理 for event in pygame.event.get(): ### 終了処理 if event.type == QUIT: exit() if event.type == KEYDOWN: if event.key == K_ESCAPE: exit() ### ミサイル発射 if event.key == K_SPACE: missiles.add(Missile("missile.png", battery, enemies, score)) ############################ ### 終了関数 ############################ def exit(): pygame.quit() sys.exit() ############################ ### メイン関数呼び出し ############################ if __name__ == "__main__": ### 処理開始 main() |
スクリプト解説
前回から変更した部分を中心に解説します。
103~106行目
ミサイルが的に当たった場合は、スコア計算メソッドを呼び出して得点を加算します。
148行目
的が画面外に行った場合は、ハズレと判定してmiss変数をカウントアップします。
160行目
スコアに使うフォントに、hgep006を指定します
167行目
点数を加算します。
的に当たるごとに100点を加算します。
173、174行目
スコアを画面左上に表示します。
212~233行目
3回以上失敗した場合は、GAME OVERを表示したままループします。