That's All Folks

Woot!

We got something turned in!

What an experience. No ideas til tuesday, then two and half hectic days of coding and badgering my artist! I got a lot completed though. More than I thought I would manage with only a lame space invaders clone as my warmup in pygame (from two years ago no less!). So. Fly fast, collect feathers and try to not blink!

I'm aware the game is tuned horribly and there's only one level (the "next level" option is a lie.)
We're considering revamping this entry for the pyggy awards though. Hopefully we will have a better timeframe than we did for pyweek9. I'm leaving today (Friday afternoon) for a camping trip and my artist/designer just started college on Monday (Day 2)! =P

Enjoy! I can't wait to judge!

(log in to comment)

Comments

why not a lame space invaders with feathers? this could be really fun! just upload something, like i did! :)
well, this is like a lame, turbo-1942 with feathers =P
why not? even if the game gets rated under 1.0, or getting disqualified, why bother? at least this would make you feel some encouraging taste about pyweek.org , and wishing you to try a better game in the next competition! :) - i think the main idea is getting some fun on being part of this! :)
but i'm having problem on running it... - do someone know what may be wrong?

guest@p4:/mnt/sda1/trabalhos/pygame/recolhas/pyweek/09/_rascunhos/turbofeatherinterceptor_0v5_final$ python tfi.py
Traceback (most recent call last):
  File "tfi.py", line 331, in <module>
    main()
  File "tfi.py", line 328, in main
    menu.loop()
  File "tfi.py", line 151, in loop
    feathers,time = level.loop()
  File "tfi.py", line 310, in loop
    self.meter.fill((200,100,100,100),rect=pygame.Rect(2,400-partial,12,5))
TypeError: fill() takes no keyword arguments
guest@p4:/mnt/sda1/trabalhos/pygame/recolhas/pyweek/09/_rascunhos/turbofeatherinterceptor_0v5_final$
he is going to get high DNW rating :)
i cant start it too, small error that i dont want to fix.
On windows, 2.5 and 2.6:

Traceback (most recent call last):
  File "tfi.py", line 331, in <module>
    main()
  File "tfi.py", line 328, in main
    menu.loop()
  File "tfi.py", line 151, in loop
    feathers,time = level.loop()
  File "tfi.py", line 235, in loop
    start_time = self.timer()
TypeError: 'NoneType' object is not callable
@alia and other windows users with the error 

start_time = self.timer()
TypeError: 'NoneType' object is not callable
 
you can workaround by replacing the line 97 in tfi.py (the only .py file !!)
  if sys.platform == "win32":
 
by 
  if 0:#sys.platform == "win32":
 
@nitrofurano and others with the error:

self.meter.fill((200,100,100,100),rect=pygame.Rect(2,400-partial,12,5))
TypeError: fill() takes no keyword arguments
 
You have an old pygame version. Consider to upgrade to pygame 1.9.1
The game runs ok with pygame 1.9.1





Ah thanks! oooh eye wobble!