SFML (Simple Fast Media Library) 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 ...

learn more… | top users | synonyms

-1
votes
1answer
26 views

Does SFML support transparency?

Hi I am trying to draw a translucent sphere using OpenGL / glut; Easiest thing I think is to post the code: This is what I have at the moment; glutInit(&argc, argv); sf::ContextSettings ...
0
votes
1answer
24 views

Adding Dependencies In C#?

In C# you can add references to DLLs to get functionality. But in C++ you can add dependencies that are included automatically when you compile so you don't have to copy them automatically into the ...
0
votes
1answer
8 views

SFML OpenGL Application artifacts - something “wierd” is happening

Firstly, sorry for the poor question title, I didn't know exactly what to put! So I have an OpenGL application running from a SFML Window context. I previously posted a question about poor ...
0
votes
1answer
24 views

Image.loadFromFile() doesn't work?

So I've been looking around in my code for hours now and finally I think I found the issue with the code. An SFML method doesn't work or I am using it wrong. I am trying to load a PNG file from my ...
0
votes
1answer
34 views

Texture not being drawn on Screen

I am trying to follow a slightly outdated tutorial on making a Tile Engine. The problem is that the Texture I am trying to draw on screen, doesn't show up. I just get a black screen. I've taken the ...
0
votes
2answers
59 views

Vector is not a Template?

I am currently trying to follow a tutorial on making a simple 2D tile engine for top-down RPGs. For some reason though I get the intellisense error vector is not a template The word "vector" is ...
0
votes
1answer
25 views

SFML Tutorial not up to date?

I've followed this tutorial to the letter in order to set up SFML 2.0 with Visual Studio Express 2012: http://www.sfml-dev.org/tutorials/2.0/start-vc.php For some reason though I get 16 Unresolved ...
1
vote
1answer
50 views

Vector of pointers segfaulting on call to size() and upon creation of an iterator

I have a class which contains a vector of pointers to a class. In most of its member functions, I can access and modify the vector just fine. However, in one function even calling .size() or getting ...
0
votes
1answer
31 views

Smoother transition in movement?

I am back with another question. I am still new to SFML so this one seemed a bit tough. I have tried using while loops and such but to no avail. The game I am doing at the moment is a car going back ...
0
votes
0answers
33 views

Reading wrong pixel color

I'm using the getPixel() function from the Image class, and it's returning the values (2,0,1) for the pixel located at (0,0). At that location the pixel is black according to Photoshop, (0,0,0). Any ...
0
votes
2answers
24 views

Window won't draw my Sprite when releasing Mouse Button

I am new to SFML and I am just playing around with an example at the moment. I try to draw a sprite where I last clicked my mouse in a window. But some reason the event fires and no sprite is drawn. I ...
0
votes
1answer
48 views

Moving a Shape with SFML C#

I'm wanting to easily move a shape around using SFML.Net bindings. Do I have to do shape.Position = new Vector2f(x, y) all the time? The following mentions that to build a custom shape with SFML, ...
0
votes
1answer
30 views

Error compilation SFML debian

I have install the SFML1.6 on debian for a school project. On compilation i have theses error : g++ -c main.cpp g++ main.o -o bomberman -lsfml-graphics /usr/local/lib/libsfml-graphics.so: ...
-2
votes
2answers
117 views

Game programming best practice, movement in or outside class?

I am making my first game in C++ (SFML 2.0) right now and I'm trying to do it as clean as possible. After some fiddling around with code I am going to convert it to object orientated code, but ...
0
votes
0answers
57 views

Dots game with sfml project

I need to do a Dots game project with sfml exactly like this one here: http://www.addictinggames.com/puzzle-games/dots.jsp But in C++ of course, so I know that I should use vertex array for lines ...
-1
votes
1answer
43 views

C++ SFML 2.0 How to move between two vectors

I know this issue probably has been addressed a million times already, but they all seem to fail for me for some reason. I am making my first gaming project and it is going to be a Geometry Wars ...
1
vote
1answer
37 views

SFML 2.0 c++ projectiles

I currently have a projectile firing from a tank. At the moment it works just fine, but I am unable to "re-use" projectiles once they have either hit their target, or gone off the screen. This is the ...
1
vote
1answer
44 views

Segfault when drawing text with SFML

I have made a Button class that should draw some vertices and a string to a RenderWindow. Here's the code with irrelevant pieces snipped out: (here is the full code) namespace game { class Button { ...
1
vote
1answer
109 views

How would I define a custom way to combine vertices?

I made a custom class to draw a 9-patch in SFML, but I think it could be optimized more. Currently, I calculate all the vertices needed to make the 9 rectangles, and then I use some loops to add them ...
0
votes
1answer
33 views

Why sfml does not play the file inside a function in this python code?

from tkinter import * import sfml window = Tk() window.minsize( 640, 480 ) def sonido(): file = sfml.Music.from_file('poco.ogg') file.play() test = Button ( window, text = 'Sound ...
0
votes
1answer
45 views

PHP only writes first 276 characters to file

This is the code I run on the server. I'm using C++ to read a .jpg localy and then post it with SFML in a single string. The post is apparently received by the server since content length is the same ...
0
votes
1answer
98 views

Keyboard in SFML

I'm doing a game project with SFML and I encountered a small problem, Here is my code: #include <SFML/Graphics.hpp> #include <string> #include <iostream> using namespace std; using ...
0
votes
1answer
47 views

Quadtree and size of region in constructor

I was reading nice tutorial about Quadtree from this site and now is my question. When I create quadtree I have to pass in constructor bounds of the screen, well What if my map's size 10000 x ...
1
vote
1answer
56 views

Velocity and Time Elapsed in sfml 2.0

So I have been looking for hours now and I can't seem to find anything to help me with this, so I'll start by saying I am new, like very new, but I do understand that in order to have constant move ...
0
votes
0answers
86 views

code::Blocks | SFML errors

I'm trying to get SFML to work on code::blocks but I keep getting errors whenever I try to test a sample code. I followed the tutorial from http://www.sfml-dev.org/tutorials/2.0/start-cb.php but it ...
0
votes
3answers
53 views

Error while trying to use SFML (some LNK error)

i've been searching for an answer but all i've found is some similar problem but the answer don't help me at all. I'm trying to use SFML for a final projet (we would like to create a game like ...
1
vote
2answers
108 views

SFML Game Slows Down When Shooting Bullets

I am making an asteroids game in C++ using SFML. I seem to have a problem though with shooting bullets. Although the class seems to work each time a bullet is shot the game significantly slows down. ...
0
votes
0answers
40 views

pushGLStates returns GL_INVALID_OPERATION when used

im trying to make a gui for my game using SFML so have been advised to use glpush and pop states. and enter my commands to draw the gui in between the push and pop. So this is what i have : void ...
1
vote
1answer
110 views

Screen goes black when drawing to it SFML C++

I have a basic game set up in C++, openGL and SFML. But then when i try to add text or draw a square to the screen(for the GUI) the screen goes mainly black, i can see something happens in the top ...
1
vote
1answer
43 views

C++ SFML Drawing scrollable content within a defined rectangle

I'm having trouble drawing scrollable content within a defined rectangle. What I would like to achieve is the ability to freely scroll the contents within a rectangle, with anything that is not within ...
0
votes
0answers
36 views

Valgrind with sfml

I am completely new to the use of Valgrind. Currently I have compiled an exe for the program to test on; however, the test brings up over 250k errors. This is the basic project made with a new sfml ...
0
votes
1answer
111 views

Compiling C++ project with libraries

My friends developed a C++ game in Visual Studio on Windows, and I would like to compile it on my Linux x64 machine. I'm not very familiar with C++ but I'm trying g++ on command-line. However I only ...
2
votes
2answers
66 views

How do I rectify inconsistent Unresolved External errors? [duplicate]

I'm trying to wrap my head around C++ developement using the SFML library. I'm following a tutorial (http://www.gamefromscratch.com/page/Game-From-Scratch-CPP-Edition-Part-7.aspx), and using visual ...
2
votes
0answers
120 views

Why does SFML with an Opengl 3.0 context draw twice?

I've been working on a 3D application using SFML for context creation and OpenGL 3.0. For some reason when I attempt to create the context using OpenGL 3.0 it seems to draw the image slightly narrowed ...
1
vote
1answer
104 views

platform game using sfml 1.6 in c++ collision using AABB's

I am using tile mapping and have my map class in place to draw the map by using an array of sprites. i have it to set the position of the sprite and then create a bounding box array around it and then ...
1
vote
1answer
42 views

Rotating around an object with a given offset

I'm attempting to create an effect where two projectiles will come out a given entity at a given offset to the player. A quick implementation was this; sf::Vector2f offset = ...
0
votes
1answer
41 views

sfml platformer error: missing type specifier - int assumed

Hey im trying to check to see if my bounding box from my player class is colliding with the bounding box of my map tiles. however it is coming up with that error. i have a definition in my map.h ...
0
votes
1answer
102 views

SFML platformer collisions with map tiles

Hi just a quick question. wondering what the best way to implement collisions with the map tiles i have setup. I was going to setup a rectangle for the player and check if it intersects with the ...
1
vote
2answers
57 views

How to call on a function found on another file?

I'm sorry for the newbyness but I'm recently starting to pick up C++ and the SFML library, and I was wondering if I defined a Sprite on a file appropriately called "player.cpp" how would I call it on ...
0
votes
0answers
56 views

Slick2D (Java) to SFML (C++) [closed]

I've been programming a game in Java, using the Slick2D API, but recently thought about converting the project into C++, for compatibility reasons. I was wondering if there was and API alike Slick2D, ...
0
votes
1answer
63 views

How can I refer to a function?

I'm learning C++ and SFML right now, trying to create a chess program in which I can drag and drop the pieces around the board. I drag the pieces by checking if the left mouse button is down and if ...
0
votes
1answer
64 views

sf::Shader and sf::RectangleShape

I have a question about using the sf::Shape from the SFML graphic library. In my game i use sf::RectangleShapes. For example the UserInterface or the player. Here is a peace of code: ...
0
votes
0answers
47 views

OpenAL/SFML get pitch value

I've been googling for a while to see if there is any way to retrieve the frequency/pitch of some sound buffer. I know there is alSourcef in OpenAL that changes the pitch of some sound. Basically, I ...
0
votes
1answer
98 views

SFML platformer using tile map in c++

Hi i have a class for my mapping and it is drawing to the screen however its only drawing vertically down the left side of the window. i can figure out where I have gone wrong. any help would be much ...
1
vote
1answer
67 views

SFML platformer using c++

Hey im currently making an sfml platformer and going to use map tiles however after implementing my map class it is coming up with an unhandled exception. i call the initialise function first and then ...
0
votes
0answers
54 views

Eclipse and SFML2 problems (pssibly linking?) on Linux Mint

I compiled sfml2 (latest github version) with gcc and make, and it all went fine. I'm able to compile example programs directly with g++ in the terminal, but whenever i use Eclipse it complains about ...
0
votes
0answers
90 views

I am getting an error in Visual Studio 2010. Using C++ and SFML. “unexpected 'class' Did you forget a ';'?”

I am using Visual Studio 2010 and the SFML 2.0 libraries. There is this tutorial I'm following but visual studio gives me the error Error 1 error C2236: unexpected 'class' 'Tile'. Did you forget ...
4
votes
2answers
99 views

reading out a stringstream and insert it in different vectores

(I'm sorry if I ask this question wrong, this is my first time I write in a forum) When I started programming at my SFML - Game, I had a very old book, wich was very C-like (eg. recommendation of ...
0
votes
0answers
98 views

SFML 2.0rc Font not loading

I have pulled out most of my hair trying to get this freakin font to load and text to display, and i have had no luck. Hours and hours of Googleing = no dice. So i am here, for my first time. So: I ...
0
votes
1answer
528 views

The procedure entry point __gxx_personality_v0 could not be located in the dynamic link library

I have been using an external API (SFML) with C++, which required that I added some dll files to my install of MinGW. While the program compiles and runs fine for me, it will not run on any other ...

1 2 3 4 5 10