Tagged Questions
1
vote
2answers
118 views
SDL library: does SDL_UpdateRect() really need to be called for an SDL_HWSURFACE?
I'm a newbie to SDL and I've read about a dozen introductory tutorials so far. I'm a bit puzzled about the difference between hardware and software surfaces (i.e. the SDL_HWSURFACE and SDL_SWSURFACE ...
0
votes
2answers
173 views
Cannot compile a basic SDL tutorial with C++ and visual studio 2010 express - SDL.h not found
The file SDL.h is in C:/user/desktop/sdl-version/include/SDL.h (where SDL.h is the file not a new folder) and I have set up my property pages to include C:/user/desktop/sdl-version/include. However, ...
1
vote
1answer
128 views
Pixel level manipulation windows
I've been using SDL to render graphics in C. I know there are several options to create graphics at the pixel level on Windows, including SDL and OpenGL. But how do these programs do it? Fine, I can ...
0
votes
1answer
162 views
Hide the Title bar and frame in SDL window
i am modifying the source present here . To disable the title bar and frame on the SDL window , I embeded the SDL_NOFRAME flag , in both the SDL_setvideomode function present in source
...
0
votes
0answers
150 views
OpenGL FPS Style Camera
i have been working on a basic game in OpenGL and i am trying to get the basic movement of the camera down. i'm pretty new to programming graphics. I used to do alot of Win32 API stuff and wanted to ...
0
votes
2answers
121 views
Direct3D Window
I'd like to start learning Direct3D, but I'm unable to fully focus on it with 99% of the code in tutorials targeted only at creating and maintaining a window, which I don't even care about.
I want to ...
0
votes
1answer
512 views
c++ SDL draw text and figures together
I am doing a big project and I want to show user the information which looks nice.
All that I need it's to be able to draw square and text inside.
I drew text and squares, but I cannot put them ...
1
vote
2answers
2k views
Some thoughts on SDL + Qt + OpenGL for a Game Engine
I've been researching the ideal parts for a game engine which I'm building. At first I tried just going raw and writing everything from scratch using just the bare amount of native libraries such as ...
0
votes
1answer
346 views
SDL Transparent Overlay
I would like to create a fake "explosion" effect in SDL. For this, I would like the screen to go from what it is currently, and fade to white.
Originally, I thought about using SDL_FillRect like so ...
2
votes
1answer
104 views
SDL Resolution issue
After using SDL for a bit, I found a small issue.
When setting the video mode in full screen:
screen = SDL_SetVideoMode(WIDTH,HEIGHT,BITDEPTH,FLAGS);
With the flags:
const Uint32 Graphics::FLAGS = ...
2
votes
2answers
663 views
OpenGL window with SDL not showing
I'm working on a program with OpenGL/SDL, but the window won't draw. The window's entry appears in the taskbar and the alt+tab menu, but no thumbnail is shown. When I click it, it's marked as active, ...
0
votes
0answers
189 views
SDL_SetVideoMode not displaying window
I have a feeling it's because I tried compiling SDL 1.3 from source, and then installed SDL 1.2 from the Ubuntu repos.
Still, I tried deleting the SDL 1.3 headers (located in usr/local/include, by ...
0
votes
4answers
119 views
Easiest way to practice graphics [closed]
I am learning C and wish to create 2D static objects, line graphs etc for GUI graphics and printing. SDL seems too much and there is no clear source available to teach SDL in C. what are my easier ...
1
vote
0answers
263 views
SDL : blitting time optimization
I'm using SDL in windowed mode.
Given a large sprite, say 1024 x 640, is it faster to blit the entire image into severals small tiles, say 32 x 32 px, than to blit the whole image at once ?
I have ...
3
votes
3answers
432 views
SDL_image PNG transparency error
I am loading PNG file (with some transparent places) into my SDL application.
Googling on how to do it provided me with this code sample:
SDL_Surface *LoadImage(std::string filename)
{
...
2
votes
2answers
330 views
SDL FPS input delay
I am usign SDL in my playground project and i am a bit worried about my PC performance - it is too high or i am just wandering.
The thing is, when i change the coordinates of some sprite when the key ...
0
votes
1answer
359 views
Llibraries used in commercial game software (alternatives to SDL)
I was just wondering what software libraries are often used in professional commercial game software? I'm mainly interested in Windows, but Linux software interests me as well.
I've seen a lot of ...
6
votes
6answers
2k views
What is a decent C++ graphic library for a game?
I am looking for decent graphic library that would allow me to do the following basic things for a game:
- displaying images / sprites on screen fast enough
- allowing me to do with keyboard/mouse ...
1
vote
1answer
201 views
Does it make sense to OpenGL instead of SDL blitting functions?
I'm writing a simple 2d game using SDL and I was wondering, what if I just apply a bitmap texture to rectangles with OpenGL and use them instead of sprites, eliminating any calls to SDL_BlitSurface? ...
2
votes
1answer
334 views
Lightweight method for drawing various shapes / text on the screen quickly in C#?
This is hopefully a really simple question!
Which method (and possibly library) is considered to be the best for drawing text and shapes, and modifying individual pixels, on a 2D canvas, such that I ...
28
votes
4answers
6k views
Haskell library for 2D drawing
I basically want to create a full screen window and draw text on it in different colors and sizes (and also update the screen). I've used pygame for this in python and I'm looking for a similar ...
0
votes
1answer
520 views
How can I cap the framerate at 60fps?
Alright, so I'm trying to cap my framerate at 60 frames per second, but the method I'm using is slowing it down to like 40.
#define TICK_INTERVAL 30
Uint32 TimeLeft(void){
static Uint32 ...
3
votes
1answer
319 views
SDL Coordinate System, from (0,0) to (w,h) or (w-1, h-1)?
I have been learning OpenGL and SDL lately and I've become rather confused about the coordinate system in SDL and glOrtho. I've read a few tutorials about the SDL's coordinate system that says the ...
0
votes
1answer
1k views
Problems with SDL_SetColorKey
I'm trying to create a transparent sprite with SDL. I'm using SDL_SetColorKey on a bitmap with magenta (0xff00ff) background (it's 100% magenta, I checked it with the GIMP :)) The call to ...
1
vote
4answers
951 views
OpenGL texture mapping stubbornly refuses to work
I'm writing a 2D game using SDL and OpenGL in the D programming language. At the moment it simply tries to render a texture-mapped quad to the screen. Problem is, the whole texture-mapping part ...
0
votes
1answer
154 views
How to implement escape Sequence in SDL
Im trying to use the STL library inside the SDL. but it gives me the error
"undeclared identifier"
Is there any way i can use "\n"or even cout<<endl;
Can the function SDL_WarpMousewhich places ...
0
votes
1answer
117 views
How to check if a sprite object is visible?
I have a Array of Sprite classes with these methods: x, y, width and height. They are sorted based on his z property. The last are on top. I have, too, the screen size. How can I know if a specific ...
4
votes
1answer
602 views
Can't set video mode for SDL screen on embedded device
I've been hacking away on an ARM based device (Freescale i.MX27 ADS) with a built-in screen for the past few days. The device is running a modified, minimal GNU/Linux system, with no window management ...
0
votes
1answer
373 views
SDL_SetVideoMode hangs the process
During initialisation of my program I call SDL_SetVideoMode() just after SDL_Init() and it is hanging my program.
When executing the program, if I press Ctrl-C during the hang it will continue as ...
0
votes
4answers
502 views
Finding a suitable 2D graphics API
We are in the first stages of making a 2D game at the moment, which will focus on destructible environments and objects.
However, we have already encountered serious problems with the choice of the ...
2
votes
2answers
849 views
Why is SDL so slow and how can I get it to run faster?
I have the following test setup:
1024 * 768 screen surface created with SDL_HWSURFACE
The main loop consists only of SDL_Flip() and a simple FPS counter
The problem is:
I am only getting around ...
1
vote
1answer
204 views
Pixel dilemma: Choosing the right graphics API
I want to make a sidescrolling 2D game with destructible terrain. My approach is having the terrain as a BMP and having access to each pixel.
However I have a problem with choosing the right graphics ...
1
vote
3answers
307 views
SDL: FPS problems with simple bitmap
I am currently working on a game in SDL which has destructible terrain. At the moment the terrain is one large (5000*500, for testing) bitmap which is randomly generated.
Each frame the main surface ...
3
votes
2answers
226 views
how much c programming should I know before indulging into sdl programming
I have programmed in c and I know about data structures and algorithms, but It has been a while since I programmed in c. I forgot things like how function pointers and some advanced stuff in c work. I ...
7
votes
2answers
1k views
difference between SDL and GLUT
I am learning the Opengl graphic programming at Eclipse. Can someone tell me the difference between GLUT application and SDL application, so that I can dig into either one of them? Tks.
1
vote
3answers
575 views
Graphic programming over video playback
I want to make some GUI mockup program for video player, so my idea is just to show some menu pictures over real video being playback. I have working program made with C and SDL just to load pictures ...
0
votes
2answers
1k views
What is the proper way to use GFX rotozoomSurface with SDL for drawing transparent sprites?
I'm using the latest SDL/GFX libs on Fedora 10 and I'm trying to render a PNG or GIF
image onto the screen surface. I could not get transparent PNG's to display at all
so I replaced the transparent ...
1
vote
7answers
4k views
Planning a 2D tile engine - Performance concerns
As the title says, I'm fleshing out a design for a 2D platformer engine. It's still in the design stage, but I'm worried that I'll be running into issues with the renderer, and I want to avoid them ...
3
votes
2answers
2k views
How to avoid tearing with pygame on Linux/X11
I've been playing with pygame (on Debian/Lenny).
It seems to work nicely, except for annoying tearing of blits (fullscreen or windowed mode).
I'm using the default SDL X11 driver. Googling suggests ...
1
vote
1answer
634 views
Why does CreateDIBSection() fail when the window is offscreen?
I'm building a Delphi component to embed an SDL rendering surface on a VCL form. It works just fine as long as the form is on-screen at the moment that the SDL surface is created. Otherwise, it's not ...
3
votes
1answer
1k views
Fully transparent windows in Pygame?
Is it possible to get a fully transparent window in Pygame (see the desktop through it)? I've found how to create a window without a frame, but there doesn't seem to be any obvious way to make it ...
2
votes
4answers
2k views
Need a client-side interactive 2D world map: best map package? Or best C++ graphics/canvas library to make one?
I need a 2d political map of the world on which I will draw icons, text, and lines that move around. Users will interact with the map, placing and moving the icons, and they will zoom in and out of ...
2
votes
7answers
2k views
Making a game in C++ using parallel processing
I wanted to "emulate" a popular flash game, Chrontron, in C++ and needed some help getting started. (NOTE: Not for release, just practicing for myself)
Basics:
Player has a time machine. On each ...
