Pythonはリンゴを食べるゲームを実現します

この記事の例では、参考のためにリンゴを食べるゲームを実現するためのpythonの特定のコードを共有しています。

  1. パブリッククラスモジュール
import pygame
from pygame.rect import Rect
 
 
def print_text(font, x, y, text, color=(255,255,255)):
 imgText=font.render(text, True, color)
 screen=pygame.display.get_surface()
 screen.blit(imgText,(x, y))classMySprite(pygame.sprite.Sprite):
 def __init__(self):
 pygame.sprite.Sprite.__init__(self)
 self.master_image=None
 self.frame =0
 self.old_frame =-1
 self.frame_width =1
 self.frame_height =1
 self.first_frame =0
 self.last_frame =0
 self.columns =0
 self.last_time =1
 self.direction =0
 self.velocity =0
 
 def _getx(self):return self.rect.x
 def _gety(self):return self.rect.y
 
 def _setx(self, value): self.rect.x = value
 def _sety(self, value): self.rect.y = value
 """
 説明
 property()この関数の関数は、新しいスタイルのクラスの属性値を返すことです。
 
 文法
 以下はプロパティです()メソッド構文:classproperty([fget[, fset[, fdel[, doc]]]])
 パラメータ
 fget --属性値を取得する関数
 fset --属性値を設定する機能
 fdel --属性値削除機能
 doc --プロパティの説明情報
 戻り値
 新しいスタイルのクラス属性を返します。
 """
 X =property(_getx, _setx)
 Y =property(_gety, _sety)
 
 # ロケーション属性
 def _getpos(self):return self.rect.topleft
 def _setpos(self, pos): self.rect.topleft = pos
 position =property(_getpos, _setpos)
 
 def load(self, filename, width, height, columns):
 self.master_image=pygame.image.load(filename).convert_alpha()
 self.frame_height = height
 self.frame_width = width
 self.rect =Rect(0,0, width, height)
 self.columns = columns
 
 rect = self.master_image.get_rect()
 self.last_frame =(rect.width//width)*(rect.height//height) - 1
 
 def update(self, current_time, rate=30):
 # 新しいアニメーションフレーム付き
 if current_time   self.last_time + rate:
 self.frame +=1if self.frame   self.last_frame:
 self.frame = self.first_frame
 self.last_time = current_time
 # 変更された場合にのみフレームを作成する
 if self.frame != self.old_frame:
 frame_x =(self.frame % self.columns)* self.frame_width
 frame_y =(self.frame // self.columns) * self.frame_height
 rect=Rect(frame_x, frame_y, self.frame_width, self.frame_height)
 self.image = self.master_image.subsurface(rect)
 self.old_frame = self.frame
classPoint(object):
 def __init__(self, x, y):
 self.x = x
 self.y = y
 def getx(self):return self.x
 def gety(self):return self.y
 def setx(self,value): self.x=value
 def sety(self,value): self.y=value
 
 x=property(getx,setx)
 y=property(gety,sety)
 
 def __str__(self):return'x:'+"{:.0f}".format(self.x)+'y:'+"{:.0f}".format(self.y)
  1. 最初にランダムなリンゴを生成し、次にキーボードの動きを監視してアニメーションを再生します。エルフとリンゴの衝突検出、検出はリンゴを食べることです
import pygame
from pygame.rect import Rect
from.import MyLibrary
import random
import sys
def calc_velocity(direction, vel=1.0):
velocity = MyLibrary.Point(0,0)if direction ==0:#オン
velocity.y =-vel
elif direction ==2:#正しい
velocity.x = vel
elif direction ==4:#下
velocity.y == vel
elif direction ==6:#左
velocity.x ==-vel
return velocity
pygame.init()
screen = pygame.display.set_mode(800,600)
font=pygame.font.Font(None,36)
timer=pygame.time.Clock()
# スプライトグループを作成する
player_group=pygame.sprite.Group()
food_group=pygame.sprite.Group()
# プレーヤースプライトグループを初期化します
player=MyLibrary.MySprite()
player.load('farmer.png',96,96,8)############-----------------画像
player.position=80,80
player.direction=4
player_group.add(player)
# フードウィザードグループを初期化する
for n inrange(1,50):
food= MyLibrary.MySprite()
food.load('food.png',35,35,1) #################-----------食べ物の写真
food.position=random.randint(0,780), random.randint(0,580)
food_group.add(food)
game_over= False
player_moving = False
plyer_health = False
while True:
timer.tick(30)
ticks = pygame.time.get_ticks()for event in pygame.event.get():if event.type == pygame.QUIT:
pygame.quit()
sys.exit()
keys = pygame.key.get_pressed()if keys[pygame.key.K_UP]:
player.direction=0
player_moving = True
elif keys[pygame.key.k_DOWN]:
player_moving = True
player.direction=4
elif keys[pygame.key.K_RIGHT]:
player.direction =2
player_moving = True
elif keys[pygame.key.K_LEFT]:
player.direction =6
player_moving = True
else:
player_moving = False
if not game_over:
# さまざまな方向に応じて、キャラクターはさまざまなアニメーションフレームで移動します
player.first_frame = player.direction*player.columns
player.last_time = player.first_frame + player.columns -1if player.frame < player.first_frame:
player.frame = player.first_frame
if not player_moving:
# アニメーションフレームの更新を停止します
player.frame = player.first_frame=player.last_frame
else:
player.velocity =calc_velocity(player.direction,1.5)
player.velocity.x*=1.5
player.velocity.y*=1.5
# 新しいプレーヤーのスプライトとチームを組む
player_group.update(ticks,50)
# モバイルプレーヤー
if player_moving:
player.X += player.velocity.x
player.Y += player.velocity.y
if player.X <0: player.X =0
elif player.X  700: player.X =700if player.Y <0: player.Y =0
elif player.Y  500:player.Y =500
# プレイヤーが食べ物と衝突していないか、リンゴを食べたかどうかを確認します
attacker = None
attacker = pygame.sprite.spritecollideany(player,food_group)if attacker != None:if pygame.sprite.collide_circle_ratio(0.65)(player,food_group):
plyer_health +=2
food_group.remove(attacker)if plyer_health   100:
plyer_health=100
# 新しいフードウィザードグループと
food_group.update(ticks,50)if food_group.__len__()==0:
game_over = True
screen.fill((50,50,100))
food_group.draw(screen)
player_group.draw(screen)
pygame.draw.rect(screen,(510,150,50,180),Rect(300,570,plyer_health*2,25))
pygame.draw.rect(screen,(100,200,100,180),Rect(300,570,200,2))if game_over:
MyLibrary.print_text(font,300,100,'Game Over!')
pygame.display.update()

以上が本稿の内容ですので、皆様のご勉強に役立てていただければ幸いです。

Recommended Posts

Pythonはリンゴを食べるゲームを実現します
Python3は飛行機戦争ゲームを実現します
Pythonは推測ゲームを実現します
Pythonは宇宙船戦争を実現します
Pythonはtic-tac-toeゲームを実装しています
Python、PyGameゲームプロジェクト
PythonはTetrisゲームを実装しています
Pythonはminesweeperゲームを実装しています
Pythonは写真のステッチを実現します
Pythonはオンライン翻訳を実現します
Pythonは戦車戦を実現
Pythonは推測ゲームを実装しています
pythonはゲームという言葉を推測します
Pythonはオンライン翻訳機能を実現します
Pythonは推測ゲームを実装しています
Pythonはデジタル爆弾ゲームを実装しています
Pythonは単純なtic-tac-toeゲームを実装しています
Pythonは3Dマップの視覚化を実現します
Pythonはフェイスサインインシステムを実現します
Pythonは写真のバッチ命名を実現します
Pythonは実店舗のゲームを実装しています
Pythonは名刺管理システムを実現
Pythonは単にスネークゲームを実装します
Python3は名刺管理システムを実現
Pythonはエクスプレス価格クエリシステムを実現します
Pythonはオンラインマイクロブログデータの視覚化を実現します
Pythonはデジタル爆弾ゲームプログラムを実装しています
Pythonは画像認識カー機能を実現
Pythonはudp送信画像機能を実現します
Pythonはコンソール出力カラーフォントを実現します