← all builds

From-Scratch Build · Tangible Gaming

Graspable Media Game Table

A board game with no screen and no controller: you move real physical pieces on a table, a projector draws the game world around them, and every move is recorded on a blockchain ledger. I built this from scratch to learn how tracking, projection and distributed records fit into a single playable system.

Motion captureProjectionAgent simulation Blockchain ledgerPvP / PvAI

What it is

The table is the screen

This is a tangible game: the playing surface is a real table, the pieces are real objects you grasp and slide, and the "display" is a short-throw projector pointing straight down. A motion-capture system tracks each piece, an agent-based simulation runs the rules of the game, and the result is projected back onto the same table — so the digital board and the physical pieces share one space.

It supports both player-versus-player and player-versus-AI, and it adds something unusual: a blockchain layer that stores checkpoints, scores and in-game transactions. I was curious whether a tamper-proof ledger could make a tabletop game's history trustworthy and easy to customise.

The core idea I wanted to learn: a tangible game is three subsystems pretending to be one. Sensing, simulation and actuation each run independently, and the game only feels seamless if they agree on where every piece is, frame after frame.

The stack

Tools under the hood

The point of this rebuild was the toolchain. Here is what each piece actually does in the system.

sensing

Motion capture

Cameras track marker holders attached to each game piece and report their position and orientation in real time.

markers

Universal marker holders

3D-printed mounts carrying a unique pattern of reflective markers, so every piece gets its own identity on the table.

middleware

ROS

A message bus that takes raw capture data and forwards clean pose information to the game engine over UDP.

rules

Agent-based simulation

The game engine: it holds the board state, applies the rules, and decides what should be drawn for each piece.

display

Short-throw projector

Mounted above the table, it paints the board, effects and scores onto the surface around the physical pieces.

ledger

Blockchain layer

A distributed ledger records checkpoints, scores and in-game transactions so game history is tamper-proof and shareable.

Pipeline

From a moved piece to a projected board

The game loop is a sense-process-actuate cycle, with the ledger hanging off the side to record what happened.

  1. Sense live

    Motion capture locates each marked piece and reports its pose.

  2. Bridge live

    A ROS node cleans the data and streams poses to the engine over UDP.

  3. Simulate live

    The agent-based engine updates the board state from the new piece positions and applies the game rules.

  4. Project live

    The engine renders the board and effects, projected back onto the table around the pieces.

  5. Record live

    Key events — scores, checkpoints, transactions — are written to the blockchain ledger.

  6. Replay & customise future

    Reading the ledger back to reconstruct or remix a past game. Left as future work.

Why the ledger

What blockchain actually buys a board game

The ledger sounded like a gimmick until I built it. A few concrete things fall out of recording game events on a distributed ledger:

In my rebuild I focused on the sense-simulate-project loop first, then attached a lightweight event recorder so each move leaves a durable trace.

Reflection

What rebuilding it taught me