1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-20 03:37:47 +00:00
physis/src/lib.rs

64 lines
1.3 KiB
Rust
Raw Normal View History

2022-07-19 19:29:41 -04:00
extern crate core;
/// Reading and writing game data repositories, such as "ffxiv" and "ex1", and so on.
2022-07-19 19:29:41 -04:00
pub mod gamedata;
/// Parsing game repositories, such as "ffxiv", "ex1" and their version information.
2022-07-19 19:29:41 -04:00
pub mod repository;
/// Reading and writing the boot data repository.
2022-07-19 19:29:41 -04:00
pub mod bootdata;
/// Common methods and structures relating to the SqPack data format.
pub mod sqpack;
2022-07-19 19:29:41 -04:00
/// Reading and writing SqPack index files.
2022-07-19 19:29:41 -04:00
pub mod index;
mod dat;
2022-07-19 19:29:41 -04:00
mod compression;
pub mod model;
/// All of the races in Eorzea in a nice enum package.
2022-07-19 19:29:41 -04:00
pub mod race;
/// Reading Excel lists (EXL).
pub mod exl;
/// Reading equipment and equipment-related data.
2022-07-19 19:29:41 -04:00
pub mod equipment;
/// Common structures used by other modules.
2022-07-19 19:29:41 -04:00
pub mod common;
/// Methods for installing game and boot patches.
2022-07-19 19:29:41 -04:00
pub mod patch;
#[macro_use]
mod macros;
/// Implementation of the Blowfish ECB block cipher used by the retail client.
2022-07-19 19:29:41 -04:00
pub mod blowfish;
2022-07-20 19:07:36 -04:00
mod blowfish_constants;
/// Initializing a new retail game install from the official retail installer. No execution required!
2022-07-21 19:58:58 -04:00
pub mod installer;
/// Reading Excel header files (EXH).
2022-07-21 19:58:58 -04:00
pub mod exh;
/// Reading Excel data files (EXD).
pub mod exd;
// Reading Havok XML sidecar files.
pub mod skeleton;
// Reading file into files (FIIN).
2022-08-07 16:19:04 -04:00
pub mod fiin;
// Reading and writing chat logs (LOG).
pub mod log;
// Reading textures (TEX).
pub mod tex;