The Complete Roguelike Tutorial - Intermezzo

Well, as per usual, I got a bit sidetracked. I had some issues with the Rust code and got annoyed with the whole process. So instead of taking a moment to reflect on what was going wrong, I restarted the series but then with Python so I didn't really have…

A Month in the Terminal

I have decided to try and work a month in the terminal, do all what I can on the cli. To do so, I need a replacement for all the tools I use. Fortunatly, Linux has a lot of cli tools to choice from. There are offcourse some obvious choices,…

The Complete Roguelike Tutorial - Week 4

> All posts in this series can be found here [https://drunkturtle.com/tag/the-complete-roguelike-tutorial/] Monsters In week 4 we were working on adding monsters to the game. I like the way working with an ECS makes it easy to add new things to the code, without touching much of what…

The Complete Roguelike Tutorial - Week 3

> All posts in this series can be found here [https://drunkturtle.com/tag/the-complete-roguelike-tutorial/] Field of View My week 3 entry is done. Field of view is something that adds a lot to a game. Specially a roguelike. This part of the Book starts off with a refactor of the…

The Complete Roguelike Tutorial - Week 2

> All posts in this series can be found here [https://drunkturtle.com/tag/the-complete-roguelike-tutorial/] Week 2 is done. The complete code can be found on Github [https://github.com/christiaan-janssen/RogueLikeRust/tree/part-02].…

The Complete Roguelike Tutorial - Week 1

> All posts in this series can be found here [https://drunkturtle.com/tag/the-complete-roguelike-tutorial/] Week 1 is done. The complete code can be found on Github [https://github.com/christiaan-janssen/RogueLikeRust/tree/part-01].…

The Complete Roguelike Tutorial - Week 0

> All posts in this series can be found here [https://drunkturtle.com/tag/the-complete-roguelike-tutorial/] This year /r/roguelikedev [https://www.reddit.com/r/roguelikedev/] is doing the Complete Tutorial again, and I will be joining!  I will be using the Rust tutorial from /u/thebracket [https://www.reddit.com/user/…

Roguelike tutorial - Part 1

Intro This will be a roguelike tutorial based on /r/rouglikedev/ Does The Complete Roguelike Tutorial. Insted of Python and Tcod, I will be using C++ and the olcPixelGameEngine [https://github.com/onelonecoder/olcpixelgameengine]. For those of you who don't know it, the PixelGameEngine is a project from javidx9 a.…