comparison TODO @ 367:c786fc4b8894

Add 'pygame event full' to known issues
author Neil Muller <drnlmuller@gmail.com>
date Wed, 09 Sep 2009 22:14:34 +0000
parents 790f1238f5a0
children 14d49a7d8ffc
comparison
equal deleted inserted replaced
366:790f1238f5a0 367:c786fc4b8894
7 * <confluence> We should have text images instead of buttons (in the various menus and toolbars). 7 * <confluence> We should have text images instead of buttons (in the various menus and toolbars).
8 8
9 * Persistent high scores 9 * Persistent high scores
10 10
11 * Better fox move logic 11 * Better fox move logic
12 - Tweak weighting of free chickens
13 - Foxes should eat the chickens immediately when they move onto the
14 occupied square - avoid the fox drawn on top of chicken thing.
12 15
13 * More game levels / progression of difficulty 16 * More game levels / progression of difficulty
14 17
15 * Improve performance when many foxes or chickens 18 * Improve performance when many foxes or chickens
16 19
32 Referenced from: /Volumes/Operation Fox Assault/Operation Fox Assault.app/Contents/Frameworks/libpython2.5.dylib 35 Referenced from: /Volumes/Operation Fox Assault/Operation Fox Assault.app/Contents/Frameworks/libpython2.5.dylib
33 Expected in: /usr/lib/libSystem.B.dylib 36 Expected in: /usr/lib/libSystem.B.dylib
34 37
35 Sep 7 14:25:21 Kleine crashdump[402]: Operation Fox Assault crashed 38 Sep 7 14:25:21 Kleine crashdump[402]: Operation Fox Assault crashed
36 Sep 7 14:25:21 Kleine crashdump[402]: crash report written to: /Users/chriswei/Library/Logs/CrashReporter/Operation Fox Assault.crash.log 39 Sep 7 14:25:21 Kleine crashdump[402]: crash report written to: /Users/chriswei/Library/Logs/CrashReporter/Operation Fox Assault.crash.log
40 """
41
42 pygame event queue full bug.
43 Sep 10 22:01: <eltigre> one IndexError and one pygame event overflow
44 ...
45 Sep 10 23:15: <eltigre> Hodgestar, jerith : http://dpaste.com/91590/
46
47 From pastebin:
48 """
49 Traceback (most recent call last):
50 File "run_game.py", line 4, in <module>
51 main.main()
52 File "/home/andi/projekte/pyweek/Rinkhals/foxassault-1.0.0/gamelib/main.py", line 38, in main
53 engine.run(MainMenuState(engine), screen)
54 File "/home/andi/projekte/pyweek/Rinkhals/foxassault-1.0.0/pgu/engine.py", line 104, in run
55 self.loop()
56 File "/home/andi/projekte/pyweek/Rinkhals/foxassault-1.0.0/pgu/engine.py", line 123, in loop
57 if self.fnc('event',e): return
58 File "/home/andi/projekte/pyweek/Rinkhals/foxassault-1.0.0/pgu/engine.py", line 79, in fnc
59 if v != None: r = f(v)
60 File "/home/andi/projekte/pyweek/Rinkhals/foxassault-1.0.0/gamelib/engine.py", line 229, in event
61 return pygame.event.post(START_DAY)
62 pygame.error: Event queue full
37 """ 63 """
38 64
39 == COMMENTS == 65 == COMMENTS ==
40 66
41 Farmer's weekly (daily?) -- egg/chicken/fox report thing. (Yay Marc!) 67 Farmer's weekly (daily?) -- egg/chicken/fox report thing. (Yay Marc!)