鱼C论坛

 找回密码
 立即注册
查看: 1057|回复: 7

[已解决]pygame:用subsurface实现动画的精灵 怎么碰撞检测(进来帮忙@些大佬吧)未解决

[复制链接]
发表于 2020-3-26 08:54:07 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 兔子BUNNY 于 2020-3-26 10:15 编辑
import pygame
from pygame.locals import *
from sys import exit


pygame.init()
bg_size = width,height = 1600,900
screen = pygame.display.set_mode(bg_size)
pygame.display.set_caption("cxk小游戏")
background = pygame.image.load("image/background.jpg")

class Cxk(pygame.sprite.Sprite):
    def __init__(self, filename, row, columns):
        pygame.sprite.Sprite.__init__(self)

        self.main_image = pygame.image.load(filename).convert_alpha()
        self.main_rect = self.main_image.get_rect()
        self.frame_width = self.main_rect.width//columns
        self.frame_height = self.main_rect.height//row
        self.rect = 0, 0, self.frame_width, self.frame_height
        self.columns = columns
        self.last_frame = row * columns - 1
        self.last_time = 0
        self.frame = 0
        self.first_frame = 0
        self.old_frame = 0
        
    def update(self, screen):
        self.frame += 1                                                   # 帧序号 +1
        if self.frame > self.last_frame:
            self.frame = self.first_frame                                 # 循环播放
        if self.frame != self.old_frame:
            frame_x = (self.frame % self.columns) * self.frame_width           # 计算 subsurface 的 x 坐标
            frame_y = (self.frame // self.columns) * self.frame_height         # 计算 subsurface 的 y 坐标
            rect = Rect(frame_x, frame_y, self.frame_width, self.frame_height) # 获取subsurface 的 rect
            self.image = self.main_image.subsurface(rect)                    # 更新self.image
            self.old_frame = self.frame                                        # 更新self.old_frame
        screen.blit(self.image, self.main_rect)                                     # 显示图像
    def move_right(self):
        self.main_rect.left +=20
        
    def move_down(self):
        self.main_rect.top +=20
        
class Cat(pygame.sprite.Sprite):
    def __init__(self,image,):
        pygame.sprite.Sprite.__init__(self)

        self.image = pygame.image.load(image).convert_alpha()
        self.rect = self.image.get_rect()
        self.rect.left, self.rect.right = 450,300
        
        

cxk = Cxk('image/cxk.png',1,16)

cat=Cat('image/cat.png')

framerate = pygame.time.Clock()

while True:
    framerate.tick(30)
    for event in pygame.event.get():
        if event.type == QUIT:
            exit()
    key_press = pygame.key.get_pressed()
    if key_press[K_d]:
        cxk.move_right()
    if key_press[K_s]:
        cxk.move_down()
    
    screen.blit(background, (0, 0))
    screen.blit(cat.image,(450,300))  
    cxk.update(screen)

    if pygame.sprite.collide_rect(cat, cxk):
        print('cxk')
    pygame.display.update()


用的是序列图,是1行,16列

这个是重写来进行碰撞检测的
https://pan.baidu.com/s/1FMKSSONrrm2pgdXKjAedew
最佳答案
2020-3-27 17:46:14
本帖最后由 一个账号 于 2020-3-30 17:31 编辑


链接打不开
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-26 09:40:18 | 显示全部楼层
https://blog.csdn.net/zzwlyj/article/details/82290004
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-26 09:47:13 | 显示全部楼层
本帖最后由 六小鸭 于 2020-3-26 09:48 编辑

@一个账号
救救孩子!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-26 09:50:09 | 显示全部楼层
请把所用到的素材解压缩发过来
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-26 10:15:51 | 显示全部楼层
一个账号 发表于 2020-3-26 09:50
请把所用到的素材解压缩发过来

好了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-27 17:46:14 | 显示全部楼层    本楼为最佳答案   
本帖最后由 一个账号 于 2020-3-30 17:31 编辑


链接打不开
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2020-3-30 17:30:19 | 显示全部楼层

已经自己搞定了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-25 12:10

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表