Tagged Questions

2
votes
2answers
296 views

Review my game project OR (How to peer-review my project)?

I just finished a 2d platformer in C++/Allegro. Its still in an incomplete stage... I wonder how to go about a peer-review from people who are into game development. I would like to review my project ...
2
votes
8answers
5k views

Best way to detect collision between sprites?

Whats the best way to detect collisions in a 2d game sprites? I am currently working in allegro and G++
1
vote
0answers
40 views

libfov problems in C++ game

I've been making a game in which I want to use some FOV lighting. I'm trying out libfov and it seems perfect, I had some trouble getting it to compile which I figured out on my own, but when I try to ...
0
votes
0answers
127 views

sidescroller in allegro, problem with collision

I would like to ask, I'm doing this for an assignment where its slightly similar to a plan side scroller game. Well, I've already gotten my map up and is currently using a background image along with ...
0
votes
1answer
175 views

Allegro C++ library

I've been having this problem for a while. When I compile this part of my code It shows black lines above the bitmaps. What might be the problem and are there any solutions? void start() { FONT ...
0
votes
5answers
106 views

Software to track several memory errors in old project?

I am programming a game since 2 years ago. sometimes some memory errors (ie: a function returning junk instead of what it was supposed to return, or a crash that only happen on Linux, and never happen ...
0
votes
9answers
674 views

How to check if memory has aready been released in Destructor?

I have a simple tank wars style game using the allegro open source library. In my tank class, I initialize arrays of pointers to bitmap objects to 0. Then I create new objects with an allegro ...