Python實現超級瑪麗遊戲系列教程01瑪麗登場
配套視訊教程
專案程式碼
最終效果
搭建專案結構
定義遊戲常量
``` SCREEN_HEIGHT = 600 SCREEN_WIDTH = 800
SCREEN_SIZE = (SCREEN_WIDTH,SCREEN_HEIGHT)
ORIGINAL_CAPTION = "SuperMario"
GFX = None
COLORS
R G B
GRAY = (100, 100, 100) NAVYBLUE = ( 60, 60, 100) WHITE = (255, 255, 255) RED = (255, 0, 0) GREEN = ( 0, 255, 0) FOREST_GREEN = ( 31, 162, 35) BLUE = ( 0, 0, 255) YELLOW = (255, 255, 0) ORANGE = (255, 128, 0) PURPLE = (255, 0, 255) CYAN = ( 0, 255, 255) BLACK = ( 0, 0, 0) NEAR_BLACK = ( 19, 15, 48) COMBLUE = (233, 232, 255) GOLD = (255, 215, 0)
BGCOLOR = WHITE
SIZE_MULTIPLIER = 2.5
```
初始化遊戲視窗
tools.py ``` import pygame as pg from . import constants as c
class Control(object): def init(self, caption): pg.init() pg.display.set_caption(c.ORIGINAL_CAPTION) self.screen = pg.display.set_mode(c.SCREEN_SIZE) self.done = False self.clock = pg.time.Clock() self.caption = caption self.fps = 60 self.show_fps = True self.keys = pg.key.get_pressed()
def update(self):
pg.display.get_surface().fill(c.BGCOLOR)
def event_loop(self):
for event in pg.event.get():
if event.type == pg.QUIT:
self.done = True
elif event.type == pg.KEYDOWN:
self.keys = pg.key.get_pressed()
self.toggle_show_fps(event.key)
elif event.type == pg.KEYUP:
self.keys = pg.key.get_pressed()
def toggle_show_fps(self, key):
if key == pg.K_F5:
self.show_fps = not self.show_fps
def main(self):
"""Main loop for entire program"""
while not self.done:
self.event_loop()
self.update()
pg.display.update()
self.clock.tick(self.fps)
if self.show_fps:
fps = self.clock.get_fps()
with_fps = "{} - {:.2f} FPS".format(self.caption, fps)
pg.display.set_caption(with_fps)
mario_level_1.py
import sys
import pygame as pg
from data import tools from data import constants as c
if name=='main': control = tools.Control(c.ORIGINAL_CAPTION) control.main() pg.quit() sys.exit() ```
瑪麗登場
level1.py ``` import pygame as pg from .. import constants as c from .. components import mario
class Level1: def init(self): self.startup()
def startup(self):
self.mario = mario.Mario()
self.setup_mario_location()
self.all_sprites = pg.sprite.Group(self.mario)
def setup_mario_location(self):
self.mario.rect.x = 80
self.mario.rect.bottom = c.SCREEN_HEIGHT - self.mario.rect.height
def update(self, surface):
"""Updates level"""
pg.display.get_surface().fill(c.BGCOLOR)
self.all_sprites.draw(surface)
mario.py
import pygame as pg
from .. import constants as c
class Mario(pg.sprite.Sprite): def init(self): pg.sprite.Sprite.init(self) self.sprite_sheet = c.GFX['mario_bros']
self.right_frames = []
self.left_frames = []
self.frame_index = 0
self.load_from_sheet()
self.image = self.right_frames[self.frame_index]
self.rect = self.image.get_rect()
def get_image(self, x, y, width, height):
image = pg.Surface([width, height]).convert()
rect = image.get_rect()
image.blit(self.sprite_sheet, (0, 0), (x, y, width, height))
image.set_colorkey(c.BLACK)
image = pg.transform.scale(image,
(int(rect.width * c.SIZE_MULTIPLIER),
int(rect.height * c.SIZE_MULTIPLIER)))
return image
def load_from_sheet(self):
self.right_frames.append(
self.get_image(178, 32, 12, 16)) # right
``` tools.py修改
相關文章
- JAVA 實現《超級瑪麗升級版》遊戲Java遊戲
- python實現超級瑪麗小遊戲(動圖演示+原始碼分享)Python遊戲原始碼
- Scratch(五):Scratch小遊戲之超級瑪麗遊戲
- 如何用 Python 實現超級瑪麗的介面和狀態機?Python
- 演算法提高 超級瑪麗演算法
- NOI1.1題庫——超級瑪麗
- 如何讓你的機器學習玩超級瑪麗機器學習
- [藍橋杯][演算法提高VIP]超級瑪麗演算法
- python tkinter 超級瑪麗原始碼下載顏色碰撞檢測試程式.pyPython原始碼
- 瑪麗莎品牌簡介
- 超級瑪麗啟示錄:曾風靡全球的FC小遊戲,為何能征服億萬人的心?遊戲
- 月流水1400萬美元,一款成功出海的“瑪麗蘇”遊戲遊戲
- 安卓第八夜 瑪麗蓮夢露安卓
- 超級英雄遊戲需要拋棄「現實主義」遊戲
- 瑪麗·米克爾:“網際網路女皇”解析移動網際網路趨勢
- Spring Security系列教程之實現CAS單點登入上篇-概述Spring
- FPGA -- SPI 時序實現(超級靈活,超級好用)FPGA
- 長沙Java培訓系列教程之實現CAS單點登入上篇Java
- 微軟Phil Spencer希望超級馬里奧遊戲登陸Xbox One微軟遊戲
- 《超級馬力歐》35 週年盤點:全系列遊戲總排行遊戲
- 超詳細的 Python 實現新浪微博模擬登陸(小白都能懂)Python
- 遊戲論·現實的媒介:《超級馬里奧:奧德賽》中的媒介哲學遊戲
- 2021騰訊遊戲年度釋出會:60餘款產品重磅登場,探索超級數字場景無限可能遊戲
- [譯] 用 Python 實現馬爾可夫鏈的初級教程Python馬爾可夫
- 刷題系列 - Python實現二叉樹按層級遍歷Python二叉樹
- Python系列教程6Python
- 超級馬里奧系列經典遊戲三十年曆史回顧遊戲
- Python實現24點遊戲Python遊戲
- 一場櫻花雨(Python實現)Python
- 100行Python程式碼實現貪吃蛇小遊戲(超詳細)Python遊戲
- JVM系列(五):gc實現概要01JVMGC
- 保姆教程系列二、Nacos實現註冊中心
- Spring Security系列之實現簡訊登入(十)Spring
- 基於 Electron 實現 uTools 的超級皮膚
- SVG基礎教程(超級詳細)SVG
- 騰訊馬曉軼:遊戲,正在成為一個超級數字場景遊戲
- 為實現電動車長途旅行,特斯拉超級充電站將大幅升級
- 超級炫酷的3D旋轉動態圖——Python程式碼實現3DPython