pub struct Rofl<'a> { /* private fields */ }
Expand description

Base ROFL file parser

Usage

// Parse a file's content
// let content = std::fs::read("game.rofl").unwrap();
let game = lolrofl::Rofl::from_slice(&content[..]).unwrap();

let header = game.head(); // File header
let data = game.metadata(); // Game metadata JSON string
let payload = game.payload(); // Game payload

Implementations

Starting bytes of a ROFL file

This is public for ease of file recognition but should generally NOT be relied upon

Get the ROFL header

Examples
// let content = std::fs::read("game.rofl").unwrap();
let game = lolrofl::Rofl::from_slice(&content[..]).unwrap();
println!("Expected file length: {} bytes", game.head().file_len());

Get the loaded JSON Metadata string

Warning

The returned string is not guaranteed to be valid if the file is malformed

Examples
// let content = std::fs::read("game.rofl").unwrap();
let game = lolrofl::Rofl::from_slice(&content[..]).unwrap();
let meta = json::parse(game.metadata().unwrap()).unwrap();
println!("Duration: {} ms", meta["gameLength"]);
println!("Patch: {}", meta["gameVersion"]);

Get the loaded payload header

Examples
// let content = std::fs::read("game.rofl").unwrap();
let game = lolrofl::Rofl::from_slice(&content[..]).unwrap();

let payload = game.payload().unwrap();
println!("Game ID: {}", payload.id());
println!("Duration: {} ms", payload.duration());

Get an iterator over the payload’s segments

with_data is implicitly false if the lib was compiled without the payload feature

Examples
// let content = std::fs::read("game.rofl").unwrap();
let game = lolrofl::Rofl::from_slice(&content[..]).unwrap();

for segment in game.segment_iter(false).unwrap() {
    println("{} {}", if segment.is_chunk() { "Chunk" } else { "Keyframe" }, segment.id())
}
// Truncated file
// let content = std::fs::read("game.rofl").unwrap();
let game = lolrofl::Rofl::from_slice(&content[..]).unwrap();

let mut data = game.segment_iter(false);
assert_eq!(data.is_err(), true)

Create a new Rofl instance from a ROFL file’s slice

Panics

If the buffer contains less than 288 bytes - in the future, this will be an error

Errors

If the slice does not start with MAGIC

Examples
// let content = std::fs::read("game.rofl").unwrap();
let game = lolrofl::Rofl::from_slice(&content[..]).unwrap();

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.