Tagged Questions
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
307 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
134 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
781 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
326 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
763 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
202 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
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 ...
1
vote
0answers
39 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
54 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
105 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
198 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
113 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
194 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
260 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
273 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
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
2answers
216 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
329 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
1answer
713 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
2answers
578 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
0
votes
4answers
54 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
44 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
108 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
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
58 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
3answers
189 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
188 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 ...
0
votes
1answer
257 views
c++ allegro program bounding box collision is off
I am working on a menu for a game in c++ using the allegro graphics library. I am using code blocks and mingw. There are many buttons that use a modified bounding box that returns true if the mouse is ...
0
votes
2answers
545 views
Compiling C++ code with allegro 5 and g++
What flags do I need to add to g++ in order to compile code using allegro 5? I tried
g++ allegro5test.cpp -o allegro5test `allegro-config --libs`
but that is not working. I'm using ubuntu 11.04. I ...
0
votes
0answers
126 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
2answers
328 views
Allegro bitmap commands return black screen
I am a beginner at allegro and c++. I am trying to use the bitmap commands. I used this simple program to test it:
#include <allegro.h>
BITMAP *red;
int main(){
allegro_init();
...
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
672 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 ...
0
votes
1answer
333 views
c++ allegro input
I'm building a simple ice sliding puzzle to test uses of allegro. So far I've got the whole thing working although I haven't actually added in the objective yet or the puzzle, just the engine behind ...
-1
votes
3answers
61 views
cmake didn't find my allegro includes and llibs so compile time error
I am trying to set up my code to use the allegro libray, I am using the KDEV4 under mandriva, I installed the allegro-dev package. Then whenusing allegro functions in KDevelop it displays the ...
-1
votes
1answer
232 views
Drawing Text Using OpenGL and Allegro 5
How can I draw 2d text using openGL and Allegro 5 in C++? I want to be able to specify a font file to load, and not have to put all the characters into an image file by hand.
-1
votes
2answers
234 views
In C++, how do I link a program with libpng/zlib/loadpng in a MacOS X?
Umm... kinda self explanatory. I use Xcode 4 and Allegro.