2023-04-15 12:34:42 +00:00
|
|
|
// Linter modifications
|
2021-01-30 21:29:59 +00:00
|
|
|
#![allow(clippy::too_many_arguments, clippy::needless_range_loop)]
|
2022-06-18 14:06:54 +00:00
|
|
|
#![allow(clippy::not_unsafe_ptr_arg_deref)]
|
2022-12-24 11:00:50 +00:00
|
|
|
#![allow(clippy::borrowed_box)]
|
2022-11-27 16:29:29 +00:00
|
|
|
#![allow(incomplete_features)]
|
2023-04-02 10:07:08 +00:00
|
|
|
#![allow(ambiguous_glob_reexports)]
|
2022-07-01 15:52:00 +00:00
|
|
|
#![deny(missing_docs)]
|
2022-07-01 16:20:50 +00:00
|
|
|
#![deny(clippy::missing_docs_in_private_items)]
|
2023-04-15 17:33:29 +00:00
|
|
|
// Linter rules to prevent panics
|
|
|
|
// Currently still a WIP to fix all of these
|
2023-04-19 16:44:11 +00:00
|
|
|
#![deny(clippy::unwrap_used)]
|
|
|
|
#![deny(clippy::expect_used)]
|
|
|
|
#![deny(clippy::indexing_slicing)]
|
|
|
|
#![deny(clippy::string_slice)]
|
|
|
|
#![deny(clippy::exit)]
|
|
|
|
#![deny(clippy::panic)]
|
2023-04-21 07:39:20 +00:00
|
|
|
#![deny(unused_must_use)]
|
2023-04-15 12:34:42 +00:00
|
|
|
// Features
|
2022-06-03 14:35:18 +00:00
|
|
|
#![feature(test)]
|
2022-06-18 12:17:29 +00:00
|
|
|
#![feature(const_option)]
|
2022-07-18 08:16:47 +00:00
|
|
|
#![feature(new_uninit)]
|
2022-07-18 08:49:58 +00:00
|
|
|
#![feature(get_mut_unchecked)]
|
2022-09-17 07:38:02 +00:00
|
|
|
#![feature(strict_provenance)]
|
2022-10-15 15:21:24 +00:00
|
|
|
#![feature(fn_traits)]
|
|
|
|
#![feature(unboxed_closures)]
|
2022-11-27 16:29:29 +00:00
|
|
|
#![feature(trait_upcasting)]
|
2023-04-02 10:07:08 +00:00
|
|
|
#![feature(lazy_cell)]
|
2021-01-30 21:29:59 +00:00
|
|
|
|
2022-06-19 19:34:08 +00:00
|
|
|
//! PkmnLib
|
|
|
|
//! PkmnLib is a full featured implementation of Pokemon. while currently focused on implementing
|
|
|
|
//! generation 7, this library tries to offload generational differences such as move effects
|
|
|
|
//! to a scripting library.
|
|
|
|
//!
|
2022-06-03 14:35:18 +00:00
|
|
|
|
2022-10-15 15:21:24 +00:00
|
|
|
extern crate core;
|
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate enum_display_derive;
|
|
|
|
|
2022-06-19 19:34:08 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub use utils::*;
|
|
|
|
|
|
|
|
use crate::dynamic_data::ScriptCategory;
|
2022-06-06 11:54:59 +00:00
|
|
|
|
2022-06-19 19:34:08 +00:00
|
|
|
/// The defines module holds the core defines of the library
|
2021-01-30 21:29:59 +00:00
|
|
|
pub mod defines;
|
2022-06-19 19:34:08 +00:00
|
|
|
/// The dynamic data module holds data that can change during execution, and things that relate to
|
|
|
|
/// this. This includes things as Pokemon themselves, battles, etc.
|
2021-01-31 16:31:22 +00:00
|
|
|
pub mod dynamic_data;
|
2022-09-18 16:02:13 +00:00
|
|
|
/// The Foreign Function Interface allows for non Rust applications to call this library.
|
|
|
|
#[cfg(feature = "ffi")]
|
|
|
|
mod ffi;
|
2022-07-18 08:16:47 +00:00
|
|
|
/// Script implementations handles the different ways that dynamic scripts get loaded during battle.
|
|
|
|
pub mod script_implementations;
|
2022-06-19 19:34:08 +00:00
|
|
|
/// The static data module holds data that can be set once, and then never change. This includes
|
|
|
|
/// things such as data about Pokemon species, data about items, etc.
|
2021-01-30 21:29:59 +00:00
|
|
|
pub mod static_data;
|
2022-06-19 19:34:08 +00:00
|
|
|
/// The utils module includes misc utils that are used within PkmnLib
|
2021-01-30 21:29:59 +00:00
|
|
|
pub mod utils;
|
2023-04-15 17:33:29 +00:00
|
|
|
|
2023-04-19 16:44:11 +00:00
|
|
|
use crate::static_data::TypeIdentifier;
|
2023-04-15 17:33:29 +00:00
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
/// The PkmnError enum is the error type for PkmnLib. It is used to return common errors from functions
|
|
|
|
/// that can fail. For uncommon errors, anyhow is used.
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum PkmnError {
|
2023-04-16 17:57:21 +00:00
|
|
|
/// The given value was null
|
|
|
|
#[error("The given value was null")]
|
|
|
|
NullReference,
|
2023-04-15 17:33:29 +00:00
|
|
|
/// The given index is out of bounds for the given length of the array.
|
|
|
|
#[error("The given index {index} is out of bounds for the given len {len}")]
|
|
|
|
IndexOutOfBounds {
|
|
|
|
/// The index that was given
|
|
|
|
index: usize,
|
|
|
|
/// The length of the array
|
|
|
|
len: usize,
|
|
|
|
},
|
|
|
|
/// We tried to get a lock on a mutex, but the lock was poisoned. This means that another thread
|
|
|
|
/// panicked while holding the lock. This is a fatal error.
|
|
|
|
#[error("Unable to acquire a lock")]
|
|
|
|
UnableToAcquireLock,
|
|
|
|
/// Unable to get ability
|
|
|
|
#[error("Unable to get ability {ability}")]
|
|
|
|
InvalidAbilityName {
|
|
|
|
/// The ability that was requested
|
|
|
|
ability: StringKey,
|
|
|
|
},
|
|
|
|
/// Unable to get move
|
|
|
|
#[error("Unable to get move {move_name}")]
|
|
|
|
InvalidMoveName {
|
|
|
|
/// The move that was requested
|
|
|
|
move_name: StringKey,
|
|
|
|
},
|
|
|
|
/// Unable to get nature
|
|
|
|
#[error("Unable to get nature {nature}")]
|
|
|
|
InvalidNatureName {
|
|
|
|
/// The nature that was requested
|
|
|
|
nature: StringKey,
|
|
|
|
},
|
2023-04-16 17:57:21 +00:00
|
|
|
/// Unable to get species
|
|
|
|
#[error("Unable to get species {species}")]
|
|
|
|
InvalidSpeciesName {
|
|
|
|
/// The species that was requested
|
|
|
|
species: StringKey,
|
|
|
|
},
|
2023-04-19 16:44:11 +00:00
|
|
|
/// Unable to get type
|
|
|
|
#[error("Unable to get type {type_id}")]
|
|
|
|
InvalidTypeIdentifier {
|
|
|
|
/// The type that was requested
|
|
|
|
type_id: TypeIdentifier,
|
|
|
|
},
|
2023-04-16 17:57:21 +00:00
|
|
|
/// The given pointer is not a valid CString
|
|
|
|
#[error("The given pointer is not a valid CString")]
|
|
|
|
InvalidCString,
|
2023-04-15 17:33:29 +00:00
|
|
|
}
|