Project information
- Category: Software
- Client: Personal
- Project date: Jun 2022 - Aug 2022
Project Objective
Practice and improve programming skills by creating a firefighting sim.
Overview
Most of my projects have a relatively small coding aspect to them. Not giving me a big opportunity to enhance my coding skills. Games are a great way to practice and improve coding skills in an engaging way. I've recently done an internship with a NASA project group where the subject was wildfire managment. Taking inspiration from this, I have come up with a "Firefighting Sim" proof of concept. This project is intended to further my coding skills. The focus being primarily on being able to combine a bunch of modifier variables which are each affected by each other and also being able to fine tune them to get the desired result.
Final Product
The Fire
The first step to this project is a very basic visual for the fire. Unity already has a particle system built in which is perfect for fire. A few minutes of changing settings and I came up with the fire pictured below. The particles start as vibrant yellow squares, then increase in size and move to a dark orange color as they rise. This is only intended to be a low polygon visual for the early stages of testing. Next the fire needs to spread. This was completed by finding all of the burning objects in the scene, and checking in a certain radius around them for any flammable object. For every object found, there is a random chance that it will ignite on each "tick" of the game. A tick is a time period variable I can set, usually at 3 seconds. Finally I wanted to be able to easily see the chance of any particular object igniting, so I created a UI element that checks the percent chance that a clicked object will ignite and display that value as a radial slider on the object. The color inside that slider changes to correspond to the likelihood of ignition, with red being most likely and green being least likely. A video example can be found in my project feed. Thats it for a basic skeleton of the fire mechanics!
To improve the spread beyond just a arbitrary chance, I added 4 variables for ignition chance of nearby objects, these are: humidity, fuel type, range, and wind. High humidity decreases ignition chance, while low humidity increases it. Certain fuels such as trees are less likely to start burning, and fuels such as grass are very susceptible. Ignition chance decreases as the range from the burning object and the flammable object increase. Finally, objects in the direction of the wind also have an increased chance of burning. Each of these variables (except fuel type) have curves associated with them to allow non-linear changes to the ignition chances. Each of these variables can also be turned on and off. This will be useful in allowing the player to play with individual settings to see how they alone change the behavior of the fire. In the future things like amount of sunlight objects are recieving or topography factors may be added as modifiers.
Ignition Chance Visualizer
When implementing the fire modifiers, I of course needed to test them. Some variables will be easy to test, as they apply to everything in the scene like humidity. But others like range and wind are harder to test because the values are different in every location. To make testing easier, I decided to create a grid of small objects around a burning object that I call the "visualizer". Instead of burning themselves, these objects will turn to the color on a color gradient corresponding to their ignition chance. Red objects are the most likely to ignite, and blue objects are the least likely. I can also turn on and off any of the modifiers to see how they all work individually, or combined with the other modifiers.
Firefighting Tools
Finally there are the firefighting tools. There are three that I added, a fireline (FL), which cuts away all of the flammable objects in its path; a water drop (WD), which extinguishes the fire through its path; and finally, the retardant drop (RD), which reduces the ignition chance of all of the objects in its area. To use these, one of the tool UI button are clicked, then the player will be allowed click on 2 areas of the map creating a line. Any object intersecting this line, as well as a given width away from it, has the corresponding tool's effect applied to it. An example of the tools in action can be found on my project feed! To make it easier to visualize, I added a violet cube that shows the area that these effects are happening after you place them.
Conclusion
This is as far as I am going to take this project for the moment. The proof of concept is complete and I have learned a lot, the biggest "eureka" moment being when I decided to spend a little time creating the ignition chance visualizer, saving me a lot of time testing and adjusting the modifier variables. It also has the added benefit of being a good demonstration piece when showing other people how each of the modifier variables change the ignition chances. If I pick this project up again in the future, there are many things I would like to add, such as the fire going out after period of time, better user feedback when using firefighting tools, adding a backburn tool, and improving the fire visuals.