Project period: 2018 - 2019, for roughly half a year.
My role: Gameplay Programmer.
My contribution:
- EventSystem
- Economy
- Site Interaction
- ToolTip
- Diplomacy
- TimeScaleing
On this page I'll explain how the following Systems work:
-
EventSystem
The Event system which uses a combination of several event related systems to make event pop ups
with a variety of effects.
-
Economy
The system using GameTicks to consume resources over time using the CivManager and the
GameManager.
-
Site Interaction & Diplomacy
The system used to interact with islands and loot sites both in diplomacy and raiding.

NoMansBoat is a civilization management game set in a large islands filled sea. The focus of
the game lies on keeping your civilization alive.
This is mainly done by using trade and other interactions with surrounding islands and loot
sites. The game plays in a top down view both on the players island and the world map.
Besides trade you can also pillage both inhabited and uninhabited islands or build buildings
on your island.
This helps in the short term to relieve the players deficits but it won’t help the players
civilization through the late game.
The biggest problem the player will have is going to be the large influx of people arriving at
their island.
This causes an ever increasing need for food.
Another factor which affects both the game and the players actions are events.
These events can either give, take or both take and give at the same time.
They mainly give or take resources, but you can also lose or gain stability to them.
Some events also have special effects like ending the game.
The goal of the game is to survive through the main event chain without being banished by
your people.
The EventSystem uses The EventManager, ScriptableEvents,EventChain and the SpecialEvents
script.
The system Starts by creating an Event template.
These templates are scriptable objects derived from the ScriptableEvents class.
In these events you can add the main flavor text, the amount of options/buttons you want, the
effects of every option and the flavor text for the different option buttons.
Once created, a scriptable event can be assigned to The EventManager.
The EventManager uses the assigned events through the TriggerRandomEvent function.
This function is subscribed to a delegate which gets triggered every in game day.
The function itself uses an if statement with a randomized value to decide if an event actually gets
triggered or not.
The EventManager can instead of a normal event also trigger the next step of an event chain.
This will pop up as any normal event but will later pop up again with the next part of the
story/chain.
By hovering over one of the events option buttons a popup window will appear with information
about the effects of clicking the button.
This window will follow the mouse cursor as long as the cursor is above a button.
If the player clicks the button the shown effects will be triggered.
These effects can remove or add resources and stability.
The effects of an event button can also trigger a function.
This is simply done using a integer value on a switch case.
This switch has several cases which all trigger their related function.
The economy system uses the CivManager and the GameManager.
The player has 4 types of resources at their disposal.
These resources are: food, materials, money and people.
Besides resources the player also has stability.
This is a value that modifies other values like island income.
Stability cannot be used to directly pay for something.
Events, the passing of time and other actions can subtract or increase resource values.
They do this by using the add and remove Income functions.
These functions require a Type(Enum) and a value(int).
They use these to remove or add the given value to the selected type.
At normal speed, every real time minute, food will be subtracted from storage.
The amount is calculated by dividing the daily expenses by the amount of minutes in a day.
The amount of minutes in a day is calculated using the GameManagers LongGameplayTick(amount of
seconds in a day) and dividing this by Sixty.
Stability works as a multiplier on island income.
When a building calculates its income it uses the stability modifier.
The value for this modifier is decided using a switch case.
Every case within the switch has a different stability level as its parameter.
The stability modifier doesn’t just give positive effects, as a level of stability under zerowill cause negative effects.
These negative effects are more severe than the positive effects and should be avoided by the player.
Stability as a value gets changed in the same way as the other resources.
The only difference is that changing stability triggers the UpdateStability function.
Stability can only be gained or lost through events.
When stability or food drops below a certain value the player gets a few days to fix the problem or a “game over” will be triggered.
Island and loot site interaction mainly works using the IslandInteractionManager and the
Island script.
By clicking on an interactable object the objects information gets send to the
IslandInteractionManager.
Here an insert function sends the interactable object to a function called
ToggleInteractionPannels.
This function takes the type of interactable object and its current state, using it to
open\unlock the correct UI panels\Buttons.
For example if the interactable object is a loot site it will unlock the pillage button and
allow the player to loot it.
If the interactable object is an island it will first have to be explored.
If it has been explored it will either give the option to pillage it if uninhabited or both
pillaging and trade if inhabited.
When looting, in case of an uninhabited island or loot site the player will get resources.
Looting an islands will give more resources in the category it has excess of.
After looting an island it gets locked from interaction for a few in game days.
Loot sites will give a sizable amount of one type of resource and then self-destruct
disappearing under the water.
When looting an inhabited island you will get mostly the same effects as an uninhabited
island.
The notable difference is that after the island gets unlocked for further interaction you won’t
be able to trade with them.
To once again interact diplomatically with the island you need at least -75 relations.
Pillaging lowers this by 200.
Therefore the only way to increase relations when trading is locked is by waiting for them to
increase naturally.
The further away relations are from zero the faster the value moves towards zero.
This works for both positive and negative relations.
Interacting with an inhabited island can also be done through trade.
Trade has several aspects to it:
Excess and demand, the amount of trade left and the islands attitude.
Excess is a random enum state in an interactable object.
It resembles both the cheapest resource and the resource the island will give the least for.
Demand on the other hand is the exact opposite of excess.
If your offer matches their demand they will give more of what you demand yourself.
If your request is of the same type as their demand it will cost more to get.
What the player demands and asks for can be freely changed.
This is done using the arrow buttons underneath the excess and demand input fields.
This changes the resource the players demands or request.
They also trigger the CheckRequest and CheckDemand functions.
Those functions makes sure the correct values get set and displayed.
The amount of trade left is related to the islands opinion towards the player. If the islands opinion gets higher the max trade also gets higher. Trade left equals the amount already traded deducted from max trade. Trading itself improves the relations between the player and the island, therefore increasing the max trade value. To actually trade, the player has to click the confirm button. This triggers the Confirm function which checks three factors. These factors are: If the players has the resources to pay for the transaction, if the player isn’t trying to pay the same as they demand and if the player still has some amount of trade left. If they can trade, all values will be updated and the UI will be refreshed.