SFML community forums

Help => System => Topic started by: player931402 on March 19, 2012, 10:39:30 pm

Title: Thread issues
Post by: player931402 on March 19, 2012, 10:39:30 pm
Hi guys!

I need to have in "par" my game with the Listen socket on my client.

Now, i'll try to do somwhat like this but doesn't work!

Someone can help me?

Code: [Select]
void ThreadFun(void *UserData)
{
Network->work();
}

int main()
{
Game* game= new Game();

sf::Thread Threads(&ThreadFun);

Game->work();

    return EXIT_SUCCESS;
}



Info -> the thread starts much after commencing the game
( Before i need to send/recv singles datas in another methods. )
SFML 2.0 , vc++2010
Title: Thread issues
Post by: Laurent on March 20, 2012, 07:53:35 am
And what's your problem?
Title: Thread issues
Post by: player931402 on March 20, 2012, 11:49:13 am
Quote from: "Laurent"
And what's your problem?



soz:

Code: [Select]
1>------ Inizio compilazione: Progetto: Schizzo, Configurazione: Release Win32 ------
1>  main.cpp
1>D:\sfml2\include\SFML/System/Thread.inl(39): error C2198: 'void (__cdecl *)(void *)': argomenti insufficienti per una chiamata
1>          D:\sfml2\include\SFML/System/Thread.inl(39): durante la compilazione della classe modello, funzione membro 'void sf::priv::ThreadFunctor<T>::Run(void)'
1>          with
1>          [
1>              T=void (__cdecl *)(void *)
1>          ]
1>          D:\sfml2\include\SFML/System/Thread.inl(70): vedere il riferimento all'istanza del modello di classe 'sf::priv::ThreadFunctor<T>' in corso di compilazione
1>          with
1>          [
1>              T=void (__cdecl *)(void *)
1>          ]
1>          main.cpp(22): vedere il riferimento all'istanza del modello di funzione 'sf::Thread::Thread<void(__cdecl *)(void *)>(F)' in corso di compilazione
1>          with
1>          [
1>              F=void (__cdecl *)(void *)
1>          ]
========== Compilazione: 0 completate, 1 non riuscite, 0 aggiornate, 0 ignorate ==========
Title: Thread issues
Post by: Laurent on March 20, 2012, 12:00:35 pm
Have you read the documentation of sf::Thread? The class has changed in SFML 2, everything's explained in the doc with examples.