Essays about game development, thinking and books

Preparing a business plan for a game on Steam

Earning millions is easier than ever. I'll tell you how :-D

Earning millions is easier than ever. I'll tell you how :-D

When I posted my final presentation [ru] (slides) for World Builders 2023 (my posts, site), I promised to tell how I made a roadmap and a financial model for the game. So, here they are.

At the end of this post, we will have:

  • A brief strategy of our company: what we do, how, and why.
  • A table with our beacons — successful games roughly similar to what we want to make. Similar in gameplay, team size, budget, etc.
  • A composition of the team we need to assemble.
  • A roadmap — a development plan for our game.
  • An outline of our marketing strategy.
  • A financial model — how much we will spend, how much we will earn.
  • A large number of my caveats throughout the post.
  • Jokes and I hope witty remarks.

All the final documents can be found here.

Read more

Dungeon generation — from simple to complex

What we should get.

What we should get.

This is a translation of a post from 2020

This is a step-by-step guide to generating dungeons in Python. If you are not a programmer, you may be interested in reading how to design a dungeon [ru].

I spent a few evenings testing the idea of generating space bases.. The space base didn't work out, but the result looks like a good dungeon. Since I went from simple to complex and didn't use rocket science, I converted the code into a tutorial on generating dungeons in Python.

By the end of this tutorial, we will have a dungeon generator with the following features:

  • The rooms will be connected by corridors.
  • The dungeon will have the shape of a tree. Adding cycles will be elementary, but I'll leave it as homework.
  • The number of rooms, their size, and the "branching level" will be configurable.
  • The dungeon will be placed on a grid and consist of square cells.

The entire code can be found on github.

There won't be any code in the post — all the approaches used can be easily described in words. At least, I think so.

Each development stage has a corresponding tag in the repository, containing the code at the end of the stage.

The aim of this tutorial is not only to teach how to generate dungeons but to demonstrate that seemingly complex tasks can be simple when properly broken down into subtasks.

Read more