Below you will find pages that utilize the taxonomy term “Gamedev”
Releasing Piskvor Prime: A Five-in-a-Row Game with Personality
Piskvor Prime is an iOS game I developed last month and succesfuly launched on appstore. TestFlight it or support me by buying it here.

The Beginning: Just an AI Engine
Piskvor Prime started as a hobby project — a simple AI engine for five-in-a-row (also known as Piskvorky in Czech). I was experimenting with heuristic-based move selection in minimax and had no intention of turning it into a game but once the AI started playing decent moves, I decided it would be a pity to shelve it.
From Minimax to Monte Carlo Tree Search: Progress Update
From Minimax to MCTS
Over the past few days, I’ve made some big strides in improving the AI for my game. What started as a basic minimax + heuristic approach quickly ran into limitations. The game is timing-sensitive and rewards long-term planning — not something minimax handles easily with shallow depth and static evaluations.
So, I switched gears and started working on a Monte Carlo Tree Search (MCTS) implementation — and I’m really happy with the progress.