Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siudesu/BinaryArchive
A very simplistic approach to bundling assets/files/data in an archive fashion. Originally meant for images, now functions as an all-purpose archive module.
https://github.com/siudesu/BinaryArchive
lua solar2d
Last synced: 6 days ago
JSON representation
A very simplistic approach to bundling assets/files/data in an archive fashion. Originally meant for images, now functions as an all-purpose archive module.
- Host: GitHub
- URL: https://github.com/siudesu/BinaryArchive
- Owner: siudesu
- License: mit
- Created: 2022-09-12T18:00:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-09T04:16:40.000Z (7 months ago)
- Last Synced: 2024-07-31T09:10:07.604Z (3 months ago)
- Topics: lua, solar2d
- Language: Lua
- Homepage:
- Size: 828 KB
- Stars: 9
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-solar2d - Binary Archive - a module for reading and writing binary archive files for storing resources. (Files & Data)
README
# Binary Archive Module
### A [Solar2D](https://solar2d.com) Lua module for reading and writing binary archive files for storing resources.## Features
- Support for multiple archive files in same project.
- Allows caching (optional) of fetched data, minimizing disk access.
- Provides a set of wrapper functions to facilitate the creation of certain Solar2D objects using assets stored in archive, see [DOCS](https://github.com/siudesu/BinaryArchive/blob/main/DOCUMENTATION.md).
- In compliance with Solar2D's [dynamic image selection](https://docs.coronalabs.com/guide/basics/configSettings/index.html#dynamic-image-selection) when creating [newImageRect](https://docs.coronalabs.com/api/library/display/newImageRect.html) and [newImageSheet](https://docs.coronalabs.com/api/library/graphics/newImageSheet.html) objects.
- Uses AES-256 for data encryption; *now optional by default.*
- Not limited to files, any data in form of [String](https://docs.coronalabs.com/api/type/String.html) can be easily appended, and retrieved, such as data encoded in [JSON](https://docs.coronalabs.com/api/library/json/index.html) or any possible API or license keys you may be using with certain Solar2D plugins, etc.## Limitations
- While the purpose of using this type of archive is, in part, loading assets without disk extraction, in this fashion it is currently limited to `png`, `jpg`, and `jpeg` files, and common data.
>Any file can be appended, but would need to be extracted before it can be used. Please see [FAQ](#FAQ) for more details.- Size limit per file to append:
- `~200 MB` If not using encryption. (Limitation on Lua IO read(), currently processed in a single pass.)
- `~100 MB` If using encryption. (Limitation on ciphering without using chunks.)## Benchmark Numbers:
Tests performed on a PC with HDD (not SSD), 1.6 GB archive with 18,383 files, measured in seconds:
- Creating the archive:
- `28s` with debug info enabled
- `22s` without debug
- Loading the archive:
- `3.0s` with debug info enabled
- `0.2s` without debug
- Creating 50 objects using 2 image files:
- `0.012s` loading directly from disk (not using archive)
- `0.075s` loading from archive without cache enabled
- `0.002s` loading from archive with cache enabled## Requirements
- [Bytemap plugin](https://github.com/solar2d/com.xibalbastudios-plugin.Bytemap) by [Steven Johnson](https://github.com/ggcrunchy), must be added in `build.settings`.
- (Optional) [OpenSSL plugin](https://docs.coronalabs.com/plugin/openssl/index.html), must be added in `build.settings` ONLY if encryption is desired.### build.settings (Plugins section)
```lua
plugins =
{
["plugin.Bytemap"] = { publisherId = "com.xibalbastudios" },
["plugin.openssl"] = { publisherId = "com.coronalabs" }, -- optional
}
```## Sample Code
### Creating a new archive with default values:
```lua
-- load module
local bin = require( "m_binary_archive" )-- specify full path where assets are located (all files will be appended, includes sub-directories)
local options = { baseDir = "D:/Projects/Solar2D/AwesomeProject/assets/graphics" }-- create a new archive, output will be saved at baseDir
bin.new(options)
```
### Loading and using an archive:
```lua
-- load module
local bin = require( "m_binary_archive" )-- specify file to load, file path is relative to project where main.lua resides
local options = { file = "assets/data.bin" }-- load binary file
bin.load(options)-- create newImageRect using wrapper function; parameters are the same as display.newImageRect()
local balloon = bin.newImageRect( "SnapshotEraser/balloon.jpg", 200, 240 )-- create new rectangle and apply object fill using custom function
local rect = display.newRect( 150, 150, 50, 50 )
bin.imagePaint( rect, "Fishies/fish.small.red.png" )-- create newImageRect and apply mask
local bg = bin.newImageRect( "FilterGraph/image.jpg", 480, 320 )
bin.setMask( bg, "SnapshotEraser/mask.png" )
bg.x = 240
bg.y = 160
```## Wrapper Functions
These are designed to work in place of Solar2D API functions by the same name:> Note: Parameters and requirements are the same in all cases except for `baseDir`, this variable is neither used nor parsed as assets are stored in archive.
### From `display.*` API:
```lua
MODULE.newEmitter( emitterParams )
MODULE.newImage( [parent,] filename, [x, y] )
MODULE.newImageRect( [parent,] filename, width, height )
```### From `graphics.*` API:
```lua
MODULE.newImageSheet( filename, options )
MODULE.newMask( filename )
MODULE.newOutline( coarsenessInTexels, imageFileName )
MODULE.newTexture( params ) -- this returns a Bytemap texture used as a replacement for [graphics.newTexure](https://docs.coronalabs.com/api/library/graphics/newTexture.html)
```
### Custom:
```lua
MODULE.compositePaint( object, filename1, filename2 ) -- wrapper for [CompositePaint](https://docs.coronalabs.com/api/type/CompositePaint/index.html)
MODULE.imagePaint( object, filename ) -- wrapper for [BitmapPaint] (https://docs.coronalabs.com/api/type/BitmapPaint/index.html)
MODULE.setMask( object, filename ) -- wrapper for [graphics.setMask](https://docs.coronalabs.com/api/type/DisplayObject/setMask.html)
```## For more details on usage and samples please see [DOCS](https://github.com/siudesu/BinaryArchive/blob/main/DOCUMENTATION.md)
## TODO
- [ ] [Dynamically-Selected Mask](https://docs.coronalabs.com/api/library/graphics/newMask.html#dynamically-selected-mask) can be tentatively implemented in module so that no additional code is required as shown in Solar2D docs.## FAQ
1. `What's the purpose of using an archive file?`1. Hide project assets from plain sight.
2. Implement a method of using bundled assets without extracting them to disk, such as a zip file. This has other implications, see below `FAQ #7`.2. `How are archives created?`
Archives are created using Lua libraries (LFS and I/O) to read and append files into a single binary file.
Additional information is added to help fetch files quickly.3. `How many files can be stored in an archive?`
An arbitrary number of 4,294,967,295 .... that's probably more than enough. :smile:
4. `Is there any overhead in disk space?`
Testing with 1.6 GB worth of data, +18k files, resulted in a 1.6 GB archive with about 1.5 MB of overhead.
5. `Are the files secured in the archive?`All appended files and data can be optionally encrypted using AES-256, please see [DOCS](https://github.com/siudesu/BinaryArchive/blob/main/DOCUMENTATION.md).
6. `What files can I store in an archive?`
You can append any type of file from disk, and any data in form of a [String](https://docs.coronalabs.com/api/type/String.html), but usage may vary, see below `FAQ #7`.
7. `What are the implications of using an archive for assets?`
The implication is that Solar2D API loads asset from disk, in particular [these four directories](https://docs.coronalabs.com/guide/data/readWriteFiles/index.html#system-directories).
The loading of textures is currently supported by [Bytemap plugin](https://github.com/solar2d/com.xibalbastudios-plugin.Bytemap) providing the ability to create external textures from Memory, these are not extracted anywhere on disk.
For any other file types, you may need to extract them to [any of the write-access directories](https://docs.coronalabs.com/guide/data/readWriteFiles/index.html#system-directories) before using them.8. `Is there future plans for using other files in an archive without extracting them to disk?`
I think fonts and audio files are desirable to load from an archive, this would allow for most common applications to have assets fully bundled.
However, a technical implementation in the engine, or by way of a plugin, is first required, and both are out of my scope-- I'm just doing the easy "packaging" part. :slightly_smiling_face:
It's worth noting that audio files will soon be usable from an archive; the same [creator](https://github.com/ggcrunchy) of the [Bytemap plugin](https://github.com/solar2d/com.xibalbastudios-plugin.Bytemap) has a [WIP project](https://discord.com/channels/721785436195782677/721785737258860544/1013963898589823056) which also allows loading audio files from Memory.---
## License
Distributed under the MIT License. See [LICENSE](https://github.com/siudesu/BinaryArchive/blob/main/LICENSE) for more information.