Description
It is currently not possible to load in several file types "from memory", such as Models, Meshes, Materials, and Animations. These loaders often reference other files and thus can not make use of a single "from memory" function.
To allow resource/asset management systems, raylib should allow the client code to install callbacks to handle all file reads, both binary and text. This will allow applications to provide file data from any location needed, or from archive or database files, while still maintain the ability for asset loaders to reference relative files.
The branch https://github.com/JeffM2501/raylib/tree/virtual_fs_hooks , has an example implementation of this for discussion.
Original issue text below
[Models,Materials] Create LoadFromMemory versions of all Loaders
Raylib has LoadTextureFromMemory, LoadImageFromMemor, LoadWaveFromMemory, and LoadFontFromMemory, but is missing.
LoadModelFromMemory
LoadMeshesFromMemory
LoadMaterialsFromMemory
LoadModelAnimationsFromMemory
This makes it difficult to load assets from an archive system or online.
I propose that the model and material systems be refactored to be able to expose from memory versions of these loaders.
The model loaders LoadOBJ, LoadIQM, etc.. all currently load the file data into ram before processing them, so it should be relatively easy to split the processing out from the loading into separate functions to make this possible with out any real maintenance burden or code duplication.