
By following along with this video you'll create your first code file by using a plain text editor, and you'll test run that code by using any common web browser. You'll also see how to view your browser's console, which will be very useful for troubleshooting errors later.
In case you get stuck at any point in this video – or any one later in this course – you can download each video's example source code zip file in order to have a snapshot of exactly how the code ought to look after completing each step covered in this course.
You'll learn how to draw, position, and change the dimensions of rectangles on the screen. This drawing technique will soon be used to represent both paddle positions.
Live action with motion requires that the code doesn't just happen once – it has to keep running over and over again. In this step you'll get that working, and by doing so you'll open up a whole world of possibilities for dynamic movements and interactivity.
For this brief intermission we'll take a few moments to rethink how the functionality has been programmed so far. These changes will not affect what the game does, but they will make the upcoming changes much easier. This type of "refactoring" as the program grows is a common part of programming.
Here you'll write code to detect when the ball is crossing an edge of the graphics canvas. As it does so, you'll reverse its direction to bounce it off the boundaries, keeping the ball in play and in view.
Drawing a circle is a bit more involved than drawing a rectangle, but the game will look much better with a round ball. You'll learn in this step how to display a filled circle on the screen. Next you'll hide all the complex details of doing so in a new helper function, which will greatly reduce how much you'll need to remember or figure out for the next time that you need to draw a circle.
So far, the ball only moved side-to-side. Now with this step you'll move and bounce the ball vertically, as well. You'll also hook up the paddle's position to follow your mouse input.
You'll now write the ball collision code for each paddle, causing the ball to reset instantly whenever it collides with the left or right side unless it's striking an area blocked by the paddle.
Here you'll program the right paddle to move and play automatically by implementing a basic form of artificial intelligence. You'll also add scoring to the game, giving your player a way to see how well he or she is performing against the computer opponent.
There is a subtle but very important design detail in how the ball is supposed to behave when it collides with a paddle, which you'll implement in this step. Secondly, by the end of this lecture you'll have the game set up to end as soon as either player reaches a clearly defined goal score.
This is the final stretch! You'll let the player reset a completed round by clicking the mouse, and you'll add a decorative net to the center of the playfield.
In closing, I'll briefly explain how you can carry your momentum from today forward into continuing to learn and practice more about videogame development with this approach.
This course is also included with membership in our worldwide, mentored, team practice community, which you can find out more about at HomeTeamGameDev.com
The full textbook PDF and its related source code is included with the new course!
At the end of this short course you'll have programmed your first game. You'll learn gameplay development fundamentals by really doing it – writing and running real code on your own machine.
Each step of the course has the source code attached exactly as it should look at that time (click "View Resources" then "Downloadable Resources"), for you to compare to or pick up from, so you can't get stuck!
Begin Your Game Programming Journey the Proven Way
"Make the simplest game possible." "Program a ball and paddle project." "Practice by first remaking something from the 1970's." All beginning developers hear this advice from more experienced peers... because it works!
By following this approach you will:
You can program this game with a normal text editor, and run it in the web browser you already have. No special software is needed.
Though you'll be coding in JavaScript for HTML5 canvas in this course, the focus is on common game programming concepts. You can later apply these same patterns to get quick results in other programming languages such as C#, Java, ActionScript 3, C++, or Python.
I'm a private game development trainer, and for clients new to gameplay programming this is exactly the material that I cover to get them started quickly. Within hours you will have finished programming your first project. This is the fastest way to get results. The momentum gained from doing this provides a solid foundation to give more advanced concepts meaning and context as you continue on in your journey of learning game development.
(HTML5 Logo in the course image is by W3C, licensed under Creative Commons Attribution 3.0 Unported.)