Allegro.cc - Online Community

Allegro.cc Forums » Allegro Development » git format-patch: troubles with white space trailing

This thread is locked; no one can reply to it. rss feed Print
git format-patch: troubles with white space trailing
Izual
Member #2,756
September 2002
avatar

Hello.

I am trying to "git format-patch" for allegro5 and i have encounter a small
problem with trailing white space. My editor is set to remove the trailing
white space and i was so sure( Oh how wrong i was ! ) that every other editor
in the world does it. Well who the hell needs a bunch of white space characters
on an empty line.
And now when i formated the patch i noticed that the files i was working with
had this white space trailing on almost every empty line. The patch is now plagued
with lines like this:

#SelectExpand
1@@ -224,15 +225,15 @@ int main(int argc, char **argv) 2 al_acknowledge_drawing_halt(event.display.source); 3 4 break; 5- 6+ 7 case ALLEGRO_EVENT_DISPLAY_RESUME_DRAWING: 8 background = false; 9 break; 10- 11+ 12 case ALLEGRO_EVENT_DISPLAY_RESIZE: 13 al_acknowledge_resize(event.display.source); 14 break; 15- 16+ 17 case ALLEGRO_EVENT_TIMER: 18 update(); 19 need_redraw = true;

Not only is the patch unnecessary large but it is also harder to look trough
and see what was really done.

Does allegro have any kind of guidelines regarding white space trailing in the code.
Should it be removed? Or should it be kept as the original author wrote it?

I am asking because it will be a real pain to return the white space in the files
to original state. My GIT-KUNG-FU is not that good to remove this kind of problem( if it is possible).
And my patch looks ugly. :'(

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

SiegeLord
Member #7,827
October 2006
avatar

We prefer the whitespace changes to be their own commits (although we rarely do them unless the whitespace is really bad). It's not particularly hard to split up a commit though:

First, undo the commit (this'll keep the changes):

git reset HEAD~1

Then use the interactive add mode.

git add -p <optionally put the files you meant to change here>

That'll put you in a mode where you'll go through every diff hunk. Press y if you want to stage it (i.e. the changes you really meant to do), or n if not. After that's done you can do:

git commit -m "Your commit message"

After that's done you'll still have your whitespace changes... I'd probably avoid committing them, but you can if you want.

If that gives you too much trouble, then don't worry too much we can do the split for you as well.

"For in much wisdom is much grief: and he that increases knowledge increases sorrow."-Ecclesiastes 1:18
[SiegeLord's Abode][Codes]:[DAllegro5]:[RustAllegro]

bamccaig
Member #7,536
July 2006
avatar

^ Excellent post SiegeLord. Interactive add is probably the best option here.

Edgar, I'm getting old too, but seriously learn something new and master such an important tool. :P Git can save you so much fuss if you just take a weekend to learn it. :) There's even a free/libre "book" available online to walk you through most of it. Beyond that, ask in #git on freenode any question and they'll steer you in the right direction and hold your hand if you need it. And when we're present we can help you in #allegro too.

On a side note: if you are viewing a patch with a Git command and the patch is full of white-space only noise you can add a -w option to suppress it. It won't help with merging such a patch, but it can at least help for reviewing it. UIs for viewing Git history should support such an option too (or should be complained to if it doesn't).

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

@bamccaig

I do use git, but I haven't really had the need for its more advanced features. I rarely need any more than git branch and git merge. If git can somehow magically remove whitespace changes from a commit that's cool and its news to me.

Izual
Member #2,756
September 2002
avatar

Thank you all.

I will try to get rid of the white space changes on my own for now. Improving my GIT-KUNG-FU along the way.
It will be propably a real pain, but on the other hand, a valuable experience.

Will post the result when i am satisfied with them. :)

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

Izual
Member #2,756
September 2002
avatar

Ok. I have managed to get rid of the white space changes and i have compiled a
patch preview so that you can see what i am trying to do and if it is worth
to continue( if it is actually desired to make such changes ).

PATCH HERE

I have noticed a little differences between some bitmap drawing functions so i made those changes:

1:
al_draw_scaled_bitmap and al_draw_scaled_rotated_bitmap where one takes
absolute destination bitmap size and one takes scale value.

Made them both take scale value and to compensate for the change i added
another functions named al_draw_stretched_bitmap and al_draw_stretched_rotated_bitmap
that takes absolute destination bitmap size.

2:
al_draw_tinted_bitmap_region and al_draw_tinted_scaled_rotated_bitmap_region had
the tint argument in different order. Corrected that.

3:
Now only region drawing functions use source bitmap position and dimensions arguments.

4:
Made a function for every sane combination of Tinted, Scaled, Stretched and Rotated drawing.
Also made those functions with region variants.

5:
Added documentation for all available functions.

6:
Adjusted examples to use the new or changed drawing functions.

To compile the allegro with this preview patch you have to disable
WANT_DEMO and WANT_TESTS in cmake for now.
Still trying to figure out how the tests works for now.

Take a look and share your opinions please.

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

Woah man, are you from the future?

{"name":"611906","src":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/2\/72e00ab6eb7bf3b17b698d64d215eedd.png","w":1920,"h":1080,"tn":"\/\/djungxnpq2nug.cloudfront.net\/image\/cache\/7\/2\/72e00ab6eb7bf3b17b698d64d215eedd"}611906

I'm looking at your patch now...

Izual
Member #2,756
September 2002
avatar

A tiny bit of work has been done on the patch again. The demos and tests now compiles too.
Also managed to get the test_bitmaps2.ini to pass all the tests.
But the test_bitmaps.ini is much bigger beast and i still fully do not understand
whole test_driver.c so it fails some of the tests.
A few tips from someone who knows what is going on there would be really helpfull.

New patch preview can be found here.

@Edgar:
Seems like all that white space trailing in the patch also messed up my TTD ( a Time Travel Device, not a Tranport Tycoon Deluxe :) )
settings and the patch ended in the wrong time ;D

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

Seems there are options for dealing with white space changes ;

The merge mechanism (git merge and git pull commands) allows the backend merge strategies to be chosen with -s option. Some strategies can also take their own options, which can be passed by giving -X<option> arguments to git merge and/or git pull.

...

ignore-space-change
ignore-all-space
ignore-space-at-eol

Treats lines with the indicated type of whitespace change as unchanged for the sake of a three-way merge. Whitespace changes mixed with other changes to a line are not ignored. See also git-diff(1) -b, -w, and --ignore-space-at-eol.

If their version only introduces whitespace changes to a line, our version is used;

If our version introduces whitespace changes but their version includes a substantial change, their version is used;

Otherwise, the merge proceeds in the usual way.

Peter Hull
Member #1,136
March 2001

Just to be clear - items 1 & 2 in your list are breaking changes to the Allegro API, are they?

Izual
Member #2,756
September 2002
avatar

Yes, they are. Unfortunately.

But then i could just name the new functions something like:

al_blit_bitmap
al_blit_tinted_bitmap
al_blit_stretched_rotated_bitmap_region

and so on to keep the current al_draw_bitmap routines untouched.

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

If we're going to make sweeping changes, I have some suggestions :

Make naming and parameters consistent (its hard enough to remember the parameters as it is) :

#SelectExpand
1/// Drawing routines 2 3al_draw_bitmap (bmp , dx , dy , flags); 4 5al_draw_bitmap_stretched (bmp , dx , dy , dw , dh , flags); 6al_draw_bitmap_scaled (bmp , dx , dy , scalex , scaley , flags); 7al_draw_bitmap_tinted (bmp , dx , dy , tint , flags); 8al_draw_bitmap_rotated (bmp , dx , dy , theta , flags); 9 10al_draw_bitmap_stretched_tinted (bmp , dx , dy , dw , dh , tint , flags); 11al_draw_bitmap_stretched_rotated (bmp , dx , dy , dw , dh , theta , flags); 12 13al_draw_bitmap_scaled_tinted (bmp , dx , dy , scalex , scaley , tint , flags); 14al_draw_bitmap_scaled_rotated (bmp , dx , dy , scalex , scaley , theta , flags); 15 16al_draw_bitmap_tinted_rotated (bmp , dx , dy , tint , theta , flags); 17 18al_draw_bitmap_stretched_tinted_rotated(bmp , dx , dy , dw , dh , tint , theta , flags); 19al_draw_bitmap_scaled_tinted_rotated (bmp , dx , dy , scalex , scaley , tint , theta , flags); 20 21 22/// Region drawing routines 23 24al_draw_bitmap_region (bmp , sx , sy , sw , sh , dx , dy , flags); 25 26al_draw_bitmap_region_stretched (bmp , sx , sy , sw , sh , dx , dy , dw , dh , flags); 27al_draw_bitmap_region_scaled (bmp , sx , sy , sw , sh , dx , dy , scalex , scaley , flags); 28al_draw_bitmap_region_tinted (bmp , sx , sy , sw , sh , dx , dy , tint , flags); 29al_draw_bitmap_region_rotated (bmp , sx , sy , sw , sh , dx , dy , theta , flags); 30 31al_draw_bitmap_region_stretched_tinted (bmp , sx , sy , sw , sh , dx , dy , dw , dh , tint , flags); 32al_draw_bitmap_region_stretched_rotated (bmp , sx , sy , sw , sh , dx , dy , dw , dh , theta , flags); 33 34al_draw_bitmap_region_scaled_tinted (bmp , sx , sy , sw , sh , dx , dy , scalex , scaley , tint , flags); 35al_draw_bitmap_region_scaled_rotated (bmp , sx , sy , sw , sh , dx , dy , scalex , scaley , theta , flags); 36 37al_draw_bitmap_region_tinted_rotated (bmp , sx , sy , sw , sh , dx , dy , tint , theta , flags); 38 39al_draw_bitmap_region_stretched_tinted_rotated(bmp , sx , sy , sw , sh , dx , dy , dw , dh , tint , theta , flags); 40al_draw_bitmap_region_scaled_tinted_rotated (bmp , sx , sy , sw , sh , dx , dy , scalex , scaley , tint , theta , flags);

See how all the drawing routines start with the destination? And how the region drawing routines start with the source rectangle and then the destination?

After that, it's just a matter of adding the parameter named by the function to the argument list before the flags parameter.

Everything lines up, the parameters are accepted in the order given by the naming of the function, and it just makes things so much easier.

*The bonus of this naming scheme is that it doesn't require any changes to the ABI of Allegro. The current versions of drawing routines could be mapped to the new ones to maintain compatibility, while at the same time, creating consistency and order in the naming and use of these functions.

I'm still looking at your patch.

Izual
Member #2,756
September 2002
avatar

Thank you Edgar for your suggestion and wording my intention with this patch correctly.
As my english is self-taught, sometimes its hard to write down exactly what i want. :)

Yes. The whole point of this patch is to make the drawing functions naming and parameter list consistent.
But my propposed changes are actually breaking the compatibility that is why i like your naming of the functions better.
I am willing to completely rewrite it if we can come up with a reasonable naming and parameter order.

I am proposing to use your naming witch does not interfere with the current drawing functions:
al_draw_bitmap_all-sane-variations and al_draw_bitmap_region_all-sane-variations

And parameter order list:
bitmap, tint, sx, sy, sw, sh, cx, cy, dx, dy, dw or scalex, dh or scaley, angle, flags

Witch would make the longest function name:

al_draw_bitmap_region_tinted_stretched_rotated( bmp, tint, sx, sy, sw, sh, cx, cy, dx, dy, dw, dh, angle, flags );

But i am realy fine with anything that is consistent.

Current naming and parameter order list in my patch ( breaks compatibility ):

#SelectExpand
1// Bitmap: 2al_draw_bitmap ( bmp, dx, dy, flags ); 3al_draw_tinted_bitmap ( bmp, tint, dx, dy, flags ); 4al_draw_scaled_bitmap ( bmp, dx, dy, xscale, yscale, flags ); 5al_draw_stretched_bitmap ( bmp, dx, dy, dw, dh, flags ); 6al_draw_rotated_bitmap ( bmp, cx, cy, dx, dy, angle, flags ); 7al_draw_tinted_scaled_bitmap ( bmp, tint, dx, dy, xscale, yscale, flags ); 8al_draw_tinted_stretched_bitmap ( bmp, tint, dx, dy, dw, dh, flags ); 9al_draw_tinted_rotated_bitmap ( bmp, tint, cx, cy, dx, dy, angle, flags ); 10al_draw_scaled_rotated_bitmap ( bmp, cx, cy, dx, dy, xscale, yscale, angle, flags); 11al_draw_stretched_rotated_bitmap ( bmp, cx, cy, dx, dy, dw, dh, angle, flags ); 12al_draw_tinted_scaled_rotated_bitmap ( bmp, tint, cx, cy, dx, dy, xscale, yscale, angle, flags); 13al_draw_tinted_stretched_rotated_bitmap ( bmp, tint, cx, cy, dx, dy, dw, dh, angle, flags ); 14 15// Bitmap region: 16al_draw_bitmap_region ( bmp, sx, sy, sw, sh, dx, dy, flags ); 17al_draw_tinted_bitmap_region ( bmp, tint, sx, sy, sw, sh, dx, dy, flags ); 18al_draw_scaled_bitmap_region ( bmp, sx, sy, sw, sh, dx, dy, xscale, yscale, flags ); 19al_draw_stretched_bitmap_region ( bmp, sx, sy, sw, sh, dx, dy, dw, dh, flags ); 20al_draw_rotated_bitmap_region ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, angle, flags ); 21al_draw_tinted_scaled_bitmap_region ( bmp, tint, sx, sy, sw, sh, dx, dy, xscale, yscale, flags ); 22al_draw_tinted_stretched_bitmap_region ( bmp, tint, sx, sy, sw, sh, dx, dy, dw, dh, flags ); 23al_draw_tinted_rotated_bitmap_region ( bmp, tint, sx, sy, sw, sh, cx, cy, dx, dy, angle, flags ); 24al_draw_scaled_rotated_bitmap_region ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, xscale, yscale, angle, flags); 25al_draw_stretched_rotated_bitmap_region ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, dw, dh, angle, flags ); 26al_draw_tinted_scaled_rotated_bitmap_region ( bmp, tint, sx, sy, sw, sh, cx, cy, dx, dy, xscale, yscale, angle, flags); 27al_draw_tinted_stretched_rotated_bitmap_region( bmp, tint, sx, sy, sw, sh, cx, cy, dx, dy, dw, dh, angle, flags );

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

Okay, let me try to explain my naming scheme :

It goes like this (if it were C++, these would be the functions names, but since C doesn't allow function overloading this will have to do);

al_draw_bitmap
al_draw_bitmap_region

Which makes the first parameters the bmp , and then source and destination. After that you have either stretched, scaled, tinted, or rotated. Any version that is stretched or scaled should be the next part of the function name.

_stretched
_scaled

This makes the next parameter either the destination width and height, or the scale factor for x and y. This parameter is optional, and then the next ones are _tinted, _rotated, and _tinted_rotated in that order. And then the flags come last.

So it is :

al_draw_bitmap[_region][_stretched | _scaled] | [_tinted | _rotated | _tinted_rotated]

I think that's pretty easy to do, but you'd have to ask others for their opinion on this, I'm not a developer, but I can help you.

And in the end, there should basically only be one function that every one of those function calls. draw_bitmap should call draw_bitmap_region.

Or if performance is a concern I guess you have to write every single function. But I would try to avoid that.

Chris Katko
Member #1,881
January 2002
avatar

#include <std_disclaimer.h>

Side question: Do... you actually need GIF support?

I mean, yeah yeah, lots of people on forums say that and they're often wrong and need to just STFU and answer the question...

But,

High-level question: do you really need GIF support? Are you using it for animations? Could you implement animations a different way? Because the only real use-case I can think of for GIF in >2010 is for an image editor or conversion tool and the thing is... Allegro is a bad candidate for that because Allegro is designed for games--not tools. It fails on all kinds of edge cases of images that if you were simply making a game, you'd already have complete control of file formats and just use a different file format, or the same format, but with a different internal header that works. That is, is Allegro fails on some variation of BMP/GIF/PNG, you simply convert all your files to be a workable format.

PNG is basically the only file format anyone uses anymore. Even BMP's are fat, and, may even be slower than PNG because compression increases the speed you can suck them from the hard drive while modern CPUs can easily run decompression. (That's the entire premise for NTFS compression, btw. And we've been using it since... the 2000's. Hard drives are slower than CPUs, so make the files smaller and decompress them once they hit the CPU.)

So I'm not sure if I'm illustrating my point effectively but if this is a game, you should be able to control your file formats and GIF doesn't add any features that other, better, formats don't already have. Except animation... for which I really wish APNG (animated PNG) would become a wildly accepted format. But for a game, there's almost zero situations (that I can think of) where you'd want to intentionally use the GIF format.

But if it's a tool (I'm speaking from experience here!) Allegro is going to bite you in the butt in strange places. Like loading BMP's which can have tons of different header styles and Allegro fails on some of them--even ones that GIMP outputs. Even if it's just one type, end-users aren't going to appreciate "It's not in my control, it's Allegro's fault." when your tool can't load every image on their computer. They just need it to work. And in that case, you should use a dedicated image loading library. Because Allegro is focused on making games, not making every edge-case image format work--unlike an image library.

-----sig:
“Programs should be written for people to read, and only incidentally for machines to execute.” - Structure and Interpretation of Computer Programs
"Political Correctness is fascism disguised as manners" --George Carlin

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

Izual
Member #2,756
September 2002
avatar

Ok. Here it is.

This is how the function names and parameter list looks like:

#SelectExpand
1// function name, ( bmp, cx, cy, dx, dy, dw, dh, xscale, yscale, angle, tint, flags ); 2al_draw_bitmap_scaled ( bmp, dx, dy, xscale, yscale, flags ); 3al_draw_bitmap_stretched ( bmp, dx, dy, dw, dh, flags ); 4al_draw_bitmap_rotated ( bmp, cx, cy, dx, dy, angle, flags ); 5al_draw_bitmap_tinted ( bmp, dx, dy, tint, flags ); 6al_draw_bitmap_scaled_rotated ( bmp, cx, cy, dx, dy, xscale, yscale, angle, flags ); 7al_draw_bitmap_stretched_rotated ( bmp, cx, cy, dx, dy, dw, dh, angle, flags ); 8al_draw_bitmap_scaled_tinted ( bmp, dx, dy, xscale, yscale, tint, flags ); 9al_draw_bitmap_stretched_tinted ( bmp, dx, dy, dw, dh, tint, flags ); 10al_draw_bitmap_rotated_tinted ( bmp, cx, cy, dx, dy, angle, tint, flags ); 11al_draw_bitmap_scaled_rotated_tinted ( bmp, cx, cy, dx, dy, xscale, yscale, angle, tint, flags ); 12al_draw_bitmap_stretched_rotated_tinted( bmp, cx, cy, dx, dy, dw, dh, angle, tint, flags ); 13 14// function name, ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, dw, dh, xscale, yscale, angle, tint, flags ); 15al_draw_bitmap_region_scaled ( bmp, sx, sy, sw, sh, dx, dy, xscale, yscale, flags ); 16al_draw_bitmap_region_stretched ( bmp, sx, sy, sw, sh, dx, dy, dw, dh, flags ); 17al_draw_bitmap_region_rotated ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, angle, flags ); 18al_draw_bitmap_region_tinted ( bmp, sx, sy, sw, sh, dx, dy, tint, flags ); 19al_draw_bitmap_region_scaled_rotated ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, xscale, yscale, angle, flags ); 20al_draw_bitmap_region_stretched_rotated ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, dw, dh, angle, flags ); 21al_draw_bitmap_region_scaled_tinted ( bmp, sx, sy, sw, sh, dx, dy, xscale, yscale, tint, flags ); 22al_draw_bitmap_region_stretched_tinted ( bmp, sx, sy, sw, sh, dx, dy, dw, dh, tint, flags ); 23al_draw_bitmap_region_rotated_tinted ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, angle, tint, flags ); 24al_draw_bitmap_region_scaled_rotated_tinted ( bmp, sx, sy, sw, sh, cx, cy, dx, dy, xscale, yscale, angle, tint, flags ); 25al_draw_bitmap_region_stretched_rotated_tinted( bmp, sx, sy, sw, sh, cx, cy, dx, dy, dw, dh, angle, tint, flags );

SiegeLord
Member #7,827
October 2006
avatar

There are always trade-offs when adding new API. On one hand, you add new functionality that was not easy or possible before. On the other hand, you add complexity that makes it more difficult to learn and use it. Only when the first outweighs the second does should we consider adding it. I don't think it does in the case of this change.

Allegro already has 11 ways to draw a bitmap. This patch adds 11 more ways (or 22, since you're coming up with new names). That's up to 33 ways to draw a bitmap. What new functionality do you gain from this? It would appear that you're saving a person from occasionally writing dw / al_get_bitmap_width(bmp) or xscale * al_get_bitmap_width(bmp) if their requirements are mismatched with what Allegro expects. But, in return, you now need to know the difference between scaled and stretched; you need to understand exactly what it means for dw to be specified when angle is e.g. PI/3 (it clearly doesn't actually correspond to the destination width). And, of course, you need to spend time thinking about which variant to use given what values you have.

Is Allegro's current bitmap drawing API perfect? No; I for sure can appreciate the oddity of having al_draw_scaled_bitmap and al_draw_scaled_rotated_bitmap taking different methods of scaling. And why does al_draw_scaled_bitmap need to know the source width and height?

I actually know the reason why. It's because this is Allegro 5, and it just copied Allegro 4's API with a few renames. People often say that Allegro 5 is completely different than Allegro 4, but this is one of the places where the resemblance is clear. Maybe it should have done something different, but at this point it's 8 years too late.

"For in much wisdom is much grief: and he that increases knowledge increases sorrow."-Ecclesiastes 1:18
[SiegeLord's Abode][Codes]:[DAllegro5]:[RustAllegro]

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

8 years too late but never a day too soon to fix old mistakes. ;)

Izual,

That's closer to what I had in mind, but there's an important problem. cx and cy should not be the second parameter in draw bitmap or the fifth in draw bitmap region. It should come after dw,dh.

So that you always have

al_draw_bitmap_X(bmp , dx , dy , ...)
al_draw_bitmap_scaled_X(bmp , dx , dy , dw , dh , ...)

and

al_draw_bitmap_region_X(bmp , sx , sy , sw , sh , dx , dy , ...)
al_draw_bitmap_region_scaled_X(bmp , sx , sy , sw , sh , dx , dy , dw , dh , ...)

Also, I have a question, are cx and cy pivot points in the source bitmap?

SiegeLord - the destination width and height would be assumed to be pre-rotation.

stretched vs scaled is obvious in their naming. Scaling uses factors and stretching involves dimensions.

Consistency is key. And with autocomplete these days you can type al_draw and then select which one you want and it will give you the parameters.

Anyway, this could all be hidden under ALLEGRO_UNSTABLE. And we could easily deprecate the old style drawing functions and have them forward themselves to the new ones. It could all happen rather painlessly. The only thing that would change is that you would get deprecation warnings when defining ALLEGRO_UNSTABLE.

My 2¢ 8-)

Chris Katko
Member #1,881
January 2002
avatar

Beautiful post I'm not sure it belongs in this thread though.

lulul I'm embarassed. Don't post at 3 am folks.

-----sig:
“Programs should be written for people to read, and only incidentally for machines to execute.” - Structure and Interpretation of Computer Programs
"Political Correctness is fascism disguised as manners" --George Carlin

Izual
Member #2,756
September 2002
avatar

@Edgar
Yes. cx,cy is a point on the source bitmap. This point is drawn at the dx,dy position and the bitmap is rotated around this point.
That is why i placed it together with the parameters that deal with the source bitmap. It seemed logical to me.

@SiegeLord
Thank you for your answear and stating the reasons. Just wanted to add a little bit to allready a great library.

Edgar Reynaldo
Major Reynaldo
May 2007
avatar

With the availability of transforms, similar code can be easily written, but at the expense of a great deal of verbosity ;

The question is, do we want this :

#SelectExpand
1ALLEGRO_STATE s; 2al_store_state(&s , ALLEGRO_BLENDER); 3al_set_blender(ALLEGRO_ADD, ALLEGRO_CONST_COLOR, ALLEGRO_ONE); 4al_set_blend_color(al_map_rgb(0, 96, 255)); /* nice Chrysler blue */ 5 6ALLEGRO_TRANSFORM t,old; 7t = old = *al_get_current_transform; 8al_translate_transform(&t , -cx , -cy); 9al_scale_transform(&t , 2 , 2); 10al_rotate_transform(&t , M_PI/2.0); 11al_translate_transform(&t , cx , cy); 12al_use_transform(&t); 13 14al_draw_bitmap(bmp , 0 , 0); 15al_use_transform(&old); 16al_restore_state(&s);

Or do we want this :

al_draw_bitmap_scaled_tinted_rotated(bmp , cx , cy , scalex , scaley , al_map_rgb(0,96,255) , M_PI/2.0 , 0);

The choice seems clear.

Go to: