SDL - Simple DirectMedia Layer is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. It is used by MPEG playback software, emulators, and many popular games, including the award winning Linux ...
2
votes
2answers
115 views
How do I concatenate a string and an integer to make a filename?
I have a series of files ( New1.BMP, New2.BMP, ...,New10.BMP).
I need to create a variable that stores the name of the above files and then use it in another code.
My current code:
int ...
0
votes
1answer
56 views
Tile Maze in SDL
I am trying to draw up a maze in accordance to me 2D array. It only prints on the top of the window and no where else.
#include "SDL.h"
#include "SDL_gfxPrimitives.h"
#include <conio.h>
int ...
0
votes
0answers
287 views
Issues with undefined reference NDK
Ok I know that this has been brought up. Yet mine does not seem to be addressed.
Before we start let it be known the following:
OS: Win7 (x86)
IDE: Eclipse Juno (4.2)
NDK: r8e
Android API: 17 ...
2
votes
0answers
179 views
SDL Putting pixels on the screen C++
I am starting with SDL, and I was reading the introduction, and I am trying the drawPixel method they have. What I am doing is a ppm viewer, so far I have the rgb values in an array and are correctly ...
0
votes
1answer
29 views
TravisCI no audio device
I'm trying to use TravisCI to test a SDL application, which has audio functionality (but the test does not require it).
When I started the app in the Travis's VM, it exited with:
ALSA lib ...
0
votes
1answer
148 views
C++ - SDL/OpenGL loaded image's colors are inverted
I'm trying to load an image into my game. It's being written in C++, with SDL and OpenGL, and the SDL_Image framework.
I've gotten the image in, and have rotated/inverted it to my needs, but there are ...
0
votes
0answers
91 views
SDL_Flip deadlock
In my application, I've got a simple Execute method that runs the application,
greatly simplified, it looks something like this:
App::Execute()
{
Initialize();
SDL_Event event;
...
0
votes
0answers
27 views
SDL2_ttf library not loaded on OS X
I'm using XCode 4.6 on OS X 10.8.
When I build my SDL2 project trying to use SDL2_ttf.framework I get this error.
I first want to make clear that I have built the SDL2.framework and I've included the ...
0
votes
1answer
44 views
Visual C++ and SDL not exporting correctly?
My main programming language is c++ and the only ide that has ever worked for me is Visual Studio. I use SDL for my graphic components and main tick, so as to make my job much easier. The thing is, ...
0
votes
1answer
57 views
SDL, headers and strange errors..?
I'm learning my way around SDL and everything's been working fine up until now. Whenever I try to compile my code, I get the following error:
Undefined symbols for architecture x86_64:
...
0
votes
1answer
96 views
Texture Fading in SDL (2.0) - Using SDL_image
I have been making good progress so far with learning SDL2 but what I have currently come stuck on is how to achieve the following:
I can load an image in (png) no problem using SDL_image and also ...
0
votes
1answer
202 views
Drawing text onto an OpenGL surface using SDL
I'm using SDL, I have OpenGL rendering setup, I want to draw some text to the screen.
I found this question: Using SDL_ttf with OpenGL which seems to address the same concern, but I think my GL-fu ...
1
vote
1answer
164 views
Drawing a minimap (game)
I'm making a rts game, and have created a 2d array containing the map tiles. I'd like to transfer this to an image (an unsigned int or a sdl surface?) and I would likely draw this onto a gl Quad. I'd ...
-1
votes
1answer
149 views
unresolved external symbol even though i think i am linking correctly (MSVC)
i have a project that is using SDL as an external library. The project uses functions such as _SDL_WM_SetCaption, _SDL_FillRect or _SDL_MapRGBA. I have told the linker to include the two libraries ...
1
vote
1answer
67 views
SDL_Surface disappears after game runs for several minutes?
after running my asteroids game for several minutes the SDL_Surface representing my ship disappears. Somehow the surface that holds the rotated image (rot) of the ship is getting set to NULL. I can't ...
0
votes
1answer
60 views
SDL don't load/show the right image
I'm writing a simple game. I'm stock by a bug that i can't figure out what are the causes.
In the code i write this:
DxFrame[0] = ImageLoader("Rome/Ball_Dx/RomeDx1.png");
DxFrame[1] = ...
0
votes
1answer
127 views
SDL2 & SDL_ttf - Best Practice
I have some basics set up in my game but I came to a point where I want to include font rendering (initially for debug output to the screen).
Looking at various tutorials and the SDL_ttf library I ...
1
vote
1answer
49 views
SDL_SetVideoMode tries to free a pointer that hasn't been malloc'd (?)
I wrote a JNI library, and it's defined as such in Java:
public class SDLMain
{
static {System.loadLibrary("SDLBitsX");}
public static native void init();
}
Defined in C as:
JNIEXPORT ...
0
votes
0answers
166 views
Play audio and video at the same time with libvlc (C and sdl)
I have compiled the LibVLC SampleCode SDL (the one at the top) from the VLC wiki on windows and it works, but only without sound.
When I remove this line, which is obviously responsible:
...
1
vote
0answers
58 views
gcc -nostdlib causes segmentation fault within SDL_OpenAudio()
When I compile the following code with gcc -nostartfiles or -nostdlib, running the resulting Program causes a crash deep within the Audio system, when SDL_OpenAudio() is called. Without this call ...
1
vote
0answers
50 views
C2660: Function does not take X arguments & C2061 syntax error
main.cpp
#include "g_inc.h"
#include "Core/window.h"
#include "Core/keyboard.h"
#include "Core/mouse.h"
#include "Core/event.h"
int main(int argc, char *argv[])
{
Window game_window;
FPS ...
1
vote
2answers
66 views
The luminosity is not correct on simple plane using VBO
I have written a small OpengL test program using VBO. I have a spot in (0.0, 5.0, 0.0), a camera also in (0.0, 5.0, 0.0) which looks at the point (0.0, 0.0, 0.0). My plane is center in the position ...
0
votes
1answer
243 views
Xcode 4.6 does not recognize SDL.framework
Consider me a complete and utter newbie wehen it comes to compiled languages (and to Xcode IDE in general)
I've followed some tutorials on setting XCode up to work with SDL frameworks, they seem to ...
0
votes
2answers
110 views
'SDL_main' : must return a value
I am trying to retreive content of websice in c++ usind SDL but it is giving me this error:
'SDL_main' : must return a value
my code is:
#include <iostream>
#include "SDL.h"
#include ...
2
votes
1answer
221 views
How to setup SDL2 with XCode 4.6 and OS X 10.8
Does anyone have any guide or information how to setup SDL2 with MAC OS X 10.8 and XCode 4.6 or later versions.
I have managed to build SDL2 and assume to have all the files I need. Where should I ...
1
vote
1answer
205 views
SDL2.0 wich XCode 4.6
I've managed to build SDL2.0 and I got my SDL2.framework folder built.
Don't know if I placed it in the correct location on my system.
I'm using XCode 4.6 with OS X 10.8
I placed it here ...
2
votes
1answer
252 views
Is It More Efficient to Use GL_TRIANGLE_STRIP or Indexed GL_TRIANGLES to a Draw a Dynamic Number of Quads
I'm developing a simple sprite-based 2D game in C++ that uses OpenGL for hardware-accelerated rendering, and SDL for window management and user input handling. Since it's a 2D game, I'm only ever ...
0
votes
0answers
106 views
SDL + OpenGL requires MSVCR90.dll and still gives error
So I was going to make a SDL + OpenGL project, with MinGW. But for some reason it still depends of a MSVCR90.dll which I find a little odd. So I tried to find a copy of the dll on my computer and ...
0
votes
3answers
83 views
Using DLLs in C
This seems like a noob question, but all my searches return stuff about C++ or C# so I'm going to ask it here.
I have a DLL, SDL.dll, in the directory with my .c file. I want to import it to use.
...
1
vote
2answers
44 views
passing pointer to SDL function
I'm trying to understand why method1 works, and method2 doesnt work, when I'm passing "offset" to SDL_BlitSurface function.
USAGE:
int SDL_BlitSurface(SDL_Surface *src, SDL_Rect *srcrect, ...
2
votes
1answer
121 views
SetCursor doesn't work
I'm working on a Windows application using SDL2. I want to change the cursor display. I created the cursor using the sample, exactly copied, from
SDL_CreateCursor
and then invoke SDL_SetCursor within ...
-1
votes
1answer
47 views
VS 2010 express — identifier “fd_set” is undefined [closed]
I am programming in Visual Studio 2010 for Windows.
I do not understand why it does not recognize the type fd_set.
Am I missing a header?
1
vote
2answers
349 views
SDL - Get native Screen Resolution
My code:
window.cpp
Window::Window(int w, int h, const char *title, const char *icon)
{
height = h;
width = w;
if(SDL_Init( SDL_INIT_EVERYTHING ) == 0)
{
...
1
vote
1answer
139 views
SDL_gfx 2.0.24 DLL is not build, using MinGW
I am setting up the Simple Direct Media Layer Library for my 64 bit Windows 7 system. The basic library works fine with both MinGW and Free Pascal, but currently I want to include the SDL_gfx library. ...
1
vote
2answers
87 views
Does anyone know how to eliminate creation of stdout.txt and stderr.txt when SDL program is executed
There is some information about this in SDL FAQ but what I need is to completely eliminate these files, not redirect the output to console. I want the program to only create them if there was any ...
3
votes
1answer
69 views
SDL configuration in Eclipse IDE
I am trying to get a OpenGL code run on Eclipse in Linux x86 environment (ubuntu):
http://nehe.gamedev.net/tutorial/vertex_buffer_objects/22002/
The code would run properly after I input in the ...
0
votes
2answers
154 views
Port SDL example to OpenGL & C++
I'm trying extremely hard to achieve this tutorial here but without using SDL. ie. only using OpenGL to draw the graphics and normal C++ to check for collision.
Below is my attempt, but still doesn't ...
0
votes
2answers
123 views
unused variable 'class' [-Wunused-variable] - error/warning
I have this project in C++ using SDL.
I am getting this error while compiling, and i don't know how to fix it.
it says:
Source/Classes/game.cpp:15:15: advarsel(this means 'warning' in danish): ...
0
votes
1answer
45 views
Problems with SDL image
I'm running on a mac OS 10.8.2 and compiling my program with the following command;
g++ main.cpp `sdl-config --cflags --libs` -o whateverfilename
I can compile SDL programs just fine but as soon as ...
1
vote
1answer
188 views
Display not correct using glEnable(GL_DEPTH_TEST)
My program below must display a cube in rotation illuminated with a simple light.
The problem is the cube is flashing. When I withdraw the call glEnable(GL_DEPTH_TEST) the cube is not flashing but I ...
0
votes
2answers
63 views
SDL and Xcode (SDL_image being ignored)
ld: warning: ignoring file /Library/Frameworks/SDL_image.framework/SDL_image, file was
built for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0
0x 0 0x 6 0x 0 ...
0
votes
0answers
47 views
Playing audio using SDL_Mixer in wxWidgets application
I've a video processing application based on wxWidgets framework. Currently is it able to play video files but without audio.
I'm trying to add audio to it by using SDL_Audio/Mixer. I'm using ffms2 to ...
0
votes
1answer
42 views
Weird sdl opengl linker
Im trying to import a game i made from glut to sdl with opengl but for some reason im getting these linker problems.
The code is too long to post it.
Heres one of the errors:
unresolved external ...
1
vote
0answers
152 views
OpenCL + SDL 2.0 (with OpenGL context) crash on SDL_Quit()
If I call clGetPlatformIDs and directly after it SDL_Quit(), the program crashes (segfault). The OpenGL version doesn't seem to matter at all (tried 2.1, 3.1, 3.2, 3.3). The operating system is Fedora ...
0
votes
1answer
100 views
Resizing image with SDL_gfx at specific size C++
I am using SDL_gfx trying to resize an image but i can't really get it done.
The case is that I have an :
SDL_Surface* screen = SDL_SetVideoMode(0,0,32,SDL_FULLSCREEN);
and I also have a:
...
0
votes
0answers
66 views
How to think about color format in android?
I mean, I want to do a game in SDL on android with OpenGL ES2. And the next step is figure out if all devices will have the color format of 24 bits, RGB. With 8 bits per component.
If this is the ...
0
votes
1answer
33 views
VC++ 2010 Intelisense does not see headers, but no error during compilation
I am have compiled a test program with SDL. The program compiles fine and is working, but there is no intelisense for the files that i can include.
Including them: "SDL.h" does not give me an error. ...
-3
votes
3answers
676 views
Differences in C++ 2D game libraries? [closed]
I want to start looking into making a 2D game using C++ and have looked serveral different libraries. Specifically, I'm interested in SDL, openGL, SFML, and Allegro 5. What I'm a bit confused about is ...
-2
votes
2answers
151 views
Interpreting DrMemory log, memory leak [closed]
I wrote a simple snake game using SDL api, and there's a memory leak somewhere in the game, because after about 10 minutes of running the game it takes over 50mb of ram and it's still expanding. I did ...
1
vote
1answer
130 views
Difficulties while using SDL_CreateRGBSurface to create a new SDL_Surface
I'm creating a basic console-based image processing tool in c++ and have thus far found creating functions that operate on RGB values super easy!
What I'd like to do now is create functions for ...


