🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Roguelike Back to Development

Published August 17, 2014
Advertisement
Alright I'm probably coming off like a 3 year old that can't decide; pool or park? Those two comments on the last entry have been stuck in my head this whole time. So much so that I just couldn't commit to another project, even if small and temporary. Instead I've been spending this whole time making small tech demos, testing ideas and trying to get my ideas in order.

I'm still not going to do a rewrite, not completely. There's one big rewrite but it's higher level, and should of been thought of from the get go. A turn system that actually handles speed. Others are a bit more features and refactoring of the games systems. Gases that effect whatever they come into contact with. Every system will be as data driven as possible, moving towards more of an engine than a game.

TURN SYSTEM

The original system was literally turn based. The player takes a turn performing whatever action, then each creature gets a turn. There was no speed variance at all. Everything took just as long as everything else.... one turn. From now on everything from walking one step to attacking, drinking potions, putting on armor, will take different amounts of energy to perform.

Each turn of the simulation will divvy out an amount of energy until the player has enough to perform an action. Then the player can perform an action they can afford or wait and store up more energy. AI creatures are also doing the same during simulation. This way fast characters, or quick actions can be performed before slower creatures and react. A fast swordsman could attack more than once per it's opponents attack.

Once a creature, player or AI, have enough energy to perform an action. They take priority of the simulation until they perform an action or decide to idle, the simulation won't divvy out energy.

CURSES

The main focus one the refactoring is the creature system. A lot of it will be getting split up and with cleaned up interfaces. The old status effects, that handled poison and such over time effects. Is going to be curses now. With a cleaner interface and design.

ENGINE

Several of the system will be scripted/data driven. Making the game more moddable, and quicker for me to edit and design. Creatures, items, and a couple configuration properties are the base plan. The whole system when I'm done.

...AND A LOT MORE

until next time, keep coding. I'll be going into more depth once I got a couple things finished first.
2 likes 0 comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Profile
Author
Advertisement
Advertisement