程序停止后的Python tkinter和turtle错误

时间:2018-10-13 00:58:35

标签: python tkinter turtle-graphics

很抱歉打扰任何人,但是当我运行代码(我第一次尝试在真实游戏中运行)时,一切正常,但是在我关闭代码后,出现一些错误,并且找不到其他人遇到我的问题。我的文件名为Space Invaders.py,我正在使用Pycharm(IDLE也会出现这些错误)。这是我的代码:

import turtle
import math

print("------------Space Invaders - Python------------")
print("-------------GAME NOT YET COMPLETED------------")
print("This console is simply a status readout.")

wn = turtle.Screen()
wn.bgcolor("black")
wn.title("Space Invaders")


borderPen = turtle.Turtle()
borderPen.speed(0)
borderPen.color("white")
borderPen.penup()
borderPen.setposition(-400, -400)
borderPen.pendown()
borderPen.pensize(3)
for i in range(4):
    borderPen.fd(800)
    borderPen.lt(90)
borderPen.hideturtle()


player = turtle.Turtle()
player.setheading(90)
player.shape("triangle")
player.color("blue")
player.penup()
player.speed(0)
player.setposition(0, -350)


enemy = turtle.Turtle()
enemy.color("red")
enemy.shape("circle")
enemy.penup()
enemy.speed(0)
enemy.setposition(-300, 250)

movementStepE = 2
movementStepEY = -15
movementStepP = 5 


def move_left():
    x = player.xcor()
    new_x = x - movementStepP
    if new_x < -380:
        new_x = -380
    player.setx(new_x)


def move_right():
    x = player.xcor()
    new_x = x + movementStepP
    if new_x > 380:
        new_x = 380
    player.setx(new_x)


def distancepyth(x1, x2, y1, y2):
    pyth = math.sqrt((x1 - x2) ** 2) + (y1 - y2 ** 2)
    return(pyth)


turtle.listen()
turtle.onkeypress(move_left, "Left")

turtle.onkeypress(move_right, "Right")

new_y = 250  # 250
while True:

    x = enemy.xcor()
    y = enemy.ycor()
    new_x = x + movementStepE
    if new_x > 380:
        movementStepE = movementStepE * -1
        new_y = y + movementStepEY
        new_x = 380
    elif new_x < -380:
        movementStepE = movementStepE * -1
        new_y = y + movementStepEY
        new_x = -380
    enemy.setposition(new_x, new_y)

turtle.done()

print("-------PROGRAM TERMINATED INTENTIONALLY-------")

这些是错误:

Traceback (most recent call last):
  File "C:/Users/Noname Antilabelson/PycharmProjects/Space Invaders Game/Code/Space Invaders.py", line 97, in <module>
    enemy.setposition(new_x, new_y)
  File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\turtle.py", line 1776, in goto
    self._goto(Vec2D(x, y))
  File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\turtle.py", line 3158, in _goto
    screen._pointlist(self.currentLineItem),
  File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\turtle.py", line 755, in _pointlist
    cl = self.cv.coords(item)
  File "<string>", line 1, in coords
  File "C:\Users\Noname Antilabelson\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 2469, in coords
    self.tk.call((self._w, 'coords') + args))]
_tkinter.TclError: invalid command name ".!canvas"

对不起,如果我做过任何愚蠢的事情,将非常感谢您的帮助! 问候  -雅各布·萨顿

2 个答案:

答案 0 :(得分:0)

正如您在评论中指出的那样,while True:是您的问题,因为它在诸如乌龟之类的事件驱动环境中没有位置。关闭窗口是一个与主循环异步触发的事件。为了使其同步,我们可以使用ontimer()事件。我在下面对您的代码进行了更改,并在其他乌龟习惯用法和代码清除中进行了更改:

from turtle import Screen, Turtle

print("------------Space Invaders - Python------------")
print("-------------GAME NOT YET COMPLETED------------")
print("This console is simply a status readout.")

def move_left():
    new_x = player.xcor() - movementStepP

    if new_x < -380:
        new_x = -380

    player.setx(new_x)

def move_right():
    new_x = player.xcor() + movementStepP

    if new_x > 380:
        new_x = 380

    player.setx(new_x)

def move_enemy():
    global new_y, movementStepE

    new_x = enemy.xcor() + movementStepE

    if new_x > 380:
        movementStepE *= -1
        new_y += movementStepEY
        new_x = 380
    elif new_x < -380:
        movementStepE *= -1
        new_y += movementStepEY
        new_x = -380

    enemy.setposition(new_x, new_y)

    screen.ontimer(move_enemy, 50)

movementStepE = 2
movementStepEY = -15
movementStepP = 5

screen = Screen()
screen.bgcolor("black")
screen.title("Space Invaders")

borderPen = Turtle(visible=False)
borderPen.speed("fastest")
borderPen.color("white")
borderPen.pensize(3)

borderPen.penup()
borderPen.setposition(-400, -400)
borderPen.pendown()

for _ in range(4):
    borderPen.forward(800)
    borderPen.left(90)

player = Turtle("triangle")
player.speed("fastest")
player.setheading(90)
player.color("blue")
player.penup()
player.setposition(0, -350)

enemy = Turtle("circle")
enemy.speed("fastest")
enemy.color("red")
enemy.penup()
enemy.setposition(-300, 250)

screen.onkeypress(move_left, "Left")
screen.onkeypress(move_right, "Right")
screen.listen()

new_y = 250

move_enemy()

screen.mainloop()

print("-------PROGRAM TERMINATED INTENTIONALLY-------")

进行此更改后,控制台将显示:

> python3 test.py
------------Space Invaders - Python------------
-------------GAME NOT YET COMPLETED------------
This console is simply a status readout.
-------PROGRAM TERMINATED INTENTIONALLY-------
>

即使在敌人运动时关闭窗户。

答案 1 :(得分:-1)

您也可以在其周围放置try catch语句,如下所示:

while True:
    try:
        x = enemy.xcor()
        y = enemy.ycor()
        new_x = x + movementStepE
        if new_x > 380:
            movementStepE = movementStepE * -1
            new_y = y + movementStepEY
            new_x = 380
        elif new_x < -380:
            movementStepE = movementStepE * -1
            new_y = y + movementStepEY
            new_x = -380
            enemy.setposition(new_x, new_y)
    except: #For more accuracy on catching, try something like 'except _tkinter.TclError:'
        break #if error raised

turtle.done()
print("-------PROGRAM TERMINATED INTENTIONALLY-------")

请注意,如果没有类似“ _tkinter.TclError:”的内容,那么任何错误都只会关闭窗口。