Roguelike
Rust Roguelike Tutorial - Chapter 46 - Data-Driven Spawning
· ☕ 1 min read
Chapter 46 expands upon the previous Data-Driven work by also making entity spawning driven by your JSON files. So now you can quickly build new monsters, items and props - and decide where they spawn without editing your Rust code.

Rust Roguelike Tutorial - 41 - Other Map Sizes
· ☕ 1 min read
Doors and Corners, that's where they get you. Seriously, doors are a staple of the roguelike and dungeon bashing genres. This chapter will help you place doors, make them openable, and ensure that line-of-sight and movement blocking are enforced correctly for closed doors - and not for open ones.

Rust Roguelike Tutorial - Chapter 40 - Doors
· ☕ 1 min read
Doors and Corners, that's where they get you. Seriously, doors are a staple of the roguelike and dungeon bashing genres. This chapter will help you place doors, make them openable, and ensure that line-of-sight and movement blocking are enforced correctly for closed doors - and not for open ones.

Rust Roguelike Tutorial - Chapter 37 - Fun With Layers
· ☕ 1 min read
The latest chapter in my roguelike tutorial is now live: fun with layers. In previous chapters, we've built a system for applying layered procedural generation, through the builder pattern. This chapter applies these techniques, adds a few new ones, and brings the total number of builder combinations we can apply with what we have to over 2,000!

Rust Roguelike Tutorial - Chapter 36
· ☕ 1 min read
Chapter 36 of the Roguelike Tutorial is live! It focuses on refactoring our map work thus far into a generic builder-based idiom, making it easy to extend map building with more layers in the future.

Rust Roguelike Tutorial - Chapter 35 - Room Vaults
· ☕ 1 min read
You might want to hand-craft certain rooms or features, and have the game sometimes include them in your randomly generated levels. This chapter will help you do just that. It also builds upon the concept of meta-builders - that is builders that take the output of other builders, and improve upon the map.

Rust Roguelike Tutorial - Chapter 34 - Prefabricated Levels and Level Sections
· ☕ 1 min read
Sometimes, you want to add some hand-crafted content into the mix of your level. You might want to use a whole level as a set-piece, and carefully place everything. You might want to include a cool structure on a map. This chapter walks you through designing prefabs, and teaches you to place them as either whole maps or into existing maps.