Software Engineering

Ray Tracing Engine
Written in C++, my ray tracing engine renders albedo, transmissive and reflective materials. Graphics are displayed using SFML.

Wolfenstein 3D Engine
This replica of the Wolfenstein 3D Engine was written in C++ using SFML for displaying graphics. It uses raycasting to turn a 2D map into semi-3D visuals.

2D Terrain Generator
Using C++ and SFML, I created a 2D Terrain Generator which creates hills, valleys, caves, trees and valuable ores at specified depth ranges.

Grandma Guardian
Guide grandmas across a busy street in this top-down pixel art game created in Unity with C#. All pixel art assets are drawn by me, except the cars, which are part of a free asset pack. Available on my itch.io profile.

Rogue Jet
Created using Unity and C#, this game features endless dodging mechanics as oncoming jets speed up towards the player. All assets are created by me. Available for PC and Android on my itch.io profile.

Double Pendulum Simulation
As per the title, this program simulates a double pendulum system using Lagrangian equations of motion. Includes a GUI using ImGUI, with tweakable settings and additional information including potential and kinetic energy, angular velocities and more.

Perlin Noise Generator
Using C++ and SFML, this program generates Perlin Noise from scratch. Includes tweakable frequency and amplitude.

Predator – Prey Simulation
This project uses the Boid flocking algorithm to simulate birds and predators. The birds will fly in flocks or go solo, avoid the mouse, and avoid predators that want to eat them. The predators wander until they see a bird, then will chase them. If they get close enough, they’ll eat them and lower their hunger. If they go too long without eating, they die. The user can enable trails to see how the birds and predators fly, as well as dynamically add predators and birds. The birds are multicolored while the predators are red, and slightly larger.

Topographic Map Generator
Using C++ and SFML, this program uses Perlin Noise as a basis to generate topographic maps by outlining heights into layers. Allows for movement around the terrain, changing the amount of layers and frequency of the noise dynamically, as well as randomly determining a new seed. Also allows for a “height-map” mode, which shades the low points and high points from black to white, respectively.

Minesweeper Clone
I created this Minesweeper clone in C++ and SFML in about 30 minutes. Quite straight-forward and more of an exercise for myself.

PID Tuning Simulator
This program simulates a motor turning an arm to a target angle, and uses PID Tuning for the torque value. These values are tweakable so the user can tune the system. Also shows data about the system.

Dungeon Generator
This project generates a large sprawling dungeon with rooms, using a myriad of techniques. These techniques include maze generation, room joining, dead-end removal, and backtracking.

A* Algorithm Demonstration
This SFML and C++ project allows the user to create walls, change the start and target cell, and run the A* Optimal Pathfinding Algorithm. The algorithm updates per-frame, which allows the user to see the process in real-time.
Key:
Green – Start Cell
Yellow – Target Cell
Blue – Visited Cell
Red – Shortest Path
Black – Wall
White – Open

Galaxy Simulation
This project displays a spinning galaxy, generated using logarithmic spirals. Created with C++ and SFML, it provides a scale demonstration of the Milky Way.

Pi Approximator
Approximates pi using random points over a circle. Includes tweakable number of points for higher precision, and demonstrates a relation between randomness and pi.

Aurora Borealis
This SFML project uses wave equations and randomness to display a unique aurora borealis recreation. Written in C++.

Binary Tree Generator
This project creates tree-like graphics using binary functions. Includes statistics on iterations and lines, and allows for tweakable iteration count.

N-Tree Generator
Building off of the previous project, this tree-generator allows for stochastic characteristics and a tweakable number of branches per iteration.

Spiderweb Generator
Purely for fun, this project generates random spiderwebs using a simple line algorithm. Written in C++ and SFML.

Rope Simulation
Using verlet integration, this project dynamically simulates a rope which the user controls with the mouse. Includes average velocity and kinetic energy statistics.

Trigonometry Demonstration
This project demonstrates where the components of trigonometric functions appear in a moving radius inside a unit circle.

Dice Roller
Simply hold spacebar to roll two dice. Used for games with my family. Written in C++ and SFML.

Sierpinski Triangle Generator
This fractal generator uses random points following a ruleset to generate the famous Sierpinski Triangle.

Sudoku Generator and Solver
This C++ program generates Sudoku problems and is capable of solving them using recursive backtracking. Includes statistics on numerical changes and backtracks.

Sorting Visualizer
Visualize various sorting algorithms in this C++ program. Includes Bubble Sort, Insertion Sort, Cocktail Sort and more!

Game of Life Editor
This program allows users to draw states in Conway’s Game of Life, and then simulate them! Written in C++ and SFML.

Bit Visualizer
This C++ program demonstrates the states of various bits in an integer. Allows for random generation of numbers, direct input, framerate changes and different operations to be applied. Uses SFML for graphical output.

Volcano Simulation
Using C++ and SFML, this project demonstrates the various particles emitted in a volcanic eruption.

Koch Snowflake Generator
Generate Koch Snowflake fractals at various resolutions using this C++ project! Allows for tweakable iteration counts, and displays statistics of line count.

Snake Recreation
This C++ and SFML project recreates the famous arcade game, Snake! Control the snake and eat the apples to grow in length. Includes end-state game win!

Console-Based Snake Recreation
Exact same objective as the previous entry, except this project uses my very own Console Game Engine. Based entirely in the Command Prompt Terminal.

Console-Based Pong Recreation
Using my custom-made Console Game Engine, this project recreates the Pong! arcade game. Includes an AI and score system. Written in C++.