資源簡介
Python學習時寫的貪吃蛇代碼,帶界面UI,短小精悍,供大家參考學習
代碼片段和文件信息
import?tkinter?as?tk?
import?random
import?threading
import?time
class?snake:
????TARGET_LEFT?=?0
????TARGET_RIGHT?=?1
????TARGET_UP?=?2
????TARGET_DOWN?=?3
????def?__init__(self?cvs?worldWidth?=?500?worldHeight?=?400):
????????self.worldWidth?=?worldWidth
????????self.worldHeight?=?worldHeight
????????self.x?=?worldWidth?/?2
????????self.y?=?worldHeight?/?2
????????self.cvs?=?cvs
????????self.data?=?[(self.x?self.y)]
????????self.foodPool?=?[]
????????self.curFood?=?(0?0)
????????self.firstInitFoodPool()
????????self.firstDraw()
????????self.target?=?snake.TARGET_RIGHT
????????self.cvs.focus_set()
????????self.cvs.bind(““?self.change)
????????self.isalive?=?True
????
????def?firstInitFoodPool(self):
????????for?i?in?range(0?self.worldWidth?-?10?10)
評論
共有 條評論