Eugman Home
Home -- Games -- Tutorials -- Blog
This is a list of what works, what doesn't and any changes need to get the stuff to work. give me a few hours to get it all organized.
Allefant
Doesn't work when I run from command line.
File "/home/eugene/Desktop/pyweek-4-finals/allefant/allefant/lib/swarm.py", line 31, in render
glEndList()
OpenGL.GL.GLerror: [Errno 1282] invalid operation
Ambling
Works. Needed ctypes.
Patched version here.
BaloonEscape
Works.
BDG_07_04
Works from commandline only.
BlancMange
Doesn't work past main menu.
File "/home/eugene/Desktop/pyweek-4-finals/Blancmange/KidBandyhootsCrazyAdventures-v1.0/lib/glengine.py", line 37, in __init__
self.screen=display.set_mode((gs.xres,gs.yres),(FULLSCREEN * Engine.isFullScreen)|self.modeFlags,32)
pygame.error: Couldn't find matching GLX visual
To fix change:
lib/glengine.py needs lines 36,37 updated to remove the 32 bit depth.
self.screen=display.set_mode((gs.xres,gs.yres),pygame.DOUBLEBUF,32)
self.screen=display.set_mode((gs.xres,gs.yres),(FULLSCREEN * Engine.isFullScreen)|self.modeFlags,32)
to
self.screen=display.set_mode((gs.xres,gs.yres),pygame.DOUBLEBUF)
self.screen=display.set_mode((gs.xres,gs.yres),(FULLSCREEN * Engine.isFullScreen)|self.modeFlags)
Also you may need to remove **kw from line 179 from enemyactor.py
carstunt
Works from commandline only. Couldn't figure out how to exit.
cent_of_fb
Works.
Cthulhu_32v2
Works from command line only.
Cursed
Works from command line only. Well it is curses based.
DashmanDX
Works.
DrBHart
Doesn't work.
File "/home/eugene/Desktop/pyweek-4-finals/DrBHart/drcbh-0.0/lib/gfx.py", line 6, in ?
from OpenGL.GL.ARB.point_sprite import *
ImportError: No module named point_sprite
familyguys
Works. Screen was too big for me.
faraway
Crashed after main menu. I have PyOde 1.1.0-1 installed.
File "src/dambuilder/physbody.py", line 14, in Ball
j = ode.Plane2DJoint(ode_world)
AttributeError: 'module' object has no attribute 'Plane2DJoint'
freakk
Works.
fidgame
Only works from commandline.
f-m
Works.
Gang_of_6
Works.
GHRotL
Works but I thought it didn't cause left ctrl doesn't work and when I die it just closes.
gin_n_phytonic
Works. Freakin wierd game.
GOD
Works.
greg_pw4
Works.
Hectic
Works.
hell-team
Works from commandline only. Run hermes.py
Jihad
Only works from commandline
John
Only works from commandline
jwhitlark
Works.
LastMinute
Works.
mango3
Only works from commandline.
MathJumper
Doesn't work.
File "/home/eugene/Desktop/pyweek-4-finals/MathJumper/MathJumper/lib/graphics.py", line 22, in __init__
self.screen = pygame.display.set_mode((self.dataManager.w, self.dataManager.h), OPENGL|DOUBLEBUF, 32)
pygame.error: Couldn't find matching GLX visual
to fix:
NOTE: if you can't start the game, remove the "32" parameter from graphics.py, row 22. It should look like this:
self.screen = pygame.display.set_mode((self.dataManager.w, self.dataManager.h), OPENGL|DOUBLEBUF)
MegaVertex
Doesn't work.
ile.py", line 17, in __init__
i = gui.Image(data.filepath("Desktop1.jpg"))
File "/usr/lib/python2.4/site-packages/pgu/gui/basic.py", line 92, in __init__
if type(value) == str: value = pygame.image.load(value)
pygame.error: Couldn't open /home/eugene/Desktop/pyweek-4-finals/MegaVertex/Gliders-0.4/data/Desktop1.jpg
Mindless_pw4
Only works from the commandline
mmorts
Works.
MonkeyCow
Only works from commandline
Opi2
Only works from commandline. Run main.py . Too big for my screen.
PrintStarThree
Doesn't work.
File "/home/eugene/Desktop/pyweek-4-finals/PrintStarThree/elevate-source-1/lib/level.py", line 30
class LevelHandler():
^SyntaxError: invalid syntax
To fix:
Run Python 2.5? or get patched version.
PyClimb
Only works from commandline. Screen is too big.
PyCor
Works.
PyTower
Works.
PyWiii
Works.
SDAFF
Won't work for me.
ImportError: libboost_python.so.1.33.1: cannot open shared object file: No such file or directory
Selsine_2_0
Works.
SimRex
Doesn't work for me. Probably need to alter directory structure.
OSError: [Errno 2] No such file or directory: 'data/levels'
TBS
Doesn't work. I have PyODE version 1.1.0-1
AttributeError: 'module' object has no attribute 'Plane2DJoint'
Tee-py4
Works.
Thecode
Works.
ThEdA
Works. Press esc to continue and enter to quit. WTF!!!
TLP-2
Works. Move the data and level directories up.
toba4
Works. Don't run the pyw file in windows.
Trailblazer3
Only works from commandline. Maybe. Could seem to escape when I wanted to. Got spammed Unhandled event MouseMotion. when I started it up.
trainingwheels
Only works from commandline.
vi
Works.
zankar2
Works.
zK
Doesn't work. Also no skellington.
fxmap.py", line 4
class Tile():
^
SyntaxError: invalid syntax
Either run it in python 2.5 or remove the ()'s