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 ...
1
vote
1answer
49 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
25 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
30 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
20 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
45 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
28 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
113 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
52 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
32 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
39 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
108 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
30 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
96 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
52 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
80 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
102 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
38 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
106 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
34 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
109 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
113 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
99 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
40 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
96 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
55 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
63 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
45 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
93 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
64 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
88 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
98 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
88 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
486 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 ...
0
votes
1answer
100 views
FreeType error when building in XCode
First some back story:
I dont know what im doing.
Thats a lie, I know a bit about what I'm doing. I'm a web developer so looking at code isn't all gibberish, but trying to use Xcode is a new book ...
1
vote
2answers
484 views
Run Open GL programs on the Raspberry Pi?
Can the Raspberry Pi run OpenGL programs? Like GL 1.x programs, not OpenGL ES 2.x which I know it can run.
The reason I am asking, I have trouble having SFML 2 start on it.
0
votes
3answers
79 views
Convert View coordinates to Window Coordinates SFML
I have an application written using SFML with a menu bar up at the top and a small box that lets you move things around under it. I need to convert the coordinates that I have from the View that I am ...
0
votes
3answers
124 views
Doing something after elapsed time C++ SFML 2
I have a clock and timer in SFML and it measures seconds. I'm trying to make the next action happen after a certain amount of seconds elapsed ( specifically 4) Here's my code
#include "stdafx.h"
...
1
vote
1answer
30 views
Control RenderWindow from another function
this may sound as a really simple question, but I have SFML 1.6 and I want to control my RenderWindow from another function... I'm not very good at C++ or SFML... :)
...
0
votes
1answer
73 views
Create variable from memory
I'm using sfml. I need to write a function that will create a type sf::RectangleShape and return a new sf::RectangleShape with the position of the mouse at the current time and stay there after I use ...
0
votes
2answers
82 views
What is the correct way to use a vertexArray in sfml?
After doing some research it would appear that using vertexArrays in the most efficientways of drawing many sprites onto the screen at once but I'm struggling how to do it. I've attempted using the ...



