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 - Rennnyyy

Pages: [1]
1
Python / Import error
« on: February 28, 2013, 04:59:56 pm »
Hey guys,

I'm new to the Python SFML project. I already used the C++ version of SFML without any problems, but I have problems with the Python version. I downloaded the SDK and built it properly with Visual C++ 2008 and Python2.6. I'm running Windows 7 x64.

When I try to import the sf-module with "from PySFML import sf" nothing happens. The process is running and running and running, but no error occurs or something else happens. It's like when you have an empty "while True: pass" loop.

Some ideas how to fix that problem, or what I'm doing wrong?

Furthermore I tried the precompiled and linked files from the download page and I got the same error.

Greets,

Rennnyyy

2
SFML wiki / Re: sfeMovie project [v1.0 RC1 available]
« on: July 22, 2012, 01:43:27 pm »
No I searched the whole PC for another openal32.dll ... didn't found any.

Yeah it's occuring everytime -.-

3
SFML wiki / Re: sfeMovie project [v1.0 RC1 available]
« on: July 22, 2012, 12:14:46 pm »
Ok I did exactly what you said, but it didn't change the problem.

The exception changed a bit: now its at position

Unhandled excaption at point 0x6b627bc5 in SMFL_Test.exe: 0xC0000005: Access violation while reading at position 0x05670148

The disassemly code stays the same.

4
SFML wiki / Re: sfeMovie project [v1.0 RC1 available]
« on: July 21, 2012, 08:42:46 pm »
Ah ok ... now i know why another exampled failed when searching for the process entry point :D

I'll try when I'm at home again. Thanks a lot!

5
SFML wiki / Re: sfeMovie project [v1.0 RC1 available]
« on: July 21, 2012, 07:53:41 pm »
Here it is. It includes the VC-Project, the cpp file and the video I used (btw. i tried another one, but nothing changed).

http://www.file-upload.net/download-4583063/SMFL.zip.html

6
SFML wiki / Re: sfeMovie project [v1.0 RC1 available]
« on: July 21, 2012, 07:37:59 pm »
Okey, I tried everything what is thinkable (i think :D)

1) sfe-movie.lib with SMFL *.lib on Release
2) sfe-movie.lib with SMFL *-d.lib on Release
3) sfe-movie.lib with SFML *-s.lib on Release
4) sfe-movie.lib with SFML *-s-d.lib on Release

On 3) and 4) the linker returned a lot of errors. When using 2) it crashes while loading the window. And 1) is the described error thing.

And when I'm right I'm linking dynamicly, because I need all the *.dll files to execute the programm.

Am I doing anything wrong?

7
SFML wiki / Re: sfeMovie project [v1.0 RC1 available]
« on: July 21, 2012, 07:29:31 pm »
Are the sfeMovie *.lib files made for Release or Debug? Than I can answer that :D

8
SFML wiki / Re: sfeMovie project [v1.0 RC1 available]
« on: July 21, 2012, 06:38:19 pm »
Hey guys,

I'm definitly new to SFML and sfeMovie, so maybe my question seems stupid or silly.

I installed SFML and sfeMovie on my Windows XP 32bit machine in MSVC+ 2008 Express. Than I compiled and linked the given example for sfeMovie, which you can find on the wiki. But when I closed the SFML Window, everytime an error occured about memory overwrite. I think it comes with sfeMovie and not with SMFL itself, because without adding a movie widget everything works alright. I also tried to compile in Debug and in Release mod, but the error stayed the same.

This is the error message (i try to translate it to English, because at my computer it is German, so don't kill me for my English :) )

Unhandled excaption at point 0x004c53cc in SMFL_Test.exe: 0xC0000005: Access violation while reading at position 0x056ac040.

The editor is not able to show a line in code where it happens. He can only give me the disassembly:

[...]
004C53B3  mov         ecx,dword ptr [esi+10h]
004C53B6  mov         dword ptr [esi+0Ch],1
004C53BD  push        ecx 
004C53BE  call        00495880
004C53C3  mov         eax,dword ptr [esi+8]
004C53C6  mov         dword ptr [esi+10h],edi
004C53C9  mov         dword ptr [esi+0Ch],edi
004C53CC  mov         edx,dword ptr [eax]
004C53CE  add         esp,4
004C53D1  push        eax 
004C53D2  mov         eax,dword ptr [edx+8]
004C53D5  call        eax 
004C53D7  mov         eax,dword ptr [esi+4]
004C53DA  mov         dword ptr [esi+8],edi
004C53DD  cmp         eax,edi
[...]

The error occurs at 004C53CC mov edx, dword ptr [eax].

Is that a error based on my stupidnes or has it to do with the sfeMovie script? Can anyone tell me how to fix?

Pages: [1]