python 은 pgzero 를 사용 하여 게임 개발 을 진행 합 니 다.
python 은 각 분야 에서 풍부 한 제3자 라 이브 러 리 를 가지 고 있 습 니 다.pygame 은 python 이 게임 분야 에서 의 응용 라 이브 러 리 로 다양한 게임 을 개발 할 수 있 습 니 다.하지만 초보 자 에 게 는 문턱 이 있다.pgzero 는 pygame 을 바탕 으로 진일보 한 패 키 징 을 하여 게임 을 디자인 하 는 데 매우 편리 합 니 다.
pgzero 설치
pip install pygame
pip install pgzero
2.게임 디자인 의 과정우 리 는 간단 한 게임 개발 에 필요 한 과정 을 간단하게 정리 할 수 있다.
pgzero 게임 개발 과정 은 다음 과 같 습 니 다.
# 'alien' alien , images/alien.png
# (50, 50) Actor
alien = Actor('alien', (50, 50))
Actor 의 위치:Actor 중요 속성 과 방법:
키보드 의 버튼 정 보 는 키보드 내 장 된 대상 을 통 해 얻 을 수 있 으 며 마 우 스 는 마우스 로 얻 을 수 있 습 니 다.예 를 들 어:
keyboard.a # The 'A' key
keyboard.left # The left arrow key
keyboard.rshift # The right shift key
keyboard.kp0 # The '0' key on the keypad
keyboard.k_0 # The main '0' key
mouse.LEFT
mouse.RIGHT
mouse.MIDDLE
상세 하 게 보다
# ./sounds/drum.wav
sounds.drum.play()
# ./music/drum.mp3
music.play('drum')
# animate(object, tween='linear', duration=1, on_finished=None, **targets)
animate(alien, pos=(100, 100))
자세 한 내용 은:https://pygame-zero.readthedocs.io/en/stable/builtins.html#Animations
4.pgzero 게임 예
pgzero 의 기본 사용 상황 을 알 게 되 었 습 니 다.예 를 들 어 게임 을 작성 하고 제작 하 는 과정 을 연결 합 니 다.
핸드폰 에 있 는 게임 플 래 피 버드 를 모 의 해 보 겠 습 니 다.게임 설명
《FlappyBird》 , , , , 。 , 。 , 。 [3]
1、 , , , 。
2、 , , 。
3、 , 1 。 , 。
pgzero 게임 코드 구조:
import pgzrun
#
TITLE = 'xxx'
WIDTH = 400
HEIGHT = 500
#
def draw():
pass
#
def update():
pass
#
def on_key_down():
pass
#
def on_mouse_down():
pass
#
pgzrun.go()
import pgzrun
import random
TITLE = 'Flappy Bird'
WIDTH = 400
HEIGHT = 500
# These constants control the difficulty of the game
GAP = 130
GRAVITY = 0.3
FLAP_STRENGTH = 6.5
SPEED = 3
# bird
bird = Actor('bird1', (75, 200))
bird.dead = False
bird.score = 0
bird.vy = 0
storage = {}
storage['highscore'] = 0
def reset_pipes():
#
pipe_gap_y = random.randint(200, HEIGHT - 200)
pipe_top.pos = (WIDTH, pipe_gap_y - GAP // 2)
pipe_bottom.pos = (WIDTH, pipe_gap_y + GAP // 2)
pipe_top = Actor('top', anchor=('left', 'bottom'))
pipe_bottom = Actor('bottom', anchor=('left', 'top'))
reset_pipes() # Set initial pipe positions.
def update_pipes():
#
pipe_top.left -= SPEED
pipe_bottom.left -= SPEED
if pipe_top.right < 0:
reset_pipes()
if not bird.dead:
bird.score += 1
if bird.score > storage['highscore']:
storage['highscore'] = bird.score
def update_bird():
#
uy = bird.vy
bird.vy += GRAVITY
bird.y += (uy + bird.vy) / 2
bird.x = 75
#
if not bird.dead:
if bird.vy < -3:
bird.image = 'bird2'
else:
bird.image = 'bird1'
# :
if bird.colliderect(pipe_top) or bird.colliderect(pipe_bottom):
bird.dead = True
bird.image = 'birddead'
#
if not 0 < bird.y < 720:
bird.y = 200
bird.dead = False
bird.score = 0
bird.vy = 0
reset_pipes()
def update():
update_pipes()
update_bird()
# ,
def on_key_down():
if not bird.dead:
bird.vy = -FLAP_STRENGTH
#
def draw():
#
screen.blit('background', (0, 0))
# /
pipe_top.draw()
pipe_bottom.draw()
bird.draw()
#
screen.draw.text(
str(bird.score),
color='white',
midtop=(WIDTH // 2, 10),
fontsize=70,
shadow=(1, 1)
)
screen.draw.text(
"Best: {}".format(storage['highscore']),
color=(200, 170, 0),
midbottom=(WIDTH // 2, HEIGHT - 10),
fontsize=30,
shadow=(1, 1)
)
pgzrun.go()
5.총화
본 고 는 pygame 패 키 징 판 을 기반 으로 한 pgzero 가 python 게임 을 개발 하 는 과정 을 공유 하 였 으 며,도움 이 되 기 를 바 랍 니 다.총 결 은 다음 과 같다.
https://pygame-zero.readthedocs.io/en/stable/
이상 은 python 이 pgzero 를 사용 하여 게임 개발 을 진행 하 는 상세 한 내용 입 니 다.python pgzero 게임 개발 에 관 한 자 료 는 다른 관련 글 을 주목 하 십시오!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.