• 大小: 0.45M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-03-02
  • 语言: Python
  • 标签: hello  IP  游戏  python  

资源简介


资源截图

代码片段和文件信息

# This version of the game has a bug in it. See if you can figure out how to fix it.
# http://inventwithpython.com/pygame/buggy
# Bug Description: Black bar appears at the bottom of the screen.


# Flippy (an Othello or Reversi clone)
# By Al Sweigart al@inventwithpython.com
# http://inventwithpython.com/pygame
# Released under a “Simplified BSD“ license

# based on the “reversi.py“ code that originally appeared in “Invent
# Your Own Computer Games with Python“ chapter 15:
#   http://inventwithpython.com/chapter15.html

import random sys pygame time copy
from pygame.locals import *

FPS = 10 # frames per second to update the screen
WINDOWWIDTH = 640 # width of the program‘s window in pixels
WINDOWHEIGHT = 480 # height in pixels
SPACESIZE = 50 # width & height of each space on the board in pixels
BOARDWIDTH = 8 # how many columns of spaces on the game board
BOARDHEIGHT = 8 # how many rows of spaces on the game board
WHITE_TILE = ‘WHITE_TILE‘ # an arbitrary 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       20175  2012-01-28 21:33  flippy_buggy7.py
     文件       20178  2012-01-28 21:33  flippy_buggy8.py
     文件       20197  2012-01-28 21:33  flippy_buggy1.py
     文件       20226  2012-01-28 21:33  flippy_buggy2.py
     文件       20190  2012-01-28 21:46  flippy_buggy3.py
     文件       20174  2012-01-28 21:33  flippy_buggy4.py
     文件       20232  2012-01-28 21:33  flippy_buggy5.py
     文件       20175  2012-01-28 21:33  flippy_buggy6.py
     文件        7297  2012-02-03 00:15  README.txt
     文件       83036  2011-06-25 15:45  flippybackground.png
     文件      340760  2011-06-21 21:05  flippyboard.png

评论

共有 条评论