Re: [pygame] Fast kd-tree implementation

2007-05-09 Thread John Eikenberry
Malcolm Ryan wrote: > This documentation is a little sparse. Could you possibly provide a > snippet of example code? Wikipedia has a decent article on kd-trees. It even has a simple python implementation and basic example usage. http://en.wikipedia.org/wiki/Kd-tree -- John Eikenberry [EMAIL

[pygame] BUG: Segfault when rotating a HWSURFACE

2007-05-09 Thread John Krukoff
So, I get this segfault error whenever I try to call pygame.transform.rotate on a hardware surface: Fatal Python error: (pygame parachute) Segmentation Fault This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more

Re: [pygame] Help making surfarray work

2007-05-09 Thread René Dudfield
Sorry, the link has been fixed now. http://rene.f0o.com/~rene/stuff/Numeric-24.2.win32-py2.5.exe On 5/10/07, Elliott Slaughter <[EMAIL PROTECTED]> wrote: Sorry, the binary doesn't seem to be there: "The requested URL /~rene/stuff/Numeric-24.2.win32-py2.5.exe was not found on this server." Tha

Re: [pygame] Help making surfarray work

2007-05-09 Thread [EMAIL PROTECTED]
Highlighted Numeric-24.2.win32-py2.5.exe and did a google search... Gone most places, but found it here .. http://blog.litwiniuk.net/2007/04/22/numeric-242-pod-win-dla-py25/ Not sure what language that is.. Chech, polish ?? don't know. Hope it helps though. Dennis --- On Wed 05/09, Elliott

Re: [pygame] Help making surfarray work

2007-05-09 Thread Elliott Slaughter
Sorry, the binary doesn't seem to be there: "The requested URL /~rene/stuff/Numeric-24.2.win32-py2.5.exe was not found on this server." Thanks again for your help. On 5/9/07, René Dudfield <[EMAIL PROTECTED]> wrote: Here's a numeric binary for windows python2.5. http://rene.f0o.com/~rene/stu

Re: [pygame] PyGame Surfarray still depends on Numeric

2007-05-09 Thread Greg Ewing
Dave LeCompte (really) wrote: What would be necessary to break the dependency on Numeric? In the long term, using the new buffer interface that's being defined for py3k. In the meantime, it seems like there really needs to be two versions of pygame.surfarray, one for Numeric and one for Numpy

Re: [pygame] PyGame Surfarray still depends on Numeric

2007-05-09 Thread René Dudfield
Here's a binary for windows python2.5: http://rene.f0o.com/~rene/stuff/Numeric-24.2.win32-py2.5.exe I've added a link to this on the download page, so people should be able to find it easier. I'll update the other documentation explaining the whole Numeric/Numpy experience in the future. The pl

Re: [pygame] Help making surfarray work

2007-05-09 Thread René Dudfield
Here's a numeric binary for windows python2.5. http://rene.f0o.com/~rene/stuff/Numeric-24.2.win32-py2.5.exe Cheers, On 5/10/07, Elliott Slaughter <[EMAIL PROTECTED]> wrote: I have been having trouble getting the surfarray module to work. I am using Python 2.5.1 and Pygame 1.7.1 (both installed

[pygame] Help making surfarray work

2007-05-09 Thread Elliott Slaughter
I have been having trouble getting the surfarray module to work. I am using Python 2.5.1 and Pygame 1.7.1 (both installed from binaries) on Windows XP. It seems that surfarray uses the Numeric module, which is no longer being actively supported. There is no binary for Numeric, and it would be some

[pygame] touch screens

2007-05-09 Thread Jason Coggins
Are there functions in PyGame that allow for working with touch screens? Jason

Re: [pygame] Volunteer to help with windows packaging?

2007-05-09 Thread Casey Duncan
Dave LeCompte was kind enough to lend a hand so it looks like I'm all set. Thanks much for offering! -Casey On May 9, 2007, at 9:05 AM, Ethan Glasser-Camp wrote: Casey Duncan wrote: Any takers? Hi, I'm hardly a l33t w1nd0ze h4x0r, but if nobody else is willing to volunteer, I'll see what

Re: [pygame] PyGame Surfarray still depends on Numeric

2007-05-09 Thread Miles Van Pelt
- Original Message - From: "Dave LeCompte (really)" <[EMAIL PROTECTED]> To: Sent: Wednesday, May 09, 2007 8:26 AM Subject: [pygame] PyGame Surfarray still depends on Numeric The pygame.surfarray module depends on Numeric, and will fail to load if Numeric isn't installed. The Numeric

Re: [pygame] Volunteer to help with windows packaging?

2007-05-09 Thread Ethan Glasser-Camp
Casey Duncan wrote: > Any takers? Hi, I'm hardly a l33t w1nd0ze h4x0r, but if nobody else is willing to volunteer, I'll see what I can do. Ethan signature.asc Description: OpenPGP digital signature

[pygame] PyGame Surfarray still depends on Numeric

2007-05-09 Thread Dave LeCompte (really)
The pygame.surfarray module depends on Numeric, and will fail to load if Numeric isn't installed. The Numeric package isn't maintained any longer, and there are no Win32 binary versions for Python 2.5. I was able to get the source and install from there, which is a workaround for the time being.

[pygame] OLPC game jam

2007-05-09 Thread Richard Jones
OLPC are having a game jam! It sounds like a helluva lot of fun and I'm totally jealous of anyone who's in the US who could just fly there to attend. The deadline for signing up is the 12th of May, so hop to it! http://wiki.laptop.org/go/GameJam Remember - these things have built-in: Wireles

Re: [pygame] Choppy sound playback

2007-05-09 Thread Andrew Pape
Hi, I recently had a similar problem, and the solution, given to me, is below. It assumes you're running linux. Hope it helps. The first "export" line did the trick for me. If you need further help, you'll have to ask others. Cheers, Andrew. >you can force SDL to use ALSA or OSS by setting an

Re: [pygame] Making videos

2007-05-09 Thread René Dudfield
pyvnc2swf works pretty well... http://www.unixuser.org/~euske/vnc2swf/ On 5/9/07, Will McGugan <[EMAIL PROTECTED]> wrote: Hi, Does anyone have a solution for recording video of a PyGame app? I've tried Fraps, but that doesn't seem to work. Will