用Python开发 写个消消乐小游戏

时间:2022-07-22
本文章向大家介绍用Python开发 写个消消乐小游戏,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

提到开心消消乐这款小游戏,相信大家都不陌生,其曾在 2015 年获得过玩家最喜爱的移动单机游戏奖,受欢迎程度可见一斑,本文我们使用 Python 来做个简单的消消乐小游戏。

实现

消消乐的构成主要包括三部分:游戏主体、计分器、计时器,下面来看一下具体实现。

先来看一下游戏所需 Python 库。

定义一些常量,比如:窗口宽高、网格行列数等,代码如下

接着创建一个主窗口,代码如下:

看一下效果:

再接着在窗口中画一个 8 x 8 的网格,代码如下:

看一下效果:

再接着在网格中随机放入各种拼图块,代码如下:

看一下效果:

再接着加入计分器和计时器,代码如下:

看一下效果:

当设置的游戏时间用尽时,我们可以生成一些提示信息,代码如下:

看一下效果:

说完了游戏图形化界面相关的部分,我们再看一下游戏的主要处理逻辑。

我们通过鼠标来操纵拼图块,因此程序需要检查有无拼图块被选中,代码实现如下:

我们需要将鼠标连续选择的拼图块进行位置交换,代码实现如下:

每一次交换拼图块时,我们需要判断是否有连续一样的三个及以上拼图块,代码实现如下:

def isMatch(self):
  for x in range(NUMGRID):
    for y in range(NUMGRID):
      if x + 2 < NUMGRID:
        if self.getGemByPos(x, y).type == self.getGemByPos(x+1, y).type == self.getGemByPos(x+2, y).type:
          return [1, x, y]
      if y + 2 < NUMGRID:
        if self.getGemByPos(x, y).type == self.getGemByPos(x, y+1).type == self.getGemByPos(x, y+2).type:
          return [2, x, y]
  return [0, x, y]

当出现三个及以上拼图块时,需要将这些拼图块消除,代码实现如下:

将匹配的拼图块消除之后,我们还需要随机生成新的拼图块,代码实现如下:

def generateNewGems(self, res_match):
  if res_match[0] == 1:
    start = res_match[2]
    while start > -2:
      for each in [res_match[1], res_match[1]+1, res_match[1]+2]:
        gem = self.getGemByPos(*[each, start])
        if start == res_match[2]:
          self.gems_group.remove(gem)
          self.all_gems[each][start] = None
        elif start >= 0:
          gem.target_y += GRIDSIZE
          gem.fixed = False
          gem.direction = 'down'
          self.all_gems[each][start+1] = gem
        else:
          gem = Puzzle(img_path=random.choice(self.gem_imgs), size=(GRIDSIZE, GRIDSIZE), position=[XMARGIN+each*GRIDSIZE, YMARGIN-GRIDSIZE], downlen=GRIDSIZE)
          self.gems_group.add(gem)
          self.all_gems[each][start+1] = gem
      start -= 1
  elif res_match[0] == 2:
    start = res_match[2]
    while start > -4:
      if start == res_match[2]:
        for each in range(0, 3):
          gem = self.getGemByPos(*[res_match[1], start+each])
          self.gems_group.remove(gem)
          self.all_gems[res_match[1]][start+each] = None
      elif start >= 0:
        gem = self.getGemByPos(*[res_match[1], start])
        gem.target_y += GRIDSIZE * 3
        gem.fixed = False
        gem.direction = 'down'
        self.all_gems[res_match[1]][start+3] = gem
      else:
        gem = Puzzle(img_path=random.choice(self.gem_imgs), size=(GRIDSIZE, GRIDSIZE), position=[XMARGIN+res_match[1]*GRIDSIZE, YMARGIN+start*GRIDSIZE], downlen=GRIDSIZE*3)
        self.gems_group.add(gem)
        self.all_gems[res_match[1]][start+3] = gem
      start -= 1

之后反复执行这个过程,直至耗尽游戏时间,游戏结束。

最后,我们动态看一下游戏效果。

总结

本文我们使用 Python 实现了一个简单的消消乐游戏,有兴趣的可以对游戏做进一步扩展,比如增加关卡等。

------------------- End -------------------