Gameplay almost complete

Gameplay is shaping up nicely. You can turn on and off sprinklers, dogs jump on you, old people say "hi there", there is hearing (dogs and old people look in the direction of the sound if they hear something), you can pick up and throw rubber piggies (sound still missing on landing), pass soccer balls and run around screaming if your buddy turns on the sprinkler on you! I'm afraid with all the strange mechanics a hefty tutorial will be necessary, but it will have to wait until tomorrow.

I've also managed to speed up pyglet greatly. Try this:

import pyglet
pyglet.options['debug_gl'] = False
def zero_errcheck( result, func, arguments )
	return result
pyglet.gl.lib.errcheck = zero_errcheck

EDIT: Not sure if this does anything, it's possible that something else I did is responsible for the speedup... Starting with python -O sounds good too, thanks, Richard!

Download lawn-tftg-0.3.zip

Cursor keys move (press SHIFT to strafe), TAB switches, walk into tap to turn, walk into piggy to pick up, click soccer ball to pass, click piggy in inventory to throw. Click and drag (or approach window edge) to pan, mouse wheel zooms.

(log in to comment)

Comments

Looks very pretty, nice work.
@cyhawk: run python with -O to automatically turn the pyglet debugging off :)
also, looking awesome!