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 implement Fruit Ninja Game with Python Pygame

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

Share

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

This article is about how Python Pygame implements the fruit ninja game. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

1. 1.0 rules of the game in preparation

Python version of the fruit ninja editor initialization setting is the player's 3 health points, cut to the corresponding fruit points, cut to explosive

For example, bombs will correspondingly reduce health, in the value of life can always be cut, the more cut, the higher the score, the corresponding health depletion is the end of the game! Try it. How many points can you get?

Ha, today also recorded a game video, watching the video has a more feeling of playing games.

1.1 Game picture material (modifiable)

1.2 game font material (modifiable)

II. Environmental installation

This article is written by Python3 and Pycharm. Modules Pygame, random randomly appear fruit and some of their own.

Here the module installation command unifies the image source Douban:

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

Third, start tapping code 3.0 to set the interface player health, such as player_lives = 3 # life score = 0 # score fruits = ['melon',' orange', 'pomegranate',' guava' 'bomb'] # Fruit and bomb 3.1 Import module import pygame, sysimport osimport random3.2 interface background, font setting background = pygame.image.load (' background image / 02.png') # background font = pygame.font.Font (os.path.join (os.getcwd (), 'font / comic.ttf') 42) # Font score_text = font.render ('Score:' + str (score), True, (255,255,255)) # Font style 3.3 Game window sets the frame rate of WIDTH = 800HEIGHT = 500FPS = 12 # gameDisplay Refresh pygame.init () pygame.display.set_caption ('fruit ninja _ csdn account: Gu Muzi A') # title gameDisplay = pygame.display.set_mode ((WIDTH) HEIGHT) # Game window clock = pygame.time.Clock () 3.4 randomly generated fruit location and data storage def generate_random_fruits (fruit): fruit_path = "images/" + fruit + ".png" data [fruit] = {'img': pygame.image.load (fruit_path),' x': random.randint (100500) # position of the fruit on the x axis' yearly: 800,' speed_x': random.randint (- 10 speed_x': random.randint 10), # speed and diagonal movement of the fruit in the x direction 'speed_y': random.randint (- 80,-60), # speed in the y direction' throw': False # if the location where the fruit is generated is outside gameDisplay Will be discarded 'tweets: 0,' hit': False,} if random.random () > = 0.75: # returns the next random floating point in the range of [0.0,1.0] to keep the fruit displayed in the game. Data [fruit] ['throw'] = True else: data [fruit] [' throw'] = False3.5 uses a dictionary to store fruit data data = {} for fruit in fruits: generate_random_fruits (fruit) def hide_cross_lives (x, y): gameDisplay.blit (pygame.image.load ("images/red_lives.png"), (x) Font_name = pygame.font.match_font ('comic.ttf') def draw_text (display, text, size, x, y): font = pygame.font.Font (font_name, size) text_surface = font.render (text, True, WHITE) text_rect = text_surface.get_rect () text_rect.midtop = (x, y) gameDisplay.blit (text_surface) Text_rect) 3.7draw the player's life def draw_lives (display, x, y, lives, image): for i in range (lives): img = pygame.image.load (image) img_rect = img.get_rect () img_rect.x = int (x + 35 * I) img_rect.y = y display.blit (img) Img_rect) 3.8Game start and end screen def show_gameover_screen (): gameDisplay.blit (background, (0Power0)) draw_text (gameDisplay, "FRUIT NINJA!", 90, WIDTH / 2, HEIGHT / 4) if not game_over: draw_text (gameDisplay, "Score:" + str (score), 50, WIDTH / 2, HEIGHT / 2) draw_text (gameDisplay, "Press any key to start the game", 64, WIDTH / 2) HEIGHT * 3 / 4) pygame.display.flip () waiting = True while waiting: clock.tick (FPS) for event in pygame.event.get (): if event.type = = pygame.QUIT: pygame.quit () if event.type = = pygame.KEYUP: waiting = False3.9 main game cycle first_round = Truegame_over = True # more than 3 bombs End the game cycle game_running = True # manage the game cycle while game_running: if game_over: if first_round: show_gameover_screen () first_round = False game_over = False player_lives = 3 draw_lives (gameDisplay, 690,5, player_lives 'images/red_lives.png') score = 0 for event in pygame.event.get (): # check whether the window is closed if event.type = = pygame.QUIT: game_running = False gameDisplay.blit (background, (0,0)) gameDisplay.blit (score_text, (0,0)) draw_lives (gameDisplay, 690,5, player_lives 'images/red_lives.png') for key Value in data.items (): if value ['throw']: value [' x'] + = value ['speed_x'] # x direction move fruit value [' y'] + = value ['speed_y'] # y direction move value [' speed_y'] + = (1 * value ['t']) # increment Value ['t'] + = 1 if value ['y'] value ['x'] and current_position [0]

< value['x']+60 \ and current_position[1] >

Value ['y'] and current_position [1] < value ['y'] + 60: if key = = 'bomb': player_lives-= 1 if player_lives = 0: hide_cross_lives 15) elif player_lives = = 1: hide_cross_lives (725,15) elif player_lives = = 2: hide_cross_lives (760,15) # more than 3 bombs Prompt the end of the game Reset window if player_lives < 0: show_gameover_screen () game_over = True half_fruit_path = "images/explosion.png" else: half_fruit_path = "images/" + "half_" + key + ". Png "value ['img'] = pygame.image.load (half_fruit_path) value [' speed_x'] + = 10 if key! = 'bomb': score + = 1 score_text = font.render (' Score:'+ str (score)) True, (255,255,255) value ['hit'] = True else: generate_random_fruits (key) pygame.display.update () clock.tick (FPS) pygame.quit () IV. Game display effect

4.1 Part 1 dynamic video shows the following results

Video link

Python version of fruit ninja, fun ~

4.2 Part 2 static screenshot shows the effect as follows

(1) the game enters the interface--

(2) modify the interface entered by the background image-this feels better.

4.3 the screenshot of Part 3 statically entering the game interface is as follows

Thank you for reading! This is the end of the article on "how to realize the Fruit Ninja Game in Python Pygame". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

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