Make your own Tower Defense Game with PyGame

In this course you’ll learn how to write a 2d Tower Defense Game from scratch, using PyGame. Writing a mess of spaghetti code is easy; but writing code that is maintainable and easy to extend is not. A tower defense game is a perfect place to learn how to write a substantial game that will test your skills as a Python programmer. It is also a perfect template for many other 2d games.

Screenshot of the main menu of the PyGame Tower Defense Game
This is what you’ll be building!

Part of the challenge of writing a game is the many disparate disciplines that rear their heads once you move beyond the truly basic. During the course you’ll learn the following skills:

What is a Game Loop?

How do games actually update and display things on the screen in a manner that is maintainable and easy to reason about for the budding game developer?

The Game Loop is a cornerstone of all games, big and small. You’ll learn how to create one, and how it’s used to handle keyboard and mouse input, graphics rendering, updating the physics of entities on the screen, and more.

State Machines and Transitions

Few games have just one screen, and thus one state. Most games have a main menu, a score board, the actual game, and possibly more states that a player interacts with during game play. Understanding how to transition your game’s state between these different concepts is critical to writing a game free of spaghetti code.

You’ll learn about finite-state machines, an important concept in Computer Science, and how it can easily make transform a complex set of confusing requirements into neat and tidy code.

Lazy evaluation, Generators and Iterables

Keeping track of the position of things – and calculating the next position of something, such as a flying bullet – is easily solved with a liberal use of Python’s itertools library and generators.

Master a part of Python that gets short thrift from most developers, as they’re harder to reason about than normal for-loops.

Drawing and manipulating graphics

Learn what a sprite is, how to manipulate it to move, rotate, scale it, and how to do it efficiently and in a manner that is clear and easy to reason about.

Level Editing

You’ll write a complete level editor capable of placing and editing all the entities that make up a tower defense game using a simple UI you will build yourself.

The level editor forms a core part of the game, and includes details on how to write a save and load feature, so you can share your levels with friends.

Path finding and Recursion

Learn about recursion, a powerful programming concept, to find valid paths through a map for the enemies to traverse. You’ll learn about basic graph theory and how Depth-First Search is used to traverse a map and find a route from start to end.

Vector Mathematics

Come to grips with the mathematics required to ensure a bullet travels in a straight line towards a target; that your enemies walk smoothly across the map; and how to do simple text-based animations using simple arithmetic.

You’ll learn about simple vector arithmetic, interpolation, and basic affine transformations (like scaling and rotating).

Object-Oriented Programming (OOP)

Improve your understanding of classes and objects and how to best leverage inheritance, the factory pattern, and Python’s dataclasses to succinctly describe your game world using simple classes.

Animation

Learn how to chain together frames of images into simple animations so the enemies walk across the screen and collapse when they’re struck by exploding projectiles.

Collision Detection

Important stuff: how does the turret know when to fire at an enemy that is in its crosshairs? What about when the bullet strikes an enemy?

Are you ready? Let’s code!

Introduction & Course Plan

So, before we start writing code in earnest, let’s take a look at the course plan, and thus what you’ll learn.

Course Plan

  1. Introduction and Course Plan

    1. Course Plan

    2. Format of the course

    3. Configuring your Python environment

    4. Creating a simple Python package to host our game

    5. Installing and running the demo game

    6. Media assets for the game

  2. The Game Loop Controller and Initializing PyGame

  3. State Machines: How do they work, and what do they do?

  4. Building a template for our game (that you can re-use for other projects, too)

  5. Sprites, Sprite handling and how to interact with them.

  6. Writing a 2d Tile Engine and Map Editor

  7. Sprite Animation, Kinematics, and Vector Mathematics

  8. Path Finding and the basics of recursion

  9. Collision Detection and how to use masks

  10. Menus, Sound, Text, and Wrapping up.

This is the course plan and how we’ll proceed from here on. I’ve made a special effort to ensure that I introduce things at the rate I’d expect you to add them to the game, and not necessarily in the order you’d write them in yourself, if you were to sit down and write your first-ever game. And that, I think, is a salient point I want to repeat: drawing stuff to the screen is a little while away, as I think it’s critical that we lay a good foundation before proceeding.

Required Knowledge

I’ll briefly cover what I think you should know before you begin. It’s not an iron clad rule that you know this, but it’ll make the course more approachable.

A basic understanding of Python

Things like Lists, loops, dictionaries, classes, functions, and so on. You don’t have to be an object-oriented programming maven, but knowing a little about inheritance will go a long way.

We’ll write our own Python package, which is mostly a case of being mindful of the details. But knowing how to install packages with pip and any other supplementary requirements your platform may have (this is mostly relevant to Linux users.)

Basic mathematics

Yep. Mathematics. There’s no escaping it. Mostly it’s arithmetic, but we will veer into the topic of Vector mathematics — but the only the basics. If you’re comfortable with simple cartesian coordinate systems and adding and subtracting numbers, you’ll do fine.

And that’s pretty much it. You don’t need any prior understanding of either PyGame or game development; but you do need a desire to want to learn it!

Graphical Assets

This game comes with high-quality graphics that are ready to use. You can find them in the demo.

Format of the Course

This course is not a like-for-like repeat of the source code you’ll find in the game demo, but I do explain all aspects of it, so at the end of this course, you’ll have a complete understanding of everything you need to write a tower defense game (and many other 2d games!) or sit down and modify everything in the supplied demo. The supplied demo is fully working; it has assets, sound effects, a working level editor and game play. It also demonstrates everything you’ll read in this course, so you’re encouraged to refer back to it if you are stuck, or prefer looking over a complete solution.

You can approach this course in several ways, each with its own learning path, depending on what you prefer:

  1. You can take the demo and start tinkering and use it as a baseline or serve as inspiration for your own game projects.

  2. You can use this course as a reference and refer back to it only when you need advice with specific parts, and reinforce your learnings with the supplied demo.

  3. You can follow the course and implement each thing, one step at a time, experimenting along the way.

Or perhaps a combination of the above — the choice is yours.

Right, let’s get started!

Liked the Article?

Why not follow us …

Be Inspired Get Python tips sent to your inbox

We'll tell you about the latest courses and articles.

Absolutely no spam. We promise!