PyWeek - Our First Time - feedback

Fun Prod Inno Disq N/W Comments
1 1 1 yes

<pre>
Traceback (most recent call last):
File "gelatinfighters.py", line 35, in <module>
options = menu.do_menu(screen)
File "game/menu.py", line 46, in do_menu
arena.bg_blit(screen)
File "game/gelarena.py", line 287, in bg_blit
imgarray2 = N.transpose(imgarray)
File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/Numeric/Numeric.py", line 248, in transpose
return multiarray.transpose(a, axes)
ValueError: Invalid type for array
</pre>

1 1 1

Sorry, I cannot play your game.

2 3 3

not much interesting. color theme blurs everything

3 3 3 yes

Numeric is no longer supported.. i installed numpy and replaced numeric with numpy.. but couldn't get it to work.. and didn't bother digging further.. sorry

3 4 4

Music and some of the effects were top-notch. I would have preferred a one-player mode since I don't have any friends...

1 1 1 yes

Game crashed with the following traceback after selecting "2 Player":

File "gelatinfighters.py", line 35, in <module>
options = menu.do_menu(screen)
File "game/menu.py", line 46, in do_menu
arena.bg_blit(screen)
File "game/gelarena.py", line 288, in bg_blit
self.warp_columns(imgarray2, gelcolor, 2)
File "game/gelarena.py", line 357, in warp_columns
imgarray[i][-top:] = imgarray[i][:top].copy()
ValueError: matrices are not aligned for copy

2 3 2

Too bad it's so incomplete! I had to fiddle a lot to get it working as I don't have Numeric (come on, it's been obsolete for the last 5 years!). And framerate is bad and it seems the debug "hit rectangles" were left in. But the wobbly walls and the competent art and music are still valuable accomplishments!

2 2 3

Some parts of the game were well done, I thought. But the controls were really unresponsive for me. I like that you put in some combos but they all seem to be variations of jumping and blocking. Why not some offensive combos? The menus were a bit unintuitive. Enter should work to select. I don't have any friends I want to bore with such an unpolished game: 1-player mode would have been much more fun, even if the AI was really lousy.

1 1 1 yes

Numeric has been deprecated for a long time and it's not present in many systems. Use numpy instead.

http://numpy.scipy.org/

4 2 3

Nice work on your menu system, I really enjoyed that effect. The game was great, and if this is
your first time then brilliant. The "numeric" library has been deprecated in favor of the
"numpy" library (I was able to successfully replace calls to numeric with ones to numpy). You
should be extremely careful when typing

from something import * while at first this seems convenient; it can cause headaches later on,
as some of your code doesn't do what you think it does and caused bugs on my machine!! :) Keep up
the good work, you do make fine games .

1 1 1 yes

Couldn't build Numeric on Mac OS X 10.6, or find a prebuilt lib. It's a shame, I was curious to try the game.

Traceback (most recent call last):
File "gelatinfighters.py", line 4, in <module>
import menu, util
File "game/menu.py", line 2, in <module>
import gelarena, util
File "game/gelarena.py", line 1, in <module>
import pygame, sys, math, sprite
File "game/sprite.py", line 2, in <module>
import Numeric as N
ImportError: No module named Numeric

1 1 1 yes

Windows 7, python 2.6, pygame 1.9.1, latest pyglet version; No Readme present so I don't know what went wrong or which dependency is missing.

1 1 1 yes

NumPy is the most recent and most actively supported package.
Numarray and Numeric are no longer supported.
Sorry!

1 1 1 yes

At the menu screen, on trying to start the game, I get: Traceback (most recent call last): File
"gelatinfighters.py", line 35, in options = menu.do_menu(screen) File "game/menu.py",
line 46, in do_menu arena.bg_blit(screen) File "game/gelarena.py", line 288, in bg_blit
self.warp_columns(imgarray2, gelcolor, 2) File "game/gelarena.py", line 357, in
warp_columns imgarray[i][-top:] = imgarray[i][:top].copy() ValueError: matrices are
not aligned for copy