Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the bouncing ball Mini Game by Pygame

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly shows you "Pygame how to achieve bouncing ball Mini Game", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "how to achieve Pygame bounce ball Mini Game" this article.

1) the rules of the game

More than the usual table tennis? More simply, the player only needs to catch the ball and hit it back, and the player who gets 10 goals first will win (can be modified).

Single operation: key up and down; double mode: one is the key up and down right, there is another is WS up and down.

2) material preparation

3) Environmental installation

The environment used in this paper: some of the Python3, Pycharm and Pygame modules are self-contained.

Pip install-I https://pypi.douban.com/simple/ + module name

Second, tap code 1) configuration file

Configuration file: background color, interface size, some background music of the interface, etc. The following code is very simple to understand.

Import os' screen length and width''WIDTH = 500HEIGHT = 500 games' game material path''CURRPATH = os.getcwd () RESOURCESDIRPATH = os.path.join (CURRPATH,' resources') AUDIOSDIRPATH = os.path.join (RESOURCESDIRPATH, 'audios') FONTDIRPATH = os.path.join (RESOURCESDIRPATH,' font') IMAGESDIRPATH = os.path.join (RESOURCESDIRPATH, 'images') BALLPICPATH = os.path.join (IMAGESDIRPATH,' ball.png') RACKETPICPATH = os.path.join (IMAGESDIRPATH) 'racket.png') FONTPATH = os.path.join (FONTDIRPATH,' font.TTF') GOALSOUNDPATH = os.path.join (AUDIOSDIRPATH, 'goal.wav') HITSOUNDPATH = os.path.join (AUDIOSDIRPATH,' hit.wav') BGMPATH = os.path.join (AUDIOSDIRPATH, 'bgm.mp3')' 'Color' 'WHITE = (255,255,255) 2) set the rule class Ball (pygame.sprite.Sprite): def _ init__ (self, imgpath, cfg) * * kwargs): pygame.sprite.Sprite.__init__ (self) self.cfg = cfg self.image = loadImage (imgpath) self.rect = self.image.get_rect () self.reset () 'move' 'def move (self, ball, racket_left, racket_right, hit_sound Goal_sound): self.rect.left = self.rect.left + self.speed * self.direction_x self.rect.top = min (max (self.rect.top + self.speed * self.direction_y, 0), self.cfg.HEIGHT-self.rect.height) # hit the racket if pygame.sprite.collide_rect (ball, racket_left) or pygame.sprite.collide_rect (ball, racket_right): self.direction_x Self.direction_y =-self.direction_x, random.choice ([1,-1]) self.speed + = 1 scores = [0,0] hit_sound.play () # hit the upper wall elif self.rect.top = = 0: self.direction_y = 1 self.speed + = 1 scores = [0 0] # hit the lower wall elif self.rect.top = = self.cfg.HEIGHT-self.rect.height: self.direction_y =-1 self.speed + = 1 scores = [0,0] # hit the left wall elif self.rect.left

< 0: self.reset() racket_left.reset() racket_right.reset() scores = [0, 1] goal_sound.play() # 撞到右边的墙 elif self.rect.right >

Self.cfg.WIDTH: self.reset () racket_left.reset () racket_right.reset () scores = [1,0] goal_sound.play () # normal else: scores = [0 0] return scores''initialization' 'def reset (self): self.rect.centerx = self.cfg.WIDTH / / 2 self.rect.centery = random.randrange (self.rect.height / / 2, self.cfg.HEIGHT-self.rect.height / / 2) self.direction_x = random.choice ([1,-1]) self.direction_y = random.choice ([1] -1]) self.speed = 1''bind to the screen' 'def draw (self, screen): screen.blit (self.image, self.rect) 3) set the mobile class Racket of the racket computer (pygame.sprite.Sprite): def _ init__ (self, imgpath, type_, cfg) * * kwargs): pygame.sprite.Sprite.__init__ (self) self.cfg = cfg self.type_ = type_ self.image = loadImage (imgpath, False) self.rect = self.image.get_rect () self.reset () 'move' 'def move (self, direction): if direction = =' UP': self.rect.top = max (0 Self.rect.top-self.speed) elif direction = 'DOWN': self.rect.bottom = min (self.cfg.HEIGHT, self.rect.bottom + self.speed) else: raise ValueError (' [direction] in Racket.move is% s, expect% s or% s..% (direction, 'UP',' DOWN'))''computer automatic movement' 'def automove (self) Ball): if ball.rect.centery-25 > self.rect.centery: self.move ('DOWN') if ball.rect.centery + 25

< self.rect.centery: self.move('UP') '''初始化''' def reset(self): # 左/右边的拍 self.rect.centerx = self.cfg.WIDTH - self.rect.width // 2 if self.type_ == 'RIGHT' else self.rect.width // 2 self.rect.centery = self.cfg.HEIGHT // 2 # 速度 self.speed = 5 '''绑定到屏幕上''' def draw(self, screen): screen.blit(self.image, self.rect)4)设置游戏开始界面 开始界面分单、双人游戏。 def startInterface(screen): clock = pygame.time.Clock() while True: screen.fill((41, 36, 33)) button_1 = Button(screen, (150, 175), '1 Player') button_2 = Button(screen, (150, 275), '2 Player') for event in pygame.event.get(): if event.type == pygame.QUIT: pygame.quit() sys.exit() if event.type == pygame.MOUSEBUTTONDOWN: if button_1.collidepoint(pygame.mouse.get_pos()): return 1 elif button_2.collidepoint(pygame.mouse.get_pos()): return 2 clock.tick(10) pygame.display.update()5)定义游戏结束页面 谁先胜利达到10个球,结束界面设置。 def endInterface(screen, score_left, score_right): clock = pygame.time.Clock() font1 = pygame.font.Font(cfg.FONTPATH, 30) font2 = pygame.font.Font(cfg.FONTPATH, 20) msg = 'Player on left won!' if score_left >

Score_right else 'Player on right wonders' Texts = [font1.render (msg, True, cfg.WHITE), font2.render ('Press ESCAPE to quit.', True, cfg.WHITE), font2.render (' Press ENTER to continue or play again.', True, cfg.WHITE)] positions = [[120,200], [155,270], [80,300]] while True: screen.fill ((41,36) 33)) for event in pygame.event.get (): if event.type = = pygame.QUIT: pygame.quit () sys.exit () if event.type = = pygame.KEYDOWN: if event.key = = pygame.K_RETURN: return elif event.key = = pygame.K_ ESCAPE: sys.exit () pygame.quit () for text Pos in zip (texts, positions): screen.blit (text, pos) clock.tick (10) pygame.display.update () 6) run the game Demodef runDemo (screen): # load game material hit_sound = pygame.mixer.Sound (cfg.HITSOUNDPATH) goal_sound = pygame.mixer.Sound (cfg.GOALSOUNDPATH) pygame.mixer.music.load (cfg.BGMPATH) pygame.mixer.music.play (- 1 Font = pygame.font.Font (cfg.FONTPATH, 50) # start interface game_mode = startInterface (screen) # game main loop #-left racket (ws control, only in double mode) score_left = 0 racket_left = Racket (cfg.RACKETPICPATH, 'LEFT', cfg) #-right racket (↑↓ control) score_right = 0 racket_right = Racket (cfg.RACKETPICPATH 'RIGHT', cfg) #-Ball ball = Ball (cfg.BALLPICPATH, cfg) clock = pygame.time.Clock () while True: for event in pygame.event.get (): if event.type = = pygame.QUIT: pygame.quit () sys.exit (- 1) screen.fill ((41,36) 33) # players operate pressed_keys = pygame.key.get_pressed () if pressed_ Keys [pygame.K _ UP]: racket_right.move ('UP') elif pressed_ Keys [pygame.K _ DOWN]: racket_right.move (' DOWN') if game_mode = = 2: if pressed_key s [pygame.K _ W]: racket_left.move ('UP') elif pressed_ Keys [pygame.Ks]: racket_left.move (' DOWN') else: racket_left.automove (ball) # Ball scores = ball.move (ball Racket_left, racket_right, hit_sound, goal_sound) score_left + = scores [0] score_right + = scores [1] # display #-Separator pygame.draw.rect (screen, cfg.WHITE, (247,0,6) ) #-Ball ball.draw (screen) #-Pat racket_left.draw (screen) racket_right.draw (screen) #-score screen.blit (font.render (str (score_left), False, cfg.WHITE), (150,10) screen.blit (str (score_right), False, cfg.WHITE), 10)) if score_left = 11 or score_right = 11: return score_left, score_right clock.tick (100) pygame.display.update () 7) main function, title name, etc.''main function' 'def main (): # initialize pygame.init () pygame.mixer.init () screen = pygame.display.set_mode ((cfg.WIDTH) Cfg.HEIGHT) pygame.display.set_caption ('bouncing ball Mini Game') # start the game while True: score_left, score_right = runDemo (screen) endInterface (screen, score_left, score_right) 3, effect display

Mm-hmm, thinking that the video does not need, this is a very simple interface, just take a screenshot and show it directly. Jpg

Game start interface--

Start the game--

The above is all the contents of the article "how Pygame achieves bouncing ball Mini Game". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report