Tagged Questions
0
votes
2answers
125 views
why does the memory my program uses keep growing as it runs?
From first searching about this I found some sources saying i probably have a memory leak. But when i searched into detail about what a memory leak is, it said i happens when i use "new" and dont use ...
0
votes
1answer
77 views
2D rectangle sliding collision doesn't work
So I'm developing a little escape game, and I want to make sure you can't walk through walls. I also want to be able to slide across walls. With this I mean that when you have a wall on your left, and ...
1
vote
1answer
211 views
Convert SDL window position to OpenGL world position
I'm using SDL and OpenGL for this project. My screen at program start up is 640 x 480 and so is my glOrtho setup. So the program starts out synchronized. But my program allows the user to create a ...
0
votes
1answer
153 views
2D 45 degree angled Sloped tiles
Here is my code that checks the type of tile. If its an inclined tile it then updates the
position of the character. As demonstrated in the photo my character does not move along the slope. What am I ...
1
vote
2answers
519 views
Simple 2D graphics in Objective C (GNUStep)
I'm creating a simple agent-based modeling-framework and I'd like to provide some very simple visualizations. Nothing too fancy, and mainly just 2D graphics. Can I use OpenGL or SDL with Objective C ...
1
vote
1answer
336 views
How to implement direction in a 2D particle system?
I was creating a simple particle system for SDL for a 2D project. My generation features work fine, and I can create velocity, as well as location of the particle generation. What I need to do is ...
0
votes
0answers
367 views
2D TTF Text Rendering with SDL & OpenGL Issues
So I have looked around and I haven't found the best way to actually implement this in SDL & OpenGL. At this moment I can display text to the screen with a TTF but its not really displaying the ...
0
votes
1answer
635 views
2d tile rendering using tmx-parser and SDL
I'm working on getting an map created in Tiled (http://mapeditor.org) to render after parsing the map with tmx-parser (http://code.google.com/p/tmx-parser/). I've got the tiles to render in the ...
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 ...
0
votes
1answer
725 views
Read pixels from SDL_Surface and Convert to color values
I don't really know what's wrong (mainly because I don't know what the line that gives me an error does).
I don't think I have to show you that much code.
What I'm doing is that I'm trying to get the ...
4
votes
1answer
3k views
2D Platformer Collision Handling
I am trying to create a 2D platformer (Mario-type) game and I am some having some issues with handling collisions properly. I am writing this game in C++, using SDL for input, image loading, font ...
2
votes
1answer
265 views
What library or graphics engine would be suitable for a full-screen professional retail tool?
I find myself in the unique position of having to find a suitable 2D graphics engine (or 3D with easy-to-use support for 2D interfaces) for the creation of a simple, full-screen retail sales tool for ...
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
851 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
2answers
292 views
What package should I be using for 2d animation?
I am working with a client on a 2d map. The map is centered on the user's position and marks various headings and points of interest. As the user moves, the headings change and the points of interest ...
3
votes
2answers
3k views
2D Platformer Collision Problems With Both Axes
I'm working on a little 2D platformer/fighting game with C++ and SDL, and I'm having quite a bit of trouble with the collision detection.
The levels are made up of an array of tiles, and I use a for ...
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 ...
2
votes
5answers
3k views
Best 2D animation library/tech for “iPhone” style animation on WIN32?
All,
I have built a nifty demo application that displays data about our internal systems as a full-screen "billboard" style display. You could think of this as something like an application ...
