2022-07-01 15:07:22 +00:00
|
|
|
use hashbrown::HashSet;
|
|
|
|
|
2022-06-11 18:51:37 +00:00
|
|
|
use crate::static_data::LearnableMoves;
|
|
|
|
use crate::static_data::Statistic;
|
2022-06-18 12:17:29 +00:00
|
|
|
use crate::static_data::{Ability, StaticStatisticSet};
|
2022-07-01 15:07:22 +00:00
|
|
|
use crate::static_data::{AbilityIndex, TypeIdentifier};
|
2022-06-11 18:51:37 +00:00
|
|
|
use crate::Random;
|
2022-06-11 15:22:46 +00:00
|
|
|
use crate::StringKey;
|
2021-01-30 21:29:59 +00:00
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// A form is a variant of a specific species. A species always has at least one form, but can have
|
|
|
|
/// many more.
|
2022-06-06 12:43:41 +00:00
|
|
|
#[derive(Debug)]
|
2022-06-17 17:53:33 +00:00
|
|
|
pub struct Form {
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The name of the form.
|
2022-06-11 15:22:46 +00:00
|
|
|
name: StringKey,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The height of the form in meters.
|
2021-01-30 21:29:59 +00:00
|
|
|
height: f32,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The weight of the form in kilograms.
|
2021-01-30 21:29:59 +00:00
|
|
|
weight: f32,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The base amount of experience that is gained when beating a Pokemon with this form.
|
2021-01-30 21:29:59 +00:00
|
|
|
base_experience: u32,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The normal types a Pokemon with this form has.
|
|
|
|
types: Vec<TypeIdentifier>,
|
|
|
|
/// The inherent values of a form of species that are used for the stats of a Pokemon.
|
2022-06-18 12:17:29 +00:00
|
|
|
base_stats: StaticStatisticSet<u16>,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The possible abilities a Pokemon with this form can have.
|
2022-06-17 17:53:33 +00:00
|
|
|
abilities: Vec<StringKey>,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The possible hidden abilities a Pokemon with this form can have.
|
2022-06-17 17:53:33 +00:00
|
|
|
hidden_abilities: Vec<StringKey>,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The moves a Pokemon with this form can learn.
|
2022-06-17 17:53:33 +00:00
|
|
|
moves: LearnableMoves,
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Arbitrary flags can be set on a form for scripting use.
|
2022-06-11 15:22:46 +00:00
|
|
|
flags: HashSet<StringKey>,
|
2021-01-30 21:29:59 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 17:53:33 +00:00
|
|
|
impl Form {
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Instantiates a new form.
|
2021-01-30 21:29:59 +00:00
|
|
|
pub fn new(
|
2022-06-11 15:22:46 +00:00
|
|
|
name: &StringKey,
|
2021-01-30 21:29:59 +00:00
|
|
|
height: f32,
|
|
|
|
weight: f32,
|
|
|
|
base_experience: u32,
|
2022-07-01 15:07:22 +00:00
|
|
|
types: Vec<TypeIdentifier>,
|
2022-06-18 12:17:29 +00:00
|
|
|
base_stats: StaticStatisticSet<u16>,
|
2022-06-17 17:53:33 +00:00
|
|
|
abilities: Vec<StringKey>,
|
|
|
|
hidden_abilities: Vec<StringKey>,
|
|
|
|
moves: LearnableMoves,
|
2022-06-11 15:22:46 +00:00
|
|
|
flags: HashSet<StringKey>,
|
2022-06-17 17:53:33 +00:00
|
|
|
) -> Form {
|
2021-01-30 21:29:59 +00:00
|
|
|
Form {
|
2022-06-11 15:22:46 +00:00
|
|
|
name: name.clone(),
|
2021-01-30 21:29:59 +00:00
|
|
|
height,
|
|
|
|
weight,
|
|
|
|
base_experience,
|
|
|
|
types,
|
|
|
|
base_stats,
|
|
|
|
abilities,
|
|
|
|
hidden_abilities,
|
|
|
|
moves,
|
|
|
|
flags,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The name of the form.
|
2022-06-11 15:22:46 +00:00
|
|
|
pub fn name(&self) -> &StringKey {
|
2022-06-06 12:43:41 +00:00
|
|
|
&self.name
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The height of the form in meters.
|
2022-06-06 12:43:41 +00:00
|
|
|
pub fn height(&self) -> f32 {
|
|
|
|
self.height
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The weight of the form in kilograms.
|
2022-06-06 12:43:41 +00:00
|
|
|
pub fn weight(&self) -> f32 {
|
|
|
|
self.weight
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The base amount of experience that is gained when beating a Pokemon with this form.
|
2022-06-06 12:43:41 +00:00
|
|
|
pub fn base_experience(&self) -> u32 {
|
|
|
|
self.base_experience
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The normal types a Pokemon with this form has.
|
|
|
|
pub fn types(&self) -> &Vec<TypeIdentifier> {
|
2022-06-06 12:43:41 +00:00
|
|
|
&self.types
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The inherent values of a form of species that are used for the stats of a Pokemon.
|
2022-06-18 12:17:29 +00:00
|
|
|
pub fn base_stats(&self) -> &StaticStatisticSet<u16> {
|
|
|
|
&self.base_stats
|
2022-06-06 12:43:41 +00:00
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The possible abilities a Pokemon with this form can have.
|
2022-06-17 17:53:33 +00:00
|
|
|
pub fn abilities(&self) -> &Vec<StringKey> {
|
2022-06-06 12:43:41 +00:00
|
|
|
&self.abilities
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The possible hidden abilities a Pokemon with this form can have.
|
2022-06-17 17:53:33 +00:00
|
|
|
pub fn hidden_abilities(&self) -> &Vec<StringKey> {
|
2022-06-06 12:43:41 +00:00
|
|
|
&self.hidden_abilities
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// The moves a Pokemon with this form can learn.
|
2022-06-17 17:53:33 +00:00
|
|
|
pub fn moves(&self) -> &LearnableMoves {
|
2022-06-06 12:43:41 +00:00
|
|
|
&self.moves
|
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Arbitrary flags can be set on a form for scripting use.
|
2022-06-11 15:22:46 +00:00
|
|
|
pub fn flags(&self) -> &HashSet<StringKey> {
|
2022-06-06 12:43:41 +00:00
|
|
|
&self.flags
|
|
|
|
}
|
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Get a type of the move at a certain index.
|
|
|
|
pub fn get_type(&self, index: usize) -> TypeIdentifier {
|
2021-01-30 21:29:59 +00:00
|
|
|
self.types[index]
|
|
|
|
}
|
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Gets a single base stat value.
|
2021-01-30 21:29:59 +00:00
|
|
|
pub fn get_base_stat(&self, stat: Statistic) -> u16 {
|
|
|
|
self.base_stats.get_stat(stat)
|
|
|
|
}
|
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Find the index of an ability that can be on this form.
|
2022-06-11 15:22:46 +00:00
|
|
|
pub fn find_ability_index(&self, ability: &Ability) -> Option<AbilityIndex> {
|
2021-01-30 21:29:59 +00:00
|
|
|
for (index, a) in self.abilities.iter().enumerate() {
|
2022-06-17 17:53:33 +00:00
|
|
|
if a == ability.name() {
|
2021-01-30 21:29:59 +00:00
|
|
|
return Some(AbilityIndex {
|
|
|
|
hidden: false,
|
|
|
|
index: index as u8,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (index, a) in self.hidden_abilities.iter().enumerate() {
|
2022-06-17 17:53:33 +00:00
|
|
|
if a == ability.name() {
|
2021-01-30 21:29:59 +00:00
|
|
|
return Some(AbilityIndex {
|
|
|
|
hidden: true,
|
|
|
|
index: index as u8,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Gets an ability from the form.
|
2022-06-17 17:53:33 +00:00
|
|
|
pub fn get_ability(&self, index: AbilityIndex) -> &StringKey {
|
2022-06-11 15:22:46 +00:00
|
|
|
if index.hidden {
|
2022-06-17 17:53:33 +00:00
|
|
|
&self.hidden_abilities[index.index as usize]
|
2022-06-11 15:22:46 +00:00
|
|
|
} else {
|
2022-06-17 17:53:33 +00:00
|
|
|
&self.abilities[index.index as usize]
|
2022-06-11 15:22:46 +00:00
|
|
|
}
|
2021-01-30 21:29:59 +00:00
|
|
|
}
|
2022-06-11 15:22:46 +00:00
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Gets a random ability from the form.
|
2022-06-17 17:53:33 +00:00
|
|
|
pub fn get_random_ability(&self, rand: &mut Random) -> &StringKey {
|
|
|
|
&self.abilities[rand.get_between_unsigned(0, self.abilities.len() as u32) as usize]
|
2022-06-11 15:22:46 +00:00
|
|
|
}
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Gets a random hidden ability from the form.
|
2022-06-17 17:53:33 +00:00
|
|
|
pub fn get_random_hidden_ability(&self, rand: &mut Random) -> &StringKey {
|
|
|
|
&self.hidden_abilities[rand.get_between_unsigned(0, self.hidden_abilities.len() as u32) as usize]
|
2021-01-30 21:29:59 +00:00
|
|
|
}
|
|
|
|
|
2022-07-01 15:07:22 +00:00
|
|
|
/// Check if the form has a specific flag set.
|
2022-06-11 15:22:46 +00:00
|
|
|
pub fn has_flag(&self, key: &StringKey) -> bool {
|
2021-01-30 21:29:59 +00:00
|
|
|
self.flags.contains(key)
|
|
|
|
}
|
|
|
|
}
|