蜜蜂黄 发表于 2023-10-25 20:42:33

pygame做一个斗地主代码,向大佬求助

#我定义一个更新精灵位置的函数updatp,但是鼠标点击后#不会变,一直搞不懂
import pygame
import random

class Nm():
    def __init__(self):
      self.pa=*17

class Dz(Nm):
    def __init__(self):
      self.pa=*20

def funa():
    num1=["黑桃","梅花","红心","方块"]
    num2=['3','4','5','6','7','8','9','10','J','Q','K','A','2']
    nums=*54
    kls=0
    for i in num1:
      for j in num2:
            nums=i+j
            kls+=1
    nums="大鬼"
    nums="小鬼"
    return nums      

def funb(nm1,nm2,dz,nums):   
    kls=0
    while kls<17:
      
      card1 = random.choice(nums)
      if card1 in nums:
            nm1.pa=card1
            nums.remove(card1)
      card2 = random.choice(nums)
      if card2 in nums:
            nm2.pa=card2
            nums.remove(card2)
      card3 = random.choice(nums)
      if card3 in nums:
            dz.pa=card3
            nums.remove(card3)
      kls += 1
    kls = 17
    while kls < 20:
      card4 = random.choice(nums)
      if card4 in nums:
            dz.pa=card4
            nums.remove(card4)
      kls += 1

class Zhipai(pygame.sprite.Sprite):
    def __init__(self,name,x_l,y_l=440):
      super().__init__()
      self.image=pygame.image.load(name)
      self.rect=self.image.get_rect()
      self.rect.x=x_l*240
      self.rect.y=y_l

    def updatp(self):
      self.rect.y-=100
      
def main():
    nums=funa()                     #定义总牌
    nm1=Nm()
    nm2=Nm()
    dz=Dz()
    funb(nm1,nm2,dz,nums)         #随机给三个人发牌
   
    pygame.init()
    clock=pygame.time.Clock()
    screen = pygame.display.set_mode((960,640))
    pg=pygame.image.load("C:/Users/86184/Desktop/新建文件夹/doul.png")
    pl_1=Zhipai("C:/Users/86184/Desktop/新建文件夹/dour.png",1)
    pl_2=Zhipai("C:/Users/86184/Desktop/新建文件夹/dour.png",2)
    pl_3=Zhipai("C:/Users/86184/Desktop/新建文件夹/dour.png",3)
    screen.blit(pg,(0,0))
    enemy_group=pygame.sprite.Group(pl_1,pl_2,pl_3)
    running=True
    while running:
      clock.tick(60)
      for event_ in pygame.event.get():
            if event_.type==pygame.QUIT:
                running=False
            elif event_!=None:
                print(event_)
            elif event_.type==pygame.MOUSEBUTTONDOWN:
                pos=pygame.mouse.get_pos()
                if pos>=480 and pos<=480+60 and pos>=440 and pos<=440+78:
                  pl_2.updatp()               

      screen.blit(pg,(0,0))
      enemy_group.draw(screen)
      pygame.display.update()
    pygame.quit()
    print(nm1.pa)
    print(nm2.pa)
    print(dz.pa)
    exit()


if __name__=="__main__":
    mgs=main()

isdkz 发表于 2023-10-25 20:42:46

问题出在updatp函数中,虽然代码中调用了updatp函数,但是实际上未对精灵位置进行更新。在updatp函数中,需要将精灵的y坐标减小100,以实现向上移动的效果。在游戏循环中,需要在每次循环结束后调用updatp函数来更新精灵位置。

修改updatp函数如下:
def updatp(self):
    self.rect.y -= 100


修改游戏循环部分的代码如下:
while running:
    clock.tick(60)
    for event_ in pygame.event.get():
      if event_.type == pygame.QUIT:
            running = False
      elif event_ != None:
            print(event_)
      elif event_.type == pygame.MOUSEBUTTONDOWN:
            pos = pygame.mouse.get_pos()
            if pos >= 480 and pos <= 480 + 60 and pos >= 440 and pos <= 440 + 78:
                pl_2.updatp()

    # 更新精灵位置
    pl_1.updatp()
    pl_2.updatp()
    pl_3.updatp()

    screen.blit(pg, (0, 0))
    enemy_group.draw(screen)
    pygame.display.update()


这样就能够在鼠标点击后实现精灵位置的更新了。

蜜蜂黄 发表于 2023-10-25 20:45:39

isdkz 发表于 2023-10-25 20:42
问题出在updatp函数中,虽然代码中调用了updatp函数,但是实际上未对精灵位置进行更新。在updatp函数中,需 ...

为什么在if判断鼠标位置点击后,调用了一次updatp函数,但它不会更位置?
页: [1]
查看完整版本: pygame做一个斗地主代码,向大佬求助