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

92 lines
1.9 KiB
Rust
Raw Normal View History

// SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
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;
2022-07-19 19:29:41 -04:00
mod compression;
2022-08-16 11:52:07 -04:00
mod dat;
2022-09-15 17:02:30 -04:00
/// Reading model (MDL) files.
#[cfg(feature = "visual_data")]
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!
#[cfg(feature = "game_install")]
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.
#[cfg(feature = "visual_data")]
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).
#[cfg(feature = "visual_data")]
2022-08-11 15:40:14 -04:00
pub mod tex;
/// Reading material files (MTRL)
#[cfg(feature = "visual_data")]
2022-08-16 11:52:07 -04:00
pub mod mtrl;
2023-07-06 17:34:14 -04:00
/// Reading character parameter files (CMP)
pub mod cmp;
/// Reading character save datas files (DAT)
pub mod chardat;
/// Reading config files (CFG)
pub mod cfg;
mod crc;
mod sha1;
2023-07-30 10:28:32 -04:00
pub const PHYSIS_VERSION: &str = env!("CARGO_PKG_VERSION");