Sponsored By

5 games that make you think like a programmer

Sponsored: Former Bethesda Softworks developer Matthew Picioccio recommends five video games that will hone your computer science skills and get you thinking like a programmer.

Game Developer, Staff

March 1, 2021

6 Min Read

Presented by DigiPen Institute of Technology

Matthew Picioccio, a senior lecturer at DigiPen Institute of Technology, has been playing and developing games since he was just a little kid. “I made little role-playing and adventure games written in assembly and BASIC on my Apple II,” Picioccio says of his earliest creations.

Fittingly, after earning his computer science degree in 2001, Picioccio would start off his career as a programmer on two of the biggest role-playing adventure games ever made at the time — Bethesda Game Studios’ classics The Elder Scrolls III: Morrowind and The Elder Scrolls IV: Oblivion.

“Back then, we were a little bit more involved in the actual design and implementation of systems ourselves as programmers, something that’s gone away in the industry more recently as games have grown larger and more complex,” Picioccio says.

Picioccio contributed to a wide range of features on Morrowind. He worked with artists to create the sky and weather systems, developed the magic system and all of its effects, and adapted the game for the brand-new (at the time) Xbox home console. On Oblivion, Picioccio worked on character facial systems and procedural generation. He also implemented one of the first uses of SpeedTree — a vegetation programming and modeling software that would become a game and film industry standard.

Picioccio followed that up with work on DirectX, XNA Game Studio, Xbox, Kinect, and other technologies at Microsoft. He’s also worked as an engineering leader at companies like Groundspeak, Glu Mobile, and most recently at Microsoft’s 343 Industries on the upcoming Halo: Infinite, where he contributed to the game’s campaign mode.

Today, Picioccio teaches game development and network programming to students at DigiPen’s campus in Redmond, Washington. According to Picioccio, software engineering is a discipline of creative problem solving. “Your job, as a programmer, is to craft the simplest possible solution to the problem at hand,” Picioccio says. “While that may sound straightforward, this discipline involves many skills and techniques that take years to develop and master.”

With that in mind, we asked Picioccio to share a sampling of five games that give players the chance to practice some of those skills in a fun and engaging way. Here’s what he had to say, in his own words.

MHRD

A screenshot from the game MHRD depicting an old computer command prompt.

MHRD is a puzzle game based on discrete logic with AND, OR, and NOT gates, and it strongly resembles the classes I took in college many years ago, as well as games from my youth like Rocky’s Boots and Robot Odyssey from The Learning Company.

The game’s use of logic gates teaches software engineers about binary math and the underpinning of how computers work. The structure of the puzzles also teach the player about modular programming without relying on a specific programming language — utilizing prior puzzle solutions as the building blocks for more complex puzzles.

hackmud

A screenshot from the game hackmud, depicting an old graphical chat interface.

hackmud is a very unique MMO, presented as a graphical chat interface. Players interact with NPCs and other players to gain resources through using existing scripts, and later, writing their own using JavaScript.

In hackmud, players slowly transition from being a user — calling the game’s pre-provided scripts — to being a developer, requiring an increasing level of awareness of how the game itself operates. One of the most important skills of successful software engineers is understanding the layer of abstraction you rely upon, even if you don’t program at that level often — something this game makes you aware of. hackmud also teaches the player important lessons about network security and trust — carefully delineating what it means to provide access to certain aspects of your system and raising the player’s awareness of their own security.

Omega

A screenshot from the game Omega, depicting a vintage graphical rendering of a city with building tiles.

Omega was a groundbreaking game, published by Origin back in 1989. It included a complex user interface and a BASIC-like programming language, which you used to program tanks to battle in arenas. Omega was also one of the first commercial games to use a modem for cross-platform play!

As a programmer, Omega asks you to manage increases in feature scope. Through "license" upgrades, the game encourages you to refactor your code to incorporate new sensors and weapons, re-evaluating what makes your tank successful in combat. You also must utilize complex technical documentation, learning how to find the information you need to achieve your goals.

7 Billion Humans

A screenshot from the game 7 Billion Humans depicting a group of office workers standing by numbers, with a programming console to the right.

7 Billion Humans is Tomorrow Corporation’s follow-up to Human Resource Machine, and both games utilize a simple programming language to achieve increasingly complex goals in a two-dimensional grid.

The major innovation of the puzzles in 7 Billion Humans is parallelization, the simultaneous execution of code by multiple characters at once. In fact, it’s the same code each time, though executed by characters at different locations on the map. Throughout the game, the player learns how to write logic that is consistent but sensitive to local state. Parallel code execution is very hard to visualize, and 7 Billion Humans provides excellent experience in an approachable format. The game also encourages players to optimize, rewarding the player for finding shorter and/or faster solutions.

TIS-100

 A screenshot from the game TIS-100 depicting a series of boxes with computer command prompts.

TIS-100 is one of several brilliant games from Zachtronics, but it’s the one that speaks most directly to me. I grew up programming on an Apple II with a very similar assembly language. What TIS-100 adds is the concept of parallel execution of distinct nodes.

TIS-100’s fiendishly clever puzzles focus your attention on data flows, more than the code itself and the outside effect of your system. Each node has a small amount of storage and communicates with other nodes through a very small window.  While modern systems don’t use this kind of assembly programming, understanding complex data flows and synchronization is key to the distributed data systems that power the websites we rely on like Facebook, Twitter, and Google. TIS-100 also encourages optimization through leaderboards, and it contains some wonderful technical documentation. Once you’ve completed TIS-100, you should also play Zachtronics’ other brilliant puzzle games, including EXAPUNKS, Shenzhen I/O, Infinifactory, and SpaceChem.

A version of this article originally appeared on the DigiPen Institute of Technology website. Learn more about DigiPen’s undergraduate and master’s degree programs in game design and development, computer science, and more.

Read more about:

Sponsor Resource Center
Daily news, dev blogs, and stories from Game Developer straight to your inbox

You May Also Like