Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Allegro 5 Load Data File

I am using Allegro 5 library. I want to load font from dat file. In Allegro's previous versions, there is useful methods for this. For example "load_datafile", load_dat_font. How can I do this in Allegro 5?

like image 729
Umut Derbentoğlu Avatar asked Oct 27 '25 03:10

Umut Derbentoğlu


1 Answers

The closest direct thing Allegro 5 has is the physfs addon. Useful links:

  • http://www.allegro.cc/manual/5/physfs.html

  • http://icculus.org/physfs/

With it you can load (for example) a Zip archive as a folder. So instead of using a datafile, you can use a Zip file.

See the manual for an example. In short, it looks like:

PHYSFS_init(argv[0]);
PHYSFS_addToSearchPath("data/foo.zip", 1);
// ...
al_set_physfs_file_interface();

Then future calls to al_load_bitmap() (etc) will look inside that zip file.

If you want to do anything other than that, you will need to write your own custom file interface. It's not terribly difficult, but I think you might as well use a Zip file.

like image 148
Matthew Avatar answered Oct 29 '25 18:10

Matthew



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!