#include <SFML/Graphics.hpp>
#include <mutex>
#include <thread>
#include <iostream>
int main() {
sf::RenderWindow window;
window.create( {320, 240}, "Window Multi-thread test" );
window.setActive( false );
std::mutex renderWindowMutex;
std::thread drawThread( [ &window, &renderWindowMutex ] {
std::cout << "Entered drawing!" << std::endl;
bool windowIsOpen( true );
sf::RectangleShape rect( {160, 240} );
rect.setFillColor( sf::Color::Blue );
while( windowIsOpen ) {
std::lock_guard<std::mutex> lock( renderWindowMutex );
window.clear();
window.draw( rect );
window.display();
windowIsOpen = window.isOpen();
}
std::cout << "Exited drawing!" << std::endl;
} );
while( window.isOpen() ) {
sf::Event evt;
bool hasEvent;
{
std::lock_guard<std::mutex> lock( renderWindowMutex );
hasEvent = window.pollEvent( evt );
}
while( hasEvent ) {
std::lock_guard<std::mutex> lock( renderWindowMutex );
switch( evt.type ) {
case sf::Event::Closed:
window.close();
break;
case sf::Event::KeyReleased:
window.create( {320, 240}, "Window Multi-thread test" );
window.setActive( false );
default:
break;
}
hasEvent = window.pollEvent( evt );
}
}
drawThread.join();
}