Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - remi.k2620

Pages: [1] 2 3
1
Python / Tuple -> sf::Vector
« on: February 14, 2010, 01:04:33 pm »
That's a great idea.
I wanted to do it but never had enough motivation. I think the constructor should be able to take any object that has x and y attributes and tuples of length 2.

2
Python / Troubles compiling & running PySFML
« on: February 06, 2010, 11:27:19 am »
Copying the dynamic libs in Python26\Lib\site-packages\PySFML\ should work. What is the error message ? Did you copy the extlibs (libsndfile-1.dll and openal32.dll) as well ?

3
Python / PySFML2
« on: November 24, 2009, 12:28:25 pm »
Yes, or maybe Laurent can give you write access to the svn, it will be easier to follow the development and make modifications this way.

4
Python / PySFML2
« on: November 24, 2009, 11:38:38 am »
I maintained pysfml up to 1.5 but i didn't start pysfml2 yet (i'm quite busy in engineering school). Any help is apreciated.
Virtual functions are a bit tricky to implement, you can have a look in the already implemented virtual functions of soundstream, it should be more or less the same for onseek.

5
Python / Running on windows.
« on: September 04, 2009, 02:27:01 pm »
You need sfml mingw libraries (http://downloads.sourceforge.net/sfml/SFML-1.5-dev-windows-mingw.zip) : sfml-graphics.dll, sfml-system.dll, sfml-window.dll, sfml-audio.dll, and from the extlibs folder : libsndfile-1.dll and openal32.dll
See http://sfml-dev.org/forum/viewtopic.php?p=8022#8022 if you don't know where to put them.

6
Python / Python Sockets?
« on: August 27, 2009, 10:03:17 am »
No the network part isn't in the python binding since you can use the python standard library for that.

7
SFML projects / 4 In A Row, Your First SFML game tutorial
« on: August 22, 2009, 01:07:42 am »
Quote from: "redkiing"
Hi thx G.,
What would be the differences and advantages of making the board class inherit from sf::Drawable besides using App.Draw(board) instead of board.draw()?


It will inherit all drawable's methods, like SetPosition, etc...

8
Graphics / OpenGL bug? Nvidia driver bug? SFML bug? My fault?
« on: August 19, 2009, 09:48:07 pm »
I have the same problem :? with an ati card (radeon xpress 1100), 2.6.28 kernel, and SFML2 r1205 (I haven't tried any other revision).
Code: [Select]
X Error of failed request:  GLXBadContext
  Major opcode of failed request:  154 (GLX)
  Minor opcode of failed request:  3 (X_GLXCreateContext)
  Serial number of failed request:  30
  Current serial number in output stream:  33

Everything works fine with SFML 1.x.
Edit : the problem is the same with compiz on or off.

9
Python / sf.so
« on: August 13, 2009, 05:01:57 pm »
Quote from: "Pol"
What about Vectors? Sure it would be easy to implement in python but same with C++


I'll implement it in sfml2.

10
Python / sf.so
« on: August 13, 2009, 03:03:44 am »
Quote from: "Pol"
Yeah .. I already looked in http://downloads.sourceforge.net/sfml/SFML-1.5-python-sdk.zip .. still don't see it?

It is in the src folder.
Quote
Also, PySFML doesn't have Thread/Mutex? :|

No, you can use the python standard library for that.

11
Python / sf.so
« on: August 13, 2009, 12:55:01 am »
http://www.sfml-dev.org/download.php in the pysfml full sdk.

12
Python / Problems running PySFML with Python3.0
« on: August 06, 2009, 10:58:09 am »
Quote from: "nonexistent"
Anyway thanks, things are working now.

Great :)

13
Python / Problems running PySFML with Python3.0
« on: August 05, 2009, 11:32:26 am »
Quote from: "nonexistent"
So unless I am overlooking something I definitely do not have a conflict with an older PySFML.

I suggested a conflict with an older sfml, not an older pysfml. What does ls /usr/lib/libsfml* output ?

14
Python / Problems running PySFML with Python3.0
« on: August 04, 2009, 05:15:50 pm »
Quote from: "Laurent"
Remi, did you bind sf::Sound::SetRelativeToListener? It is a new function (maybe even the only one!) in SFML 1.5.


Yes, and there is also sf::Sound::IsRelativeToListener, see http://sfml.svn.sourceforge.net/viewvc/sfml/tags/1.5/python/src/Sound.cpp?r1=1056&r2=1064
So nonexistent you probably have an older version of sfml installed somewhere.

15
Python / Problems running PySFML with Python3.0
« on: August 03, 2009, 03:38:41 pm »
Make sure you have well installed the sfml librairies, with the good version.

Pages: [1] 2 3
anything