The Game

No, Kovarust isn't dead yet!

I'm spending a lot of time overthinking the design of Kovarust - how to organize things, how plugins would interact with each other & the world, etc. - and by the time I looked at it again, all the libraries changed their APIs and I need to rewrite a big chunk of the graphics stuff...
Well, at least it'd push me to design it better, but it's still annoying.

I'm also working on a few other small projects (my excuse is to get more experience with Rust before tackling something more important, like Kovarust), so all I can say is that I'll get there when I get there.
Don't rush me.

Design

Essentially, everything is going to be a plugin (or "mod") - taken to the most extreme extents. Everything beyond loading plugins, initializing the world, and ticking chunks will be left to said plugins.

That includes implementing all blocks and entity types, the entire "base game" content, networking (multiplayer), and even the graphical client front-end. I'm forcing myself to write it this way so that no mods should need to modify the core source code to be able to do anything more than my implemention could. That would be unfair to the mods.

The best design is as little design as possible.
- Some dude

This is kind of the reason Kovarust is taking so long to get up & running. Before I implement anything, I overthink how much I can strip away to make it as generic as possible while also being reasonably efficient. My excuse is even if I do a cheap job now just to make it work temporarily, it'll cause me pain later since I'll need to rewrite it and everything else that interfaces with it, so I might as well do it as right as I can now.

Plans

Anyway, here's a list of selling-point features I'm considering, grouped by their likelihood of making it into the base game (excluding the obvious, like, uh, rendering).

Literally the main selling-points

Definitely most likely

Within possibility

Nah yeah nah

February 2024 ~ February 2025
Thousands of lines changed, no visual difference
it stopped compiling lol



January 2024
Model & texture loading, mesh generation



December 2023
Extremely basic block & entity rendering