Commit 78cf798c by BellCodeEditor

auto save

parent e6394759
Showing with 9 additions and 0 deletions
......@@ -43,6 +43,9 @@ cube_colors = [
(204, 153, 153), (102, 102, 153),(153, 0, 102),
(255, 204, 0), (204, 0, 51),(255, 0, 51), (0, 102, 153),
(153, 0, 51), (204, 255, 102), (255, 153, 0)]
def check( center ):
for cube in current_shape:
pos = (cube[0] + center[0], cube[1] + center[1])
center = [4, 8] # 第2行第8列
current_shape = random.choice( random.choice( shape_list ) )
......@@ -56,12 +59,18 @@ while True:
if event.key == locals.K_RIGHT: # 向右
if center[1] < 15:
center[1] += 1
if check(center) == False:
center[1] -= 1
elif event.key == locals.K_LEFT: # 向左
if center[1] > 1:
center[1] -= 1
if check(center) == False:
center[1] += 1
elif event.key == locals.K_DOWN: # 向下
if center[0] < 25:
center[0] += 1
if
# 将背景图画上去
screen.blit(background, (0, 0))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment