
Ludum Dare #21compo
Escape from the Frame
Done in 48 hours. Simple, too many mini games, so none of them are as high quality as I would like.
OS X: tested on my OS X Lion machine, I don't have a pristine machine to test on, nor an older machine, so I'm only saying it works on Lion. It _should_ work w/out installing pygame.
Linux: you must have python-pygame previously installed (debian/ubuntu: "apt-get install python-pygame"). you can download the source and run 'python escape_from_the_frame.py' or you can feed the url to 'pip install' and run 'escape'
OS X: tested on my OS X Lion machine, I don't have a pristine machine to test on, nor an older machine, so I'm only saying it works on Lion. It _should_ work w/out installing pygame.
Linux: you must have python-pygame previously installed (debian/ubuntu: "apt-get install python-pygame"). you can download the source and run 'python escape_from_the_frame.py' or you can feed the url to 'pip install' and run 'escape'
Comments9

d_m23 Aug 2011, 04:28
This was simple but fun. Obviously the graphics weren't very good, but I didn't mind so much. The music, while spare, captured the mood and tenseness of the game well. I liked the different minigames and didn't get bored with them. The game wasn't a long one but held my attention. Good job!
thonk23 Aug 2011, 05:27
For some reason, I found "avoiding the sun" insanely fun. Unfortunately, the game crashed 3 times for me on that level.

JaJ23 Aug 2011, 20:21
I liked escape the sun the best as well.

KilledByAPixel24 Aug 2011, 03:20
Having a different mini game every level kept me interested the whole way through. I think it would have been better without the music.
tcstyle26 Aug 2011, 11:52
That was ... strange. Annoying music, good ideas.
Seems you are creating to many new image object in some cases, which fills the memory. (Haven't checked the code, just the errors wally posted)
Seems you are creating to many new image object in some cases, which fills the memory. (Haven't checked the code, just the errors wally posted)

summaky27 Aug 2011, 07:44
The music was rather annoying. The idea was good.

Cosmologicon27 Aug 2011, 17:26
Not bad. I like "the frames are cramping your style, bro". It was also pretty funny the way you explained the missing levels. I have to say that minigames with different mechanics are always ambitious. Even if they're not hard to write, they take so much time. You might be better served just sticking with a single mechanic. It would have given you more time for polish, anyway. Agreed that the solar system level was obviously the best.

vitae27 Aug 2011, 19:56
I'll have a look into the 'out of memory' errors. It seems that my sprites aren't being reaped, I'm not sure what's referencing them though.



-------------
Traceback (most recent call last):
File "escape_from_the_frame.py", line 59, in <module>
File "escape_from_the_frame.py", line 56, in main
File "escape_from_the_frame.py", line 50, in run
File "escape\model\model.pyo", line 306, in update
File "escape\model\actor.pyo", line 36, in __init__
File "escape\library\load_image.pyo", line 33, in load_image
pygame.error: Out of memory
-------------
Traceback (most recent call last):
File "escape_from_the_frame.py", line 59, in <module>
File "escape_from_the_frame.py", line 56, in main
File "escape_from_the_frame.py", line 50, in run
File "escape\model\model.pyo", line 263, in update
File "escape\model\actor.pyo", line 36, in __init__
File "escape\library\load_image.pyo", line 33, in load_image
pygame.error: Out of memory