SFML 2.1

Started by
13 comments, last by pinchz 10 years, 2 months ago

Hey guys, a question here... What can you say about SFML 2.1? Is it dependable and okay to use in games?

Advertisement

I've had no issues thusly with any of the modules. I would avoid their threading stuff now though, since c++11 threads are pretty good.

Douglas Eugene Reisinger II
Projects/Profile Site

I'm using them to make a project cross-platform for fun, having no problem on my mac and on my win system.

I've had no issues thusly with any of the modules. I would avoid their threading stuff now though, since c++11 threads are pretty good.

The downside to C++11 threads is that, as the name suggests, they're only available on C++11-enabled compilers.

I've had no issues thusly with any of the modules. I would avoid their threading stuff now though, since c++11 threads are pretty good.

The downside to C++11 threads is that, as the name suggests, they're only available on C++11-enabled compilers.

True, but since we are having this conversation in 2014, that should be OK. :)

There are many other good things in C++11 (smart pointers, for loops, move semantics...) and I strongly encourage people to transition to it.

Well, the problem with std::threads is that they are really not very well supported (at least on Windows).

You can pick MSVC (in which case you have std::thread, but miss out on quite a few other things normally included in C++11).

You can alternatively pick MinGW. The 'default' MinGW does not include std::thread and has no plans to support them in the foreseeable future. The alternative is a perfectly fine replacement but they also don't have the most performant implementation right now (pthread vs native constructs).

Of course, there are boost::threads which should be pretty much identical to the std version but work fine on every platform.

Edit: as to the original question: personally, I would either use either std::thread or boost::thread. I would not consider using SFML threads.

Edit 2: never mind, conflated a few threads in my head and should have skimmed it again before adding that.


Edit: as to the original question: personally, I would either use either std::thread or boost::thread. I would not consider using SFML threads.

That had nothing to do with the original question. SFML is a great API IMO. I would wholeheartedly recommend it to anyone using C++.

My Gamedev Journal: 2D Game Making, the Easy Way

---(Old Blog, still has good info): 2dGameMaking
-----
"No one ever posts on that message board; it's too crowded." - Yoga Berra (sorta)

No problems with SFML 2.x so far. Stable enough for me!

For me in SFML there are several stupid things

its a int mixing with float in texture size(why these cast)

and

texture coordinates are defined in pixels (they are not normalized (between 0.0 and 1.0f), as people who are used to graphics programming would expect).


texture coordinates are defined in pixels (they are not normalized (between 0.0 and 1.0f), as people who are used to graphics programming would expect).

http://www.sfml-dev.org/documentation/2.1/classsf_1_1Texture.php#aa6fd3bbe3c334b3c4428edfb2765a82e

"I would try to find halo source code by bungie best fps engine ever created, u see why call of duty loses speed due to its detail." -- GettingNifty

This topic is closed to new replies.

Advertisement