Struct game_library::Stat
source · pub struct Stat { /* private fields */ }
Expand description
A stat is a value that should be used to represent a character’s speed,
strength or other statistic. This is not an [game_library::Attribute
] which has a
maximum and exists between 0 and that maximum. A stat is a value that
really is a value which can be used directly in the game.
Things you might use Stat
for:
- speed
- defense
- base damage
- damage reduction
- attack speed
- other items in [
game_library::enums::StatEnum
]
Implementations§
source§impl Stat
impl Stat
sourcepub fn new(base_value: f32) -> Self
pub fn new(base_value: f32) -> Self
Creates a new stat bundle with the given base value. This sets the initial bonus value to its default of 1.0.
Arguments
base_value
- The base value of the stat.
Returns
- A new stat bundle with the given base value.
Examples
use game_library::Stat;
let stat = Stat::new(10.0);
assert_eq!(stat.value(), 10.0);
assert_eq!(stat.base_value(), 10.0);
assert_eq!(stat.bonus(), 1.0);
sourcepub const fn value(&self) -> f32
pub const fn value(&self) -> f32
Returns the current value of the stat.
Examples
use game_library::Stat;
let mut stat = Stat::new(6.0);
assert_eq!(stat.value(), 6.0);
stat.add_bonus(0.5);
assert_eq!(stat.value(), 9.0);
sourcepub const fn bonus(&self) -> f32
pub const fn bonus(&self) -> f32
Returns the current bonus of the stat.
Examples
use game_library::Stat;
let mut stat = Stat::new(10.0);
assert_eq!(stat.bonus(), 1.0);
stat.add_bonus(0.5);
assert_eq!(stat.bonus(), 1.5);
sourcepub const fn base_value(&self) -> f32
pub const fn base_value(&self) -> f32
Returns the base value of the stat.
Examples
use game_library::Stat;
let mut stat = Stat::new(6.0);
assert_eq!(stat.base_value(), 6.0);
stat.add_bonus(0.5);
assert_eq!(stat.base_value(), 6.0);
stat.add_base_value(1.0);
assert_eq!(stat.base_value(), 7.0);
sourcepub fn add_base_value(&mut self, value: f32)
pub fn add_base_value(&mut self, value: f32)
Add to the base value of the stat. The base value is one part of what makes up the final value of the stat. The other part is the bonus.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to add to the base value.
Examples
use game_library::Stat;
let mut stat = Stat::new(6.0);
assert_eq!(stat.base_value(), 6.0);
assert_eq!(stat.value(), 6.0);
stat.add_base_value(1.0);
assert_eq!(stat.base_value(), 7.0);
assert_eq!(stat.value(), 7.0);
stat.add_bonus(0.5);
assert_eq!(stat.base_value(), 7.0);
assert_eq!(stat.value(), 10.5);
// Now when we add one to the base value, we can see `value()` is updated against the new bonus.
stat.add_base_value(1.0);
assert_eq!(stat.base_value(), 8.0);
assert_eq!(stat.value(), 12.0);
sourcepub fn subtract_base_value(&mut self, value: f32)
pub fn subtract_base_value(&mut self, value: f32)
Subtract from the base value of the stat.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to subtract from the base value.
sourcepub fn multiply_base_value(&mut self, value: f32)
pub fn multiply_base_value(&mut self, value: f32)
Multiply the base value of the stat.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to multiply the base value by.
sourcepub fn divide_base_value(&mut self, value: f32)
pub fn divide_base_value(&mut self, value: f32)
Divide the base value of the stat.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to divide the base value by.
sourcepub fn add_bonus(&mut self, value: f32)
pub fn add_bonus(&mut self, value: f32)
Add to the bonus of the stat.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to add to the bonus.
See StatBonus::add_value
for more information.
sourcepub fn subtract_bonus(&mut self, value: f32)
pub fn subtract_bonus(&mut self, value: f32)
Subtract from the bonus of the stat.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to subtract from the bonus.
See StatBonus::subtract_value
for more information.
sourcepub fn multiply_bonus(&mut self, value: f32)
pub fn multiply_bonus(&mut self, value: f32)
Multiply the bonus of the stat.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to multiply the bonus by.
See StatBonus::multiply_value
for more information.
sourcepub fn divide_bonus(&mut self, value: f32)
pub fn divide_bonus(&mut self, value: f32)
Divide the bonus of the stat.
This will also update the value of the stat. (Apply the bonus to the
new base value, updating what value()
returns.)
Arguments
value
- The value to divide the bonus by.
See StatBonus::divide_value
for more information.
sourcepub fn set_base_value(&mut self, value: f32)
pub fn set_base_value(&mut self, value: f32)
Set the base value of the stat.
This will overwrite the existing base value.
Arguments
value
- The value to set the base value to.
Examples
use game_library::Stat;
let mut stat = Stat::new(10.0);
assert_eq!(stat.base_value(), 10.0);
assert_eq!(stat.value(), 10.0);
stat.set_base_value(5.0);
assert_eq!(stat.base_value(), 5.0);
assert_eq!(stat.value(), 5.0);
sourcepub fn set_bonus_value(&mut self, value: f32)
pub fn set_bonus_value(&mut self, value: f32)
Set the bonus of the stat.
This will overwrite the existing bonus.
Arguments
value
- The value to set the bonus to.
Examples
use game_library::Stat;
let mut stat = Stat::new(10.0);
assert_eq!(stat.bonus(), 1.0);
assert_eq!(stat.value(), 10.0);
stat.set_bonus_value(5.0);
assert_eq!(stat.bonus(), 5.0);
assert_eq!(stat.value(), 50.0);
Trait Implementations§
source§impl<'de> Deserialize<'de> for Stat
impl<'de> Deserialize<'de> for Stat
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl FromReflect for Stat
impl FromReflect for Stat
source§fn from_reflect(reflect: &dyn Reflect) -> Option<Self>
fn from_reflect(reflect: &dyn Reflect) -> Option<Self>
Self
from a reflected value.§fn take_from_reflect(
reflect: Box<dyn Reflect>
) -> Result<Self, Box<dyn Reflect>>
fn take_from_reflect( reflect: Box<dyn Reflect> ) -> Result<Self, Box<dyn Reflect>>
Self
using,
constructing the value using from_reflect
if that fails. Read moresource§impl PartialEq for Stat
impl PartialEq for Stat
source§impl Reflect for Stat
impl Reflect for Stat
source§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
TypeInfo
] of the type represented by this value. Read moresource§fn as_any_mut(&mut self) -> &mut dyn Any
fn as_any_mut(&mut self) -> &mut dyn Any
&mut dyn Any
.source§fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
source§fn as_reflect(&self) -> &dyn Reflect
fn as_reflect(&self) -> &dyn Reflect
source§fn as_reflect_mut(&mut self) -> &mut dyn Reflect
fn as_reflect_mut(&mut self) -> &mut dyn Reflect
source§fn clone_value(&self) -> Box<dyn Reflect>
fn clone_value(&self) -> Box<dyn Reflect>
Reflect
trait object. Read moresource§fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>
fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>
source§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
source§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
source§fn reflect_owned(self: Box<Self>) -> ReflectOwned
fn reflect_owned(self: Box<Self>) -> ReflectOwned
source§fn reflect_partial_eq(&self, value: &dyn Reflect) -> Option<bool>
fn reflect_partial_eq(&self, value: &dyn Reflect) -> Option<bool>
§fn type_name(&self) -> &str
fn type_name(&self) -> &str
§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
§fn serializable(&self) -> Option<Serializable<'_>>
fn serializable(&self) -> Option<Serializable<'_>>
§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
source§impl Struct for Stat
impl Struct for Stat
source§fn field(&self, name: &str) -> Option<&dyn Reflect>
fn field(&self, name: &str) -> Option<&dyn Reflect>
name
as a &dyn Reflect
.source§fn field_mut(&mut self, name: &str) -> Option<&mut dyn Reflect>
fn field_mut(&mut self, name: &str) -> Option<&mut dyn Reflect>
name
as a
&mut dyn Reflect
.source§fn field_at(&self, index: usize) -> Option<&dyn Reflect>
fn field_at(&self, index: usize) -> Option<&dyn Reflect>
index
as a
&dyn Reflect
.source§fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn Reflect>
fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn Reflect>
index
as a &mut dyn Reflect
.source§fn name_at(&self, index: usize) -> Option<&str>
fn name_at(&self, index: usize) -> Option<&str>
index
.source§fn iter_fields(&self) -> FieldIter<'_>
fn iter_fields(&self) -> FieldIter<'_>
source§fn clone_dynamic(&self) -> DynamicStruct
fn clone_dynamic(&self) -> DynamicStruct
DynamicStruct
].source§impl TypePath for Stat
impl TypePath for Stat
source§fn type_path() -> &'static str
fn type_path() -> &'static str
source§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
source§fn type_ident() -> Option<&'static str>
fn type_ident() -> Option<&'static str>
source§fn crate_name() -> Option<&'static str>
fn crate_name() -> Option<&'static str>
impl Copy for Stat
impl Resource for Stat
impl StructuralPartialEq for Stat
Auto Trait Implementations§
impl RefUnwindSafe for Stat
impl Send for Stat
impl Sync for Stat
impl Unpin for Stat
impl UnwindSafe for Stat
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
[ShaderType
] for self
. When used in [AsBindGroup
]
derives, it is safe to assume that all images in self
exist.source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<C> Bundle for Cwhere
C: Component,
impl<C> Bundle for Cwhere
C: Component,
fn component_ids( components: &mut Components, storages: &mut Storages, ids: &mut impl FnMut(ComponentId) )
unsafe fn from_components<T, F>(ctx: &mut T, func: &mut F) -> C
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere
T: TypePath,
§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
TypePath::type_path
].§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
TypePath::short_type_path
].§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
TypePath::type_ident
].§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
TypePath::crate_name
].§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
TypePath::module_path
].§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given [World
].§impl<S> GetField for Swhere
S: Struct,
impl<S> GetField for Swhere
S: Struct,
§impl<T> GetPath for Twhere
T: Reflect + ?Sized,
impl<T> GetPath for Twhere
T: Reflect + ?Sized,
§fn reflect_path<'p>(
&self,
path: impl ReflectPath<'p>
) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path<'p>( &self, path: impl ReflectPath<'p> ) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§fn reflect_path_mut<'p>(
&mut self,
path: impl ReflectPath<'p>
) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p> ) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.