1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//! A Rust library for using the assets of Fable, Fable: The Lost Chapters, Fable Anniversary, and mods.
//!
//! Work in progress.
//!
//! | Format       | Description                                      |
//! |--------------|--------------------------------------------------|
//! | [`Bba`]      | Animation format.                                |
//! | [`Bbm`]      | Mesh format.                                     |
//! | [`Big`]      | Graphics archive containing [`Bba`] and [`Bbm`]. |
//! | [`Bncfg`]    | Bone config.                                     |
//! | [`Def`]      | Definition source code.                          |
//! | [`DefBin`]   | Definition binary.                               |
//! | [`Fmp`]      | Mod packages from [fabletlcmod.com].             |
//! | [`Gtg`]      |                                                  |
//! | [`Ini`]      | Game configs (and debug scripts?)                |
//! | [`Lev`]      | Level heightmap and cell data.                   |
//! | [`Lut`]      |                                                  |
//! | [`Met`]      |                                                  |
//! | [`Qst`]      |                                                  |
//! | [`Save`]     | Game save format.                                |
//! | [`SaveBin`]  | Bin file included with save files.               |
//! | [`Stb`]      | A cache of local details generated from [`Lev`]. |
//! | [`Tng`]      | Thing scripts.                                   |
//! | [`Wad`]      | World archive containing [`Lev`] and [`Tng`].    |
//! | [`Wld`]      |                                                  |
//!
//! [`Bba`]: struct.Bba.html
//! [`Bbm`]: struct.Bbm.html
//! [`Big`]: struct.Big.html
//! [`Bncfg`]: struct.Bncfg.html
//! [`Def`]: struct.Def.html
//! [`DefBin`]: struct.DefBin.html
//! [`Fmp`]: struct.Fmp.html
//! [`Gtg`]: struct.Gtg.html
//! [`Ini`]: struct.Ini.html
//! [`Lev`]: struct.Lev.html
//! [`Lut`]: struct.Lut.html
//! [`Met`]: struct.Met.html
//! [`Qst`]: struct.Qst.html
//! [`Save`]: struct.Save.html
//! [`SaveBin`]: struct.SaveBin.html
//! [`Stb`]: struct.Stb.html
//! [`StbLev`]: struct.StbLev.html
//! [`Tng`]: struct.Tng.html
//! [`Wad`]: struct.Wad.html
//! [`Wld`]: struct.Wld.html
//! [fabletlcmod.com]: http://fabletlcmod.com

mod bba;
mod bbm;
mod big;
mod bncfg;
mod bwd;
mod def;
mod def_bin;
mod fmp;
mod gtg;
mod ini;
mod lev;
mod lug;
mod lut;
mod met;
mod qst;
mod save;
mod script;
mod shared;
mod stb;
mod tng;
mod wad;
mod wld;

pub use bba::*;
pub use bbm::*;
pub use big::*;
pub use bncfg::*;
pub use def::*;
pub use def_bin::*;
pub use fmp::*;
pub use gtg::*;
pub use ini::*;
pub use lev::*;
pub use lug::*;
pub use lut::*;
pub use met::*;
pub use qst::*;
pub use save::*;
pub use script::*;
pub use shared::*;
pub use stb::*;
pub use tng::*;
pub use wad::*;
pub use wld::*;