Welcome To my Portfolio
Behavior Tree
For my specialization, I chose to work on my own Behavior Tree. The reason behavior trees interest me is that they allow for easy AI setup and debugging, with every behavior simply being a node in the tree's hierarchical structure. To add a behavior, all it takes is adding a node.
I implemented this in our engine, Tonic Engine, which uses its own ECS (Entity Component System), created by William Arnberg (Check portfolio [here]).
A behavior tree follows a hierarchical tree structure, where we program and design each node to represent a specific behavior or action. The execution starts at the root node and activates the child nodes from top to bottom.
It starts at the top (Root node) and activates the child nodes from top to bottom.
The behavior tree consists of a list of nodes, with each node representing a behavior. The root node starts at index 0 and checks whether the tree should be running. Each node has:
A Node Type, defining the node's role.
A std::function to store the action or behavior (only used by leaf nodes).
A vector of children, allowing composite or decorator nodes to be linked to their child nodes.
Additional variables to handle execution states.
Here are the different types of nodes:
Composite nodes are the ones that control the flow of the execution.
Decorator Nodes allow us to modify the child nodes.
Leaf Nodes perfoms the action or checks to see if we fail or succeed,
Each node has its own logic and functions that we evaluate to determine how it should act based on the results.
Composite
A sequence goes through the children in order, if one fails we return false, if all succed then we return true.
A Selector will run through all the children return true if any of them succed, If all fail then we return false.
Decorator
Inverter inverts the result of its child.
Repeater will run its child a number of times that we set before returning true
Succeeder always runs true, no matter what the result of the child is
Leaf
The End points of our tree, the goal the tree tries to reach.
Condition: Check if a certain condition is met
Action: Perfom a specific action that we either return true or false on.
We can Easily Add our nodes, by giving it the type, sending in the specific entity’s component we want to add it on, a function (specifically for leaf nodes).
Adding a function for other node types should be avoided, same with adding children list for leaf nodes
The update loop starst by sending in the rootnode and only runs if allowed.
The Evaluate Node determines what action it should take, using recursion to evaluate child nodes until a leaf node is reached, then it executes the leaf nodes
Game Projects
Game Engine:
Unity
Duration :
5 weeks, 50%
Contributions:
Camera, Collisions and Scene Transition, Scene Transition
Game Engine:
TGE (The Game Assembly’s home built engine)
Duration :
7 weeks, 50%
Contributions:
Enemies, Bosses,
Game Engine:
Engine and Tonic
Duration :
15 weeks, 50%
Contributions:
Enemies
Learned how to do animations in Unity, which allowed me implement a quick little scene transition
In the end of my education, I will have been a part of 8 different projects in The Game Assembly. From working in Unity to the school’s engine (TGE) and finally to our own engine (Engine a Tonic), I have been grateful for this experience, which has taught me the process of game development. Here are some of my favorite projects.
Endless Runner:
Beaver Fever
My first project in The Game Assembly and the shortest project. Being new to unity, learning C# was a challenge in the beginning. Implemented a camera to match the same camera used in our reference game.
Top Down Adventure:
Spores of Malice
Work in Progress, trailer comming soon
Platformer
Ghost in the shield
Game Engine:
TGE (The Game Assembly’s home built engine)
Duration:
12 weeks, 50%
Contribution:
Gameplay
Game Engine:
Unity
Duration:
5 weeks, 50%
Contribution:
UI
Mobile Puzzel Game
Detective Rodent
Action RPG
Spite: The Infernal Oath
Game Engine:
Tonic Engine
Duration:
10 weeks, 50%
Contribution:
Gameplay
First Person Experience:
AI Quit
Boss Patterns
In collaboration with Sebastian Dahlskog, a fully customizable boss pattern script that we used to export to TGE. Allowing our level designers to pick what attack they wanted to use, how many times and the pause time in between attacks.
Bosses runs through the list of patterns given making for some exciting boss fights.
Enemies and Weapon factory
Our bosses uses the weapon implementation used for our basic enemies for their attacks. Each enemy using A* pathfinding, gaining their weapons type from a factory. The key part of what Level Design wanted was ajdusting reload speed for each enemy, which gave them more freedom for game design
Other Game Projects and Contribution
About Me
My journey into programming began in high school at LBS Kreativa, where I was first exposed to coding. While I didn’t particularly enjoy web design and web development, I discovered that the problem-solving and logical thinking involved in programming were fun, so continuing to learn was at the top of my list after graduation. With my passion for games and a desire to continue learning, pursuing a degree in game programming was a natural choice, as it allowed me to both understand and contribute to the development of games. I'll admit that it was intimidating at first, with so much to learn and so many people in my year who already had experience making games. I often felt overwhelmed. Fortunately, I had the opportunity to work alongside some truly amazing people from whom I could learn.
I have experience in other programming languages, like Python and Java. Personally, I would consider my main language to be C++, as that was what was taught during my two years in The Game Assembly. I do consider myself more of a gameplay programmer, as that’s what I enjoy the most and is the area I have worked in the most during all my school projects. However, I’m willing to work with, and have worked with, UI and systems before.
Programming isn’t my only hobby, however. I enjoy games, especially competitive games. Whether it’s fighting games like Tekken or Street Fighter, or team-based games like Rivals or Team Fortress, games that promote self-improvement and extensive game knowledge to get better will always interest me.
I’m also the biggest wrestling fan. I've traveled to events and regularly host watch-alongs with my friends to enjoy the fascinating and thrilling world of pro wrestling. AEW, WWE, or NJPW—it doesn’t matter; I can talk about it all day.