Good game, very cool! Nice art and nice mechanics!
Does this game has a final? I played a while and had to stop to go to sleep, I reached dungeon 11.
Criteria | Rank | Score* | Raw Score |
By how creative and fun it is | #47 | 2.711 | 3.833 |
Ranked from 6 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.
Good game, very cool! Nice art and nice mechanics!
Does this game has a final? I played a while and had to stop to go to sleep, I reached dungeon 11.
Fun game, I like the little story at the beginning. A lot of different spells which was very cool. I only wish there was sounds/music! Good job!
For a first a Jam, is very great !
I rely like the mini map and how you use the nose for background (only in black white nice o_o)
Have you use the one button theme ?
Thanks :)
To fit in the one button theme, I added that it blocks input when more than one key/mouse button is pressed at once. The game renders with colors onto framebuffer. Postprocessing shader converts the colors into grayscale (brightness between 0 and 1) and adds random number (also 0-1) to it (which just is hashed position). If the result is greater than 1, it sets color to white. This is a simple to implement dither-like effect. You can try to play with it - shaders are compiled at runtime, so you can change them in data/shaders/post.vert and data/shaders/post.frag. There is also edge detection function, which was my second idea how to make the game 1-bit, but it didn't look that good, but I kept it there anyways.
Looking at your game screeshots (sadly I can't play it; the build is 64-bit, but I'm on 32-bit windows), it seems like you used real dithering. May I ask, how is it done? :P
Hmm, that's a bit strange (when something breaks it usually ends with crash,) maybe you can try to build it from source yourself. It is a visual studio project and the libraries (glad, glfw3, glm and stb) are included in the source zip. Also it opens cmd and the game window, because I don't know how to hide the cmd :P, maybe you just missed the game window.
Edit: After second thought, I think you really just missed the game window :). Menu is also mostly black, so if the cmd was over the game window and only a small strip of game window was visible, then it's not hard to miss it :). It is even easier to miss if you have dark background :D.
If you want to compile it yourself, you can:
Also, what hardware and OS do you have? Might take a look what causes the issue here :).
Another way to try it would be to try another machine :).
I use BFXr - http://www.bfxr.net/
I've heard good things about Musagi for music http://www.drpetter.se/project_musagi.html
I normally use Bosca Ceoil - https://terrycavanagh.itch.io/bosca-ceoil
Good luck! :D
Wow, what an great idea! A cool little dungeon crawler with a level up system.
In my first run a reach dungeon 4. How many duneogns exists?
Thanks :)
The dungeons are procedurally generated (you can look at the source - dungeon.cpp), but they are seeded the same every time (The seed is 210893 + (++level) * 100). It constructs Gabriel graph from random points (rooms), and then makes corridors between those points and rooms with random size at the points. Also, the starting room is always in center of map.
Leave a comment
Log in with itch.io to leave a comment.