Post-Mortem: Mini Jam 179 - Energy
For Mini Jam 179: Energy, Justin Gilbert (JusticeMoose) and I, Isaac Hisey (TheTornadoTitan), decided to dive into the challenge with an ambitious idea. We initially brainstormed a resource transportation puzzle game where players connected delivery hubs with infrastructure like power lines or fiber networks. The twist? Players would need to diagnose network issues with imprecise tools that improved over time. However, the jam’s limitation, "Creation through Destruction," didn’t quite align with our concept, so we pivoted.
Enter Demon Dash Express—a fast-paced, split-screen fusion of a Contra-style shooter and an inverse tower defense game. On the left side, players engaged in a shooter where each enemy kill spawned units on the right side, fueling an attack on an AI-controlled stronghold. This tied directly into the jam’s theme, as destruction on one side facilitated creation on the other.
Development Journey
Once we settled on the concept, implementation came quickly—at least initially. I wanted a forced perspective for the shooter to make it feel like the player was firing "into" the screen, and that effect was achieved smoothly. Conceptualizing the gameplay structure was also straightforward. However, my main challenge came in the form of GDScript.
I usually prefer C# due to its static typing, OOP multi-inheritance, and singletons, all of which provide a structured development experience. Since Godot 4 currently doesn’t support C# for HTML5 exports, I had to adapt to GDScript, which introduced a learning curve. Here were some key hurdles:
- Inheritance Woes: Godot threw cyclic inheritance errors even when no such cycles existed. The issue turned out to be related to how I was structuring my changes rather than a true limitation of the engine.
- Singleton Workarounds: Initially, I thought static instances and singletons weren’t possible in GDScript, leading me to implement a SignalBus pub/sub system. While this worked, it resulted in a loosely coupled architecture that, in hindsight, lacked coherence.
- Mixing Design Patterns: As I discovered ways to implement my preferred structures in GDScript, I ended up with a mix of multiple paradigms—something I’d absolutely avoid in a long-term project but was forced to accept due to the jam’s time constraints.
These issues slowed down development considerably, eating into our 72-hour window. However, they also provided valuable insight into GDScript’s capabilities and how to structure projects effectively within Godot.
Reception & Next Steps
Despite the challenges, we managed to submit Demon Dash Express in time. The feedback was encouraging as players enjoyed the concept and gameplay but pointed out issues with balance, level cohesion, and the lack of a tutorial. We were literally down to the wire, throwing together a last-minute tutorial screen 20 minutes before the deadline while squashing final bugs.
Looking forward, there’s interest in expanding the game. If we do, a complete rewrite in C# would be my preference for better maintainability and structure. That said, using GDScript allowed us to create a browser-playable version, which was crucial for engagement. Had we opted for C#, we likely would’ve received far less feedback.
Lessons Learned
- Know Your Tools: While GDScript caused some frustrations, understanding its quirks early would have saved us significant time.
- Clearer Architecture from the Start: The mix of design patterns hurt development speed and maintainability.
- Prioritize Polish Early: We spent a lot of time troubleshooting structural issues, leaving little room for balancing and refinement.
Despite the hurdles, this jam was a fantastic experience. We pushed our limits, delivered a playable prototype, and walked away with valuable insights. Whether we continue Demon Dash Express or move on to future projects, this was a rewarding venture into game development under pressure.
Play Demon Dash Express here: Itch.io Link.