资源简介
pygame贪吃蛇
代码片段和文件信息
import random
import pygame
import sys
from pygame.locals import *
Snakespeed = 17
Window_Width = 800
Window_Height = 500
Cell_Size = 20 # Width and height of the cells
# Ensuring that the cells fit perfectly in the window. eg if cell size was
# 10 and window width or windowheight were 15 only 1.5 cells would
# fit.
assert Window_Width % Cell_Size == 0 “Window width must be a multiple of cell size.“
# Ensuring that only whole integer number of cells fit perfectly in the window.
assert Window_Height % Cell_Size == 0 “Window height must be a multiple of cell size.“
Cell_W = int(Window_Width / Cell_Size) # Cell Width
Cell_H = int(Window_Height / Cell_Size) # Cellc Height
White = (255 255 255)
Black = (0 0 0)
Red = (255 0 0) # Defining element colors for the program.
Green = (0 255 0)
DARKGreen = (0 155 0)
DARKGRAY = (40 40 40)
YELLOW = (255 255 0)
Red_DARK = (150 0 0)
BLUE = (0 0 255)
BL
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6 2017-09-03 20:04 Retro Snake\.gitignore
文件 20397 2020-05-22 09:06 Retro Snake\Retro Snake.ico
文件 8163 2020-05-22 09:04 Retro Snake\Retro Snake.py
文件 0 2020-05-19 09:18 Retro Snake\__init__.py
目录 0 2020-05-31 12:56 Retro Snake
----------- --------- ---------- ----- ----
28566 5
- 上一篇:python turtle 跳房子
- 下一篇:通过GUI页面实现猜数游戏
相关资源
- 贪吃蛇游戏
- python 贪吃蛇 游戏
- python 贪吃蛇 小游戏源码
- Pygame游戏源代码:中国象棋
- python制作象棋程序源码(pygame)
- pygame音乐播放器
- python game
- python 贪吃蛇小游戏源码
- Python贪吃蛇游戏
- python pygame flappybird 卷轴类小游戏
- python贪吃蛇游戏源码
- 《Python和Pygame游戏开发指南》随书源
- 贪吃蛇小游戏的代码
- Pygame中文文档.pdf
- 蜗牛绕墙爬(python小游戏源码)
- python 五子棋游戏源码(带背景音乐,
- python版经典贪吃蛇
- Python 水母吃鱼游戏 pygame
- python贪吃蛇代码
- python贪吃蛇 小游戏源码
- pygame坦克大战
- PYGAME五子棋界面,可以下棋
- pygame飞机大战源码和素材Python版完整
- pythonGame小游戏代码+python课程设计代码
- python.pygame.坦克大战源代码
- pygame的接球小游戏
- Python写的坦克大战
-
python3.x库gameob
jects - python3五子棋人机大战和人人大战.zi
- 一个简单游戏ai的实现--让电脑自己愉
评论
共有 条评论