Pumpking HD
Posted: August 20, 2021 Filed under: Patreon Leave a comment »Happy Halloween!
Here’s a HD version of Pumpking for you, the game is essentially the same as the most recent pico-8 one but I’ve ported it to Unity, painted all new sprites and added some new music. This shouldn’t have taken too long but I’ve been fighting burnout for a couple of months now so I only barely managed to have this done in time for Halloween D:
Anyway I hope you like it, and that you have a terrifying night tonight <3
I’m quitting videogames
Posted: August 20, 2021 Filed under: Patreon Leave a comment »First of all I want to say I appreciate all your support until now, but I have been living a lie. The truth is…
I hate videogames.
I never wanted to make videogames.
Sure, I thought they were cool, and I tried my best hoping that if I made enough videogames eventually I would like them as much as everyone else… but it never happened.
So from here on, I will be focusing on my true passion;
Ducksnakes.
The art of making ducksnakes is not one that everyone can appreciate so if you want to stop supporting me after this, I will understand.
If however, you wish to keep supporting me, I will provide all the stuff you’re used to – except instead of videogames – you will get premium quality bespoke and artisinal ducksnakes, behind-the-scenes access to my ducksnake making workflow (and the tools that I use), and you will receive any ducksnake artbooks that I publish.
I know this is a big change but I hope you will understand, I need to be true to myself and not spend my life stuck working on something so truly detestable as videogames.
Monthly Build 2018/03 – Epochal
Posted: August 20, 2021 Filed under: Patreon Leave a comment »This month’s WIP build is a VR game I started a while ago called “Epochal”.
I’d recommend watching the video above before playing, because the game does a bunch of things that might make you dizzy, which can be dangerous. Add on top of that it’s a work-in-progress with not everything tested and some broken things not yet removed… better safe than sorry! I talk through it all in the video because I don’t want you hurting yourself.
There are several builds but tbh it might be that Windows + HTC Vive + SteamVr is the only way to play.
If you have different VR hardware with SteamVR and motion controllers it ~might~ work, otherwise the video above will be all you can see (sorry!)
oh, also there is no audio in the game yet, so no need to put headphones on 🙂
Unfortunately the build is over the Patreon file size limit, but you can download from itch.io > here < by connecting with your patreon account.
StreamBall!
Posted: August 20, 2021 Filed under: Patreon Leave a comment »I made another game this month!
This one is a little different: to play it, someone needs to be streaming the game through twitch.tv. Once it’s set up, people enter game commands in twitch chat. It’s something new for me but I’m pretty excited about it and I’m keen to explore this kind of game more.
StreamBall itself is basically tile-based soccer, it’s not perfect design-wise and I’ve learned a lot making it… but if you stream and you want something for your viewers to do during down-time, the download below should be worthwhile I hope 🙂
If you don’t stream and want to play, sorry but you’re gonna have to wait till someone else streams it. You can follow me on twitch, and maybe catch the game next time I’m streaming it… but heads-up a lot of my streaming is just me playing games I like (tho you’re welcome to come by even then <3)
Oh also I streamed a lot of the development and testing of this game, I’ve got a playlist of the VODs here if you want to see any of them.
Roguelike Origins
Posted: August 20, 2021 Filed under: Patreon Leave a comment »I didn’t know what to title this post so I guess I’m going with the most “modern b-movie” type name possible 😛
(oh also ICYMI I posted this months WIP build earlier, link here)
Anyway I’m gonna talk about the roguelike I’m working on, where the idea came from, what I want to to with it, all that junk.
The starting point for the idea came where I imagine most roguelikes have begun; I was playing NetHack :P. Specifically, I was playing nethack thinking about a possible 3D interface for the game that I might be able to make – there’s a lot that appealed about that to me, but mostly it was ‘no animation’, everything would be static models just as the normal interface is static sprites. I do enjoy 3D animating and making models that can be animated… but at the same time it’s a HUGE drain on my time. I’m most comfortable when I can throw together a bunch of models quickly that don’t need to be posed or animated ever. So yeah, roguelike mechanics/history and static 3D models meant boardgame aesthetics jumped straight into my mind obviously, and I kind of fell in love with the idea.
And then I figured, why just reskin a roguelike when I could make my own?
It’s a really bad thought tho, I don’t recommend it. Don’t make a roguelike. It’s a very bad idea!
But on the other hand it’s also an interesting challenge. Since most of the games I make don’t challenge me as a programmer anymore (the benefits of an accessible game engine and years of experience with it) I figured I’d give it a shot and started dropping a few notes on thoughts I had for a system that would drive the engine. Which more or less looks like what I have now, and that is a system composed of;
• Objects (swords, players, monsters, etc. the “stuff”)
• Agents (something an object may have, essentially it’s a mind)
• Properties (how does it appear? is a thing poisoned? heavy? burning? etc)
• Actions (things an agent can do on it’s turn)
I also have a few other systems like the turn manager that handles which agent gets to act next, the dungeon system that generates the spaces all the objects exist within, and a player interface so human players can act as the agent for their object (which is almost always going to be their character/avatar).
What I thought would make this really interesting is something I’ve talked about a little on twitter, and that is that each agent has their own knowledge of the world and other objects based on what they perceive around them. No agent (including human players) is aware of any actual real thing in the world, all they have are mental versions of those things that they make and maintain as they observe them. And how accurately something is perceived is down to a bunch of properties on the agent’s object (eg it’s discovery skill, if it’s psychic or not, do they have training to see hidden traps – that kind of thing).
Objects (and map tiles) can all have many different appearances that can only be observed depending on various properties of an agent. And whatever an agent observes or infers is created as a new object with it’s own properties in the mind of that agent.
So the tl;dr is every character on a map has their own (probably incomplete & incorrect) copy of the map and the things in it in their head. All being updated as each character witnesses things.
Which I figured would be an interesting challenge to program… I was not wrong lol (don’t make roguelikes! it’s a bad idea!)
Anyway as for where I’m at with building all of this right now… it’s mostly together! I did have a loooot of trouble getting it to work despite having a clear mental picture of what I wanted it to be, largely because I would forget things like pulling information from an agent’s knowledge of an object instead of from the real version of the object, but for the time being it’s working. If you’ve got the monthly build you’ll be able to toggle debug maps on, which will let you see the “real” map and objects, your character’s mental image of that stuff (with what is “know” and what is remembered marked differently).
The boardgame view is of course just a 3D representation of what your character “knows” about the map and the objects on it.
One thing I find interesting is that in my system, the classes I use for “knowledge” of an object are largely identical to the classes I use for the “real” objects themselves – whilst there may be differences in the details of a real object and “knowledge” of the object – neither is more real than the other unless I say so. And when I say I find this interesting, I mean I find it INCREDIBLY DISTRACTING! It leads to a bunch of old philosophical ideas that are all fascinating but they don’t help me work on the game so I have to catch myself and say “nope, don’t think too much about the nature of reality right now, just finish making the rules of this little reality instead!” lol.
Anyway I know that this post was a little abstract as far as gamedev insight goes, no actual code or anything like that but that’s how a lot of “idea for an interesting system” type games come about, at least for me. You gotta have this weird abstract thing and a vague idea how you’re gonna make it before you can actually jump in and try playing with it and seeing what might come of it.