Tagged Questions

Allegro is a game programming library for C/C++ developers distributed freely, supporting the following platforms: Unix (Linux, FreeBSD, etc.), Windows, OS X, and iOS.

learn more… | top users | synonyms

7
votes
3answers
752 views

Porting Autodesk Animator Pro to be cross platform

a previous relevant question from me is here Reverse Engineering old paint programs. I have set up my base of operations here: http://animatorpro.org wiki coming soon. Okay, so now I have a 300,000 ...
3
votes
1answer
76 views

How can I tell if the user tries to close the window in C++?

I need to break a while loop when the use clicks the close button on the window, but I don't know what to check for. I'm using allegro to run the GUI.
3
votes
2answers
310 views

Allegro vs OpenGL speed/efficiency wise

I've been using Allegro 5 for a while now, and recently began looking into OpenGL with Freeglut. I would be ready to make a switch, but I would like to know if it's really worth it. Is OpenGL really ...
3
votes
5answers
300 views

C++: How do I prevent a function from accepting a pointer that is allocated in-line?

Couldn't figure out how to word the question accurately, so here's an example: Given this function prototype: void Foo(myClass* bar); I want to prevent this usage: Foo(new myClass()); and ...
2
votes
3answers
137 views

Undefined reference to 'main'

You got to love linker errors *sarcasm*. Any way, I am developing a psp game using the psp port of allegro which came with pspsdk. And after I fixed all the other undefined references this one stumps ...
2
votes
1answer
787 views

Render a vector graphic (.svg) in C++

My and a friend are working on a 2D game where the graphics will be .svg files and we will scale them appropriately either by rasterizing them first, or rendering them directly on a surface (which ...
2
votes
3answers
327 views

convert int to string for use in allegro function

I am trying to run the following code using allegro. textout_ex(screen, font, numbComments , 100, 100, GREEN, BLACK); numbComments is an integer, the function prototype of this function is void ...
2
votes
2answers
764 views

C/C++ Allegro program causes Windows 7 to switch to Aero Basic

I'm just trying out the allegro library, and here is the code which I've got so far: #include <allegro.h> int main(int argc, char *argv[]) { allegro_init(); // initialize the allegro ...
2
votes
3answers
203 views

Boost Unit testing with Allegro Graphics Library

I'm trying to use boost unit testing alongside the Allegro graphics library, but both require main() alterations / overwrites. Has anyone had any experience using both? Edit 1/29/2010: I've refrained ...
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
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 ...
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 ...
1
vote
1answer
36 views

Allegro program triggers breakpoint?

So I'm learning about sprite programming and we're using allegro. When I run one of the sample programs I get the message: rotatesprite.exe has triggered a breakpoint. This was in visual studio. I ...
1
vote
1answer
55 views

Equality Operator Overloading in Allegro

One of my friends is trying to overload an equality operator for comparing colours in Allegro, however it does not work,He gets the error "no match for operator==" This is overloaded outside the Color ...
1
vote
1answer
43 views

allegro library 4.4 korean broken

I am working with allegro 4.4 library when I print korean, korean string breaks but english isn't in Allegro Manual, it says, allegro uses UTF8 encoding by default. I have no idea what was wrong, ...
1
vote
1answer
106 views

How do I bundle the Allegro library with a Ubuntu Allegro application?

I got the Allegro dev libraries, wrote and compiled a simple application, and ran it on my computer, and it worked fine. I had a friend test it, but it did not do anything when double clicked. I think ...
1
vote
3answers
139 views

How come allegro automatically handles minimize button, but not close button?

Here is a sample from Allegro5 tutorial: (to see the original sample, follow the link, I've simplified it a bit for illustratory purposes. #include <allegro5/allegro.h> int main(int argc, char ...
1
vote
2answers
288 views

Compiling Allegro 5.0 libs on ubuntu: “undefined reference to …”

I'm new to Allegro, Ubuntu, and C++ ... sorry in advance... I just installed Allegro 4. Something from the ubuntu software manager. I then followed the directions of this page to install Allegro 5. I ...
1
vote
2answers
201 views

how do you make a background in allegro with c++?

i'm fairly new at programming with allegro, and i wanna change the background color of my programs from something more pleasant than black haha :) can some one help please? and just for a reference ...
1
vote
1answer
115 views

C++ (Allegro Library) Bitmap Two-Dimensional Array Question

I have a quick question. I am using C++ with the Allegro library. If I make the following declaration BITMAP* blocks[600][14];, is it going to be wasted space if I only occasionally am using all 14 ...
1
vote
1answer
195 views

Porting allegro 4 to allegro 5

what is the allegro 5 version of this function? texture_number = allegro_gl_make_texture_ex(AGL_TEXTURE_MASKED, my_bitmap, GL_RGBA); Or do I need to do something completely different in allegro 5? ...
1
vote
2answers
268 views

Anti-aliasing in allegro 5

How do I make allegro 5 use anti-aliasing when drawing? I need diagonal lines to appear smooth. Currently, they are only lines of shaded pixels, and the edges look hard.
1
vote
1answer
278 views

Allegro draw_sprite()

I have a 114x114 bitmap called "x.bmp" in my debug folder and this simple code #include <allegro.h> BITMAP *Sprite; int main(){ allegro_init(); install_keyboard(); ...
1
vote
1answer
81 views

Setting up allegro

Can anyone tell me how to set up allegro for devc++?
1
vote
1answer
982 views

Using allegro with Xcode 4

I am trying to build a simple allegro project with Xcode 4. #include <stdio.h> #include <allegro5/allegro.h> int main(int argc, char **argv) { ALLEGRO_DISPLAY *display = NULL; ...
1
vote
1answer
113 views

Allegro question, how can I get rid of the cmd window?

I've made a small game in Allegro, but every time I run the .exe file it opens both the allegro window for the graphics but also a command line window even though I don't have anything that prints to ...
1
vote
4answers
184 views

Returning a reference to a local/temprorary object without causing a memory leak?

I realize this is wrong (my compiler says so!): Rectangle& Rectangle::Overlap(const Rectangle& rectangle) { Point topLeft(__max(this->GetVerticies()[0]->GetX(), ...
1
vote
1answer
174 views

Bad flickering problem with Allegro

I have a simple Allegro window which is experiencing bad flickering. The system I have right now is doubled buffered, which is why I can't figure out why it's happening. BITMAP *buffer = ...
1
vote
1answer
824 views

cannot compile allegro using visual c++

I just downloaded the allegro library I make a new empty project then add a source file I add this line of code: #include <allegro.h> I compile and get the following error: ...
1
vote
2answers
217 views

C/C++ Allegro program wont run

wont load my picture my default error message which is"error loading picture.bmp" pops up every time and wont run #include "allegro.h" int main(void) { char*filename="picture.bmp"; ...
1
vote
1answer
331 views

Installing Allegro in Dev-C++ using their Packages

I'm trying to install Allegro in Dev-C++, and rather than do it manually, I noticed the new version was in the available packages, so that'd be easier. Here it is in the manager. Here it is ...
1
vote
2answers
184 views

Texture management / pointer question

I'm working on a texture management and animation solution for a small side project of mine. Although the project uses Allegro for rendering and input, my question mostly revolves around C and memory ...
1
vote
1answer
715 views

Allegro 4.2.1, removing bmp background color

I have been building a game in allegro 4.2.1 and need help to remove a specific color to make invisible. The background color is, (255, 0, 255). I have been at the following sites, but they have not ...
1
vote
1answer
182 views

Allegro SCAN_DEPEND problems

I am trying to build a project with the allegro-msvc80-4.2.2 pre-built package. I'm using Visual C++ Express Edition 2005 and have added the input library alld.lib and am including allegro.h asp per ...
1
vote
2answers
580 views

Transparent sprites in c++ with Allegro

I'm learning to use Allegro. I'm trying to make my character cut out. How do I key out a certain color from my bitmap? which way is used for allegro? Thanks
1
vote
1answer
104 views

Allegro Webactions not serving on SBCL. Methods to debug or possible solutions?

I am trying to get Portable Allegro Serve and Webactions up and running on SBCL. I have so far managed to make paserve properly serve pages. But webactions chunks out with the following warning in the ...
0
votes
4answers
55 views

C++: Erasing an iterator from a map and then incrementing to the next iterator

This method causes an abort error: "map/set iterator not incrementable." Due to that after the if fails and a vaild iterator that should be erased is determined, (and is), continuing to the next ...
0
votes
2answers
46 views

Compiler detects allegro.h, but not allegro_primitives.h

When I compile my Allegro 5 program using g++, it complains about undefined reference to 'al_init_primitives_addon', al_draw_filled_rectangle and other such functions that are found in ...
0
votes
5answers
109 views

C++ (seemingly) Random Compiler Errors

I've been playing around with C, C++ and Allegro thanks to a little book and a bigger book I found in an Oxfam book shop. I'm understanding it quite well at the moment but I've hit a wall... Whenever ...
0
votes
0answers
52 views

access violations, allegro 5

I am using allegro 5, In class 1 I load 5 bitmaps into a bitmap I have created in Allegro to speed up loading of these images. When I load this created bitmap from Main it works perfectly. Then when ...
0
votes
1answer
56 views

C++ Allegro: Program Crashes when I move the window

I Have built a C++ Allegro Map Editor. One of the requests was to have a log so I've put it in the console window for every move that is made... Problem now is that the console window is under the ...
0
votes
0answers
122 views

I can't compile an Allegro project! (C++)

I'm using Dev-C++, and I like it, but when I first tried allegro with it, it told me that there was a linker error. I looked that up, and I fixed it, but now it won't compile. It just says that I ...
0
votes
1answer
77 views

Allegro 4.2.4 in palette mode on Windows7 corruption

I have problem with Allegro 4.2.4 running palette mode (256 colors) in Windows 7. I found over Internet solution of killing explorer and it's working indeed, however it would be ridiculous to expect ...
0
votes
0answers
160 views

Allegro and Qt creator - how to set up this two?

I've looked for it for a long time and I couldn't find it, so could anybody tell me how to set up allegro (4.2.3) with qt creator (2.3.0), Qt 4.7.4 ? Thanks in advance, Martin. EDIT: OK, by ...
0
votes
1answer
59 views

Allegro c++; flashing BITMAP

im trying to make a simple program that has one BITMAP that is the "background" and another BITMAP that i can move, ive tried different ways, like drawing the background directly to screen, tried ...
0
votes
1answer
24 views

korean font with allegro 4.4

I am trying to support korean font in allegro project I stuck on this all the day. I convert ttf to fnt format with many sort of program and check one by one whether it is not broken or not. it ...
0
votes
3answers
194 views

Need help in C++ with allegro library…?

I installed CodeBlocks 10.5 with minGW compiler. After setting environment variables for minGW I cheked gcc -v on cmd and it is working fine. The problem is that, I have made a small program in ...
0
votes
3answers
84 views

Animation problem?

Right now when i start my game am making in C++ i walk left right up or down.. But the character just slides doesn't look like he's walking.. And i have all the pictures already loaded into my game ...
0
votes
1answer
191 views

Compiling Allegro 4.2 For MinGW/CodeBlocks

I'm having trouble getting Allegro to Compile. When I begin the fix.bat mingw, it gives me an output which says: Configuring for Windows/Allegro...Stop! Yet, when I try to compile the rest by ...

1 2