Monopoly Tycoon

Lead Programmer·2001·2 years·12 people·2 min read

Lead programmer on a real-time competitive tycoon sim — city building, rival businesses, and Monopoly board mechanics fused into one of the era's standout PC sims.

Overview

Monopoly Tycoon was developed at Deep Red Games and published by Infogrames. A real-time simulation where players build and run businesses on city blocks, compete for monopoly control, and balance supply chains — closer to a competitive city tycoon than a board-game adaptation.

Problem

The design called for a living city simulation with real-time rival AI, economic modelling, and Monopoly-themed mechanics, all running smoothly on turn-of-the-century PC hardware. The engine had to support large urban layouts, dynamic simulation, and rapid iteration for a small team.

Constraints

  • Fixed studio engine written in C++98 — extend, not replace
  • Real-time simulation budget on modest consumer hardware
  • Licensed Monopoly IP — mechanics had to feel authentic without being a literal board game
  • Small team relative to scope — tech choices had to favour reliability over novelty

Approach

Extended Deep Red's proprietary engine and simulation systems. Focused on core-tech that the whole studio could build on — rendering, entity systems, economic simulation hooks, and tooling — while coordinating gameplay programmers across the title.

Key Decisions

Real-time simulation over turn-based city building

Reasoning:

Differentiated the game in a market of turn-based tycoons. Required careful tick budgeting and deterministic-ish simulation for AI rivals.

Alternatives considered:
  • Turn-based play closer to SimCity
  • Abstract board-game view with simplified city layer

Shared studio engine rather than per-title tech

Reasoning:

Deep Red's model reused core-tech across titles. Investments in simulation and rendering benefited Tycoon City: New York and follow-on projects.

Alternatives considered:
  • Licensed middleware
  • One-off engine for Monopoly Tycoon only

Tech Stack

  • C++98
  • Direct3D
  • Lua
  • Proprietary engine

Result & Impact

  • Lead Programmer
    Credit
  • 2001
    Released

Shipped a well-regarded competitive tycoon sim cited in press and player communities as a distinctive take on both Monopoly and city builders. Established patterns I still draw on today — irregular urban layouts, rival businesses, and readable economic feedback.

Learnings

  • Tycoon games live or die on whether players can read cause and effect in the economy
  • Real-time rival AI needs simpler models than you want, tested earlier than you expect
  • Licensed IP works when the simulation stands on its own, not when it chases the license literally

Context

Monopoly Tycoon sits in a gap the market still has not really filled: a competitive city tycoon with rival businesses, not just sandbox building. That is the thread from Deep Red through to the tycoon sim I am building now.