Sky Journey final
Huhh... It wasn't easy. There are many features we didn't have time to implement. Maybe we'll release them in a patch after the competiton. Rune drawing is a little difficult so be patient and follow the instuctions we gave. You'll succeed for sure and become a master wizard at the end of the game :)(log in to comment)
Comments
C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sky_journe y-1.0a>python run_game.py Traceback (most recent call last): File "run_game.py", line 12, in import main File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\main.py", line 17, in from Scene import * File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\Scene.py", line 16, in from MotionDetect import MotionDetect, Runes, MouseSampler File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\MotionDetect.py", line 3, in import runes File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\runes.py", line 17 SyntaxError: Non-ASCII character '\xe9' in file C:\Dokumente und Einstellungen\W artungsKonto\Desktop\sky_journey-1.0a\sky_journey-1.0a\lib\runes.py on line 17, but no encoding declared; see http://www.python.org/peps/pep-0263.html for detai ls
That's very strange though. "No free channels available" is an error in the SDL_mixer module and it has nothing to do with font.render. I suspect that pygame uses a separate thread for playing sound effects and the error occured in that thread (and it raised a python exception of course). Maybe there were 8 sound effects playing the same time (or 7 because the music is just a sound effect)...
Try the following:
Insert this into main.py into line 50
pygame.mixer.set_num_channels(16)Maybe that will solve the problem.
simono on 2007/04/07 20:09:
hi... under winXP with python2.5 i got this error, probably because of umlaute or stuff. C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sky_journe y-1.0a>python run_game.py Traceback (most recent call last): File "run_game.py", line 12, in import main File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\main.py", line 17, in from Scene import * File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\Scene.py", line 16, in from MotionDetect import MotionDetect, Runes, MouseSampler File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\MotionDetect.py", line 3, in import runes File "C:\Dokumente und Einstellungen\WartungsKonto\Desktop\sky_journey-1.0a\sk y_journey-1.0a\lib\runes.py", line 17 SyntaxError: Non-ASCII character '\xe9' in file C:\Dokumente und Einstellungen\W artungsKonto\Desktop\sky_journey-1.0a\sky_journey-1.0a\lib\runes.py on line 17, but no encoding declared; see http://www.python.org/peps/pep-0263.html for detai ls