Tag: analysis
-

How to make a compiler for your own programming language – Luca Guagliardo
Introduction Compilers are the magical back boxes that turn your code into run-able executables. But have you ever wondered what happens under the hood? Motivation When working on story focused games, like visual novels, the story can take many twists and turns. To assist in creating these kinds of games there are several tools available,…
-

Procedural rhythm game based on audio analysis
Goal The goal of this project is to create a rhythm game that can procedurally create levels for itself based on the audio you give it. Index 1. Separating frequencies The first thing I wanted to do was see if I can distinguish frequencies based on if they’re high or low. I started by looking…