Struct game_library::Xp
source · pub struct Xp {
pub value: u32,
pub total_xp: u32,
pub current_level: u32,
pub factor_a: u32,
pub factor_b: u32,
pub factor_c: u32,
pub base_xp: u32,
}
Expand description
Experience component
Tracks the amount of xp accumulated by an entity. The xp curve is defined by the following formula:
(level - 1) ^ (factor_a / factor_b) / factor_c + base_xp
The result is rounded down to the nearest integer.
Expected Usage
The idea is on an entity to track xp you will add the Xp
component. This component will
track the amount of xp accumulated. When you perform a level up action, you should call
level_up
on the component. This will increase the level and reset the xp (for this level)
to 0. Total xp will continue to accumulate, and if there was extra xp accumulated, it will
be rolled over to the next level.
Example
use bevy::prelude::*;
use game_library::Xp;
#[derive(Component)]
struct Player;
/// A system to run on [KeyboardInput] which adds xp to the player
pub fn add_xp_system(
mut query: Query<&mut Xp, With<Player>>,
keyboard_input: Res<Input<KeyCode>>,
) {
for mut xp in &mut query {
if keyboard_input.just_pressed(KeyCode::Equals) {
xp.add(10);
// Or you can use the += operator: xp += 10;
}
}
}
/// A system to run on [Update] which checks if the player can level up
pub fn level_up_system(mut query: Query<&mut Xp, With<Player>>) {
for mut xp in &mut query {
if xp.can_level_up() {
xp.level_up();
println!("Player leveled up to level {}", xp.current_level);
}
}
}
Fields§
§value: u32
Amount of xp accumulated for this level
total_xp: u32
Total amount of xp accumulated
current_level: u32
Current level of the entity
factor_a: u32
Scaling factor A for the xp curve
factor_b: u32
Scaling factor B for the xp curve
factor_c: u32
Scaling factor C for the xp curve
base_xp: u32
Base xp (i.e. xp required to reach level 2)
Implementations§
source§impl Xp
impl Xp
sourcepub fn xp_required(&self, level: u32) -> u32
pub fn xp_required(&self, level: u32) -> u32
Formula for calculating the xp required to reach a given level
(level - 1) ^ (factor_a / factor_b) / factor_c + base_xp
The result is rounded down to the nearest integer.
Examples
use game_library::Xp;
let xp = Xp {
value: 0,
total_xp: 0,
current_level: 1,
factor_a: 10,
factor_b: 5,
factor_c: 5,
base_xp: 10,
};
assert_eq!(xp.xp_required(1), 10); // 11 xp to level 2
assert_eq!(xp.xp_required(2), 10);
assert_eq!(xp.xp_required(3), 10);
assert_eq!(xp.xp_required(4), 11);
assert_eq!(xp.xp_required(5), 13);
assert_eq!(xp.xp_required(6), 15);
sourcepub fn total_xp_to_next_level(&self) -> u32
pub fn total_xp_to_next_level(&self) -> u32
Total amount of xp required to reach the next level.
sourcepub fn remaining_xp_to_next_level(&self) -> u32
pub fn remaining_xp_to_next_level(&self) -> u32
Remaining amount of xp required to reach the next level.
sourcepub fn next_level_progress(&self) -> f32
pub fn next_level_progress(&self) -> f32
Progress towards the next level as a percentage.
sourcepub fn can_level_up(&self) -> bool
pub fn can_level_up(&self) -> bool
Can the entity level up?
Trait Implementations§
source§impl AddAssign<i32> for Xp
impl AddAssign<i32> for Xp
source§fn add_assign(&mut self, rhs: i32)
fn add_assign(&mut self, rhs: i32)
Add some amount to the xp value. (Subtracting can only subtract xp from the current level’s total, not from the overall total xp)
source§impl AddAssign<u32> for Xp
impl AddAssign<u32> for Xp
source§fn add_assign(&mut self, rhs: u32)
fn add_assign(&mut self, rhs: u32)
Add some amount to the xp value
source§impl<'de> Deserialize<'de> for Xp
impl<'de> Deserialize<'de> for Xp
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 Xpwhere
u32: FromReflect + TypePath,
impl FromReflect for Xpwhere
u32: FromReflect + TypePath,
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 GetTypeRegistration for Xpwhere
u32: FromReflect + TypePath,
impl GetTypeRegistration for Xpwhere
u32: FromReflect + TypePath,
fn get_type_registration() -> TypeRegistration
source§impl Percentage for Xp
impl Percentage for Xp
source§fn percentage(&self) -> f32
fn percentage(&self) -> f32
source§impl Reflect for Xpwhere
u32: FromReflect + TypePath,
impl Reflect for Xpwhere
u32: FromReflect + TypePath,
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 Xpwhere
u32: FromReflect + TypePath,
impl Struct for Xpwhere
u32: FromReflect + TypePath,
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 SubAssign<i32> for Xp
impl SubAssign<i32> for Xp
source§fn sub_assign(&mut self, rhs: i32)
fn sub_assign(&mut self, rhs: i32)
Subtract some amount from the xp value. (Subtracting can only subtract xp from the current level’s total, not from the overall total xp)
source§impl SubAssign<u32> for Xp
impl SubAssign<u32> for Xp
source§fn sub_assign(&mut self, rhs: u32)
fn sub_assign(&mut self, rhs: u32)
Subtract some amount from the xp value. (Subtracting can only subtract xp from the current level’s total, not from the overall total xp)
source§impl TypePath for Xpwhere
u32: FromReflect + TypePath,
impl TypePath for Xpwhere
u32: FromReflect + TypePath,
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 Xp
impl Eq for Xp
impl Resource for Xp
impl StructuralEq for Xp
impl StructuralPartialEq for Xp
Auto Trait Implementations§
impl RefUnwindSafe for Xp
impl Send for Xp
impl Sync for Xp
impl Unpin for Xp
impl UnwindSafe for Xp
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<T> DynEq for T
impl<T> DynEq 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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§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.