在你的Python平台类游戏中放一些奖励

这部分是关于在使用 Python 的 Pygame 模块开发的视频游戏总给你的玩家提供收集的宝物和经验值的内容。

从网站建设到定制行业解决方案,为提供做网站、成都网站设计服务体系,各种行业企业客户提供网站建设解决方案,助力业务快速发展。创新互联将不断加快创新步伐,提供优质的建站服务。

这是正在进行的关于使用 Python 3 的 Pygame 模块创建视频游戏的系列文章的第十部分。以前的文章有:

  • 通过构建一个简单的掷骰子游戏去学习怎么用 Python 编程
  • 使用 Python 和 Pygame 模块构建一个游戏框架
  • 如何在你的 Python 游戏中添加一个玩家
  • 用 Pygame 使你的游戏角色移动起来
  • 如何向你的 Python 游戏中添加一个敌人
  • 在 Pygame 游戏中放置平台
  • 在你的 Python 游戏中模拟引力
  • 为你的 Python 平台类游戏添加跳跃功能
  • 使你的 Python 游戏玩家能够向前和向后跑

如果你已经阅读了本系列的前几篇文章,那么你已经了解了编写游戏的所有基础知识。现在你可以在这些基础上,创造一个全功能的游戏。当你第一次学习时,遵循本系列代码示例,这样的“用例”是有帮助的,但是,用例也会约束你。现在是时候运用你学到的知识,以新的方式应用它们了。

如果说,说起来容易做起来难,这篇文章展示了一个如何将你已经了解的内容用于新目的的例子中。具体来说,就是它涵盖了如何使用你以前的课程中已经了解到的来实现奖励系统。

在大多数电子游戏中,你有机会在游戏世界中获得“奖励”或收集到宝物和其他物品。奖励通常会增加你的分数或者你的生命值,或者为你的下一次任务提供信息。

游戏中包含的奖励类似于编程平台。像平台一样,奖励没有用户控制,随着游戏世界的滚动进行,并且必须检查与玩家的碰撞。

创建奖励函数

奖励和平台非常相似,你甚至不需要一个奖励的类。你可以重用 Platform 类,并将结果称为“奖励”。

由于奖励类型和位置可能因关卡不同而不同,如果你还没有,请在你的 Level 中创建一个名为 loot 的新函数。因为奖励物品不是平台,你也必须创建一个新的 loot_list 组,然后添加奖励物品。与平台、地面和敌人一样,该组用于检查玩家碰撞:

 
 
 
 
  1. def loot(lvl,lloc):
  2. if lvl == 1:
  3. loot_list = pygame.sprite.Group()
  4. loot = Platform(300,ty*7,tx,ty, 'loot_1.png')
  5. loot_list.add(loot)
  6. if lvl == 2:
  7. print(lvl)
  8. return loot_list

你可以随意添加任意数量的奖励对象;记住把每一个都加到你的奖励清单上。Platform 类的参数是奖励图标的 X 位置、Y 位置、宽度和高度(通常让你的奖励精灵保持和所有其他方块一样的大小最为简单),以及你想要用作的奖励的图片。奖励的放置可以和贴图平台一样复杂,所以使用创建关卡时需要的关卡设计文档。

在脚本的设置部分调用新的奖励函数。在下面的代码中,前三行是上下文,所以只需添加第四行:

 
 
 
 
  1. enemy_list = Level.bad( 1, eloc )
  2. ground_list = Level.ground( 1,gloc,tx,ty )
  3. plat_list = Level.platform( 1,tx,ty )
  4. loot_list = Level.loot(1,tx,ty)

正如你现在所知道的,除非你把它包含在你的主循环中,否则奖励不会被显示到屏幕上。将下面代码示例的最后一行添加到循环中:

 
 
 
 
  1.     enemy_list.draw(world)
  2.     ground_list.draw(world)
  3.     plat_list.draw(world)
  4.     loot_list.draw(world)

启动你的游戏看看会发生什么。

Loot in Python platformer

你的奖励将会显示出来,但是当你的玩家碰到它们时,它们不会做任何事情,当你的玩家经过它们时,它们也不会滚动。接下来解决这些问题。

滚动奖励

像平台一样,当玩家在游戏世界中移动时,奖励必须滚动。逻辑与平台滚动相同。要向前滚动奖励物品,添加最后两行:

 
 
 
 
  1.         for e in enemy_list:
  2.             e.rect.x -= scroll
  3.         for l in loot_list:
  4.             l.rect.x -= scroll

要向后滚动,请添加最后两行:

 
 
 
 
  1.         for e in enemy_list:
  2.             e.rect.x += scroll
  3.         for l in loot_list:
  4.             l.rect.x += scroll

再次启动你的游戏,看看你的奖励物品现在表现得像在游戏世界里一样了,而不是仅仅画在上面。

检测碰撞

就像平台和敌人一样,你可以检查奖励物品和玩家之间的碰撞。逻辑与其他碰撞相同,除了撞击不会(必然)影响重力或生命值。取而代之的是,命中会导致奖励物品会消失并增加玩家的分数。

当你的玩家触摸到一个奖励对象时,你可以从 loot_list 中移除该对象。这意味着当你的主循环在 loot_list 中重绘所有奖励物品时,它不会重绘那个特定的对象,所以看起来玩家已经获得了奖励物品。

Player 类的 update 函数中的平台碰撞检测之上添加以下代码(最后一行仅用于上下文):

 
 
 
 
  1.                 loot_hit_list = pygame.sprite.spritecollide(self, loot_list, False)
  2.                 for loot in loot_hit_list:
  3.                         loot_list.remove(loot)
  4.                         self.score += 1
  5.                 print(self.score)
  6.  
  7.         plat_hit_list = pygame.sprite.spritecollide(self, plat_list, False)

当碰撞发生时,你不仅要把奖励从它的组中移除,还要给你的玩家一个分数提升。你还没有创建分数变量,所以请将它添加到你的玩家属性中,该属性是在 Player 类的 __init__ 函数中创建的。在下面的代码中,前两行是上下文,所以只需添加分数变量:

 
 
 
 
  1.         self.frame = 0
  2.         self.health = 10
  3.         self.score = 0

当在主循环中调用 update 函数时,需要包括 loot_list

 
 
 
 
  1.         player.gravity()
  2.         player.update()

如你所见,你已经掌握了所有的基本知识。你现在要做的就是用新的方式使用你所知道的。

在下一篇文章中还有一些提示,但是与此同时,用你学到的知识来制作一些简单的单关卡游戏。限制你试图创造的东西的范围是很重要的,这样你就不会埋没自己。这也使得最终的成品看起来和感觉上更容易完成。

以下是迄今为止你为这个 Python 平台编写的所有代码:

 
 
 
 
  1. #!/usr/bin/env python3
  2. # draw a world
  3. # add a player and player control
  4. # add player movement
  5. # add enemy and basic collision
  6. # add platform
  7. # add gravity
  8. # add jumping
  9. # add scrolling
  10. # GNU All-Permissive License
  11. # Copying and distribution of this file, with or without modification,
  12. # are permitted in any medium without royalty provided the copyright
  13. # notice and this notice are preserved. This file is offered as-is,
  14. # without any warranty.
  15. import pygame
  16. import sys
  17. import os
  18. '''
  19. Objects
  20. '''
  21. class Platform(pygame.sprite.Sprite):
  22. # x location, y location, img width, img height, img file
  23. def __init__(self,xloc,yloc,imgw,imgh,img):
  24. pygame.sprite.Sprite.__init__(self)
  25. self.image = pygame.image.load(os.path.join('images',img)).convert()
  26. self.image.convert_alpha()
  27. self.rect = self.image.get_rect()
  28. self.rect.y = yloc
  29. self.rect.x = xloc
  30. class Player(pygame.sprite.Sprite):
  31. '''
  32. Spawn a player
  33. '''
  34. def __init__(self):
  35. pygame.sprite.Sprite.__init__(self)
  36. self.movex = 0
  37. self.movey = 0
  38. self.frame = 0
  39. self.health = 10
  40. self.collide_delta = 0
  41. self.jump_delta = 6
  42. self.score = 1
  43. self.images = []
  44. for i in range(1,9):
  45. img = pygame.image.load(os.path.join('images','hero' + str(i) + '.png')).convert()
  46. img.convert_alpha()
  47. img.set_colorkey(ALPHA)
  48. self.images.append(img)
  49. self.image = self.images[0]
  50. self.rect = self.image.get_rect()
  51. def jump(self,platform_list):
  52. self.jump_delta = 0
  53. def gravity(self):
  54. self.movey += 3.2 # how fast player falls
  55. if self.rect.y > worldy and self.movey >= 0:
  56. self.movey = 0
  57. self.rect.y = worldy-ty
  58. def control(self,x,y):
  59. '''
  60. control player movement
  61. '''
  62. self.movex += x
  63. self.movey += y
  64. def update(self):
  65. '''
  66. Update sprite position
  67. '''
  68. self.rect.x = self.rect.x + self.movex
  69. self.rect.y = self.rect.y + self.movey
  70. # moving left
  71. if self.movex < 0:
  72. self.frame += 1
  73. if self.frame > ani*3:
  74. self.frame = 0
  75. self.image = self.images[self.frame//ani]
  76. # moving right
  77. if self.movex > 0:
  78. self.frame += 1
  79. if self.frame > ani*3:
  80. self.frame = 0
  81. self.image = self.images[(self.frame//ani)+4]
  82. # collisions
  83. enemy_hit_list = pygame.sprite.spritecollide(self, enemy_list, False)
  84. for enemy in enemy_hit_list:
  85. self.health -= 1
  86. #print(self.health)
  87. loot_hit_list = pygame.sprite.spritecollide(self, loot_list, False)
  88. for loot in loot_hit_list:
  89. loot_list.remove(loot)
  90. self.score += 1
  91. print(self.score)
  92. plat_hit_list = pygame.sprite.spritecollide(self, plat_list, False)
  93. for p in plat_hit_list:
  94. self.collide_delta = 0 # stop jumping
  95. self.movey = 0
  96. if self.rect.y > p.rect.y:
  97. self.rect.y = p.rect.y+ty
  98. else:
  99. self.rect.y = p.rect.y-ty
  100. ground_hit_list = pygame.sprite.spritecollide(self, ground_list, False)
  101. for g in ground_hit_list:
  102. self.movey = 0
  103. self.rect.y = worldy-ty-ty
  104. self.collide_delta = 0 # stop jumping
  105. if self.rect.y > g.rect.y:
  106. self.health -=1
  107. print(self.health)
  108. if self.collide_delta < 6 and self.jump_delta < 6:
  109. self.jump_delta = 6*2
  110. self.movey -= 33 # how high to jump
  111. self.collide_delta += 6
  112. self.jump_delta += 6
  113. class Enemy(pygame.sprite.Sprite):
  114. '''
  115. Spawn an enemy
  116. '''
  117. def __init__(self,x,y,img):
  118. pygame.sprite.Sprite.__init__(self)
  119. self.image = pygame.image.load(os.path.join('images',img))
  120. self.movey = 0
  121. #self.image.convert_alpha()
  122. #self.image.set_colorkey(ALPHA)
  123. self.rect = self.image.get_rect()
  124. self.rect.x = x
  125. self.rect.y = y
  126. self.counter = 0
  127. def move(self):
  128. '''
  129. enemy movement
  130. '''
  131. distance = 80
  132. speed = 8
  133. self.movey += 3.2
  134. if self.counter >= 0 and self.counter <= distance:
  135. self.rect.x += speed
  136. elif self.counter >= distance and self.counter <= distance*2:
  137. self.rect.x -= speed
  138. else:
  139. self.counter = 0
  140. self.counter += 1
  141. if not self.rect.y >= worldy-ty-ty:
  142. self.rect.y += self.movey
  143. plat_hit_list = pygame.sprite.spritecollide(self, plat_list, False)
  144. for p in plat_hit_list:
  145. self.movey = 0
  146. if self.rect.y > p.rect.y:
  147. self.rect.y = p.rect.y+ty
  148. else:
  149. self.rect.y = p.rect.y-ty
  150. ground_hit_list = pygame.sprite.spritecollide(self, ground_list, False)
  151. for g in ground_hit_list:
  152. self.rect.y = worldy-ty-ty
  153. class Level():
  154. def bad(lvl,eloc):
  155. if lvl == 1:
  156. enemy = Enemy(eloc[0],eloc[1],'yeti.png') # spawn enemy
  157. enemy_list = pygame.sprite.Group() # create enemy group
  158. enemy_list.add(enemy) # add enemy to group
  159. if lvl == 2:
  160. print("Level " + str(lvl) )
  161. return enemy_list
  162. def loot(lvl,tx,ty):
  163. if lvl == 1:
  164. loot_list = pygame.sprite.Group()
  165. loot = Platform(200,ty*7,tx,ty, 'loot_1.png')
  166. loot_list.add(loot)
  167. if lvl == 2:
  168. print(lvl)
  169. return loot_list
  170. def ground(lvl,gloc,tx,ty):
  171. ground_list = pygame.sprite.Group()
  172. i=0
  173. if lvl == 1:
  174. while i < len(gloc):
  175. ground = Platform(gloc[i],worldy-ty,tx,ty,'ground.png')
  176. ground_list.add(ground)
  177. i=i+1
  178. if lvl == 2:
  179. print("Level " + str(lvl) )
  180. return ground_list
  181. def platform(lvl,tx,ty):
  182. plat_list = pygame.sprite.Group()
  183. ploc = []
  184. i=0
  185. if lvl == 1:
  186. ploc.append((20,worldy-ty-128,3))
  187. ploc.append((300,worldy-ty-256,3))
  188. ploc.append((500,worldy-ty-128,4))
  189. while i < len(ploc):
  190. j=0
  191. while j <= ploc[i][2]:
  192. plat = Platform((ploc[i][0]+(j*tx)),ploc[i][1],tx,ty,'ground.png')
  193. plat_list.add(plat)
  194. j=j+1
  195. print('run' + str(i) + str(ploc[i]))
  196. i=i+1
  197. if lvl == 2:
  198. print("Level " + str(lvl) )
  199. return plat_list
  200. '''
  201. Setup
  202. '''
  203. worldx = 960
  204. worldy = 720
  205. fps = 40 # frame rate
  206. ani = 4 # animation cycles
  207. clock = pygame.time.Clock()
  208. pygame.init()
  209. main = True
  210. BLUE = (25,25,200)
  211. BLACK = (23,23,23 )
  212. WHITE = (254,254,254)
  213. ALPHA = (0,255,0)
  214. world = pygame.display.set_mode([worldx,worldy])
  215. backdrop = pygame.image.load(os.path.join('images','stage.png')).convert()
  216. backdropbox = world.get_rect()
  217. player = Player() # spawn player
  218. player.rect.x = 0
  219. player.rect.y = 0
  220. player_list = pygame.sprite.Group()
  221. player_list.add(player)
  222. steps = 10
  223. forwardx = 600
  224. backwardx = 230
  225. eloc = []
  226. eloc = [200,20]
  227. gloc = []
  228. #gloc = [0,630,64,630,128,630,192,630,256,630,320,630,384,630]
  229. tx = 64 #tile size
  230. ty = 64 #tile size
  231. i=0
  232. while i <= (worldx/tx)+tx:
  233. gloc.append(i*tx)
  234. i=i+1
  235. enemy_list = Level.bad( 1, eloc )
  236. ground_list = Level.ground( 1,gloc,tx,ty )
  237. plat_list = Level.platform( 1,tx,ty )
  238. loot_list = Level.loot(1,tx,ty)
  239. '''
  240. Main loop
  241. '''
  242. while main == True:
  243. for event in pygame.event.get():
  244. if event.type == pygame.QUIT:
  245. pygame.quit(); sys.exit()
  246. main = False
  247. if event.type == pygame.KEYDOWN:
  248. if event.key == pygame.K_LEFT or event.key == ord('a'):
  249. print("LEFT")
  250. player.control(-steps,0)
  251. if event.key == pygame.K_RIGHT or event.key == ord('d'):
  252. print("RIGHT")
  253. player.control(steps,0)
  254. if event.key == pygame.K_UP or event.key == ord('w'):
  255. print('jump')
  256. if event.type == pygame.KEYUP:
  257. if event.key == pygame.K_LEFT or event.key == ord('a'):
  258. player.control(steps,0)
  259. if event.key == pygame.K_RIGHT or event.key == ord('d'):
  260. player.control(-steps,0)
  261. if event.key == pygame.K_UP or event.key == ord('w'):
  262. player.jump(plat_list)
  263. if event.key == ord('q'):
  264. pygame.quit()
  265. sys.exit()
  266. main = False
  267. # scroll the world forward
  268. if player.rect.x >= forwardx:
  269. scroll = player.rect.x - forwardx
  270. player.rect.x = forwardx
  271. for p in plat_list:
  272. p.rect.x -= scroll
  273. for e in enemy_list:
  274. e.rect.x -= scroll
  275. for l in loot_list:
  276. l.rect.x -= scroll
  277. # scroll the world backward
  278. if player.rect.x <= backwardx:
  279. scroll = backwardx - player.rect.x
  280. player.rect.x = backwardx
  281. for p in plat_list:
  282. p.rect.x += scroll
  283. for e in enemy_list:
  284. e.rect.x += scroll
  285. for l in loot_list:
  286. l.rect.x += scroll
  287. world.blit(backdrop, backdropbox)
  288. player.gravity() # check gravity
  289. player.update()
  290. player_list.draw(world) #refresh player position
  291. enemy_list.draw(world) # refresh enemies
  292. ground_list.draw(world) # refresh enemies
  293. plat_list.draw(world) # refresh platforms
  294. loot_list.draw(world) # refresh loot
  295. for e in enemy_list:
  296. e.move()
  297. pygame.display.flip()
  298. clock.tick(fps)

当前标题:在你的Python平台类游戏中放一些奖励
分享网址:http://www.shufengxianlan.com/qtweb/news45/309995.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联