This commit is contained in:
2023-04-09 15:41:27 -07:00
parent 60a5a98ec5
commit 2075985b75
6 changed files with 82 additions and 4 deletions

View File

@ -15,7 +15,8 @@ PlayerController::PlayerController(SceneItem *item) : SceneItemComponent(item) {
std::vector<SceneItemComponent*> PlayerController::getDependencies() {
return {
(this->entityMove = item->getComponent<EntityMove>()),
(this->entitySwordAttack = item->getComponent<EntitySwordAttack>())
(this->entitySwordAttack = item->getComponent<EntitySwordAttack>()),
(this->entityShootingAttack = item->getComponent<EntityShootingAttack>())
};
}
@ -32,5 +33,9 @@ void PlayerController::onStart() {
if(this->entitySwordAttack != nullptr && getGame()->inputManager.isPressed(INPUT_BIND_ACCEPT)) {
this->entitySwordAttack->attack();
}
if(this->entityShootingAttack != nullptr && getGame()->inputManager.isPressed(INPUT_BIND_CANCEL)) {
this->entityShootingAttack->attack();
}
}, getScene()->eventSceneUpdate);
}

View File

@ -6,12 +6,14 @@
#pragma once
#include "scene/components/entity/EntityMove.hpp"
#include "scene/components/entity/EntitySwordAttack.hpp"
#include "scene/components/entity/EntityShootingAttack.hpp"
namespace Dawn {
class PlayerController : public SceneItemComponent {
protected:
EntityMove *entityMove = nullptr;
EntitySwordAttack *entitySwordAttack = nullptr;
EntityShootingAttack *entityShootingAttack = nullptr;
public:
PlayerController(SceneItem *item);

View File

@ -12,4 +12,5 @@ target_sources(${DAWN_TARGET_NAME}
EntityAttackBase.cpp
EntityFaction.cpp
EntitySwordAttack.cpp
EntityShootingAttack.cpp
)

View File

@ -0,0 +1,47 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "EntityShootingAttack.hpp"
using namespace Dawn;
EntityShootingAttack::EntityShootingAttack(SceneItem* item) : EntityAttackBase(item) {
}
void EntityShootingAttack::onStart() {
EntityAttackBase::onStart();
useEvent([&] {
std::cout << "Shoot!" << std::endl;
}, this->onAttackActiveStart);
}
void EntityShootingAttack::onDispose() {
EntityAttackBase::onDispose();
}
float_t EntityShootingAttack::getAttackRampUpDuration() {
return 0.1f;
}
float_t EntityShootingAttack::getAttackActiveDuration() {
return 0.2f;
}
float_t EntityShootingAttack::getAttackRampDownDuration() {
return 0.1f;
}
float_t EntityShootingAttack::getAttackCooldownDuration() {
return 0.0f;
}
bool_t EntityShootingAttack::isInterruptable() {
return false;
}
bool_t EntityShootingAttack::canAttack() {
return true;
}

View File

@ -0,0 +1,26 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "scene/components/entity/EntityAttackBase.hpp"
namespace Dawn {
class EntityShootingAttack : public EntityAttackBase {
protected:
public:
EntityShootingAttack(SceneItem* item);
void onStart() override;
void onDispose() override;
float_t getAttackRampUpDuration() override;
float_t getAttackActiveDuration() override;
float_t getAttackRampDownDuration() override;
float_t getAttackCooldownDuration() override;
bool_t isInterruptable() override;
bool_t canAttack() override;
};
}

View File

@ -12,14 +12,11 @@ namespace Dawn {
class EntitySwordAttack : public EntityAttackBase {
protected:
float_t attackTime = -1;
SwordHitbox *hurtboxItem = nullptr;
public:
// @optional
glm::vec3 attackOffset = glm::vec3(0,0,1);
// @optional
glm::vec3 attackSize = glm::vec3(1,1,1);
EntitySwordAttack(SceneItem* item);