Tagged Questions

SFML is a portable and easy to use multimedia API written in C++. You can see it as a modern, object-oriented alternative to SDL. SFML is composed of several packages to perfectly suit your needs. You can use SFML as a minimal windowing system to interface with OpenGL, or as a fully-featured multimedia library for building games or interactive programs.

learn more… | top users | synonyms

12
votes
5answers
5k views

Which is better: SDL or SFML? [closed]

I'm thinking about switching from SDL to SFML, but before I do I want to know which is better. I'm mainly looking for easy sound/music, sprite rotations that are easy on the framerate/cpu, ...
8
votes
4answers
500 views

Pong physics problem

I have problem but I don't know how to describe it so I have drawn it. As you can see ball bounces when collision is detected. Nevermind the angle - I have just drawn it that way. But sometimes ...
4
votes
1answer
86 views

OpenGL: VBO functions are not defined

I'm trying to use OpenGL VBO's, but the functions associated with their use, glGenBuffersARB() for instance, are all undefined. Immediate mode functions are fine of course, it's only these. I'm ...
4
votes
1answer
154 views

How to solve linker errors using DSFML2 with D2 on Ubuntu?

I'm running 64-bit Ubuntu Linux with DMDv2.052, trying to get application working with DSFML2, but I keep running into linker errors. I built the SFML and CSFML libraries using shared libs + release ...
4
votes
8answers
712 views

Race car game, car moving faster on faster computer

I understand why it does that but I don't really have any idea of how to prevent that. So the scenario is, every frame I move the car by a certain of predefined pixels. What happens is when I go on ...
3
votes
1answer
75 views

SFML with C#, startup trouble

I want to use SFML with C# .NET. I've had to get SFML 2.0 since 1.6 apparently had some issues with AMD graphics cards. The issue is that the constructor of SFML.Window.Window enters an infinite loop. ...
3
votes
4answers
173 views

Member not declared in scope?

So I'm trying my hand at some C++ after finishing up an introductory book, and I've become stuck. I've made a vector of objects that each have an SFML circle object as a member, and I want main() to ...
3
votes
3answers
105 views

Adding method to library

I've been recently writing simple game in C++ with SFML. Here's my question: In SFML library there is a template class Vector2<T> (specifically I'd be using Vector2f). Unfortunately, it doesn't ...
3
votes
1answer
102 views

Destructing in DSFML2

(Compiled with dmd v2.051) Code like this: import dsfml.graphics.all; void main() { while(true) auto rect = new Image(1024, 1024); } Errors out in a minute, throwing an exception. ...
2
votes
1answer
31 views

Can't get depth testing to work in OpenGL

I use SFML to create the window. In this screenshot the cube should be behind the pyramid but it just doesn't work. Here is the minimal code I used: #include <OpenGL/gl.h> #include ...
2
votes
3answers
174 views

Learning to use VBOs properly

So I've been trying to teach myself to use VBOs, in order to boost the performance of my OpenGL project and learn more advanced stuff than fixed-function rendering. But I haven't found much in the ...
2
votes
2answers
137 views

Dynamically loading maps in a “tile engine”

I'm implementing a tile engine for games using C++. Currently the game is divided into maps, each map has a 2D grid of sprites where each represents a tile. I am coding a system where if several maps ...
2
votes
1answer
188 views

Tile engine performance issue

I am using SFML and I can't find any explanation on how the library is working and I have performance issues. I am trying to make a tile map made of 50x50 tiles that are each 20x20 pixels wide. 1) ...
2
votes
1answer
80 views

IRC client - No reply on JOIN

I am writing a IRC client in C++ (with the help of the SFML library), but it is behaving strangely. I send the NICK and USER commands and I can connect to the server, but the JOIN command has many ...
2
votes
2answers
209 views

How to edit SFML source code to add a new Drawable Object?

Hey i'm working on a class called a "Body" which holds shapes and sprites together as one object. I would like to get into the source code and add a new overload RenderWindow's Draw() function, so ...
2
votes
4answers
123 views

I'm messing up my inheritance

So I've got a Piece class supposed to represent pieces on a board, from which I plan to have two other classes inheriting. I've gotten a lot of problems in doing so, however; here is the relevant ...
2
votes
1answer
121 views

Server won't connect to more than one client?

The problem is it only connects to one client instead of two. Can anyone help me figure out why? Server: #include <SFML/System.hpp> #include <SFML/Network.hpp> #include <iostream> ...
2
votes
1answer
273 views

How can I draw a tilemap without my ram useage or cpu useage going way up?

Okay, so I'm trying to draw a tilemap on the screen with SDL, and my fps is really bad cause of it. And I've tried doing it in SFML a different way, but that way makes my ram useage go way up. the ...
2
votes
3answers
227 views

SFML.NET particle system

I've written particle systems before and, put simply, it's more effort than it's worth given the size of the projects I want it for. What I'm ideally looking for is a particle system which can be ...
2
votes
1answer
353 views

SFML Input GetMouseX and GetMouseY not catching on to mouse movement

I'm programming a GUI in my app and I noticed that button presses weren't being registered very quickly. I did some lazy debugging (send coordinates of mouse to output) and I noticed that Input's ...
2
votes
2answers
691 views

SFML Plasma Sprite Effect?

Is there a way to create a plasma effect in SFML that doesn't slow my framerate to a crawl?
2
votes
2answers
662 views

Algorithm for count-down timer that can add on time

I'm making a general timer that has functionality to count up from 0 or count down from a certain number. I also want it to allow the user to add and subtract time. Everything is simple to implement ...
2
votes
1answer
266 views

What are the Gotchas and Issues I should be aware of with SFML?

I've been using SDL for a while to prototype small things and to learn more about graphics programming. Then I saw SFML and wanted to give it a try, saw that it was more object oriented and fixed ...
1
vote
2answers
48 views

sf::String member of class reverts to blank

These lines of code are run: Enemy* enemy = new Enemy(m_pSceneManager,"enemy"+ss.str()); std::cout << "Enemy name = " << std::string(enemy->name) << std::endl; ...
1
vote
1answer
75 views

Function causes no errors, yet it won't return to the program

I have this very annoying issue, whenever i call a function: void renderGame::renderMovingBlock(movingBlock* blockToRender){ sf::Shape blockPolygon; sf::Shape blockLine = ...
1
vote
2answers
134 views

#error gl.h included before glew.h

So I'm trying to move my OpenGL code from Main() into a specific class that will handle the 3D graphics only when necessary. Previously, the top of my main.cpp file looked like this: #define ...
1
vote
1answer
30 views

Qt4 and SFML pitch recognition and processing

I am writing a program that displays a random natural note and waits for the user to play that note on the guitar. The audio input is processed to see if the correct pitch was played, and if it was, ...
1
vote
1answer
131 views

SFML - How to simulate a lighter effect like Canvas globalCompositeOperation does?

Every end of year I make a fireworks display Canvas effect (Javascript), the last was: http://js1k.com/2011-dysentery/demo/955 This effect is simple: a lot of circles filled with ...
1
vote
1answer
65 views

SFML Errors in VS 2010

I tried this simple test to see if it would work: #include <SFML\System.hpp> #include <iostream> int main() { sf::Clock Clock; while(Clock.GetElapsedTime() < 5.f) { ...
1
vote
0answers
61 views

Xcode 4 SFML opengl

I'm using SFML in Xcode but i can't use any of the opengl functions for some reason, i've got calls to glVertex3f, gluPerspective etc but for some reason the code won't compile, i might have to link ...
1
vote
5answers
99 views

How to create a dynamically-allocated array of const objects, but have values assigned to them?

I need to create a dynamically-allocated array of const objects. What makes it difficult is that I need to have values assigned to the const objects too. I need this for Samples variable of this ...
1
vote
2answers
154 views

how to get faster rendering of 400+ polygons with SFML

I'm making a basic simulation of moving planets and gravitational pull between them, and displaying the gravity with a big field of green vectors pointing in the direction gravity is pulling them and ...
1
vote
2answers
89 views

How can I change the position of the mouse cursor in OpenGL/SFML?

I'm writing a simple FPS game and I'm going to have the mouse control the camera. I'm using SFML library for C++. How can i set mouse position to the center of the window. Can you help me to find ...
1
vote
2answers
58 views

GNU Gettext and wide characters

I'm developing a game (actually I'm porting it from Gosu to SFML) in C++. I'm using GNU Gettext as the i18n system. As you know, gettext returns char * strings using the local encoding, usually UTF8. ...
1
vote
2answers
90 views

Segmentation Fault when trying to index an array of arrays of objects via a pointer

Can someone please tell me why I get a segmentation fault running this? I try and a pointer to an array of an array of objects, how I can fix this problem? The declaration of the sf::Vector2 class can ...
1
vote
1answer
401 views

What is the correct usage of CMake EXTERNALPROJECT_ADD with a Git repository?

I would like to learn how to download and compile external libraries using the cmake external project module. For example, lets say that I wanted to download the source from the SFML library ...
1
vote
5answers
309 views

How to form a Concave shape out of Convex shapes?

i'm trying to get around the rule of only being able to form convex shapes in the SFML c++ library. To do this I'm planning on testing given vertices, and if concave, splitting the vertices ...
1
vote
1answer
454 views

Trying to implement a mouse look “camera” in OpenGL/SFML

I've been using OpenGL with SFML 1.6 for some time now, and it has been a blast! With one exception: I can't seem to implement a camera class correctly. You see, I am trying to create a C++ class ...
1
vote
0answers
57 views

C# - FatalExecutionEngineError on OGRE3D Window Close (w/ SFML)

I'm using MOGRE, a C# binding of OGRE3D. I've created my own rendering loop and I use WindowEventUtilities.MessagePump() to update the window. This is my main application loop: while ...
1
vote
1answer
96 views

My 'body' class in SFML: How does it rotate member shapes correctly on its own?

Hey so i've made a 'body' class, which inherits from sf::drawable in SFML that holds shapes together so i can form more complicated shapes and figures. I found i had to do a few updates on each ...
1
vote
1answer
162 views

How to Render images in shape/ polygon form?

Hey i'm working with SFML right now, and upon finishing the tutorials i still do not know how to give a shape a texture or image, and not just a solid color/outline. The only thing i know can take ...
1
vote
2answers
90 views

Convert Mouse pos into direction and back

I want to ask what would be the best formula to convert mouse X,Y position into one of 16 directiones from player position. I work in c++ ,sfml 1.6 so I get every position easily, but I dont know ...
1
vote
2answers
284 views

Mirroring the Y axis in SFML

Hey so I'm integrating box2d and SFML, and box2D has the same odd, mirrored Y-axis coordinate system as SFML, meaning everything is rendered upside down. Is there some kind of function or short amount ...
1
vote
1answer
117 views

Simple SFML/C++ question, confused about literal strings and static members

I'm a bit confused by the code at http://www.sfml-dev.org/tutorials/1.6/graphics-sprite.php Namely the code at the bottom detailing the class "Missile": class Missile { public : static bool ...
1
vote
1answer
152 views

good SFML learning resources [closed]

Hey i'm about to start learning SFML after learning that jumping straight into OpenGL after 3 months of learning C++ doesn't work out to well, and was wondering if anyone had any suggestions on how/ ...
1
vote
1answer
615 views

OpenGL + SFML or SDL?

Hey so i've just started SDL like a day ago, as i am planning on eventually stepping into OpenGL, but recently looked into SFML which is apparently more modern and easy. I have not heard anything or ...
1
vote
2answers
359 views

Static and Dynamic Libraries- SFML

I am using SFML, and I am building an application in Code::Blocks and mingw32. I have have added the SFML libraries (sfml-whatever.a) to my project, and it runs nicely. BUT iIrc, the static libraries ...
1
vote
1answer
58 views

SFML, problem with GetStatus on sound (enum problem)

I'm trying to get the status of a sound effect but I don't know how to actually find out what the status is. I'm quite new to C++. I tried to read up about enums and apply what I saw, but it won't ...
1
vote
4answers
455 views

Converting from 3D to 2D coordinates question

Im using OpenGL with c++ to make a game. and right now, im wondering how i would be able to turn 3D coordinates into 2D positions for example: drawing a 2D health bar over a 3D model's head, or ...
1
vote
1answer
151 views

C++, SFML 1.6, smooth sound fading effects?

what is the best possible way to smoothly fade in/out a sound with SFML 1.6? It has SetVolume() and SetAttenuation(). These two directly set these values. But I need a smooth transition from one sound ...

1 2 3 4