Sword attack done
This commit is contained in:
@ -14,7 +14,7 @@ CharacterController2D::CharacterController2D(SceneItem *i) :
|
|||||||
|
|
||||||
void CharacterController2D::onStart() {
|
void CharacterController2D::onStart() {
|
||||||
useEvent([&](float_t delta){
|
useEvent([&](float_t delta){
|
||||||
if(velocity == glm::vec2(0, 0)) return;
|
// if(velocity == glm::vec2(0, 0)) return;
|
||||||
|
|
||||||
// Common variables
|
// Common variables
|
||||||
auto myCollider = item->getComponent<Collider2D>();
|
auto myCollider = item->getComponent<Collider2D>();
|
||||||
@ -64,9 +64,11 @@ void CharacterController2D::onStart() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(moveAmount != glm::vec2(0, 0)) {
|
||||||
transform->setLocalPosition(
|
transform->setLocalPosition(
|
||||||
transform->getLocalPosition() + (glm::vec3(moveAmount.x, 0, moveAmount.y) * delta)
|
transform->getLocalPosition() + (glm::vec3(moveAmount.x, 0, moveAmount.y) * delta)
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// Now perform trigger collision check
|
// Now perform trigger collision check
|
||||||
auto allTriggers = getScene()->findComponents<TriggerController2D>();
|
auto allTriggers = getScene()->findComponents<TriggerController2D>();
|
||||||
|
@ -20,6 +20,7 @@ namespace Dawn {
|
|||||||
float_t hitKnockback = 20.0f;
|
float_t hitKnockback = 20.0f;
|
||||||
// @optional
|
// @optional
|
||||||
int32_t damage = 1;
|
int32_t damage = 1;
|
||||||
|
// @optional
|
||||||
enum Faction faction = FACTION_NONE;
|
enum Faction faction = FACTION_NONE;
|
||||||
// @optional
|
// @optional
|
||||||
StateProperty<TriggerController2D*> trigger;
|
StateProperty<TriggerController2D*> trigger;
|
||||||
|
@ -15,7 +15,6 @@ std::vector<SceneItemComponent*> EntityMove::getDependencies() {
|
|||||||
return {
|
return {
|
||||||
(characterController = item->getComponent<CharacterController2D>()),
|
(characterController = item->getComponent<CharacterController2D>()),
|
||||||
(this->entityHealth = item->getComponent<EntityHealth>()),
|
(this->entityHealth = item->getComponent<EntityHealth>()),
|
||||||
(this->entitySwordAttack = item->getComponent<EntitySwordAttack>())
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -26,7 +25,6 @@ void EntityMove::onStart() {
|
|||||||
useEvent([&](float_t delta) {
|
useEvent([&](float_t delta) {
|
||||||
// Don't move if stunned or attacking.
|
// Don't move if stunned or attacking.
|
||||||
if(entityHealth->isStunned()) return;
|
if(entityHealth->isStunned()) return;
|
||||||
if(entitySwordAttack != nullptr && entitySwordAttack->isAttacking()) return;
|
|
||||||
|
|
||||||
// Don't move if no move.
|
// Don't move if no move.
|
||||||
if(direction.x == 0 && direction.y == 0) return;
|
if(direction.x == 0 && direction.y == 0) return;
|
||||||
|
@ -7,14 +7,12 @@
|
|||||||
#include "scene/SceneItemComponent.hpp"
|
#include "scene/SceneItemComponent.hpp"
|
||||||
#include "scene/components/physics/2d/CharacterController2D.hpp"
|
#include "scene/components/physics/2d/CharacterController2D.hpp"
|
||||||
#include "scene/components/entity/EntityHealth.hpp"
|
#include "scene/components/entity/EntityHealth.hpp"
|
||||||
#include "scene/components/entity/EntitySwordAttack.hpp"
|
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class EntityMove : public SceneItemComponent {
|
class EntityMove : public SceneItemComponent {
|
||||||
protected:
|
protected:
|
||||||
CharacterController2D *characterController = nullptr;
|
CharacterController2D *characterController = nullptr;
|
||||||
EntityHealth *entityHealth = nullptr;
|
EntityHealth *entityHealth = nullptr;
|
||||||
EntitySwordAttack *entitySwordAttack = nullptr;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// @optional
|
// @optional
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
// https://opensource.org/licenses/MIT
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
#include "EntitySwordAttack.hpp"
|
#include "EntitySwordAttack.hpp"
|
||||||
|
#include "prefabs/SwordHitbox.hpp"
|
||||||
|
|
||||||
using namespace Dawn;
|
using namespace Dawn;
|
||||||
|
|
||||||
@ -13,32 +14,28 @@ EntitySwordAttack::EntitySwordAttack(SceneItem* item) : EntityAttackBase(item) {
|
|||||||
void EntitySwordAttack::onStart() {
|
void EntitySwordAttack::onStart() {
|
||||||
EntityAttackBase::onStart();
|
EntityAttackBase::onStart();
|
||||||
|
|
||||||
useEvent([&]{
|
this->hurtboxItem = SwordHitbox::create(this->getScene());
|
||||||
}, this->onAttackRampUpStart);
|
this->hurtboxItem->transform.setParent(this->transform);
|
||||||
|
|
||||||
useEvent([&]{
|
useEffect([&]{
|
||||||
}, this->onAttackRampUpEnd);
|
switch(this->state) {
|
||||||
|
case ENTITY_ATTACK_STATE_ACTIVE: {
|
||||||
|
auto myFaction = item->getComponent<EntityFaction>();
|
||||||
|
if(myFaction != nullptr) this->hurtboxItem->hazard->faction = myFaction->faction;
|
||||||
|
this->hurtboxItem->transform.setLocalPosition(this->attackOffset);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default: {
|
||||||
|
this->hurtboxItem->transform.setLocalPosition(glm::vec3(99999999,0,0));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, this->state)();
|
||||||
|
}
|
||||||
|
|
||||||
useEvent([&]{
|
void EntitySwordAttack::onDispose() {
|
||||||
}, this->onAttackActiveStart);
|
EntityAttackBase::onDispose();
|
||||||
|
this->hurtboxItem->destroy();
|
||||||
useEvent([&]{
|
|
||||||
}, this->onAttackActiveEnd);
|
|
||||||
|
|
||||||
useEvent([&]{
|
|
||||||
}, this->onAttackRampDownStart);
|
|
||||||
|
|
||||||
useEvent([&]{
|
|
||||||
}, this->onAttackRampDownEnd);
|
|
||||||
|
|
||||||
useEvent([&]{
|
|
||||||
}, this->onAttackCooldownStart);
|
|
||||||
|
|
||||||
useEvent([&]{
|
|
||||||
}, this->onAttackCooldownEnd);
|
|
||||||
|
|
||||||
useEvent([&]{
|
|
||||||
}, this->onAttackInterrupted);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
float_t EntitySwordAttack::getAttackRampUpDuration() {
|
float_t EntitySwordAttack::getAttackRampUpDuration() {
|
||||||
|
@ -5,16 +5,26 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "EntityAttackBase.hpp"
|
#include "EntityAttackBase.hpp"
|
||||||
|
#include "scene/components/entity/EntityFaction.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
|
class SwordHitbox;
|
||||||
|
|
||||||
class EntitySwordAttack : public EntityAttackBase {
|
class EntitySwordAttack : public EntityAttackBase {
|
||||||
protected:
|
protected:
|
||||||
float_t attackTime = -1;
|
float_t attackTime = -1;
|
||||||
|
SwordHitbox *hurtboxItem = nullptr;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
// @optional
|
||||||
|
glm::vec3 attackOffset = glm::vec3(0,0,1);
|
||||||
|
// @optional
|
||||||
|
glm::vec3 attackSize = glm::vec3(1,1,1);
|
||||||
|
|
||||||
EntitySwordAttack(SceneItem* item);
|
EntitySwordAttack(SceneItem* item);
|
||||||
|
|
||||||
void onStart() override;
|
void onStart() override;
|
||||||
|
void onDispose() override;
|
||||||
|
|
||||||
float_t getAttackRampUpDuration() override;
|
float_t getAttackRampUpDuration() override;
|
||||||
float_t getAttackActiveDuration() override;
|
float_t getAttackActiveDuration() override;
|
||||||
|
Reference in New Issue
Block a user