LibFLIC provides routines for encoding and decoding Autodesk Animator FLI and Autodesk Animator Pro FLC files.
The code is based on the documentation and source code of Animator and Animator Pro that has been released by Jim Kent.
LibFLIC is written entirely in Rust. C bindings to the underlying codecs are provided.
A few example programs are provided in the examples/
directory:
To clone this repository, run:
sh
git clone https://github.com/wangds/libflic.git
Then build the library and run the example programs using Cargo. e.g. to run play a FLIC file, run:
```sh cargo build --example quickfli
cargo run --example quickfli
Add LibFLIC as a dependency to Cargo.toml:
toml
[dependencies]
flic = "0.1"
Import the library in your project, e.g.:
```rust extern crate flic;
use flic::{FlicFile,RasterMut}; ```
Open a FLIC file from disk. This will read the FLIC metadata, such as animation dimensions and speed. FlicFile will keep the file open.
rust
let flic = FlicFile::open(Path::new("example.flc"))?;
Allocate the pixel data and palette data buffers to which we will decode the animation.
rust
let flic_w = flic.width() as usize;
let flic_h = flic.height() as usize;
let mut buf = vec![0; flic_w * flic_h];
let mut pal = vec![0; 3 * 256];
It is convenient to group these two buffers, along with their
dimensions and strides, together to form a single Raster
or
RasterMut
type.
LibFLIC will ask for a Raster
type for operations that require
read-only access to the buffers (e.g. encoding), and a RasterMut
type when it requires read-write access (e.g. decoding).
For example, to decode a frame, we first create a RasterMut
by
borrowing buf
and pal
mutably as shown below. Rasters are cheap
to create, so don't worry about creating and dropping them frequently.
rust
let mut raster = RasterMut::new(flic_w, flic_h, &mut buf, &mut pal);
flic.read_next_frame(&mut raster);
Since FLIC files store the differences between consecutive frames, when reading the next frame in the animation, it is up to the library user to ensure that the buffer and palettes contain the previous frame's data.
David Wang