Skip to main content

Treasures Of The Deep Dwellers: A Real Time Grid Based Roguelike?


Hello again!

It's been quite a while since I posted here. I've been working on other projects, and spending a lot more time with my family, but the core reason is that I just lost interest in the project as it stood.

But wait! I haven't given up. I just needed some time and some ideas to remake my vision in to something that:
A: I can finish.
and
B: Is actually fun.


So read on for the next chapter in the development hell of:

TREASURES OF THE DEEP DWELLERS!

 
This time last year I took a break from this project since it was wearing me down.

I realized I was making a game for me, with stuff that I liked. But which I would probably never play.


What I really wanted to do was capture some of the excitement and joy of playing an RPG / Roguelike for the first time...

And package that as something that modern players would actually find enjoyable.

So it's clearly time to start over.


 Where do I go from here then?
Well, one idea I had was for making the game real time, and grid based.
I've made two complete games lately using this system, so it seems to improve my productivity anyway. Everything is just so much simpler. 

But single tile grids give too much of a blocky feeling that real world players complained about. I decided to make the grids more granular.

So now a default agent takes up a 2x2 chunk of the grid. They still move one square at a time though. You can see the debug function showing which squares are occupied by the agent. I talked a little about how I did this in an earlier blog post

  
The system makes it easy to scale up agents to 3x3 or even 4x4. A giant spider, a dragon or daemon perhaps? This is something I've wanted in the game from the very beginning. Different size monsters really add a great deal to an RPG. If everyone is human sized it gets boring fast.

Pathfinding has also been greatly simplified. I found a nice form of dumb AI which makes for quite interesting encounters, as the characters spend behave more unpredictably. 
The basic premise is that monsters will try to get closer to a seen enemy and will not backtrack until they get stuck. It's like water running downhill. It just keeps draining down until it gets blocked and then it tries to find a way around. Eventually it can overflow and fill backwards.
The most important point is that it allows for a large number of agents working in real time with no noticeable logic drain. So it's great for a python based game.


You might wonder why I chose 2x2 as the default character size. Why not 1x1? Well I'm saving that size for smaller creatures, like rats or insects which can swarm through small gaps... You can imagine the small creatures darting in, making an attack and running away again. Better pack a crossbow on this adventure!

Overall the game is going to be simpler. It's aimed at teenagers or kids playing a classic RPG for the first time. I want to make it fun. I want the thrill of an arcade game with some of the deeper options of an RPG.

Essentially though I want to get it finished! I'm going to be focusing on game play and functionality. No more wasted time on graphics which I might or might not use! 
(Final last words of an artist!!)


Comments

Post a Comment

Popular posts from this blog

Automating Level imports from Blender to Godot

  Recently I've been making some levels in Blender an importing them into Godot. There are only about 7 or 8 shaders for each level, not counting dynamic objects which will be added later. But to improve rendering performance, it can be a good idea to split the meshes up into sections. At that point you might be faced with a list like this: Or it might be even more chaotic, if you didn't use simple names for the objects in your level. So it can take a long time to sort out all the meshes, make them unique and add textures and so on. Blender imports with simple Blender textures, or with placeholder materials. This is sometimes OK, but if your Godot shaders are very different to those used by Blender, it means applying new materials to every mesh object in the level when you import the scene. I found that during the design process, I was importing and readying a level several times before I was happy with the final layout. So at first I was wasting a lot of time. In Blender, I us

Dynamic terrain in GODOT

Long time no posts. I haven't been keeping up with the projects I started. At first it seems fun and exciting, but I always run in to limitations in the setup, plus the grind of just making stuff without any real challenges... It ends up being something that I don't want to commit to. So right now I'm just messing around with some ideas and see what comes out. No commitment to a bigger project, just some time to try new things. This week I've been working on procedurally generated terrain.  In the past, there were some big limitations on how I approached this, because the game world had to have the whole map, from the micro to the macro. I had to choose a scale somewhere between, which meant I couldn't have really large maps, or really small details. I think I've found a way around that. Below you can see two types of map data coexisting on top of each other. The wireframe is the collision data, used for physics and for clicking on the map, to move characters ar

Make your game models POP with fake rim lighting.

I was watching one of my son's cartoons today and I noticed they models were using serious amounts of simulated rim lighting . Even though it wasn't a dark scene where you'd usually see such an effect, the result was actually quite effective. The white edge highlighting and ambient occluded creases give a kind of high contrast that is similar to, but different from traditional comic book ink work. I'll be honest, I don't know if there's a specific term for this effect in 3d design, since my major at university was in traditional art. I learned it as part of photography. You can find plenty of tutorials on "what is rim lighting" for photography. It basically means putting your main sources of light behind your subject so that they are lit around the edges. It can produce very arresting photographs, either with an obvious effect when used on a dark subject ... ..,or as part of a fully lit scene to add some subtle highlights. See ho