Prog
This commit is contained in:
@ -15,7 +15,8 @@ PlayerController::PlayerController(SceneItem *item) : SceneItemComponent(item) {
|
|||||||
std::vector<SceneItemComponent*> PlayerController::getDependencies() {
|
std::vector<SceneItemComponent*> PlayerController::getDependencies() {
|
||||||
return {
|
return {
|
||||||
(this->entityMove = item->getComponent<EntityMove>()),
|
(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)) {
|
if(this->entitySwordAttack != nullptr && getGame()->inputManager.isPressed(INPUT_BIND_ACCEPT)) {
|
||||||
this->entitySwordAttack->attack();
|
this->entitySwordAttack->attack();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(this->entityShootingAttack != nullptr && getGame()->inputManager.isPressed(INPUT_BIND_CANCEL)) {
|
||||||
|
this->entityShootingAttack->attack();
|
||||||
|
}
|
||||||
}, getScene()->eventSceneUpdate);
|
}, getScene()->eventSceneUpdate);
|
||||||
}
|
}
|
@ -6,12 +6,14 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "scene/components/entity/EntityMove.hpp"
|
#include "scene/components/entity/EntityMove.hpp"
|
||||||
#include "scene/components/entity/EntitySwordAttack.hpp"
|
#include "scene/components/entity/EntitySwordAttack.hpp"
|
||||||
|
#include "scene/components/entity/EntityShootingAttack.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class PlayerController : public SceneItemComponent {
|
class PlayerController : public SceneItemComponent {
|
||||||
protected:
|
protected:
|
||||||
EntityMove *entityMove = nullptr;
|
EntityMove *entityMove = nullptr;
|
||||||
EntitySwordAttack *entitySwordAttack = nullptr;
|
EntitySwordAttack *entitySwordAttack = nullptr;
|
||||||
|
EntityShootingAttack *entityShootingAttack = nullptr;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
PlayerController(SceneItem *item);
|
PlayerController(SceneItem *item);
|
||||||
|
@ -12,4 +12,5 @@ target_sources(${DAWN_TARGET_NAME}
|
|||||||
EntityAttackBase.cpp
|
EntityAttackBase.cpp
|
||||||
EntityFaction.cpp
|
EntityFaction.cpp
|
||||||
EntitySwordAttack.cpp
|
EntitySwordAttack.cpp
|
||||||
|
EntityShootingAttack.cpp
|
||||||
)
|
)
|
@ -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;
|
||||||
|
}
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
@ -12,14 +12,11 @@ namespace Dawn {
|
|||||||
|
|
||||||
class EntitySwordAttack : public EntityAttackBase {
|
class EntitySwordAttack : public EntityAttackBase {
|
||||||
protected:
|
protected:
|
||||||
float_t attackTime = -1;
|
|
||||||
SwordHitbox *hurtboxItem = nullptr;
|
SwordHitbox *hurtboxItem = nullptr;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
// @optional
|
// @optional
|
||||||
glm::vec3 attackOffset = glm::vec3(0,0,1);
|
glm::vec3 attackOffset = glm::vec3(0,0,1);
|
||||||
// @optional
|
|
||||||
glm::vec3 attackSize = glm::vec3(1,1,1);
|
|
||||||
|
|
||||||
EntitySwordAttack(SceneItem* item);
|
EntitySwordAttack(SceneItem* item);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user