Mimic the gameplay for Theatrhythm Curtain Call: https://www.youtube.com/watch?v=HY1E5pH94bQ

This is version 2. The original version 1 exists as Rhythm Game Tech Spec v1 (old)

Context

We’re doing this for several reasons:

  1. We want to get back in to game development. We seriously have not made anything fun in a while.
  2. We want this to be part of a bigger project, but we’ll keep the scope for this one small, while keeping in mind it should be modular enough to be usable in the bigger project.
  3. We want to try out a different programming paradigm since during our v1 attempt, the mix of object-oriented design and data-oriented design was looking not good.

Why are we making v2?

Our initial plan to make rhythm game failed due to it being overcomplicated, and - at the same time - very fragile. I realized I was doing something Data-Oriented but has been doing a mix of Object-Oriented Design with Data-Oriented Design. So, I would end up keeping references with resources that is not data because I also wanted the data to be local with the logic that are reliant on them. The data, as I would later on learn, would need to be known by other resources that are neither children nor parent of this object's that own these data.

For our v2, we want to be strictly data-oriented. Here's our general plan:

  1. Try to plan it out and not just wing it. This project seems to be more complicated than we anticipated. Additionally, we have to unlearn object-oriented design or be careful with it since Godot's API is still object-oriented.
  2. Start from scratch since I don't want my design decisions to be too entangled with my initial design.

Principles for our design

  1. Layer 1 - Data: We want our game's important states to be representable as an easily serializable data.
  2. Layer 2 - Logic: We want our game logic to not be part of the data, and be as game engine agnostic as possible. Our logic should not know about Godot's existence.
  3. Layer 3 - View: We want Godot's job to only serve as a visualizer.

Requirements

The requirements below have rhythm game jargons. Check out Appendix to see what they mean.

Requirements

Out of scope