设为首页 收藏本站
查看: 608|回复: 0

[经验分享] Interactive Python:Mini-project #4

[复制链接]

尚未签到

发表于 2017-5-4 06:47:14 | 显示全部楼层 |阅读模式
An Introduction to Interactive
Programming in Python


Mini-project #4 - "Pong"

In this project, we will build a version ofPong, one of the first arcade video games (1972). While Pong is not particularly exciting compared to today's video games,
Pong is relatively simple to build and provides a nice opportunity to work on the skills that you will need to build a game likeAsteroids. As usual, we have provided aprogram
template
that can be used to guide your development of Pong.
Mini-project development process


  • Add code to the program template that draws a ball moving across the Pong table. We recommend that you add the positional update for the ball to the draw handler as shown in the second part of the "Motion" video.
  • Add code to the functionball_initthat
    spawns a ball in the middle of the table and assigns the ball a fixed velocity (for now). Ignore the parameterrightfor
    now.
  • Add a call toball_initin
    the functionnew_gamewhich
    starts a game of Pong. Then add a call tonew_gamein
    the main body of your program.
  • Modify your code such that the ball collides with and bounces off of the top and bottom walls. Experiment with different hard-coded initial velocities to test your code.
  • Add randomization to the velocity inball_init(right)The
    velocity of the ball should be upwards and towards the right ifright
    == Trueand upwards and towards the left ifright
    == False. The exact values for the horizontal and vertical components of this velocity should be generated usingrandom.randrange().
    For the horizontal velocity, we suggest a speed of aroundrandom.randrange(120,
    240)pixels per second. For the vertical velocity, we suggest a speed of aroundrandom.randrange(60,
    180)pixels per second. (You will need to set the signs of velocities appropriately.)
  • Add code to the draw handler that tests whether the ball touches/collides with the left and right gutters. (Remember that the gutters are offset from the left and right edges of the canvas by the width of the paddle as described
    in the "Pong" video.) When the ball touches a gutter, useball_init(right)to
    respawn the ball in the center of the table headed towards the opposite gutter.
  • Next, add code that draws the left and right paddles in their respective gutters. The vertical positions of these two paddles should depend on two global variables. (In the template, the variables werepaddle1_posandpaddle2_pos.)
  • Add code that modifies the values of these vertical positions via an update in the draw handler. The update should reference two global variables that contain the vertical velocities of the paddles. (In the template, the variables
    werepaddle1_velandpaddle2_vel.)
  • Update the values of these two vertical velocities using key handlers. The "w" and "s" keys should control the vertical velocity of the left paddle while the "Up arrow" and "Down arrow" key should control the velocity of the right
    paddle. In our version of Pong, the left paddle moves up at a constant velocity if the "w" key is pressed and moves down at a constant velocity if the "s" is pressed and is motionless if neither is pressed. (The motion if both are pressed is up to you.) To
    achieve this effect, you will need to use both a keydown and a keyup handler to increase/decrease the vertical velocity in an appropriate manner.
  • Restrict your paddles to stay entirely on the canvas by adding a check before you update the paddles' vertical positions in the draw handler. In particular, test whether the current update for a paddle's position will move part
    of the paddle off of the screen. If it does, don't allow the update.
  • Modify your collision code for the left and right gutters in step 6 to check whether the ball is actually striking a paddle when it touches a gutter. If so, reflect the ball back into play. This collision model eliminates the possibility
    of the ball striking the edge of the paddle and greatly simplifies your collision/reflection code.
  • To moderately increase the difficulty of your game, increase the velocity of the ball by 10% each time it strikes a paddle.
  • Add scoring to the game as shown in the Pong video lecture. Each time the ball strikes the left or right gutter (but not a paddle), the opposite player receives a point and ball is respawned appropriately.
  • Finally, add code tonew_gamewhich
    resets the score before callingball_init.
    Add a "Restart" button that callsnew_gameto
    reset the score and relaunch the ball.

Your final version of Pong should be remarkably similar to the original arcade Pong game. Our full implementation of Pong took a little more than 100 lines of code with comments.  代码如下:

# Implementation of classic arcade game Pong
import simplegui
import random
# initialize globals - pos and vel encode vertical info for paddles
WIDTH = 600
HEIGHT = 400      
BALL_RADIUS = 20
PAD_WIDTH = 8
PAD_HEIGHT = 80
HALF_PAD_WIDTH = PAD_WIDTH / 2
HALF_PAD_HEIGHT = PAD_HEIGHT / 2
right=True
ball_pos=[0,0]
ball_vel=[0,0]
paddle1_pos=[HALF_PAD_WIDTH,0]
paddle2_pos=[WIDTH-HALF_PAD_WIDTH,0]
paddle1_vel=0
paddle2_vel=0
score1=0
score2=0
# helper function that spawns a ball by updating the
# ball's position vector and velocity vector
# if right is True, the ball's velocity is upper right, else upper left
def ball_init(right):
global ball_pos, ball_vel # these are vectors stored as lists
ball_pos=[WIDTH/2,HEIGHT/2];
ball_vel=[random.randrange(120, 240),random.randrange(60, 180)]
if right==False:
ball_vel[0]=-ball_vel[0]

# define event handlers
def new_game():
global paddle1_pos, paddle2_pos, paddle1_vel, paddle2_vel  # these are floats
global score1, score2  # these are ints
score1=0
score2=0
ball_init(True)
def draw(c):
global score1, score2, paddle1_pos, paddle2_pos, ball_pos, ball_vel
# update paddle's vertical position, keep paddle on the screen
if 0<=paddle1_pos[1]+paddle1_vel<=HEIGHT-PAD_HEIGHT:paddle1_pos[1]+=paddle1_vel
if 0<=paddle2_pos[1]+paddle2_vel<=HEIGHT-PAD_HEIGHT:paddle2_pos[1]+=paddle2_vel
# draw mid line and gutters
c.draw_line([WIDTH / 2, 0],[WIDTH / 2, HEIGHT], 1, "White")
c.draw_line([PAD_WIDTH, 0],[PAD_WIDTH, HEIGHT], 1, "White")
c.draw_line([WIDTH - PAD_WIDTH, 0],[WIDTH - PAD_WIDTH, HEIGHT], 1, "White")
# draw paddles
c.draw_line(paddle1_pos,[paddle1_pos[0], paddle1_pos[1]+PAD_HEIGHT], PAD_WIDTH, "White")
c.draw_line(paddle2_pos,[paddle2_pos[0], paddle2_pos[1]+PAD_HEIGHT], PAD_WIDTH, "White")
# update ball
# check up and down bound
if (ball_pos[1]<=BALL_RADIUS)or(ball_pos[1]>=HEIGHT-BALL_RADIUS):
ball_vel[1]=-ball_vel[1]
# check left and right
if ball_pos[0]<=BALL_RADIUS:
if paddle1_pos[1]<=ball_pos[1]<=paddle1_pos[1]+PAD_HEIGHT:
ball_vel[0]=-ball_vel[0]
ball_vel[0]=ball_vel[0]*1.1
ball_vel[1]=ball_vel[1]*1.1
else:
ball_init(right)
score2+=1
elif ball_pos[0]>=WIDTH-BALL_RADIUS:
if paddle2_pos[1]<=ball_pos[1]<=paddle2_pos[1]+PAD_HEIGHT:
ball_vel[0]=-ball_vel[0]
ball_vel[0]=ball_vel[0]*1.1
ball_vel[1]=ball_vel[1]*1.1
else:
ball_init(right)
score1+=1
ball_pos[0]+=ball_vel[0]/60
ball_pos[1]+=ball_vel[1]/60
# draw ball and scores
c.draw_circle(ball_pos, 20, 1, "Green", "White")
c.draw_text(str(score1)+":"+str(score2), (600/2-30, 40), 36, "Yellow")

def keydown(key):
global paddle1_vel, paddle2_vel
vel=4
if key==simplegui.KEY_MAP['s']:
paddle1_vel=vel
elif key==simplegui.KEY_MAP['w']:
paddle1_vel=-vel
elif key==simplegui.KEY_MAP['up']:
paddle2_vel=-vel
elif key==simplegui.KEY_MAP['down']:
paddle2_vel=vel
def keyup(key):
global paddle1_vel, paddle2_vel
if key==simplegui.KEY_MAP['s']:
paddle1_vel=0
elif key==simplegui.KEY_MAP['w']:
paddle1_vel=0
elif key==simplegui.KEY_MAP['up']:
paddle2_vel=0
elif key==simplegui.KEY_MAP['down']:
paddle2_vel=0

# create frame
frame = simplegui.create_frame("Pong", WIDTH, HEIGHT)
frame.set_draw_handler(draw)
frame.set_keydown_handler(keydown)
frame.set_keyup_handler(keyup)
button = frame.add_button("Reset", new_game)
# start frame
frame.start()
new_game()

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-372671-1-1.html 上篇帖子: python的str,unicode对象的encode和decode方法 下篇帖子: python是个什么东西---python---py2exe打包后屏蔽控制台
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

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