The menu

Abbey's Grand Adventure

Queen Baddie has chased the Grand Phoenix from the land. Without the Grand Phoenix's protection the creatures of the land are turned into baddies too! Some of the Phoenix's feathers fell out while it was being chased. If you find them they'll grant you special powers!

This game is written using pyglet (so requires OpenGL), cocos2d and lepton.

Downloads: source, windows exe, OS X app.

Source downloaders will need to install lepton separately.

Awards

Give this entry an award

Scores

Ratings (show detail)

Overall: 3.5
Fun: 3.5
Production: 4.1
Innovation: 2.9

10% respondents marked the game as not working.
Respondents: 27

Files

File Uploader Date
easy-aga-3.1-win32.zipfinal
Windows executable
richard 2009/09/06 04:13
easy-aga-3.1-osx.dmgfinal
Final source entry; fixed "lockup"
richard 2009/09/06 03:43
easy-aga-3.1.zipfinal
Final source entry; fixed "lockup"
richard 2009/09/06 03:35
menu.png
The menu
richard 2009/09/04 01:41
tree-with-bird.png
In a tree with a rescued bird
richard 2009/09/02 12:44
game-shot-1.png
First screenshot in level 1
richard 2009/09/01 10:47
Picture 2.png
The protagonist
richard 2009/08/31 00:41

Diary Entries

Right, "Feather" it is

Abbey and I have had a brainstorming session and decided that the game will be:
  1. about a young witch (think Kiki from Kiki's Delivery Service),
  2. who leaves home and ventures to a distant land to discover herself,
  3. who finds the land in trouble - someone's turning the friendly forest creatures into baddies, and
  4. uses the power of magic found in feathers to help save the land.
First things first, to see whether I can get something basic going with the technology I've decided to use:
  1. Inkscape for artwork and level design,
  2. squirtle for rendering the artwork (though modified to handle layers),
  3. lepton for pretty,
  4. coroutines for managing everything, and
  5. pyglet for doing all the messy grunt work.
Well here goes :)

4 comments

Off to see a film

We're off to see Ponyo now. I've managed to wrangle Squirtle so it'll load both plain SVG and layered SVG now, and have an initial level loading with the player being placed in the correct position. A good start, I think.

1 comment

Can haz platformer

Well, I've managed to accomplish a fair bit today:
  1. created an initial level idea with the action kinda planned out,
  2. mangled Squirtle to load SVG layers,
  3. rendered those layers in a meaningful fashion,
  4. used "data" from a layer as game information (placing the player start position),
  5. moved the player around in the world, including jumping,
  6. used the "ground" layer as collision boxes and made the player interact, and
  7. PARALLAX!!11!111one!11!
Most of the effort was spent dealing with the bizarre transformations in SVG - fortunately Squirtle actually handles them, but because I was doing the layer thing I had a little more work to do. I've still got a bit of work to do ... there's a couple of dimension-based bits in the parallax code that are hard-coded. Which means nothing to anyone except me ;)

Add a comment

Day 2: moar platformey

All up a pretty good day today. I didn't work 100% on the game, but what time I did spend on it was fun. I also spent a while working on the art - why I chose to do a game with such a high art content I will never fathom.
  1. designed main character, drawing on Kiki of Kiki's Delivery Service (Abbey loves Kiki - we all do ;)
  2. did more work on level 1, fixing colors, adding more stuff
  3. first feather pickup item using particle engine
  4. score & timer; score flashes when score is added
  5. made level 1 sky a gradient; fixed hacks in squirtle to handle gradients again
  6. constrain player to the game bounds
  7. much tweaking of the player physics model
  8. baddies spawning, roving around following paths
  9. health; baddies hurt
  10. baddies are killable
On a down side I spent a lot of time trying to get something nice out of lepton. I have managed to get a couple of nice effects, but they're not quite right. The lack of documentation is really hurting there. For example I cannot get my effects to use the sprite textures I want them to.

Add a comment

Day 3: smarter baddies :)

I spent most of today at the science museum with my family; my daughter absolutely loved the planetarium show and thought some of the Star Wars exhibit and regular exhibits were cool too. Science!

On the game front though, I managed to get some new code in:
  1. proper sprites for effects
  2. using Inkscape's rasterisation for some smaller in-game graphics now
  3. first tree & house
  4. added ledges - can move through sides & bottom but not fall through top
  5. baddies follow complex paths including loops and open paths
  6. fleshed out the structure of level 1 more
The ledges were added as a direct result of game testing by Abbey - she kept wanting to jump up to tree branches from the ground only to bump her head into the branch. Obligatory screenshot from the very start of level 1:


The baddies follow paths properly now (yesterday they just when from point A to point B and back again). The really neat bit is that the code to handle the pathing is:

def cycle_path(path):
    path = itertools.cycle(path)
    last = euclid.Point2(*path.next())
    while 1:
        next = euclid.Point2(*path.next())
        last = yield euclid.LineSegment2(last, next)

Given a path consisting of (x, y) points. If the path is a loop (path[0] == path[-1]) then I create the path cycler with cycle_path(path[:-1]). If the path is open then I create the cycler with cycle_path(path[:-1] + list(reversed(path))[:-1]) (so bounce from end to end).

I pass in the current position when I ask for the next line segment so that there's no unsightly jump to move the baddie from its current position to the "proper" start position for the next segment. The baddies wobble along their path, you see :)

So not a huge amount of progress today but I'm very happy with how it's progressing regardless.

4 comments

Day 4: animatilicious!

I spent at least half of today's effort working on animations. This consisted of creating the animation poses in Inkscape (tweaking the character design a little in the process) and saving off the PNGs for the animation frames. I then wrote the animation module for the game which doubled as an editor for figuring out the positioning of each frame. I ended up with quite nice walk animations going left and right.

The problems began when I added them to the game proper. The animations jumped too much from frame to frame (I was using the actual distance travelled for each frame's step to move the player). I tried making it smoother but it only worked going right and not left. Ugh. Eventually I gave in and I now use the same animation technique I've always used in platformers (hell, in anything) - a fixed frame rate of showing the frames and the animation is independent of the speed the player is actually moving. So the player moves smoothly but the character seems to slide across the landscape a little. It bugs me, and I'll be trying to fix it.

Once I got that out of the way I also worked on:
  1. animals
  2. yuck pools
  3. puffs when baddies are done for
  4. invulnerability after damage
  5. more level 1 tweakage
One of the animals is in today's screenshot:

(bigger)

The other animal is a rabbit. I like the bird better. I'm hoping to create more animals.

I also spent way too long debugging the rendering of the yuck pools. My own silly fault, of course.

2 comments

Day 5: boss battle GET!

Not a bad day's effort today. Again I spent a bit of time not actually doing the game which was nice.

When I started the week I used the porygon skeleton which comes with a "mode" system. I thought it was pretty cool, but today when I came to implement the front menu for the game I just decided I didn't want to have to code another bloody menu so I ditched the porygon mode code and swapped in cocos' code. After remarkably little pain I had a working menu :)

I set my sights on finishing the first level today which I almost achieved. All up I added:
  1. the front menu
  2. game over handling
  3. tutorial mode (an alternative playing of level 1 with little help popups)
  4. the first feather / powerup pickup
  5. the second spell - the one you start with
  6. better art for the yuck pool bubbles
  7. earthquake mode!!1!
  8. extended level 1 to full length (basically doubling its size)
  9. level 1 boss battle!!1!!
  10. refactoring, tweaks and cleanup all over the place
I spent some time writing one version of the second spell that just didn't pan out so I had to ditch it. In the end the version I came up with works better because it "powers up" better.

I didn't have time to get some stuff done that I wanted to: sketching out the second and third levels, and trying out some music and sfx (though I did play with sfxr to generate some sounds). I have the music selected but I've not actually tried it in-game.

Oh and birds fly away to freedom now instead of just hanging around ;)

No new screenshot today 'cos I'm just too damned tired. I hope to get a playable upload together tomorrow.

Add a comment

Day 6: the bird arrives!

Today I started with drawing the Grand Phoenix:

(bigger)

Before you all go on about how mad my art skillz are I totally used a step-by-step tutorial to get that image. Came out nicely though, I think :)

I spent bits of today working cocos stuff into the codebase to make scene management work nicer. I spent a frustrating half hour trying to figure out why my damned cocos animations weren't working, only to discover that I'd (intentionally) overridden the cocos layer setup method which schedules the animations. Whups. It's actually something I've been meaning to address in cocos - there's a few places where you have to override a base class method to add behavior where it'd be much, much nicer to be able to just fill out a stub. For example have cocos do its stuff in _on_enter() which invokes a stub on_enter(). Or perhaps a different approach that's more backwards compatible ;)

Anyhoo, the rest of the day saw:
  1. most of level 2 (town) done
  2. most of level 3 (castle) done
  3. make menu prettier
  4. end of level score tally
  5. end of level score
  6. high score table
  7. level 3 boss
  8. uploaded first version!
At this point the gameplay represents a whole game. There's a beginning, middle and end, with challenges along the way. The game detects the end (and game over) and handles them gracefully. There's a tutorial mode for level 1. There's a high score table, and scoring system encouraging replay.

I've still got a bunch to add. Tomorrow is looking to be a short dev day again so I'm not sure how much I'll get done before Sunday. Things I would really like to achieve before then:
  1. baddies shooting so there's some more variety in the baddies
  2. queen throwing stuff - at the moment the ultimate baddie doesn't fight back :(
  3. health pickup or perhaps pickup count allowing N pickups = health
  4. finish level 2
  5. finish level 3
  6. intermediate spell powerup (bouncing)
  7. secrets? did I say that? shh!
  8. fix circular baddie paths
  9. fix the clouds so you can actually see them ;)
  10. more birds, more powerups

8 comments

Day 7: the almost day

I spent most of today at a 6-year-old's birthday party. I now know what Ben 10 is all about :)

I got a few hours to work on the game though, and ended up with:
  1. screen resolution "independence" (I give up if you don't have 600 lines to work with)
  2. some baddies shooting
  3. a second-level spell
  4. created (thanks cfxr!) and added sound effects (though some need replacing)
  5. music - only one track though
  6. tweaks to level 2
  7. queen throws stuff at you now though she's still easy to beat ;)
  8. added notes about opengl, lepton and avbin requirements to the README
I need to play the game end-to-end before putting up a final release.

Phew. I'm pooped. Sleep time now. Catch you all at the finish line tomorrow :)

Add a comment

Day ... 8 :) the final rush

Well, not for me. I tweaked some of the sound effects, added a story screen, not too much.

Then I edited some of the pyweek.org site code to change a few things (turn off judging until after the 24 hour upload grace period is over).

Then the deadline hit and I put together a source upload package. Which I tried out and got a bus error. Fixed, and finally uploaded my final submission! Yay!

Things I didn't get to do during the week:
  1. a switch to turn off the music
  2. much better Queen Baddie battle
  3. more props / decorations in the second and third levels
  4. "super jump" powerup which I thought might be fun
  5. a count of the "coin" pickups to count towards regaining health
  6. fix sometimes-broken circular baddie paths (sometimes they work, sometimes not so much)
  7. sloping ground
  8. some secrets :)
On the other hand I achieved my substantive goal: write a platforming game using Inkscape + SVG as the level design tool, and have some pretty effects using lepton.

2 comments

On coroutines

One of my experiments for this pyweek was to make use of Python's new(ish) coroutine support to implement the behavior of the player, baddies and some other scripted things in the game.

In short this looks something like this:

class Player
    def update(self):
        while 1:
            dt = yield
            self.x += self.dx * dt
            self.y += self.dy * dt

player = Player()
update = player.update()
update.send(None)
...
update.send(dt)

OK, so this is neat in theory. You could have multiple loops in there with multiple entry points (yield statements) depending on the current "state" of the player, and so on. I've seen some nice implementations of byte-chomper network servers using this sort of approach.

Only it didn't seem to work. Eventually I was back at square one with a single yield statement and a really, really long update() code body.

I've just refactored it to use separate update() methods depending on the current state of the player:

class Player
    def update(self, dt):
        self.current_action(dt)

    def do_jump(self, dt):
        # do jump stuff
        if landed:
           self.current_action = self.do_land

player = Player()
player.current_action = player.stand_still

I'll note that the simpler coroutines I implemented for the baddies and other things are still coroutines - but I'll probably re-implement them as regular functions as well.

So, was I just doing it wrong, or are coroutines just not that useful for a time-based player update?

16 comments

Continuation...

No, not continuations, but rather where I'm going with the game now :)

I gave a quick off-the-cuff presentation to MPUG last night showing how my game evolved and grew over the week. I used a checkout from my local bzr repository from when I finished each night. I'll be giving a better version of that presentation at this weekend's BarCampMelbourne.

I've been refactoring the player control/update code to clean it up. I'm also planning on writing proper cocos layers for my SVG layer loading using squirtle. This should clean up the game rendering and management.

I've got a couple of other local changes to cocos that I need to check over before committing too.

I wonder whether pyggy could do with being a couple of months shorter?

Add a comment

Better controls

Abbey was having a bit of difficulty using the keyboard to play the game. She's not comfortable using multiple keys at once and even then often has to look to find keys.

So I've added WiiMote support :)

Actually it's a bit of a hack at the moment because I couldn't get any of the OS X bluetooth / wiimote libraries to work. I ended up installing DarwiinRemote and configured it to generate keys appropriate for my game (with the remote held sideways and buttons 1 & 2 used for spell & jump).

I'm going to look into PS3 controllers next...

1 comment

Post-mortem presentation video

I presented a post-mortem kinda thing at last weekend's BarCamp in Melbourne. The kind folks there video taped it! So here it is: The 7-day Game.

I'm going to look into putting together a higher-quality video with basically the same content but recorded directly off my laptop. If anyone's got any suggestions for content they'd like to see in the video (except for "less 'um's please") then please comment :)

5 comments