Day 7
Phew. I made it. It is done. Well, sort of. There's now 7 levels (1 intro, 1 boss, 1 extro, so actually 4). Didn't have time for any playtesting or packaging yet though.Also, my actual vision seems all twisted right now, adjusting to the twisting in the game. All text here in a straight line looks like on a circle outline, and when moving the head, it all gets swirly.. not good :P
So, be warned, don't play this game for too long or it will negatively influence your vision.. :P
(log in to comment)
Comments
> Also, my actual vision seems all twisted right nowI've sometimes wondered whether one's ability to perceive straight lines as straight is hard-wired into the brain, or whether it's somehow learned. Your experience suggests it might be learned, and you're starting to learn a different definition of "straight"...
richards:~/Desktop/allefant5 richard$ python run_game.py Traceback (most recent call last): File "run_game.py", line 16, in main.main() File "/Users/richard/Desktop/allefant5/lib/main.py", line 11, in main run.main() File "/Users/richard/Desktop/allefant5/lib/run.py", line 200, in main run.game = Game(run.w, run.h) File "/Users/richard/Desktop/allefant5/lib/game.py", line 21, in __init__ self.background1 = Picture("clock.jpg") File "/Users/richard/Desktop/allefant5/lib/picture.py", line 8, in Picture pic = CachedPicture(path, area) File "/Users/richard/Desktop/allefant5/lib/picture.py", line 17, in __init__ image = pygame.image.load(data.loadblock(path)) File "/Users/richard/Desktop/allefant5/lib/data.py", line 47, in loadblock io = StringIO(dump.index[filename]) KeyError: 'clock.jpg'
n = struct.unpack("=i", dump.mem[:4])[0]Change this to:
n = struct.unpack("<i", dump.mem[:4])[0]And the same in line 38, it should be:
o, l = struct.unpack("<ii", dump.mem[pos:pos + 8])
richard on 2007/09/08 22:10:
Congrats!