TL;DR
Many games require complex computations that can detract from the enjoyment of gameplay. A pen-and-paper game called Sortis was developed, utilizing a linear feedback shift register (LFSR) random number generator to create a procedurally generated map.
✦ Why It Matters
Engineers can explore how simple algorithms can enhance gameplay without complex computations.
Key Takeaways
Full Summary
Traditional games often involve intricate calculations that can overwhelm players, especially those seeking a more relaxed experience. Sortis is a unique pen-and-paper game designed to provide a sense of progression and discovery while minimizing computational demands.
It features a grid world with different terrains like water, forest, and mountain, where players build structures and advance their workshop using resources like ore. The game employs a linear feedback shift register (LFSR) random number generator to create a procedurally generated map, allowing for varied gameplay without complex calculations.
Players start with one agent and can build up their empire using simple rules inspired by the browser game OGame, where costs increase exponentially. The game is designed to be engaging yet straightforward, making it suitable for players who want a mental challenge without excessive strain.
This approach could inspire game developers to create more accessible games that rely on simple mechanics.
Related