Day 22 - Building Pong: The Famous Arcade Game

Day 22 - Building Pong: The Famous Arcade Game

Pixel Power: Crafting an Arcade Classic in an AI headed world.

ยท

4 min read

Agenda for the Day

Hey folks! My task for today was to conjure up the classic "Pong Arcade Game", utilizing all the knowledge and skills I've garnered thus far. Angela didn't introduce any fresh concepts and today was all concentrated on the game development. So, I'll dive into some of the riveting and tricky bits of this venture, with examples and my thoughts on why it was a pain in the ass at certain points ๐Ÿ˜„.

Dissecting the Project

Oddly enough, this might have been the least technical segment of the task, yet for some reason, my initial estimations on how to segment this project were off a bit, enough to make me double back to some of my previous notes and older lectures. The project was ultimately sectioned into the following stages:

  • Create the game screen

  • Create the first paddle and add movement controls

  • Create another paddle

  • Create the ball and make it start moving left or right

  • Detect collision with the wall and bounce from that position

  • Detect collision with a paddle and bounce from that position

  • Detect when the paddle misses

  • Keep the score

As you can see, this project is a bit more challenging than the snake game but once I finally completed it, I was happy with the end result and the skills I was able to practice!

It Either Made Sense, Or It Didn't

Parts of this project came together quite effortlessly. We've been tinkering with the turtle module for a while now and recent projects have been a breeze to kickstart. Setting up the file structure, basic imports, variables, and event handlers was a piece of cake. But, when it came to detecting the collision with the top and bottom walls as well as collision with the paddles, it was quite the mental task. I found myself either over-analyzing or underthinking and needed a bit of a helping hand. For instance, devising the logic for when the ball strikes the paddle proved to be the most challenging segment of this project for me. I had to take into account the dimensions of both the ball and the paddle while devising the logic. Another obstacle was resetting the ball's position once a score was made, while simultaneously making it move in the opposite direction to give the other player a fair start on the next round. Here's a glimpse at how the ball and bounce logic was constructed:

from turtle import Turtle


class Ball(Turtle):
    def __init__(self):
        super().__init__()
        self.shape("circle")
        self.penup()
        self.color("white")
        self.x_move = 10
        self.y_move = 10
        self.movement = 0.1

    def move(self):
        new_x = self.xcor() + self.x_move
        new_y = self.ycor() + self.y_move
        self.goto(new_x, new_y)

    def bounce(self):
        self.y_move *= -1

    def paddle_bounce(self):
        self.x_move *= -1
        self.movement *= 0.7

    def reset_position(self):
        self.goto(0, 0)
        self.movement = 0.1
        self.paddle_bounce()

Additionally, in the code snippet above, you can see that I have a movement attribute that sets the ball's initial speed, and, each time it hits a paddle, the speed is ramped up. The speed, along with the position, is reset when someone scores. There were a few more areas that required a fair amount of thought, but overall, this was an engaging project. You can check out the final product here -> github.com/kdleonard93/100-Days-Of-Code_Pyt.. and here's a short gif of me playing a round of pong solo.

Screen Recording 2023-06-13 at 11.57.00 PM

Due to limitations of the free version of Zight, the gif only spans 15 seconds and I didn't want to use my work account for personal stuff so you only get to witness one point being scored lol. Here's hoping that Loom introduces gif-making capabilities soon.

EOD

Cheers to another Python game accomplished! It was indeed tough, but it was a significant step in consolidating recent knowledge and realizing that there is still more to learn. I've been spending some time on codewars.com to improve my skills and I'm contemplating devoting one or two of my weekly sessions to working on more practice problems rather than rushing into new concepts. This way, I'll be able to thoroughly grasp every aspect of this journey. Peace out! โœŒ๐Ÿพ

Did you find this article valuable?

Support Kyle Leonard by becoming a sponsor. Any amount is appreciated!

ย