Mark Oates

Results 64 comments of Mark Oates

Allegro relies on external libraries to load image data, but I'm not sure they support loading specific pieces of data without first loading the whole image itself. If you wanted...

> So I think this would be better suited to an external library/header/source file if anyone were to add this, and if it's good enough, we can provide links to...

Unlike the `al_shutdown_*()` methods for other addons, there is no `al_shutdown_acodec_addon()` for the audio codec addon. It could be related. Also, the addon codec addon even remains "initialized" via `al_is_acodec_addon_initialied`...

Just a quick note on this topic based on my experience. On my recent explorations, I'm timing audio delay from function-call-to-sound-ouput of approx `0.14` seconds on MacOS. (I'm on Montery...

At some point there was a VS project folder, but it was `.gitignored` for being too large (I believe it was really only the db cache files that were too...

As [asked here](https://github.com/MarkOates/allegro_flare/pull/115#issuecomment-246765121), here's the approach I would take to setup the projects on Visual Studio. I would put multiple projects into one solution similar to how Allegro 5 does...

Just prior to posting the above comment, I moved some files around in the `examples/` folder to make it a lot easier. So be sure to get a fresh `pull`....

Most of these features (with the exception of `Random` and `Math`) are best left until after `0.9.0` `Random` and `Math` should probably be in by `0.8.9`

`Color` should be an object. And you should be able to do operations like `+`, `-`, `*`, etc. ``` cpp // Initialization Color::red; Color(0.0, 1.0, 0.0); // 100% green //...

A `SpriteSheet` would be good. (Question asked here: https://www.allegro.cc/forums/thread/616493)