August 12, 2021

[Progress Update] Charms

As I continue development over the summer, I find blog posts to be a task on my back burner, but I will update today on the major systems I have finished over the last few months. I have worked on many improvements for the combat system, including a major rebalancing, new enemies, and lots of quality of life updates. However, the main system I developed was the inventory. In particular, equipable charms that modify player stats.

Overview

The inventory in Daughter of Dreams is fairly similar to the inventory system I developed for the real-time combat prototype. In this case, I opted to include multiple pages for items of different types. This allows the item information (lore and affected stats) to be shown at the same time as selecting items since the item slots take up less screen space.

Note: I am showcasing the inventory with the new (WIP) Temple of Light and Enchanted Grove tilesets to add some variety. I'll write some posts about those areas once they are completely done!

Selecting items and switching pages in the inventory.
Selecting Items: Quest Items, Materials, Consumables, and Charms

The player can scroll through each page in the inventory and select items with the cursor. A selected item showcases its name and description below the inventory box. The right side shows the currently selected character's HP, MP, AP, and other combat stats. When selecting a charm the stat list will preview the stats that would be modified by equipping that charm.

Item Types

Each page in the inventory contains a different type of item. I intend for the inventory to have infinite space as well, so in the future additional pages will be inserted if a particular type exceeds the limit of a single page. For now, there are a couple of item types used to keep them organized.
  • Quest Items: These are story-related items such as Sonya's Sorrite Spear. Some of these will be only for lore purposes, but others may have practical uses on the overworld, or relate to particular abilities unlocked by the characters as part of the story progression.
  • Materials: These are the "useless" items that are dropped by mobs or loot chests. Like Globber slime and bits of string. They will be able to be sold to merchants or sometimes traded.
  • Consumables: These are potions or healing items that will be able to be used during combat, to recover HP or apply status effects. Consumable items aren't implemented yet, they will be in the next alpha-version as they are somewhat complicated to develop.
  • Charms: These are equipped to characters to change their combat stats, such as increasing their attack or defense, or providing unique passive bonuses. This is an essential component of the combat system, as charms provide customization and strategic diversity.
The gelatinous goo left behind by a Green Globber. Pretty gross, but it could be useful?
Selected the Green Glob under Materials

General Charms

Charms modify the stats and abilities of equipped characters, similar to badges from Paper Mario or charms from Hollow Knight. You can change them around between battles to equip them with different characters, and you are only limited by the number of charm slots you have. The goal of charms in Daughter of Dreams is to allow players to invent their own strategies and create different ways of playing. It is also a method of making the player stronger over time, by providing them with more charms and thus more powerful options during combat. There are different types of charms that work with slightly different mechanics.
  • Personal Charms: These are the most common type of charms. They simply modify the stats of a single character. For example, Pendant of Light grants +1 Light Damage and -1 Magical Resistance. Others might grant a passive bonus instead, such as Primed Hourglass which causes the user to start the battle with Charge (a status effect) for one turn.
  • Aura Charms: These provide a passive bonus to the entire party, such as increased treasure drop-chance. I have not fully implemented Aura Charms yet.
  • Life Charms: These can be equipped to a single character and provide both entirely unique passive bonuses, and permanent upgrades such as maximum HP or MP. I will cover these in more detail in the next section.
An eternally flowing hourglass which contains unfathomable energy.
Selected the Primed Hourglass under Charms

When selecting a charm in the inventory, the stat modification offered is listed on the stats page, allowing you to view your current stats and what would change if you equipped or removed a certain charm. Nearly every value referenced during combat is stored as a combat stat, making it trivial for me to implement a charm that modifies anything I want, including movement speed, max HP, damage, armor, attack range, ability cost, etcetera. For passive abilities, I add a new combat status that represents that specific bonus, so that the effect is reflected in the stat preview.

-1 Magical Resistance / +1 Light Damage
Selected the Pendant of Light under Charms

Life Charms

One of the unique mechanics with the charm system in Daughter of Dreams is Life Charms. These are a replacement for traditional XP leveling systems that are usually part of RPGs. In Daughter of Dreams, you have Life Charms which can be equipped for your chosen party, and find consumable items that can be used to upgrade the Life Charms to provide permanent bonuses.
  • Each character may have at most one Life Charm equipped at any given time.
  • Any Life Charm may be equipped for any character.
  • All Life Charms provide a completely unique passive bonus.
  • Life Charms can be upgraded to provide increased max HP, MP, and AP.
On kill, gain charge.
Blessing of Ta'Reya Life Charm Granting +10 HP and +1 AP

Life Charms are designed to provide additional strategic depth with how you increase the strength of your characters, by allowing Life Charms to be exchanged between characters. Additionally, Life Charms address a few issues I find with traditional character-specific leveling systems.

  • Underused or new party members can be under-leveled compared to the rest. In this case, a new character can just be given your previously leveled Life Charm and they are raring to go.
  • You can use Life Charms to create strategies around specific upgrades instead of every decision being permanent. For instance, you can make a Life Charm that grants lots of extra MP or a different one that grants extra HP, and use whichever makes more sense depending on the circumstances or for the specific character.
  • This ties leveling up to collecting items instead of gaining XP, which means I can pace out the distribution of upgrades more deliberately, and there is no need to grind killing enemies for XP. (That has a place, don't get me wrong, but I don't want it in this particular game).
  • I may introduce more Life Charms as you play longer, which can provide more risky play or advanced strategies. A less experienced player can stick with their old Life Charms that have already been invested in.
Regenerate MP at the start of each turn.
Holy Grimoire Life Charm Regenerated MP Each Turn

Stray Thoughts

There are a few other aspects of the inventory which I cannot cover in detail. You can sort your items, there are item rarities and drop tables, selling and purchasing items... Many things are either planned or implemented internally already and I'm making rapid progress.

My next steps include actually developing the start of the overworld exploration, which you can see by the WIP tilesets in the screenshots for this post. I'm ecstatic to share my progress in this regard. I'm proud of the combat system, but I think my plans for the overworld are what will make this game truly original. So yeah, I can't wait to share about that. Thanks for reading!

June 23, 2021

[Progress Update] Combat Prototype

Last December I made a major change to the design of Daughter of Dreams as I pivoted from real-time combat to turn-based combat. Over the last few months, I worked to develop a prototype turn-based combat system. A little bit ago, I finished the entire system and produced a version that I shared with my internal alpha-testers. This post is a wrap-up on the turn-based prototype. I will document the progress I've made so far, and share what improvements I plan to make next.

For this progress update, I created a commentated video that showcases the entire combat system. If you are not familiar with the project thus far, I recommend skimming through it a bit. It is easiest to understand how the game works when it is shown in actual gameplay.

There are a few primary systems implemented in this version:

  • Performing actions and attacks on the turn-based grid-based battlefield.
  • Damage handling, modifiable combat stats, and status effects.
  • Simple enemy AI and a few basic enemies.

There are also two characters implemented, with a full set of unique combat abilities each. There are posts covering their abilities in detail here [Sonya] [Lydia]. Their abilities are not finalized (I have major changes already planned). However, what I have so far does showcase the overall idea I have for both of their characters, and how I plan to design abilities generally.

Conclusions

This is actually the second prototype I developed, the first one being a real-time combat engine that I developed last summer. That one ended up feeling stale, and unoriginal. I wanted to do something more interesting and within my skillset, so I pivoted to turn-based combat. I talked about this in-depth in a previous blog post.

Overall, I am extremely pleased with this new system. From the alpha-testers gameplay, I saw that they were all able to quickly understand the combat system (even without a tutorial). Furthermore, I was able to develop some mechanics that I have genuinely not seen in any other games. Fire Emblem (if you only had gambit attacks) and the upcoming Project Triangle Strategy are the closest direct comparisons, but I am also drawing inspiration from Chrono Trigger, Paper Mario, and traditional JRPGs. I really believe that what I have has the foundation to be something unique and incredible. I will be moving forward with this prototype to develop the full game, and I am excited to see what I can do with this game!

Future Development

My next update will be focusing on two things. (1) Polishing the combat system, and (2) adding the inventory and equipable charms, which will be a foundational mechanic for creating custom strategies. The specific changes I have planned address each of these points:
  • The combat system needs to be more readable and provide more information to the player. I will be adding context-sensitive UI and more information about attack types and enemy weaknesses. I will also be streamlining the controls, and updating the UI.
  • I will be adding charms that can be equipped to modify a character's combat stats. Along with this, I need a way to view the current stats for each player and show how different stats will affect their abilities during combat. This mechanic is similar to charms from Hollow Knight and badges from Paper Mario and I think it's really important to encourage strategic play.
  • I will be updating the enemy AI to be more nuanced and easier to understand. Due to the complex nature of attacks, it is currently hard to tell where on the battlefield is safe or in range of enemies. I will try to simplify the design of enemies and provide some telegraphed indicators of what the enemies will try to do.
  • The current abilities are not well balanced. Sonya in particular is unable to effectively synergize with her abilities. I have plans to refactor all of the combat abilities and damage values, including some significant adjustments to the AP system. I don't think this will be very hard fortunately since the foundational mechanics are already in place.

Stray Thoughts

It has been a long while since I wrote a blog post. This alpha-version was actually finished a while ago. At one point I wanted to write once per month, but other things took priority. Now I am into summer break, however, and I believe that development for Daughter of Dreams will be pretty consistent for the next few months. Stay tuned for more updates on this project, and some of the other things I am working on!

April 04, 2021

[Design] Lydia, Prophet of Ta'Reya

I have been making tons of progress on Daughter of Dreams. I have completely finished the abilities for both Sonya and Lydia, and I am close to having a fully functional combat prototype which will be sent to my alpha-testers to get early feedback. In the meantime, I am writing this post to showcase the combat abilities for Lydia Derden, the Prophet of Ta'Reya. She was sent by Ta'Reya to be a guide and friend for Sonya, and was trained to use magic.

Lydia is the primary spell-caster of the team, focusing on ice and healing magic. Her primary resource is Magic Points (MP). All characters use MP to perform magical attacks, but Lydia has the unique ability to spend extra MP to make her magical attacks more powerful.

The Silver Chakram

Lydia's primary weapon is her Silver Chakram. It allows her to strike enemies at a distance, as well as channel her magic (due to silver being a highly enchantable metal).

Lydia throws the Chakram to the right, hitting a row of Green Globbers.
Using Chakram Cast to damage a row of Green Globbers

Chakram Cast: This is Lydia's base attack. It casts the Chakram in a straight line from its current position, and will deal damage to all enemies in a line.

Lydia throws the Chakram around in a rectangle pattern.
Throwing the Chakram around in a loop

The Chakram does not always have to return directly to Lydia. Instead, it operates independently, and it will stay floating in place until the next time it is moved. If it returns to Lydia's position, she will catch it and the Chakram is removed from the battlefield until the next time it is used.

Special Attacks

Lydia's special attacks rely on using the Silver Chakram to channel magical attacks, and these abilities can be charged with extra MP to make them far more powerful.

Lydia throws the Chakram damaging and freezing a row of Green Globbers.
Using Freezing Cast to damage and freeze two Green Globbers

Freezing Cast: This attack performs a regular Chakram Cast with an additionally freezing effect. When it is charged, the effect will last one turn longer for each MP spent, up to a maximum of six turns. Frozen enemies cannot act until the effect wears off. If they are hit, they will take extra damage and the freeze effect will cancel.

Lydia throws the Chakram, then charges an AOE Radial Cast to damage several Green Globbers.
Using Radial Cast to damage several Green Globbers

Radial Cast: The Radial Cast is a powerful area of effect ability (AOE). It deals damage in a radius around the Chakram. Extra MP will increase the radius and damage of the attack. This ability also shows the importance of positioning the Chakram, especially as these attacks deal damage to allies.

Ordered Magic

Hallowed Frost: This is one of Lydia's most powerful attacks. It is a huge meteor of enchanted ice that damages and freezes enemies, while simultaneously healing allies. However, once it is cast, it will not strike until the next turn, so you will need to plan ahead to use it properly. This spell can operate both as a high damage attack, and a way for Lydia to support her melee allies from a distance.

Lydia uses Hallowed Frost to strike several enemies and heal Sonya.
Using Hallowed Frost to damage enemies and heal Sonya

There will be many attacks that operate with a delay like this. It is one way I hope to encourage strategic play as well as make it possible to use avoid damage from enemy attacks.

Lydia casts Sanctified Aura to restore MP and grant Immunity to the entire party.
Using Sanctified Aura to restore MP and grant Immunity

Sanctified Aura: Sanctified Aura is a support spell which restores MP to allies in radius. It also grants the Immunity status effect, preventing allies from being inflicted by harmful status effects. This is one of the only abilities that can passively recover MP, but it costs a lot of Action Points (AP) so it is most effective when Lydia can grant MP to the full party at once.

Chaotic Magic

In Daughter of Dreams most magic is classified as either Ordered or Chaotic. As a mechanic, this simply allows me to split the spell abilities into more than one tab because there will eventually be a lot of them. There are lore implications, but I will not get into them too much here. I should note though, that Chaotic in this case does not mean evil, it is only a classification of how the spell operates.

Lydia uses Unstable Transference to move a Green Globber to the left and herself to the right.
Using Unstable Transference to move an enemy and Lydia to new locations

Unstable Transference: This is a utility spell that allows Lydia to teleport any entity anywhere on the battlefield to another location. This includes herself, allies, and enemies. Unstable Transference may also be charged with MP to increase the distance of the teleport (but the target itself may be at any range).

Stray Thoughts

Overall, I am extremely pleased with Lydia's design. Both the movement of the Silver Chakram and her unique use of MP make her feel very different than Sonya and I can see a lot of potential for strategic depth as her abilities synergize with her allies. Hopefully it will translate well to real gameplay (and I will find out soon, as the alpha-testers get their hands on the combat prototype).

Also I'd like to mention a few adjustments to Sonya's design since the last time I wrote. Primarily, her bonus AP ability was changed to a Charge status effect instead of a custom ability. Charge grants extra AP to entities at the start of their turn, as well as increasing the damage done by Light Elemental attacks. This means Sonya can not only grant extra AP to her allies as well, but she also gains increased damage for all her Light Elemental primary attacks when she has Charge. This approach felt more consistent with the rest of the game and enabled extra synergies.

January 26, 2021

[Design] Sonya, Chosen Luminary

As I move forward with the Daughter of Dreams combat prototype, I am working to develop each characters' combat abilities to be unique and synergistic. I wrote previously about the story and personality of each character, and their combat abilities will reflect this design as well. I want every character to have an entirely different approach to combat, using a unique style of weapon attacks as well as magic. Additionally, each character will have powerful synergies both with their own set of abilities, and in tandem with their allies to allow for elaborate strategies, setups, and awesome powerful attacks.

In this post, I will do a deeper analysis of Sonya, the Chosen Luminary. I will show each of her combat abilities, and explain how they are intended to synergize with the design of the character. I will also cover more details about Sonya's story specifically, and some of the ideas I have for the combat system overall. In the future I hope to write a similar post for each of the characters as well.

The Sorrite Spear

The first distinction between each character will be their primary weapon. Most characters will have basic attacks they can always perform using their signature weapons. Lydia fights with a chakram, Duran has a knife, Angela has a bow. Sonya carries her legendary Sorrite Spear, a glowing spear of light elemental magic, made of Sorrite, a magically enchanted metal.

Sorrite Strike and Sorrite Slash Attacks
In combat, her spear functions as a primary melee (close-ranged) attack, though with a bit more range than other characters due to its length. Sonya herself is a warrior, so her melee attacks are powerful, and she will usually serve a role at the forefront of combat, taking damage so that other characters may act from a distance. Her basic attacks are a melee strike (which hits in a straight line) and a slash, which does more area damage around her.

Action Points

The actions that the player can take during their turn of combat is limited primarily by their Action Points (AP). Different abilities take different amounts of AP, and when the player has used all of their AP for that turn, the phase ends and the enemies get a chance to attack. Action points are shared across the entire party, so the player can choose how to spend their AP. The total AP refreshes at the start of each player phase. Magic Points (MP) is also used for magical attacks, and are refilled in other ways.

Using Charged Slash consumes 2 AP and 1 MP

All the characters use AP to perform their abilities, but it is different for Sonya. One approach I am taking to make each character unique is to give them a different resource to manage. For Sonya, this resource is AP. Sonya's actions not only use AP, but they manipulate total AP, grant bonus AP, and consume extra AP to perform more powerful attacks and spells. Eventually, Lydia's abilities will depend on magic, while Duran will use abilities that consume his own health.

Special Attacks

Special attacks are generally more powerful variants of the character's primary weapon attack. For Sonya, her special attacks are designed to help her gain extra AP, and use that extra AP to deal extra damage.

Using Dynamic Strike to gain +1 AP

Dynamic Strike: This attack is both a more powerful spear strike, and a method to gain extra AP to synergize with Sonya's AP based attacks. The attack deals more damage, and if it kills an enemy, the party will gain +1 AP at the start of the next turn. It is a high-damage finishing move that can chain into more powerful attacks the next turn.

Using Charged Slash with 3 AP

Charged Slash: This attack is a wider slash attack that deals damage proportional to the party's total AP when it is used. In this case, the AP is three, so Charged Slash deals (x2) and does six damage. With this attack, Sonya might increase her AP with other abilities, then follow up with a Charged Slash to deal massive damage.

I debated for a while about how to implement the bonus AP ability for Sonya's attacks. I decided on a delay like this, so that the bonus AP applies on the next turn. This was for a few reasons. First, this method means that no single turn will be able to last forever, since Sonya can only increase AP for the next turn. Additionally, by delaying the bonus AP usage, the player must think further ahead to effectively use their AP, which encourages planning and cool strategy.

Ordered Magic

Somnar is a potently magical world. There is no isolated mage class in Daughter of Dreams, rather everyone has their own assortment of magic abilities to take advantage of. Sonya's magic plays into her strength as a warrior, enabling her to power her attacks with bonus AP, and reduce the damage she takes from physical attacks.

Using Dynamic Deference and following up with Charged Slash

Dynamic Deference: This spell consumes a large amount of AP initially, in exchange for deferring all of it to the next turn instead. This is a more simple ability, but I hope it will lead to interesting decision making. It allows Sonya to effectively sacrifice her turn in exchange for much more power in the next turn. In this case she idles so the Green Globber will move within range, then follows up with a massive twelve damage Charged Slash.

Also, since AP is shared for the entire party, any bonus AP abilities, such as Dynamic Deference, will complement the other characters' abilities also, by giving them an opportunity to perform their own extra powerful sequence of attacks.

Using Stalwart Focus to avoid the second Green Globber attack

Stalwart Focus: Finally, Sonya can resist physical damage using Stalwart Focus. This spell applies a Shield effect proportional to the party's total AP. The next attack that would deal physical damage to Sonya will be reduced by the value of the Shield effect. In this example, Sonya gains +3 Shield, completely negating the second attack by the Green Globber which deals only two damage.

Part of the philosophy behind this ability is the idea that combat should always be possible without taking damage. In addition to the ability for characters to move to safe positions to avoid attacks, abilities like Stalwart Focus will allow for alternative strategies to reduce or avoid damage. A new player may still take damage, and heal with items, but I want an experienced player to be able to strategize to complete fights without losing health at all.

Stray Thoughts

I hope this gives a good representation of my ideas behind Sonya's character and combat design, as well as more information about the combat system generally. I look forward to sharing more about the other characters as well. Duran in particular will be very interesting to design. Also, bear in mind as always that this is only showing the initial prototype of Daughter of Dreams and things are subject to change and grow over time.

December 28, 2020

[Design] Character Introductions

What I find most inspiring about creativity is the ability to craft a fantasy world, beautiful, new, magical, and completely alien. I have written before about the world-building in Daughter of Dreams and how I wish Somnar to be something different and unique. I consider this game to be a work of epic fantasy, and the story-telling is one of my key design pillars going into this project. The story may not be realized in the game itself until much later in the process, but I have begun designing characters and writing snippets of dialogue from the start. Today I want to introduce those characters. They are merely concepts, so they may change throughout development, but I think their essence will remain the same, only refined.


Sonya is the Hero of Light, who once lead the charge against the City of Shadow, and drove away the enemy, in an event known as the Great Victory. Now, she has been summoned from the ancient past to defend Somnar once again from the dark sorcerer Charon. She is a disciple and soldier of Ta'Reya, and fights with a Sorrite spear destined to defeat the darkness.


Lydia is the Prophet of Light, sent to aid Sonya in her mission. Lydia is an ardent follower of Ta'Reya, and was chosen for her kindness, sincerity, and loyalty. However, the weight of responsibility makes her uncertain, and the grim necessities of war lead her to question even her most deeply held beliefs. But she must persevere in the face of darkness, lest Charon succeed in his nefarious goals.



Duran is an outcast, unwanted by the followers of Light and the common-folk alike. He suffers from a Cinder addiction, a substance which leaves him nonfunctional on the best of days. Furthermore, he bears a dangerous curse, one more terrifying in its power than even the dark magic of Charon. He joins Sonya in an effort to finally commit himself to something valuable, and perhaps free himself as well.




Angela and her familiar, a Void Owl named Kree, herald from a distant land. Angela is an investigative historian, hoping to uncover the lost legends of Somnar, the truth of what happened in the Great Victory. Among those tales, she hopes to find evidence of her ancestors, whom she believes to have originated from the heart of Somnar, yet fled when the City of Shadows fell.




Charon, the dark sorcerer, and the last witness... He has returned to wreck his revenge of the followers of Light, for they once vanquished him generations ago with the aid of Ta'Reya. But they have weakened since, and now he hopes to reverse the flow of time and return the City of Shadow to its former glory. Yet he will find his efforts stymied by an anomaly--Sonya the Hero of Light, human and yet immutable and nearly invulnerable to magical attacks.





Ta'Reya, the God of Light, is the beacon of hope for the followers of Light. The legends say that when the people prayed, Ta'Reya set fire to the Moon of Night, and she is the reason that Somnar has two suns, and will never again to be shrouded in the sinister dark of night. Now Ta'Reya acts again to save Somnar, bringing the Hero of Light back in the hour of need, so that she may vanquish Charon and prevent night from falling again, forever.






Sai'Ra is the God of Pain, among the most dangerous beings to walk the Void. He prefers to work indirectly, and frequently offers his power to mortals seeking great power. He extracts only the smallest price: their eternal pain and anguish. His reach is vast, and his motived are arcane and unknowable... Duran is one who bears the curse of Sai'Ra, and the God of Pain is not quite finished with him yet.





The story throughout Daughter of Dreams will be character driven, a necessity for a procedurally generated game, as it is much harder to tell a linear plot. The interactions between characters will be essential, and I hope to create a flexible system where the various characters may leave or rejoin the current party depending on events in the story. Their unique powers will be expanded upon as I work on the combat prototype, and the specifics of the plot are currently being worked out behind-the-scenes.

What I have presented here is only a brief introduction to the characters. This is an ambitious project, and there is much more depth to the characters that is not revealed in this post. I can't wait to show more details of Daughter of Dreams as I continue to make progress. There may not be many more story information though, as I want to keep most things spoiler-free. Finally, I'd like to thank my brother, who created the concept art used in this post, and will be doing most of the character art for the game itself.

December 08, 2020

[Programming Notes] Turn-Based Combat System

This week, I implemented the core systems of the new turn-based combat system for Daughter of Dreams. This is one of the most technically complicated pieces of code I've written, though it may not seem like it. The challenging part for me was making it as simple as it is. I believe what I have will be powerful and flexible enough to expand easily to support the entire combat system (and probably in-game cutscenes as well, though GML 2.3 sequences may still be a better option). Abilities are modular, and can be assigned to any entity (player characters and enemies), and the combat engine can transition between states fluidly, as well as undo actions.

What It Looks Like

So far, the combat prototype has two main operations. A character can be selected from any number of playable characters, and they can be given an order to move according to basic grid-based movement. These are merely the simple actions I implemented to test the system. As the game expands, I will add new actions that will be supported by the foundational code that makes up the combat system.

Two playable characters with grid-based movement.

System Overview

The combat system is currently comprised of two primary components.
- A finite state queue of functions which return true or false.
- An index of actions assigned to combat entities (playable characters and enemies).

The logic for the finite state function queue is as follows:
1) Run the current function when the update method is called. (Usually in the step event).
2) If the function returns true, progress the queue to the next function.

Next, an action is defined globally, and can be assigned by reference ID to any entity.
- The action includes all the data required to display the action on the UI.
- The action execute method can assign required values for the entities.
- The action can add functions to the combat function queue to define the logic of the action.

Class definitions shows the essential attributes and operations of each component.


System Implementation

With these components in place, the logic for starting a new combat scenario is as simple as adding each step of the combat cycle to the combat function queue. The logic of each step is handled internally, moving to the next state once that function returns true.


Each step (combat_start, combat_player, etcetera) can divert from the primary cycle by inserting more functions in the combat function queue at its own position. For example, the player phase will allow the player to choose actions for their characters. When an action is chosen, the associated functions are added to the combat function queue.


The final combat cycle can be represented with this flowchart. The primary combat cycle is the Start > Player Phase > Enemy Phase > End/Restart. Each player or enemy action diverts the primary cycle by inserting other phases into the combat function queue. Furthermore, actions could be canceled at certain steps, by instead inserting the previous phase. (For example: with Choose Attack, on "confirm" input, insert Choose Target, but on "cancel" input, insert Player Phase again).


System Pros and Cons

This method is powerful because it is easy to transition from each state to any other state, just by appending the next associated function. It handles the turn-based aspect of the combat with the simple logic of the function queue. Each state is handled in order, one at a time. Actions are modular, so they can be assigned to and used by any entity, instead of programming every ability for each entity.

The downside of this system is that at the moment, the function queue cannot accept parameters. Every function used for combat abilities must return true or false, and be designed to run every time the function queue update method is called. If additional variables are needed (such as timers, or damage values), they must be declared outside of the scope of the function. It is possible I will expand the function queue to use parameters as well, but it will complicate the system.

Additionally, while actions are modular, they also require more code this way than they would if each was more specialized. The move action as it stands uses four separate functions (initialization, player input, drawing, and execution). However I believe the flexibility outweighs this complication.

Stray Thoughts

In the future, I hope to regularly post programming notes to cover the more interesting systems that I develop for Daughter of Dreams. I am learning a lot, and I hope if I share what I've been doing that others might find it useful too. Also, if anyone knows of useful articles or posts covering similar topics, please let me know and I will include them in the resources section.

Resources



December 02, 2020

[Progress Update] New Ideas and Turn-based Combat

It has been a long time since I wrote a blog post. Over the summer I had been working on Daughter of Dreams significantly, but unfortunately, most of my designs ended up not working out. Considering the start of a new quarter at college, which was an especially busy quarter for me, I decided back in September to take a break from Daughter of Dreams until I had significant free time again. This has turned out to be a really good decision, and the ideas I had during the summer have been maturing during my break. What I have now is much more solid, so I am excited to now begin in earnest with the development of Daughter of Dreams, as the quarter is over and I have the entire month of December to focus and get some game development done.

I'd like to start this new phase of development with a new blog post covering the most significant changes to my plans and designs. My goal for the month of December is to get a fully working prototype of the combat system into the hands of my alpha-testers. I've been working on character design and story as well, but those are backburner until I have a game engine running.

Turn-based Combat

The first major change to my design is to develop a turn-based combat system. This deviates from the common design of a Zelda-like, which usually has real-time action combat. However, I do not think this is a requirement, as I believe a Zelda-like depends a lot more on key item progression.

The combat in Daughter of Dreams specifically is not fully designed yet. But there are a few features I am considering. I will expand this as I develop the prototype.
  • I will use small numbers for combat values, like the way it is done in the classic Paper Mario games. This allows for a more strategic type of turn-based combat, compared to large number systems, as the player can predict exactly how much damage their attack will do and which strategy will be most effective.
  • Combat will be positional, like a tactical RPG. I am thinking that the combat will take place on a grid, and attacks will target particular cells in the grid. I believe this will create a unique element to the combat, and allow me to design abilities that require more strategy than simply which will do the most damage.
There are several reasons that I decided to shift to a turn-based combat system. A turn-based combat system is much more theoretical than real-time. I mean that the enjoyment of turn-based combat depends less on the art and animation, and more on the pure design and balance. This plays into my strengths, as I am primarily a designer and programmer, and not an artist. Additionally, a turn-based system better supports multiple characters being present, as they become members of the combat party. This will help with the story-telling of the game, which I want to be a major focus.

Story Structure

I have written previously about the world-building of Somnar in Daughter of Dreams and I believe those elements will mostly remain the same. I have not yet shared many details of the plot itself, but I would like to write about a few ways that the new combat system will allow me to tell a more engaging story.
  • The story will depend on many different characters joining the party. This allows me to explore the interactions between characters, have character development, and create conflict through their interactions. Before, I felt restrained to having the main character lead the story on their own, with others becoming background characters limited to specific interactions.
  • Characters will maintain their progress between cycles. Daughter of Dreams has always been planned to be procedurally generated, where the main story takes place over multiple cycles. My plan is for character progress to save between cycles. This includes character development and combat abilities and the experience they have gained. With the new design for combat, there can be a sense of progression that is earned over time, through many cycles.

Dungeon Design

While I am shifting to a more RPG style turn-based combat system, I still want to preserve the Spirit of Adventure that is key to Zelda-like games. I have not considered this aspect very much yet, but I do plan for there to still be procedurally generated dungeons, though the puzzles may depend more on unique dungeon-specific mechanics than key item progression. There is also an opportunity to allow particular characters certain abilities in the overworld (outside of combat), which I will explore as I develop the prototype. Overworld and dungeon exploration, as well as puzzle-solving, are still key design pillars.

Stray Thoughts

This is just a summary overview of some of the ideas I have considered during my break over the past few months. I will hopefully expand more on particular elements once I have more design done on paper. I plan to write several more blog posts soon, covering more about Daughter of Dreams and a few other topics. Finally, my priority now is to create the combat prototype. Stay tuned for updates!