this post was submitted on 15 Oct 2024
62 points (98.4% liked)

Game Development

3366 readers
78 users here now

Welcome to the game development community! This is a place to talk about and post anything related to the field of game development.

Community Wiki

founded 1 year ago
MODERATORS
 

This was recently posted to discord:

The Original Rogue Legacy Source Code Now Available

Greetings @everyone!

It's been more than 10 years since we released a game that would alter the trajectory of our lives forever. That game, of course, was the original Rogue Legacy. In the span of a single night we went from struggling indie devs to building a solid, stable career making video games; a path that would carry on for more than a decade. Since then we've released two more titles and have reached millions of players worldwide, and it is a journey we hope to continue far into the future.

So, to give back to the community that has gifted us so much, and in the pursuit of sharing knowledge, today we are officially releasing the full source code to Rogue Legacy 1. This may only interest a select few people, but we hope by public sourcing the game that started it all for us, we can keep its spirit alive and help budding developers curious to know what it took for us to get started (and to see what you can get away with :p).

The full source is available at the GitHub link below:

https://github.com/flibitijibibo/RogueLegacy1/

A lifetime of gratitude goes out to Ethan Lee for setting up the public source code repository, and helping us since all the way back to the original Mac and Linux release of Rogue Legacy.

you are viewing a single comment's thread
view the rest of the comments
[–] briggsyj 1 points 8 hours ago
       #region MapInputs
        private const int DEBUG_INPUT_SWAPWEAPON = 0;
        private const int DEBUG_INPUT_GIVEMANA = 1;
        private const int DEBUG_INPUT_GIVEHEALTH = 2;
        private const int DEBUG_INPUT_LEVELUP_STRENGTH = 3;
        private const int DEBUG_INPUT_LEVELUP_HEALTH = 4;
        private const int DEBUG_INPUT_LEVELUP_ENDURANCE = 5;
        private const int DEBUG_INPUT_LEVELUP_EQUIPLOAD = 6;
        private const int DEBUG_INPUT_TRAITSCREEN = 7;
        private const int DEBUG_UNLOCK_ALL_BLUEPRINTS = 8;
        private const int DEBUG_PURCHASE_ALL_BLUEPRINTS = 9;

wonder why they didn't go with some enums