资源简介
python推箱子 游戏素材
代码片段和文件信息
# Star Pusher (a Sokoban clone)
# By Al Sweigart al@inventwithpython.com
# http://inventwithpython.com/pygame
# Released under a “Simplified BSD“ license
import random sys copy os pygame
from pygame.locals import *
FPS = 30 # frames per second to update the screen
WINWIDTH = 800 # width of the program‘s window in pixels
WINHEIGHT = 600 # height in pixels
HALF_WINWIDTH = int(WINWIDTH / 2)
HALF_WINHEIGHT = int(WINHEIGHT / 2)
# The total width and height of each tile in pixels.
TILEWIDTH = 50
TILEHEIGHT = 85
TILEFLOORHEIGHT = 40
CAM_MOVE_SPEED = 5 # how many pixels per frame the camera moves
# The percentage of outdoor tiles that have additional
# decoration on them such as a tree or rock.
OUTSIDE_DECORATION_PCT = 20
BRIGHTBLUE = ( 0 170 255)
WHITE = (255 255 255)
BGCOLOR = BRIGHTBLUE
TEXTCOLOR = WHITE
UP = ‘up‘
DOWN = ‘down‘
LEFT = ‘left‘
RIGHT = ‘right‘
def main():
global FPSCLOCK DISPLAYSURF IMAGESDICT TILEMAPPING OU
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6581 2020-05-17 16:26 推箱子素材\boy.png
文件 7270 2020-05-17 16:26 推箱子素材\catgirl.png
文件 8244 2020-05-17 16:26 推箱子素材\Grass_Block.png
文件 7186 2020-05-17 16:26 推箱子素材\horngirl.png
文件 6924 2020-05-17 16:26 推箱子素材\pinkgirl.png
文件 3433 2020-05-17 16:26 推箱子素材\Plain_Block.png
文件 7411 2020-05-17 16:26 推箱子素材\princess.png
文件 10418 2020-05-17 16:26 推箱子素材\RedSelector.png
文件 7902 2020-05-17 16:26 推箱子素材\Rock.png
文件 10243 2020-05-17 16:27 推箱子素材\Selector.png
文件 9824 2020-05-17 16:27 推箱子素材\Star.png
文件 59164 2020-05-17 16:27 推箱子素材\starPusherLevels.txt
文件 67300 2020-05-17 16:27 推箱子素材\star_solved.png
文件 93531 2020-05-17 16:27 推箱子素材\star_ti
文件 9771 2020-05-17 16:27 推箱子素材\Tree_Short.png
文件 11546 2020-05-17 16:27 推箱子素材\Tree_Tall.png
文件 10378 2020-05-17 16:27 推箱子素材\Tree_Ugly.png
文件 8443 2020-05-17 16:27 推箱子素材\Wall_Block_Tall.png
文件 6011 2020-05-17 16:27 推箱子素材\Wood_Block_Tall.png
文件 24896 2020-08-03 20:22 推箱子素材\推箱子代码.py
目录 0 2020-08-03 20:22 推箱子素材
----------- --------- ---------- ----- ----
376476 21
- 上一篇:python 微信机器人代码
- 下一篇:python实现 时钟(基于turtle)
相关资源
- python坦克大战分步骤源码及素材
- 微信-飞机大战素材
- 恐龙酷跑素材、音频和源码,请自行
- python推箱子游戏
- 黑马python入门教程飞机大战素材(图
- Python 摩擦摩擦玻璃球游戏素材
- Python版飞机大战源码和素材包括有声
- 飞机大战源码和素材Python版
- 基于Python的飞机大战项目源码素材包
- Python飞机大战完整素材包字体音乐图
- Python做一个推箱子小游戏
- 计算机视觉素材.part1.rar
- 与孩子一起学PythonPDF书、源代码素材
- unitypackage文件解压工具
- 《PyTorch生成对抗网络编程》思维导图
- Python 扫雷游戏 完整源代码+图片素材
- pygame入门《飞机大战》源码及素材
- python开发飞机大战游戏图片素材
- python飞机大战素材加源码
- Python项目案例开发从入门到实战源代
- pygame飞机大战源码和素材Python版完整
- Python语言程序设计本书源代码及素材
评论
共有 条评论