You're on a hot streak! Great job getting so many subsystems working, I'll definitely have to pick this one apart and learn from it.
Viewing post in 1K Voxel Shooter #Pico1k jam comments
Thanks! Yep, too many subsystems working, each one taking their toll of compressed bytes. Voxel landscape had to be tweaked to leave some CPU for the game. With this kind of perspective view it's difficult to aim to enemies and sometimes it's a bit confusing. Although I think I solved depth sort cleanly with all entities in the same table, 3d games usually require a lot of code, so many planned features had to be dropped to get down to 1024 compressed bytes. I think I left collision detection a bit buggy, but it's not a big issue. No difficulty ramp is maybe the worst issue.
I can sympathize with having to hack things down. Personally I think one of the best things about cramming code like this is that it forces you to find efficient ways of doing things, and you can use that in other projects that aren't so constrained. I'm planning to make a non-crunched version of my entry sometime after the jam, to further polish it up and flesh out some of the ideas.
I agree. I always wanted to make games but found the process too steep because I couldn't manage big projects efficiently and ended up losing motivation. With this kind of limited scope projects, I'm able to build many games in a short time and the constraints push me to focus on the main concepts and features. I tend to overcomplicate things and found this is a good exercise to improve my problem solving skills and complexity management. I also love maths and procedural generation. Both of them are very useful when you try to make big things with little code.
I can very much relate, it's both an interesting puzzle and an extreme means of scope limitation. I get game ideas, but see the potential for something beyond my current skills and don't know where to start. Moving forward, my strategy for any more substantial projects will be to make a small, simple version first, then a slightly scaled-back version after I've gained the initial know-how.