当前位置:   article > 正文

pygame 图像--键盘上下左右

pygame 图像--键盘上下左右

将图像初始在窗口中心位置, 不然就会初始在左上角

# 初始窗口中心
ship_rect.center = screen_rect.center
  • 1
  • 2

监控键盘 上下左右

import sys
import pygame

pygame.init()

# 初始

# 窗口大小
screen_image = pygame.display.set_mode((800, 600))
screen_rect = screen_image.get_rect()
# 窗口标题
pygame.display.set_caption('游戏窗口标题')

# 元素

# 读取图像  图像不可中文
ship_image = pygame.image.load("./R-C.jpg")
ship_rect = ship_image.get_rect()
# # 初始窗口中心
# ship_rect.center = screen_rect.center

# # 自定义颜色
bg_color1 = (0, 128, 128)


while True:

    # 捕获 键盘鼠标操作 pygame.event.get()
    for event in pygame.event.get():

        # 点击❌号关闭,退出游戏
        if event.type == pygame.QUIT:
            sys.exit()
        # 监控 键盘输入   按下.KEYDOWN
        elif event.type == pygame.KEYDOWN:
            # 键盘 左
            if event.key == pygame.K_LEFT:
                ship_rect.x -= 10
            # 键盘 右
            if event.key == pygame.K_RIGHT:
                ship_rect.x += 10
            # 键盘 上
            if event.key == pygame.K_UP:
                ship_rect.y -= 10
            # 键盘 下
            if event.key == pygame.K_DOWN:
                ship_rect.y += 10
    # 绘制

    # 绘制游戏窗口背景(颜色三通道)
    screen_image.fill(bg_color1)

    # 在游戏窗口 绘制 加载的图像
    # 窗口 绘制图像(图, 图的坐标)
    screen_image.blit(ship_image, ship_rect)

    # # 窗口 绘制图像(图, 图的坐标)
    # screen_image.blit(txt_image, txt_rect)
    #
    # # 在游戏窗口 绘制 自定义的图像
    # # 画 (根据(窗口), 颜色, 画的对象)
    # pygame.draw.rect(screen_image, bg_color2, bullet_rect)

    # 刷新屏幕
    pygame.display.flip()

  • 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

进阶示例

import sys
import pygame

pygame.init()

# 初始

# 窗口大小
screen_image = pygame.display.set_mode((800, 600))
screen_rect = screen_image.get_rect()
# 窗口标题
pygame.display.set_caption('游戏窗口标题')

# 元素

# 读取图像  图像不可中文
ship_image = pygame.image.load("2.png")
ship_rect = ship_image.get_rect()
# 图像底部 = 窗口底部
ship_rect.midbottom = screen_rect.midbottom

# 自定义颜色
bg_color1 = (0, 128, 128)
bg_color2 = (60, 60, 60)
bg_color3 = (255, 0, 0)

while True:

    # 捕获 键盘鼠标操作 pygame.event.get()
    for event in pygame.event.get():

        # 点击❌号关闭,退出游戏
        if event.type == pygame.QUIT:
            sys.exit()
        # 监控 键盘输入
        elif event.type == pygame.KEYDOWN:
            # 键盘 左
            if event.key == pygame.K_LEFT:
                ship_rect.x -= 10
            # 键盘 右
            if event.key == pygame.K_RIGHT:
                ship_rect.x += 10
            # 键盘 上
            if event.key == pygame.K_UP:
                ship_rect.y -= 10
            # 键盘 下
            if event.key == pygame.K_DOWN:
                ship_rect.y += 10
    # 绘制

    # 绘制游戏窗口背景(颜色三通道)
    screen_image.fill(bg_color1)

    # 在游戏窗口 绘制 加载的图像
    # 窗口 绘制图像(图, 图的坐标)
    screen_image.blit(ship_image, ship_rect)

    # 刷新屏幕
    pygame.display.flip()

  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/123190
推荐阅读
相关标签
  

闽ICP备14008679号