Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / desktop / Win32

Pong in a Win32 Console

4.00/5 (9 votes)
15 Jul 2010CPOL2 min read 45.9K   1.9K  
Pong in a Win32 Console
Image 1

Introduction

Pong is one of the earliest arcade video games and a two-dimensional sports game which simulates table tennis and was the first game developed by Atari Inc in June 1972. The player controls an in-game paddle by moving it vertically across the left side of the screen, and can compete against either a computer controlled opponent or another player controlling a second paddle on the opposing side. Players use the paddles to hit a ball back and forth. The aim is for a player to earn more points than the opponent; points are earned when one fails to return the ball to the other.

Pong is a simple game to code. The game involves a ball and two pads. The ball moves around on its own in the game world, and the player moves the pad. If the ball hits the wall or lands on the pad, change the ball's general direction. But if the ball misses the pad, then display the message - you missed - to the player.

The controls are:

UPmove pad up
DOWNmove pad down
TABtoggle Cheat on/off
F1display help

Writing code for the core logic of a Pong game is as follows. First update the position of the pong ball:

C++
//update ball's x location
ball.x+=ball.headingX;
//update ball's y location
ball.y+=ball.headingY;

Then test or check the ball's y location in the game's world positions using a series of "if" statements. If the ball hits the top or bottom wall, then change the ball's general direction.

C++
/* check if ball's location at top or bottom of screen,if true reverse ball's y heading */
if( (ball.y<pong_screen_top) />PONG_SCREEN_BOTTOM-2) ) ball.headingY=-ball.headingY;

Now check if the ball has landed on the pad, if it has then make the ball bounce back.

C++
/* check if ball lands on pad, if true bounce back */
if ( (ball.y>= PlayersPad.LEFT) && 
	(ball.y<= PlayersPad.RIGHT) && (ball.x==PlayersPad.x))
{
	ball.headingX=-ball.headingX;
	playersScore+=10;
}

But if the ball misses the pad, then display the message - you missed - to the player.

C++
if ( ball.x < PONG_SCREEN_LEFT)	displayYouMissed();

That's it. Download the source and check it out. Thanks for reading.

History

  • 15th July, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)