I worked on Saga, a village management sim from August to October 2024. It’s being developed in Unreal Engine 5, and the team behind it is CityOfGamers.
This was contract work through Full Sail University’s Runway program, and I wasn’t quite sure what I was going into besides a project in Unreal Engine. I am so glad that received the opportunity, as it let me work on some really cool systems, and work on aspects that I hadn’t worked on before, which is always a plus.
To start with, let me clarify that there are aspects I can’t talk about, as is common with most games. I can generally talk about what I worked on within the contract period, but I can’t talk about code, or what is planned for the future; (unfortunate, because some of my work did reference that future content).
My main focus for Saga was making the health and healing systems. I did other work – changing how the initial spawn works, improving the framework for some parts of the code (that I can’t talk about), and importing and implementing art assets – but my main focus was how health works in the game.
How health was represented was largely up to me, whether it was shown as a progress bar, number/number, or something else entirely. I went with using numbers. They are visible, easy to read at a glance and provide all the information a player needs to make informed decisions.
Going with [current health] / [max health] could get messy since both numbers are floats, so I made sure to convert them to integers first. This did have the effect of making the healing process less transparent, as players won’t be able to see the decimal numbers increasing over time. However, villagers are small, and the player can zoom out, making the health display too long with floats could hide other villagers and information, especially since there is a brief delay while the numbers are displayed. It seemed prudent to keep the display as simple as possible, knowing there are other options to address health and healing in the game.
I can’t talk about a lot of the future plans, but I will briefly discuss things related to publicly available information. First, you can find the Saga roadmap on the itch page for Saga, here. The Saga demo there is for Saga at the .1 waymark. You can see “Health” is slated for .9. When I made a tech proposal for health it involved referencing the game design doc and the plans for how the game will work and is currently scheduled for development. My initial plan in the proposal involved aspects not currently implemented, so I’m not quite sure how that will be done in the future (but I am looking forward to seeing what if any, aspects of the proposal make it into the game).
What I can talk about is the Healing Hut, a small building that spawns a new “Healer” villager. If other villagers get injured, they can be assigned to the Healing Hut, becoming a “Patient”. Villagers assigned the “Patient” job will move to the Healing Hut. Once they are in range of the Healing Hut, a nearby “Healer” villager will approach them. After a few seconds, the “Patient” villager is healed to full health, and their job is changed to “Idle”, which is the default job. Idle villagers will move towards the town hall and walk around it randomly, waiting to be assigned to a new job.
You can see this in the video I made showcasing my work on Saga.