鱼C论坛

 找回密码
 立即注册
查看: 1565|回复: 1

求助

[复制链接]
发表于 2020-7-16 18:23:53 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import turtle
import os

wn =turtle.Screen()
wn.title("Pong by 123")
wn.bgcolor("black")
wn.setup(width=800,height=600)
wn.tracer(0)

# Score
score_a = 0
score_b = 0






#Paddle A
paddle_a = turtle.Turtle()
paddle_a.speed(0)
paddle_a.shape("square")
paddle_a.color("white")
paddle_a.shapesize(stretch_wid=5,stretch_len=1)
paddle_a.penup()
paddle_a.goto(-350,0)
#Paddle B
paddle_b= turtle.Turtle()
paddle_b.speed(0)
paddle_b.shape("square")
paddle_b.color("white")
paddle_b.shapesize(stretch_wid=5,stretch_len=1)
paddle_b.penup()
paddle_b.goto(350,0)
#Ball
ball = turtle.Turtle()
ball.speed(0)
ball.shape("square")
ball.color("white")
ball.penup()
ball.goto(0,0)
ball.dx = 0.1
ball.dy = -0.1

# Pen
pen = turtle.Turtle()
pen.speed(0)
pen.color("white")
pen.penup()
pen.hideturtle()
pen.goto(0,260)
pen.write("Player A:0  Player B:0", align="center",font=("Courier",24,"normal"))



#Function
def paddle_a_up():
    y = paddle_a.ycor()
    y += 20
    paddle_a.sety(y)

def paddle_a_down():
    y = paddle_a.ycor()
    y -= 20
    paddle_a.sety(y)
   
def paddle_b_up():
    y = paddle_b.ycor()
    y += 20
    paddle_b.sety(y)

def paddle_b_down():
    y = paddle_b.ycor()
    y -= 20
    paddle_b.sety(y)


# keyboard binding
wn.listen()
wn.onkeypress(paddle_a_up,"w")
wn.onkeypress(paddle_a_down,"s")
wn.onkeypress(paddle_b_up,"Up")
wn.onkeypress(paddle_b_down,"Down")

# Main game loop
while True:
    wn.update()

#Move the ball
    ball.setx(ball.xcor()+ball.dx)
    ball.sety(ball.ycor()+ball.dy)

    # Border checking
    if ball.ycor()> 290:
        ball.sety(290)
        ball.dy *= -1
        os.system("afplay bounce.wav&")

    if ball.ycor()< -290:
        ball.sety(-290)
        ball.dy *= -1
        os.system("afplay bounce.wav&")
    if ball.xcor() > 390:
        ball.goto(0,0)
        ball.dx *= -1
        score_a +=  1
        pen.clear()
        pen.write("Player A:{}  Player B:{}".format (score_a,score_b), align="center",font=("Courier",24,"normal"))

        

    if ball.xcor() < -390:
        ball.goto(0,0)
        ball.dx *= -1
        score_b +=  1
        pen.clear()
        pen.write("Player A:{}  Player B:{}".format (score_a,score_b), align="center",font=("Courier",24,"normal"))

    # Paddle and ball collisions
    if (ball.xcor() > 340 and ball.xcor() < 350) and (ball.ycor() <paddle_b.ycor()+ 40 and ball.ycor()> paddle_b.ycor() -50):
        ball.setx(340)
        ball.dx *= -1
        os.system("afplay bounce,wav&")


   

    if (ball.xcor() < -340 and ball.xcor() > -350) and (ball.ycor() <paddle_a.ycor()+ 40 and ball.ycor()> paddle_a.ycor() -50):
        ball.setx(-340)
        ball.dx *= -1
        os.system("afplay bounce,wav&")



Traceback (most recent call last):
  File "C:/Users/86187/Desktop/01.py", line 90, in <module>
    ball.setx(ball.xcor()+ball.dx)
  File "C:\Users\86187\AppData\Local\Programs\Python\Python37-32\lib\turtle.py", line 1808, in setx
    self._goto(Vec2D(x, self._position[1]))
  File "C:\Users\86187\AppData\Local\Programs\Python\Python37-32\lib\turtle.py", line 3158, in _goto
    screen._pointlist(self.currentLineItem),
  File "C:\Users\86187\AppData\Local\Programs\Python\Python37-32\lib\turtle.py", line 755, in _pointlist
    cl = self.cv.coords(item)
  File "<string>", line 1, in coords
  File "C:\Users\86187\AppData\Local\Programs\Python\Python37-32\lib\tkinter\__init__.py", line 2466, in coords
    self.tk.call((self._w, 'coords') + args))]
_tkinter.TclError: invalid command name ".!canvas"



大佬们,这个是哪里错了,应该怎么改
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

发表于 2020-7-20 15:15:40 | 显示全部楼层

  1. import turtle
  2. import os

  3. wn =turtle.Screen()
  4. wn.title("Pong by 123")
  5. wn.bgcolor("black")
  6. wn.setup(width=800,height=600)
  7. wn.tracer(0)

  8. # Score
  9. score_a = 0
  10. score_b = 0






  11. #Paddle A
  12. paddle_a = turtle.Turtle()
  13. paddle_a.speed(0)
  14. paddle_a.shape("square")
  15. paddle_a.color("white")
  16. paddle_a.shapesize(stretch_wid=5,stretch_len=1)
  17. paddle_a.penup()
  18. paddle_a.goto(-350,0)
  19. #Paddle B
  20. paddle_b= turtle.Turtle()
  21. paddle_b.speed(0)
  22. paddle_b.shape("square")
  23. paddle_b.color("white")
  24. paddle_b.shapesize(stretch_wid=5,stretch_len=1)
  25. paddle_b.penup()
  26. paddle_b.goto(350,0)
  27. #Ball
  28. ball = turtle.Turtle()
  29. ball.speed(0)
  30. ball.shape("square")
  31. ball.color("white")
  32. ball.penup()
  33. ball.goto(0,0)
  34. ball.dx = 0.1
  35. ball.dy = -0.1

  36. # Pen
  37. pen = turtle.Turtle()
  38. pen.speed(0)
  39. pen.color("white")
  40. pen.penup()
  41. pen.hideturtle()
  42. pen.goto(0,260)
  43. pen.write("Player A:0  Player B:0", align="center",font=("Courier",24,"normal"))



  44. #Function
  45. def paddle_a_up():
  46.     y = paddle_a.ycor()
  47.     y += 20
  48.     paddle_a.sety(y)

  49. def paddle_a_down():
  50.     y = paddle_a.ycor()
  51.     y -= 20
  52.     paddle_a.sety(y)
  53.    
  54. def paddle_b_up():
  55.     y = paddle_b.ycor()
  56.     y += 20
  57.     paddle_b.sety(y)

  58. def paddle_b_down():
  59.     y = paddle_b.ycor()
  60.     y -= 20
  61.     paddle_b.sety(y)


  62. # keyboard binding
  63. wn.listen()
  64. wn.onkeypress(paddle_a_up,"w")
  65. wn.onkeypress(paddle_a_down,"s")
  66. wn.onkeypress(paddle_b_up,"Up")
  67. wn.onkeypress(paddle_b_down,"Down")

  68. # Main game loop
  69. while True:
  70.     wn.update()
  71.     try:
  72. #Move the ball
  73.         ball.setx(ball.xcor()+ball.dx)
  74.         ball.sety(ball.ycor()+ball.dy)

  75.         # Border checking
  76.         if ball.ycor()> 290:
  77.             ball.sety(290)
  78.             ball.dy *= -1
  79.             os.system("afplay bounce.wav&")

  80.         if ball.ycor()< -290:
  81.             ball.sety(-290)
  82.             ball.dy *= -1
  83.             os.system("afplay bounce.wav&")
  84.         if ball.xcor() > 390:
  85.             ball.goto(0,0)
  86.             ball.dx *= -1
  87.             score_a +=  1
  88.             pen.clear()
  89.             pen.write("Player A:{}  Player B:{}".format (score_a,score_b), align="center",font=("Courier",24,"normal"))

  90.             

  91.         if ball.xcor() < -390:
  92.             ball.goto(0,0)
  93.             ball.dx *= -1
  94.             score_b +=  1
  95.             pen.clear()
  96.             pen.write("Player A:{}  Player B:{}".format (score_a,score_b), align="center",font=("Courier",24,"normal"))

  97.         # Paddle and ball collisions
  98.         if (ball.xcor() > 340 and ball.xcor() < 350) and (ball.ycor() <paddle_b.ycor()+ 40 and ball.ycor()> paddle_b.ycor() -50):
  99.             ball.setx(340)
  100.             ball.dx *= -1
  101.             os.system("afplay bounce,wav&")


  102.       

  103.         if (ball.xcor() < -340 and ball.xcor() > -350) and (ball.ycor() <paddle_a.ycor()+ 40 and ball.ycor()> paddle_a.ycor() -50):
  104.             ball.setx(-340)
  105.             ball.dx *= -1
  106.             os.system("afplay bounce,wav&")
  107.     except:
  108.         break
复制代码

把窗口关了后,找不到窗口,所以会报错
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-4-29 04:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表