Skip to content

Instantly share code, notes, and snippets.

@ambethia
Last active September 4, 2017 14:25
Show Gist options
  • Save ambethia/a8801e5421a1babc17a8 to your computer and use it in GitHub Desktop.
Save ambethia/a8801e5421a1babc17a8 to your computer and use it in GitHub Desktop.
List of platform-puzzle games

Game Dev Path

A WIP list (kind-of, sort-of in order, from simple to advanced) of project ideas to train up in game development.

Challenges to try:

  • These could be done as a mix of 2D and 3D. Try to implement traditionally 2D games in 3D and vice-versa. E.g. 3D Shmups and 2D FPS games.
  • Non-violent takes on traditionally violent genres, e.g. FPS & Fighting platformers
  • 4+ local multiplayer, i.e. party games
  • Restricted input, e.g. one-button, gestures

The Arcade

Paddle Games

Simple controls, very basic physics math, simple hit testing

Examples:

  • Pong
  • Breakout

SHMUPS!

Scrolling, object pooling (bullets), physics based controls, procedural enemy movement and spawning, powerups

Examples:

  • Space Invaders
  • Asteroids
  • Gradius
  • Fantasy Zone

Stacking

Simple grid-based movement, pattern matching, matrix transformations

Examples:

  • Columns
  • Tetris

Maze & Puzzle

Simple AI, advanced grid-based movement, tile-based level design, simple character animation

Examples:

  • Pac Man
  • Sokoban / Lolo
  • Heiankyo Alien

Tabletop

Rule systems, drag and drop interactions

Examples:

  • Memory
  • Solitaire
  • Mahjong
  • Hearthstone

Arcade Physics

Examples:

  • Pinball
  • Peggle

Platformers

Physics based movement, interactions with multiple enemy types, tile or non-tilebased level design, intermediate hit testing, parallax background layers, intermediate to advanved character animation

Examples:

  • Super Mario Bros
  • Rayman Legends

Fighting

Advanced hit testing, complex controls (e.g. combo attacks), complex character animation, local multiplayer

Examples:

  • Street Fighter
  • Skullgirls

Metroidvania

Complex level design

Examples:

  • Fez
  • Metroid
  • Castlevania
  • River City Ransom

Adventure

Inventory system, strong story/narrative design

Examples:

  • King's Quest
  • Monkey Island
  • Day of the Tentacle

RPG

Examples:

  • Crystalis
  • Final Fantasy
  • Zelda

Rougelike

Inventory system (e.g. armor and weapons), procedural level design, simple pathfinding, simple AI

Examples:

  • Rogue
  • Diablo
  • Dwarf Fortress

Strategy

Advanced AI

Realtime

Advanced pathfinding, networked multiplayer (real-time netcode)

Examples:

  • Tower Defense
  • Starcraft

Turn-based & Simulation

Economies, isometric tile world design, advanced procedural content, networked multiplayer

Examples:

  • Sim City
  • Civilization

FPS

Advanced Input, Precision ray casting, multiplayer

Examples:

  • Wolfenstien
  • Doom
  • Space Harrier
  • Overwatch

Stealth & Heist

Advanced enviromental interaction

Examples:

  • Metal Gear
  • Monoco

Misc Ideas

  • MMO Text Adventure

A list of platform-puzzle games

Modern

2D & 2.5D

  • Boy and His Blob (Wii)
  • Braid √
  • The Bridge
  • The Cave √
  • Limbo √
  • Fez √
  • Grimind
  • Pid
  • Rochard
  • Scribblenauts
  • Teslagrad
  • Trine
  • Vessel

3D

  • Portal && Portal II
  • Papa & Yo

Classics

Not platformers per se, but kindred spirits

  • The Adventures of Lolo

√ = I've played through it recently

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment