|
Bomberman
|
A system to handle Controllable entities in a menu. More...
#include <IntroAnimationSystem.hpp>
Public Member Functions | |
| void | onSelfUpdate (std::chrono::nanoseconds dtime) override |
| A method called after all entities that this system manage has been updated. More... | |
| void | onFixedUpdate (WAL::ViewEntity< IntroAnimationComponent > &entities) override |
| IntroAnimationSystem (WAL::Wal &wal) | |
| A default constructor. More... | |
| IntroAnimationSystem (const IntroAnimationSystem &)=delete | |
| A IntroAnimation system is not copy constructable. More... | |
| ~IntroAnimationSystem () override=default | |
| A default destructor. More... | |
| IntroAnimationSystem & | operator= (const IntroAnimationSystem &)=default |
| A IntroAnimation system is assignable. More... | |
Public Member Functions inherited from WAL::System< IntroAnimationComponent > | |
| ~System () override=default | |
| A virtual, default, destructor. More... | |
| System (System &&) noexcept=default | |
| A system can be moved. More... | |
| View< Dependencies... > & | getView () override |
| Get a view of all entities containing every dependencies of this system. More... | |
| virtual void | onUpdate (ViewEntity< Dependencies... > &entity, std::chrono::nanoseconds dtime) |
| Update the corresponding component of the given entity. More... | |
| virtual void | onFixedUpdate (ViewEntity< Dependencies... > &entity) |
| An alternative of onUpdate that is called every 8ms (120 times per seconds). If the system slow down, it will try to catch up. More... | |
| void | update (std::chrono::nanoseconds dtime) final |
| Update the whole system (every entities that this system is responsible can be updated. More... | |
| void | fixedUpdate () final |
| An alternative of update that is called every 8ms (120 times per seconds). If the system slow down, it will try to catch up. More... | |
Public Member Functions inherited from WAL::ISystem | |
| virtual | ~ISystem ()=default |
| A virtual default destructor. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from WAL::System< IntroAnimationComponent > | |
| System (Wal &wal) | |
| A system can't be instantiated, it should be derived. More... | |
| System (const System &)=default | |
| A system can't be instantiated, it should be derived. More... | |
| System & | operator= (const System &)=default |
| A system can't be instantiated, it should be derived. More... | |
Protected Attributes inherited from WAL::System< IntroAnimationComponent > | |
| Wal & | _wal |
| A reference to the ECS. More... | |
A system to handle Controllable entities in a menu.
| BBM::IntroAnimationSystem::IntroAnimationSystem | ( | WAL::Wal & | wal | ) |
A default constructor.
|
delete |
A IntroAnimation system is not copy constructable.
|
overridedefault |
A default destructor.
|
override |
|
overridevirtual |
A method called after all entities that this system manage has been updated.
| dtime | The delta time. |
Reimplemented from WAL::System< IntroAnimationComponent >.
|
default |
A IntroAnimation system is assignable.
1.8.17