
Let's make 16 classic game in C++ video series - Simple and Fast ...
2016年4月27日 · Quite cool to see a game come to life like in the videos. Too bad the code formatting got screwed up like that (maybe because of the auto-insert script thingy you used to make the video?). Would be quite interesting to see the code refactored into something more clean and easier to grasp.
Are there any good or "professional" SFML games?
2014年6月26日 · Unless you're building a triple-A 3D game for a console, choosing SFML or SDL (or any other established, high level library) won't have much impact on the quality of the game you want to make. « Last Edit: June 27, 2014, 03:58:30 am by Xornand »
Author Topic: Generic Game Loop (Read 24096 times) - Simple …
2012年12月19日 · Well you actually can do this much easier with SFML: window.setFramerateLimit(60); But both your and the SFML version have the same problem (since they're actually quite identical in the implementation), that they use sleep (or sf::sleep which calls sleep) and sleep() isn't as accurate as one could want it to be, also there could be some process killing the whole performance and the sleep call ...
Author Topic: The best SFML games (Read 43582 times) - Simple …
2013年7月13日 · M.A.R.S is my favorite SFML game ever, and one of my fav games at all. The concept and modes are awesome =) The only thing the game lack is a networking mode, dev have stop its development AFAIK. But it's open-source, maybe some guy will add it some day =)
SFML projects - Simple and Fast Multimedia Library
2025年3月19日 · [Android x64 Support + SDL 2] SFML Game Engine for Web (HTML5), Mobile & PC. Started by IsDaouda « 1 2 3 ...
SFML community forums - Index
2025年3月19日 · SFML projects. You are developing a project using SFML? Come and share it with us. 17096 Posts 1255 Topics Last post by achpile in Re: Dispersio 3 on March 19, 2025, 08:47:50 am SFML game jam. Everything related to the SFML game jams. Moderators: zsbzsb, Jebbs, Eremiell. 536 Posts 35 Topics Last post by Tojot in Re: new sfml game jam
Multiplayer Game Example - Simple and Fast Multimedia Library
2013年3月31日 · Re: Multiplayer Game Example « Reply #2 on: April 01, 2013, 12:30:27 am » I have read that you should use udp sockets for games because they are way faster but what i don't get is how it's done in other games then.
Author Topic: Game States (Read 21327 times) - Simple and Fast ...
2012年7月14日 · i'm new to SFML (right now using 1.6), trying to write a Game State Manager for different states of my game (splash screen, menu, game, highscore..). I found this tutorial, sadly it's using SDL. Is there a similiar Tutorial for SFML? I tried to adopt the tutorial using SFML, but it didn't work out well. Any help would be much appreciated, thanks!
SFML Game Development by Example - 4th SFML book
2015年12月29日 · This is also the first SFML book to tackle the topic of networking, as the final project is a small RPG-style multiplayer game, where players can duke it out by using very basic combat. It looks a little something like this:
Author Topic: Restart Game (Read 8120 times) - Simple and Fast ...
2009年6月11日 · I found in ne SFML dev-pack the source for an little pong game (quite funny) and wanted to add a few things, like a Gameloop. Because it´s really annoying to resart the whole game for a new round. My problem is that I don´t know how to make it. When now the game is finished, the source look like this