yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Games and modularity | Intro to CS - Python | Khan Academy


3m read
·Nov 10, 2024

So you want to build a game, but how would you even get started? Most games we play have thousands of lines of code; some even have millions. Try and imagine a program with thousands of lines of code all in a single file. Sounds like a nightmare to navigate and nearly impossible to debug.

So how do programmers do it? We use a strategy that in programming we call modularity. Or in simpler terms, we break down the problem. Say I want to build a cozy role-playing game; what might that entail?

Well, I can kind of break that down into different categories of activities. Like there's farming, fishing, mining, crafting, and then within each of those categories, I can break it down further into the different actions players might take. So within farming, you might be able to plant, fertilize, water, harvest, maybe trample.

Once I have that breakdown mapped out, I can focus on solving each individual sub-problem in isolation, one at a time, instead of trying to juggle all the pieces of the game at once. For example, maybe I start off by thinking about what it means to harvest, and then I write the code for that small piece of the game. Like maybe the plant returns a random number of vegetables based on how well the player cared for it over its lifetime.

Notice how that small sub-problem was a lot easier to tackle than the bigger problem of building the farming mechanics, and way easier than the big problem of building a role-playing game. By breaking down the program into modular components like this, programmers get a lot of benefits.

For one, it allows them to easily collaborate with other programmers. One team can own the farming component, and another team can own the fishing component. And within farming, I can work on harvesting, and my teammate can work on planting. We'll have to integrate the different components eventually, but for now, it's easy for me to focus on my task without having to worry about conflicting with my teammate's code.

Two, it makes the code much easier to test and debug. If I gave you the whole program and asked, "Does this game work?" I bet you'd have a real hard time giving me a definitive answer. But if instead I gave you a real small piece of code and asked, "Hey, does this harvesting code work?" you could probably verify that without a horrible amount of effort. If we've tested all the smaller components as we built them, we can have a lot more confidence that the final product works.

It's kind of like a mechanic working on a car. To check if there's any issues, they don't just take the car out and drive around for hours until something breaks down. Instead, it's much easier for them to test the individual components. They can check that the brakes work, the transmission works, the HVAC works, and if all the individual components work, then there's a good chance the whole car works, too.

Three, it makes the code a lot more readable and easy to work with. Instead of one giant mess of code, we've organized it based on task, which makes it easier to find what we're looking for when we need it. Typically, when we modularize a program, we organize it into different modules, where each module or file contains the code for a related set of functionality.

Then, within a module, we break down that functionality into individual functions, where each function contains the instructions for performing a specific task. So in our farming module, we might have a function called Harvest that contains the lines of code needed to perform the Harvest action, and then we might organize the planting-related code into a Plant function.

Now we've probably seen modules and functions before when we've used the ones that other people have written. Like the Random module collects a bunch of functionality related to randomness and organizes that into functions like rand. As we write programs that get bigger and more complex, we need a way to organize our code, too, so we're not left with a single main.py file with a giant mess of code.

That means it's time to learn how to write our own functions in our own modules, so we can make our code more reusable, testable, and maintainable. So let's get organized.

More Articles

View All
YC Panel at Female Founders Conference 2015
We’ll start with Kirsty. Kirsty: Hi everyone! I’m Kirsty Nathu. I’m the CFO at Y Combinator, so I look after all of Y Combinator’s monies and help the startups with their money questions. Elizabeth: I’m Elizabeth Irans. I’m just a part-time partner at Y…
BUBBLE FAIL !! Best Images of the Week #37
Shooting a watermelon off your brother’s head and an inverted sandwich. I’m a little sick today, but the best medicine is episode 37 of IMG! Why is this cat so sad? Does he not know that unicorn bicycles exist? The only thing more spectacular might be th…
Guided meditation for procrastination
Welcome to the meditation on procrastination. And somewhat ironically, I’ve been procrastinating making this meditation, so we’re all in the same boat together. So, as with all meditations, posture and breathing makes a big difference. I really encoura…
What is Morality?
If I steal from the rich and feed to the poor, is that good or bad? If I drive over the speed limit to get my sick child in the hospital, is that good or is that bad? What is good and what is bad? What is morality, and do you as a person have morals? Mor…
How to Stop Procrastinating
The greatest hindrance to living is expectancy, which depends upon the morrow and wastes to-day. — Seneca When we procrastinate, we are immersed in future thinking and unable to do the work that we had planned to do in the present moment. The consequence…
When and why extraneous solution happen
In other videos, we’ve already introduced the idea of an extraneous solution, where you go about solving an equation. You’re given an original equation, and you do a bunch of algebraic steps. Then you solve it and you get some solutions. What we’ve seen, …