Archive for the 'Competitions' Category
LD12 Preparation
So the theme voting for LD48 is up, and as usual there’s a whole bunch of interesting ones but nothing that really jumps out and grabs me. And a whole bunch of others which could be quite horrible to do (like “Film Noir”, which is a nice idea but would be very content heavy and hard to do well in the short time allowed). I try not to think too hard about the themes at this point because I can never guess which theme will actually be chosen, and it’s more fun to leave it until the contest starts anyway.
Goals
Like most LD48h competitions in the past, I’m going to set myself a few personal goals for this time around:
- Something playable.
- Something fun. Always tricky.
- Something accessible. Gameplay and controls need to be explained simply so people “get it”.
- Cross-platform. Windows, Mac and Linux.
- Proper menu flow (main menu, in game, game over, repeat). Probably too ambitious for 48hours, so might get cut.
- A more complete series of progress screenshots, rather than just a couple near the begining as usual.
Things I won’t be caring about:
- Sound. A massive time sink for me, it takes hours to get a single sound effect right.
- Fancy graphics. I’ll be on a laptop with just a basic graphics card, so no fancy pixel shader magic.
- Code elegence. Hack hack hack!
- My general state of health.
Things I’ll be trying to avoid:
- Spending too long creating sprites.
- Leaving something vital to the last couple of hours like last time (level creation).
- Burning the midnight oil on the first day and ending up wasting a good chunk of the second day because I got up at midday.
I’ll be keeping a journal over at the official site along with the other contestants, and probably posting a potted summary here after the competition is over.
No commentsLudum Dare 48h & Locomotion
It looks like there’s another Ludum Dare 48 hour game programming competition starting soon, so I’ll hopefully be taking part in that. Spread the word and join in - the more the merrier!
Meanwhile, back on my main project, I’m having much trouble with just trying to get a simple “chase player” behaviour. Pathfinding (with A*) wasn’t too hard but there’s lots of icky low-level details for moving a character around the environment which are creaping into my behaviour and generally cluttering it up. And due to the highly temporary nature of behaviours stopping and restarting a behaviour (such as repathing when the player moves far enough to invalidate the current behaviour) tends to lead to unpleasant animation jittering as it rapidly switches between idle and running animations.
So I’m trying to pull out some of the low-level movement and animation into a “locomotion” layer. The idea being that it will take high level orders like “run left to this point” or “jump to this waypoint” and it’ll automatically handle transitioning from the current animation to the next as well as the low-level ground following and animation ticking.
The idea is that if a behaviour aborts or switches the locomotion layer will still retain the current action and state, so it’ll continue with it’s current animation until issued a new order by the behaviour. So hopefully switching to or restarting the “chase” behaviour means that instead of snapping to a halt and then starting to run again (often in the same direction) the enemy should continue to run as it was until the “chase” behaviour decides where it actually wants to go. The locomotion layer should probably have a default anim to revert too should the current action finish, so if a behaviour is taking a particularly large time to respond it’ll start playing an idle animation rather than doing nothing.
That’s the theory at least. In practice drawing the line between locomotion and AI logic is proving tricky, so we’ll see how it evolves as things progress…
No comments