2022-12-13 05:11:56 +01:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
|
|
|
|
#include "PlayerCharacter.h"
|
|
|
|
// You can remove these, this is just to get intellisense to work
|
2023-06-27 23:17:03 +02:00
|
|
|
#include <Components/CapsuleComponent.h>
|
2023-06-28 23:58:58 +02:00
|
|
|
#include <Kismet/GameplayStatics.h>
|
2023-06-27 23:17:03 +02:00
|
|
|
|
2024-01-17 04:00:38 +01:00
|
|
|
#include "EnemyCharacter.h"
|
2022-12-13 05:11:56 +01:00
|
|
|
#include "EnhancedInputComponent.h"
|
|
|
|
#include "EnhancedInputSubsystems.h"
|
|
|
|
#include "InputMappingContext.h"
|
2024-01-17 04:00:38 +01:00
|
|
|
#include "InputTriggers.h"
|
|
|
|
#include "InteractableComponent.h"
|
|
|
|
#include "NakatomiCMC.h"
|
2023-09-18 03:28:31 +02:00
|
|
|
#include "WeaponThrowable.h"
|
2024-03-07 03:10:11 +01:00
|
|
|
#include "NiagaraFunctionLibrary.h"
|
2024-04-10 02:31:48 +02:00
|
|
|
#include "GameFramework/CharacterMovementComponent.h"
|
2023-02-03 02:31:23 +01:00
|
|
|
|
2022-12-13 05:11:56 +01:00
|
|
|
#define COLLISION_WEAPON ECC_GameTraceChannel1
|
|
|
|
|
|
|
|
// Sets default values
|
2024-01-04 16:50:15 +01:00
|
|
|
APlayerCharacter::APlayerCharacter(const FObjectInitializer& ObjectInitializer) : ANakatomiCharacter(ObjectInitializer)
|
2022-12-13 05:11:56 +01:00
|
|
|
{
|
|
|
|
// Set this character to call Tick() every frame. You can turn this off to improve performance if you don't need it.
|
|
|
|
PrimaryActorTick.bCanEverTick = true;
|
|
|
|
PrimaryActorTick.SetTickFunctionEnable(true);
|
|
|
|
PrimaryActorTick.bStartWithTickEnabled = true;
|
2024-01-04 16:53:24 +01:00
|
|
|
|
2022-12-13 05:11:56 +01:00
|
|
|
//bUseControllerRotationPitch = true;
|
|
|
|
//bUseControllerRotationYaw = true;
|
|
|
|
//bUseControllerRotationRoll = false;
|
|
|
|
|
2024-02-14 21:35:26 +01:00
|
|
|
SetHealthComponent(CreateDefaultSubobject<UHealthComponent>(TEXT("Health Component")));
|
|
|
|
GetHealthComponent()->OnDamaged.BindUFunction(this, "OnDamaged");
|
|
|
|
GetHealthComponent()->OnDeath.BindUFunction(this, "OnDeath");
|
|
|
|
|
2022-12-13 05:11:56 +01:00
|
|
|
// Setup the camera boom
|
2023-07-18 23:21:28 +02:00
|
|
|
CameraSpringArmComponent = CreateDefaultSubobject<USpringArmComponent>(TEXT("CameraSpringArmComponent"));
|
|
|
|
CameraSpringArmComponent->SetupAttachment(RootComponent);
|
|
|
|
CameraSpringArmComponent->bDoCollisionTest = true;
|
|
|
|
CameraSpringArmComponent->bUsePawnControlRotation = true;
|
|
|
|
CameraSpringArmComponent->TargetArmLength = 350.0f;
|
|
|
|
CameraSpringArmComponent->bEnableCameraLag = true;
|
|
|
|
CameraSpringArmComponent->CameraLagSpeed = 10.0f;
|
|
|
|
CameraSpringArmComponent->SocketOffset = {0.0f, 75.0f, 110.0f};
|
2022-12-13 05:11:56 +01:00
|
|
|
|
|
|
|
// Setup the camera component
|
|
|
|
CameraComponent = CreateDefaultSubobject<UCameraComponent>(TEXT("CameraComponent"));
|
2023-07-18 23:21:28 +02:00
|
|
|
CameraComponent->SetupAttachment(CameraSpringArmComponent, USpringArmComponent::SocketName);
|
2022-12-13 05:11:56 +01:00
|
|
|
CameraComponent->bUsePawnControlRotation = false;
|
2023-06-23 22:06:18 +02:00
|
|
|
CameraComponent->SetRelativeRotation({-5.0f, 0.0f, 0.0f});
|
2022-12-13 05:11:56 +01:00
|
|
|
|
2023-07-18 23:21:28 +02:00
|
|
|
// Setup the camera sights boom
|
|
|
|
CameraADSSpringArmComponent = CreateDefaultSubobject<USpringArmComponent>(TEXT("CameraADSSpringArmComponent"));
|
|
|
|
CameraADSSpringArmComponent->SetupAttachment(RootComponent);
|
|
|
|
CameraADSSpringArmComponent->bDoCollisionTest = true;
|
|
|
|
CameraADSSpringArmComponent->bUsePawnControlRotation = true;
|
|
|
|
CameraADSSpringArmComponent->TargetArmLength = 100.0f;
|
|
|
|
CameraADSSpringArmComponent->bEnableCameraLag = false;
|
|
|
|
CameraADSSpringArmComponent->SocketOffset = {0.0f, 50.0f, 75.0f};
|
|
|
|
|
2022-12-13 05:11:56 +01:00
|
|
|
// Setup the character movement
|
2024-01-04 16:53:24 +01:00
|
|
|
GetCharacterMovement()->AirControl = 1.0f;
|
|
|
|
GetCharacterMovement()->bOrientRotationToMovement = true;
|
2023-01-17 00:13:24 +01:00
|
|
|
|
2023-02-16 19:27:34 +01:00
|
|
|
// Setup the character perception component
|
|
|
|
PerceptionSource = CreateDefaultSubobject<UAIPerceptionStimuliSourceComponent>(TEXT("Perception Source Stimuli"));
|
|
|
|
PerceptionSource->bAutoRegister = true;
|
2023-09-20 02:57:37 +02:00
|
|
|
|
2023-01-17 00:13:24 +01:00
|
|
|
this->Tags.Add(FName("Player"));
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Called when the game starts or when spawned
|
|
|
|
void APlayerCharacter::BeginPlay()
|
|
|
|
{
|
|
|
|
Super::BeginPlay();
|
|
|
|
|
|
|
|
DefaultMovementSpeed = GetCharacterMovement()->MaxWalkSpeed;
|
2023-01-17 00:13:24 +01:00
|
|
|
|
2023-07-26 23:43:29 +02:00
|
|
|
AimSensitivity = DefaultAimSensitivity;
|
|
|
|
|
2023-01-17 00:13:24 +01:00
|
|
|
if (!this->ActorHasTag(FName("Player")))
|
|
|
|
{
|
|
|
|
this->Tags.Add(FName("Player"));
|
|
|
|
}
|
|
|
|
|
2023-02-06 02:07:01 +01:00
|
|
|
if (PlayerHUD)
|
|
|
|
{
|
2024-02-04 20:27:51 +01:00
|
|
|
currentPlayerHUD = UUserWidget::CreateWidgetInstance(*GetWorld(), PlayerHUD, FName("Player HUD"));
|
2023-02-06 02:07:01 +01:00
|
|
|
|
|
|
|
if (currentPlayerHUD)
|
|
|
|
{
|
|
|
|
currentPlayerHUD->AddToViewport();
|
|
|
|
}
|
|
|
|
}
|
2023-09-26 00:00:56 +02:00
|
|
|
|
|
|
|
if (PauseMenuWidget)
|
|
|
|
{
|
|
|
|
currentPauseMenuWidget = CreateWidget<UUserWidget>(GetWorld(), PauseMenuWidget);
|
|
|
|
}
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
2023-06-28 23:58:58 +02:00
|
|
|
void APlayerCharacter::Destroyed()
|
|
|
|
{
|
2023-06-29 19:10:31 +02:00
|
|
|
Super::Destroyed();
|
2023-06-28 23:58:58 +02:00
|
|
|
}
|
|
|
|
|
2022-12-13 05:11:56 +01:00
|
|
|
// Called every frame
|
|
|
|
void APlayerCharacter::Tick(float DeltaTime)
|
|
|
|
{
|
|
|
|
Super::Tick(DeltaTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called to bind functionality to input
|
|
|
|
void APlayerCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
|
|
|
|
{
|
|
|
|
Super::SetupPlayerInputComponent(PlayerInputComponent);
|
|
|
|
|
|
|
|
if (APlayerController* PC = Cast<APlayerController>(GetController()))
|
|
|
|
{
|
2023-06-23 22:06:18 +02:00
|
|
|
if (UEnhancedInputLocalPlayerSubsystem* InputSystem = ULocalPlayer::GetSubsystem<
|
|
|
|
UEnhancedInputLocalPlayerSubsystem>(PC->GetLocalPlayer()))
|
2022-12-13 05:11:56 +01:00
|
|
|
{
|
|
|
|
if (!InputMappingContext.IsNull())
|
|
|
|
{
|
|
|
|
InputSystem->AddMappingContext(InputMappingContext.LoadSynchronous(), MappingPriority);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UEnhancedInputComponent* Input = Cast<UEnhancedInputComponent>(PlayerInputComponent))
|
|
|
|
{
|
|
|
|
if (MovementAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(MovementAction, ETriggerEvent::Triggered, this, &APlayerCharacter::MovementCallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LookAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(LookAction, ETriggerEvent::Triggered, this, &APlayerCharacter::LookCallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (JumpAction)
|
|
|
|
{
|
2024-01-24 18:03:26 +01:00
|
|
|
Input->BindAction(JumpAction, ETriggerEvent::Started, this, &APlayerCharacter::BeginJumpCallback);
|
|
|
|
Input->BindAction(JumpAction, ETriggerEvent::Completed, this, &APlayerCharacter::EndJumpCallback);
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FireAction)
|
|
|
|
{
|
2023-01-13 22:11:07 +01:00
|
|
|
Input->BindAction(FireAction, ETriggerEvent::Started, this, &APlayerCharacter::BeginFireCallback);
|
|
|
|
Input->BindAction(FireAction, ETriggerEvent::Completed, this, &APlayerCharacter::EndFireCallback);
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (QuitAction)
|
|
|
|
{
|
2023-02-06 02:30:57 +01:00
|
|
|
Input->BindAction(QuitAction, ETriggerEvent::Completed, this, &APlayerCharacter::QuitCallback);
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (SprintAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(SprintAction, ETriggerEvent::Started, this, &APlayerCharacter::SetSprintingCallback);
|
|
|
|
Input->BindAction(SprintAction, ETriggerEvent::Completed, this, &APlayerCharacter::SetWalkingCallback);
|
|
|
|
}
|
2023-01-05 02:53:32 +01:00
|
|
|
|
|
|
|
if (WeaponSwitchingAction)
|
|
|
|
{
|
2023-06-23 22:06:18 +02:00
|
|
|
Input->BindAction(WeaponSwitchingAction, ETriggerEvent::Triggered, this,
|
|
|
|
&APlayerCharacter::WeaponSwitchingCallback);
|
2023-01-05 02:53:32 +01:00
|
|
|
}
|
2023-07-18 23:21:28 +02:00
|
|
|
|
|
|
|
if (AimDownSightsAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(AimDownSightsAction, ETriggerEvent::Started, this,
|
|
|
|
&APlayerCharacter::BeginAimDownSightsCallback);
|
|
|
|
Input->BindAction(AimDownSightsAction, ETriggerEvent::Completed, this,
|
|
|
|
&APlayerCharacter::EndAimDownSightsCallback);
|
|
|
|
}
|
2023-09-13 00:39:05 +02:00
|
|
|
|
2023-09-13 15:55:56 +02:00
|
|
|
if (ThrowWeaponAction)
|
2023-09-13 00:39:05 +02:00
|
|
|
{
|
2023-09-13 15:55:56 +02:00
|
|
|
Input->BindAction(ThrowWeaponAction, ETriggerEvent::Started, this, &APlayerCharacter::ThrowWeaponCallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ThrowExplosiveAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(ThrowExplosiveAction, ETriggerEvent::Started, this,
|
|
|
|
&APlayerCharacter::ThrowExplosiveCallback);
|
2023-09-13 00:39:05 +02:00
|
|
|
}
|
2023-09-26 00:00:32 +02:00
|
|
|
|
|
|
|
if (PauseAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(PauseAction, ETriggerEvent::Completed, this, &APlayerCharacter::PauseCallback);
|
|
|
|
}
|
2024-01-04 21:31:44 +01:00
|
|
|
|
|
|
|
if (CrouchAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(CrouchAction, ETriggerEvent::Started, this, &APlayerCharacter::BeginCrouchCallback);
|
|
|
|
Input->BindAction(CrouchAction, ETriggerEvent::Completed, this, &APlayerCharacter::EndCrouchCallback);
|
|
|
|
}
|
2024-01-12 16:30:55 +01:00
|
|
|
|
|
|
|
if (SlideAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(SlideAction, ETriggerEvent::Started, this, &APlayerCharacter::BeginSlideCallback);
|
|
|
|
Input->BindAction(SlideAction, ETriggerEvent::Completed, this, &APlayerCharacter::EndSlideCallback);
|
|
|
|
}
|
2024-01-17 03:17:17 +01:00
|
|
|
|
|
|
|
if (DashAction)
|
|
|
|
{
|
|
|
|
Input->BindAction(DashAction, ETriggerEvent::Started, this, &APlayerCharacter::BeginDashCallback);
|
|
|
|
Input->BindAction(DashAction, ETriggerEvent::Completed, this, &APlayerCharacter::EndDashCallback);
|
|
|
|
}
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::MovementCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
|
|
|
FVector2D vec2 = Instance.GetValue().Get<FVector2D>();
|
|
|
|
|
|
|
|
if (vec2.Size() != 0.0f)
|
|
|
|
{
|
|
|
|
AddMovementInput(GetActorForwardVector(), vec2.Y);
|
|
|
|
AddMovementInput(GetActorRightVector(), vec2.X);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::LookCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
|
|
|
FVector2D vec2 = Instance.GetValue().Get<FVector2D>();
|
|
|
|
|
|
|
|
if (vec2.Size() != 0.0f)
|
|
|
|
{
|
2023-07-26 23:43:29 +02:00
|
|
|
AddControllerYawInput(vec2.X * AimSensitivity * GetWorld()->GetDeltaSeconds());
|
|
|
|
AddControllerPitchInput((vec2.Y * (-1.0f)) * AimSensitivity * GetWorld()->GetDeltaSeconds());
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-24 18:03:26 +01:00
|
|
|
void APlayerCharacter::BeginJumpCallback(const FInputActionInstance& Instance)
|
2022-12-13 05:11:56 +01:00
|
|
|
{
|
|
|
|
Jump();
|
2024-01-24 18:03:26 +01:00
|
|
|
jumpPressed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::EndJumpCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
|
|
|
StopJumping();
|
|
|
|
jumpPressed = false;
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
2023-01-13 22:11:07 +01:00
|
|
|
void APlayerCharacter::BeginFireCallback(const FInputActionInstance& Instance)
|
2022-12-13 05:11:56 +01:00
|
|
|
{
|
2024-03-05 17:02:05 +01:00
|
|
|
if (CurrentWeapon == nullptr || CurrentWeapon->GetCurrentWeaponStatus()->GetValue() != Idle || (IsSprinting && GetVelocity().Length() > 500.0f))
|
2023-01-13 22:11:07 +01:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2022-12-13 05:11:56 +01:00
|
|
|
|
2023-09-23 22:10:15 +02:00
|
|
|
if (CurrentWeapon->GetAmmoCount() == 0)
|
|
|
|
{
|
|
|
|
ThrowWeaponCallback();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-01-13 22:11:07 +01:00
|
|
|
IsFiring = true;
|
|
|
|
|
|
|
|
OnFire();
|
|
|
|
|
2023-01-24 03:54:17 +01:00
|
|
|
if (CurrentWeapon == nullptr)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2023-01-13 22:11:07 +01:00
|
|
|
|
|
|
|
if (CurrentWeapon->GetWeaponProperties()->IsAutomatic)
|
|
|
|
{
|
2023-06-23 22:06:18 +02:00
|
|
|
GetWorldTimerManager().SetTimer(CooldownTimerHandle, this, &APlayerCharacter::WeaponCooldownHandler,
|
|
|
|
CurrentWeapon->GetWeaponProperties()->WeaponCooldown, true);
|
|
|
|
GetWorldTimerManager().SetTimer(FireTimerHandle, this, &APlayerCharacter::OnFire,
|
|
|
|
CurrentWeapon->GetWeaponProperties()->WeaponCooldown, true);
|
2023-01-13 22:11:07 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-06-23 22:06:18 +02:00
|
|
|
GetWorldTimerManager().SetTimer(CooldownTimerHandle, this, &APlayerCharacter::WeaponCooldownHandler,
|
|
|
|
CurrentWeapon->GetWeaponProperties()->WeaponCooldown, true);
|
2023-01-13 22:11:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::EndFireCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
|
|
|
IsFiring = false;
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::QuitCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2023-02-06 02:30:57 +01:00
|
|
|
// TODO: Add platform specific Exit requests
|
|
|
|
// This is not a bit deal for the moment as we are only building for windows
|
|
|
|
// For some reason the generic version does not work the same as FWindowsPlatformMisc
|
|
|
|
FWindowsPlatformMisc::RequestExit(false);
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::SetSprintingCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-03-05 16:32:32 +01:00
|
|
|
UNakatomiCMC* cmc = GetCharacterMovementComponent();
|
|
|
|
|
|
|
|
if (!IsADS && cmc)
|
2024-01-04 16:53:24 +01:00
|
|
|
{
|
2024-01-04 21:31:44 +01:00
|
|
|
cmc->EnableSprint();
|
2024-03-05 16:32:32 +01:00
|
|
|
IsSprinting = true;
|
2024-01-04 16:53:24 +01:00
|
|
|
}
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::SetWalkingCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-03-05 16:32:32 +01:00
|
|
|
UNakatomiCMC* cmc = GetCharacterMovementComponent();
|
|
|
|
|
|
|
|
if (!IsADS && cmc)
|
2024-01-04 16:53:24 +01:00
|
|
|
{
|
2024-01-04 21:31:44 +01:00
|
|
|
cmc->DisableSprint();
|
2024-03-05 16:32:32 +01:00
|
|
|
IsSprinting = false;
|
2024-01-04 16:53:24 +01:00
|
|
|
}
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
|
|
|
|
2024-03-07 03:10:11 +01:00
|
|
|
void APlayerCharacter::CalculateHits(TArray<FHitResult>* hits, FVector* dir)
|
2022-12-13 05:11:56 +01:00
|
|
|
{
|
2023-07-24 20:09:59 +02:00
|
|
|
// Set up the collision query params, use the Weapon trace settings, Ignore the actor firing this trace
|
|
|
|
FCollisionQueryParams TraceParams(SCENE_QUERY_STAT(WeaponTrace), true, GetInstigator());
|
|
|
|
TraceParams.bReturnPhysicalMaterial = true;
|
|
|
|
|
2022-12-13 05:11:56 +01:00
|
|
|
// Set up randomness
|
|
|
|
const int32 RandomSeed = FMath::Rand();
|
|
|
|
FRandomStream WeaponRandomStream(RandomSeed);
|
2023-07-27 23:22:14 +02:00
|
|
|
const float Spread = CurrentWeapon->GetWeaponProperties()->WeaponSpread * WeaponSpreadMultiplier;
|
2023-01-13 22:21:56 +01:00
|
|
|
const float Range = CurrentWeapon->GetWeaponProperties()->ProjectileRange;
|
2022-12-13 05:11:56 +01:00
|
|
|
|
2023-07-24 20:09:59 +02:00
|
|
|
FVector CamStart = CameraComponent->GetComponentTransform().GetLocation();
|
|
|
|
FVector CamRot = CameraComponent->GetComponentTransform().GetRotation().Vector();
|
2024-03-22 21:12:18 +01:00
|
|
|
CamRot.Normalize();
|
2023-07-24 20:09:59 +02:00
|
|
|
FVector CamEnd = CamStart + CamRot * 99999.f;
|
|
|
|
|
|
|
|
FHitResult CamHit;
|
2024-03-22 21:12:18 +01:00
|
|
|
if (!GetWorld()->LineTraceSingleByChannel(CamHit, CamStart, CamEnd, ECC_GameTraceChannel3))
|
2023-07-24 20:09:59 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-06-22 00:08:06 +02:00
|
|
|
// TODO: have this start from the end point of the weapon rather than character center
|
2022-12-13 05:11:56 +01:00
|
|
|
// Calculate starting position and direction
|
|
|
|
FVector TraceStart;
|
|
|
|
FRotator PlayerRot;
|
2023-07-24 20:09:59 +02:00
|
|
|
|
2023-06-29 00:14:41 +02:00
|
|
|
GetController<APlayerController>()->GetPlayerViewPoint(TraceStart, PlayerRot);
|
2022-12-13 05:11:56 +01:00
|
|
|
TraceStart = GetRootComponent()->GetComponentLocation();
|
2023-07-24 20:09:59 +02:00
|
|
|
FVector AimDir = CamHit.ImpactPoint - TraceStart;
|
|
|
|
AimDir.Normalize();
|
2024-03-07 03:10:11 +01:00
|
|
|
*dir = AimDir;
|
2022-12-13 05:11:56 +01:00
|
|
|
TraceStart = TraceStart + AimDir * ((GetInstigator()->GetActorLocation() - TraceStart) | AimDir);
|
|
|
|
|
|
|
|
// Calculate the hit results from the trace
|
|
|
|
TArray<FHitResult> HitResults;
|
|
|
|
|
2023-01-13 22:21:56 +01:00
|
|
|
for (size_t i = 0; i < CurrentWeapon->GetWeaponProperties()->ProjectilesPerShot; i++)
|
2022-12-13 05:11:56 +01:00
|
|
|
{
|
2023-01-13 22:21:56 +01:00
|
|
|
// Calculate the maximum distance the weapon can fire
|
2023-06-23 22:06:18 +02:00
|
|
|
FVector ShootDir = WeaponRandomStream.VRandCone(AimDir, FMath::DegreesToRadians(Spread),
|
|
|
|
FMath::DegreesToRadians(Spread));
|
2023-01-13 22:21:56 +01:00
|
|
|
FVector MaxHitLoc = TraceStart + (ShootDir * Range);
|
|
|
|
|
|
|
|
GetWorld()->LineTraceMultiByChannel(HitResults, TraceStart, MaxHitLoc, COLLISION_WEAPON, TraceParams);
|
2022-12-13 05:11:56 +01:00
|
|
|
|
2023-01-13 22:21:56 +01:00
|
|
|
for (FHitResult Result : HitResults)
|
|
|
|
{
|
|
|
|
hits->Add(Result);
|
2024-04-10 02:31:48 +02:00
|
|
|
// DrawDebugLine(GetWorld(), TraceStart, Result.ImpactPoint, FColor::Blue, true, 500, 0U, 0);
|
2023-03-13 22:47:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-13 22:21:56 +01:00
|
|
|
|
2024-03-07 03:10:11 +01:00
|
|
|
void APlayerCharacter::ProcessHits(TArray<FHitResult> hits, FVector dir)
|
2023-03-13 22:47:42 +01:00
|
|
|
{
|
|
|
|
for (FHitResult Hit : hits)
|
|
|
|
{
|
|
|
|
// TODO: Handle hits in a meaningful way
|
|
|
|
FActorSpawnParameters SpawnParameters;
|
|
|
|
SpawnParameters.SpawnCollisionHandlingOverride = ESpawnActorCollisionHandlingMethod::AlwaysSpawn;
|
|
|
|
|
|
|
|
// Spawn field actor
|
2023-05-29 02:36:05 +02:00
|
|
|
if (CurrentWeapon->GetFieldSystemActor())
|
|
|
|
{
|
|
|
|
FTransform transform;
|
|
|
|
transform.SetLocation(Hit.ImpactPoint);
|
2023-06-23 22:06:18 +02:00
|
|
|
auto field = GetWorld()->SpawnActor<AFieldSystemActor>(CurrentWeapon->GetFieldSystemActor(), transform,
|
|
|
|
SpawnParameters);
|
|
|
|
|
2023-05-29 02:36:05 +02:00
|
|
|
if (field)
|
|
|
|
{
|
|
|
|
field->Destroy();
|
2023-06-23 22:06:18 +02:00
|
|
|
}
|
2023-05-29 02:36:05 +02:00
|
|
|
}
|
2023-01-31 22:27:36 +01:00
|
|
|
|
2023-03-13 22:47:42 +01:00
|
|
|
if (Hit.GetActor())
|
|
|
|
{
|
2023-05-29 02:36:59 +02:00
|
|
|
if (auto interactableComponent = Hit.GetActor()->GetComponentByClass<UInteractableComponent>())
|
|
|
|
{
|
|
|
|
interactableComponent->Interact();
|
|
|
|
}
|
|
|
|
|
2023-06-01 03:26:14 +02:00
|
|
|
if (auto healthComponent = Hit.GetActor()->GetComponentByClass<UHealthComponent>())
|
2023-01-17 00:14:03 +01:00
|
|
|
{
|
2023-06-23 22:06:18 +02:00
|
|
|
healthComponent->TakeDamage(Hit.GetActor(), CurrentWeapon->GetWeaponProperties()->WeaponDamage, nullptr,
|
|
|
|
GetController(), this);
|
2024-03-07 18:16:15 +01:00
|
|
|
|
|
|
|
auto character = Cast<ANakatomiCharacter>(Hit.GetActor());
|
|
|
|
|
|
|
|
if (character && character->GetOnDamagedHitNiagaraSystem())
|
|
|
|
{
|
|
|
|
UNiagaraFunctionLibrary::SpawnSystemAtLocation(this,
|
|
|
|
character->GetOnDamagedHitNiagaraSystem(),
|
|
|
|
Hit.ImpactPoint,
|
|
|
|
dir.MirrorByVector(Hit.ImpactNormal).Rotation(),
|
|
|
|
FVector(1),
|
|
|
|
true);
|
|
|
|
}
|
2024-02-14 21:35:26 +01:00
|
|
|
|
2023-08-09 23:53:32 +02:00
|
|
|
if (!healthComponent->GetIsDead())
|
|
|
|
{
|
|
|
|
OnEnemyHit.ExecuteIfBound();
|
2023-08-16 13:31:07 +02:00
|
|
|
|
|
|
|
if (HitMarkerSound)
|
|
|
|
{
|
|
|
|
UGameplayStatics::PlaySound2D(GetWorld(), HitMarkerSound);
|
|
|
|
}
|
2023-08-09 23:53:32 +02:00
|
|
|
}
|
2023-01-17 00:14:03 +01:00
|
|
|
}
|
2023-10-13 00:03:59 +02:00
|
|
|
|
|
|
|
auto staticMeshComponent = Hit.GetActor()->GetComponentByClass<UStaticMeshComponent>();
|
2023-10-15 21:00:56 +02:00
|
|
|
|
2023-10-13 00:03:59 +02:00
|
|
|
if (staticMeshComponent && !staticMeshComponent->IsSimulatingPhysics() && CurrentWeapon->GetDecalActor())
|
|
|
|
{
|
|
|
|
FTransform transform;
|
|
|
|
transform.SetLocation(Hit.ImpactPoint);
|
|
|
|
|
|
|
|
auto decalActor = GetWorld()->SpawnActor<ADecalActor>(CurrentWeapon->GetDecalActor(), transform,
|
|
|
|
SpawnParameters);
|
|
|
|
auto rot = Hit.ImpactNormal.Rotation();
|
|
|
|
rot.Roll += 90.0f;
|
|
|
|
rot.Yaw += 180.0f;
|
|
|
|
decalActor->SetActorRotation(rot);
|
|
|
|
}
|
2023-10-15 21:00:34 +02:00
|
|
|
|
|
|
|
if (staticMeshComponent && !staticMeshComponent->IsSimulatingPhysics() &&
|
|
|
|
CurrentWeapon->GetImpactParticleSystem())
|
|
|
|
{
|
|
|
|
FTransform transform;
|
|
|
|
transform.SetLocation(Hit.ImpactPoint);
|
2024-03-07 03:10:11 +01:00
|
|
|
|
|
|
|
UNiagaraFunctionLibrary::SpawnSystemAtLocation(this,
|
|
|
|
CurrentWeapon->GetImpactParticleSystem(),
|
|
|
|
transform.GetLocation(),
|
|
|
|
dir.MirrorByVector(Hit.ImpactNormal).Rotation(),
|
|
|
|
FVector(1),
|
|
|
|
true);
|
|
|
|
|
2023-10-15 21:00:34 +02:00
|
|
|
}
|
2023-01-13 22:21:56 +01:00
|
|
|
}
|
2024-02-14 21:35:26 +01:00
|
|
|
|
|
|
|
MakeNoise(1, this, Hit.Location);
|
2022-12-13 05:11:56 +01:00
|
|
|
}
|
2023-01-02 00:59:59 +01:00
|
|
|
}
|
|
|
|
|
2024-02-05 23:35:28 +01:00
|
|
|
void APlayerCharacter::PlayOnFireAnimations()
|
|
|
|
{
|
|
|
|
if (!GetCrouched())
|
|
|
|
{
|
|
|
|
PlayAnimMontage(IsADS ? FireWeaponADSAnimMontage : FireWeaponAnimMontage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-26 19:34:57 +02:00
|
|
|
void APlayerCharacter::OnDamaged()
|
|
|
|
{
|
|
|
|
Super::OnDamaged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::OnDeath()
|
|
|
|
{
|
|
|
|
Super::OnDeath();
|
2023-06-27 23:17:03 +02:00
|
|
|
|
|
|
|
this->DetachFromControllerPendingDestroy();
|
|
|
|
this->GetCapsuleComponent()->SetCollisionEnabled(ECollisionEnabled::NoCollision);
|
|
|
|
this->GetCapsuleComponent()->SetCollisionResponseToAllChannels(ECR_Ignore);
|
|
|
|
|
|
|
|
this->GetMesh()->SetCollisionProfileName("Ragdoll");
|
|
|
|
this->SetActorEnableCollision(true);
|
|
|
|
|
|
|
|
this->GetMesh()->SetAllBodiesSimulatePhysics(true);
|
|
|
|
this->GetMesh()->SetSimulatePhysics(true);
|
|
|
|
this->GetMesh()->WakeAllRigidBodies();
|
|
|
|
this->GetMesh()->bBlendPhysics = true;
|
|
|
|
|
|
|
|
if (auto characterMovementComponent = this->GetCharacterMovement())
|
|
|
|
{
|
|
|
|
characterMovementComponent->StopMovementImmediately();
|
|
|
|
characterMovementComponent->DisableMovement();
|
|
|
|
characterMovementComponent->SetComponentTickEnabled(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
this->SetLifeSpan(10.0f);
|
|
|
|
|
|
|
|
IsFiring = false;
|
|
|
|
ClearAllTimers();
|
2023-12-13 22:44:42 +01:00
|
|
|
|
|
|
|
// TODO: Move this out into it's own method.
|
|
|
|
FString map = GetWorld()->GetMapName();
|
|
|
|
map.RemoveFromStart("UEDPIE_0_"); // We have to remove this for reason, I don't fully understand at the moment
|
|
|
|
UGameplayStatics::OpenLevel(this, FName(map), false);
|
2023-06-26 19:34:57 +02:00
|
|
|
}
|
|
|
|
|
2023-01-05 02:53:32 +01:00
|
|
|
void APlayerCharacter::WeaponSwitchingCallback(const FInputActionInstance& Instance)
|
2023-01-02 00:59:59 +01:00
|
|
|
{
|
2023-01-05 02:53:32 +01:00
|
|
|
float value = Instance.GetValue().Get<float>();
|
|
|
|
|
|
|
|
if (value > 0)
|
|
|
|
{
|
|
|
|
InventoryIncrement();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
InventoryDecrement();
|
|
|
|
}
|
2023-01-02 00:59:59 +01:00
|
|
|
}
|
|
|
|
|
2023-07-18 23:21:28 +02:00
|
|
|
void APlayerCharacter::BeginAimDownSightsCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-03-05 16:32:32 +01:00
|
|
|
if (IsSprinting)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2023-07-25 22:34:04 +02:00
|
|
|
|
2024-03-05 16:32:32 +01:00
|
|
|
IsADS = true;
|
|
|
|
|
2024-01-16 21:51:38 +01:00
|
|
|
if (UNakatomiCMC* cmc = GetCharacterMovementComponent())
|
2024-01-16 20:44:23 +01:00
|
|
|
{
|
|
|
|
cmc->EnableAds();
|
|
|
|
}
|
2024-03-05 16:32:32 +01:00
|
|
|
|
2023-07-26 23:43:29 +02:00
|
|
|
AimSensitivity = DefaultAimSensitivity * ADSAimSensitivityMultiplier;
|
|
|
|
|
2023-07-27 23:22:14 +02:00
|
|
|
if (CurrentWeapon)
|
|
|
|
{
|
|
|
|
WeaponSpreadMultiplier = CurrentWeapon->GetWeaponProperties()->ADSWeaponSpreadMultiplier;
|
|
|
|
}
|
|
|
|
|
2023-07-18 23:21:28 +02:00
|
|
|
FLatentActionInfo LatentActionInfo;
|
|
|
|
LatentActionInfo.CallbackTarget = this;
|
|
|
|
CameraComponent->AttachToComponent(CameraADSSpringArmComponent, FAttachmentTransformRules::KeepWorldTransform,
|
|
|
|
USpringArmComponent::SocketName);
|
|
|
|
|
|
|
|
UKismetSystemLibrary::MoveComponentTo(CameraComponent, FVector::ZeroVector, FRotator::ZeroRotator, true, true,
|
|
|
|
CameraBlendTime,
|
|
|
|
true, EMoveComponentAction::Type::Move, LatentActionInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::EndAimDownSightsCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-03-05 16:32:32 +01:00
|
|
|
if (IsSprinting)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-25 22:34:04 +02:00
|
|
|
IsADS = false;
|
|
|
|
|
2024-01-16 21:51:38 +01:00
|
|
|
if (UNakatomiCMC* cmc = GetCharacterMovementComponent())
|
2024-01-16 20:44:23 +01:00
|
|
|
{
|
|
|
|
cmc->DisableAds();
|
|
|
|
}
|
2023-07-25 22:34:04 +02:00
|
|
|
|
2023-07-26 23:43:29 +02:00
|
|
|
AimSensitivity = DefaultAimSensitivity;
|
|
|
|
|
2023-07-27 23:22:14 +02:00
|
|
|
WeaponSpreadMultiplier = 1.0f;
|
|
|
|
|
2023-07-18 23:21:28 +02:00
|
|
|
FLatentActionInfo LatentActionInfo;
|
|
|
|
LatentActionInfo.CallbackTarget = this;
|
|
|
|
CameraComponent->AttachToComponent(CameraSpringArmComponent, FAttachmentTransformRules::KeepWorldTransform,
|
|
|
|
USpringArmComponent::SocketName);
|
|
|
|
|
|
|
|
UKismetSystemLibrary::MoveComponentTo(CameraComponent, FVector::ZeroVector, FRotator::ZeroRotator, true, true,
|
|
|
|
CameraBlendTime,
|
|
|
|
true, EMoveComponentAction::Type::Move, LatentActionInfo);
|
|
|
|
}
|
|
|
|
|
2023-09-26 00:00:32 +02:00
|
|
|
void APlayerCharacter::PauseCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2023-10-03 23:52:28 +02:00
|
|
|
APlayerController* PlayerController = Cast<APlayerController>(GetController());
|
|
|
|
|
|
|
|
if (PlayerController->SetPause(true))
|
2023-09-26 00:00:56 +02:00
|
|
|
{
|
2023-10-03 23:52:28 +02:00
|
|
|
if (PauseMenuWidget)
|
|
|
|
{
|
|
|
|
// TODO: Add pause functionality
|
|
|
|
currentPauseMenuWidget->AddToViewport();
|
|
|
|
}
|
2023-09-26 00:00:56 +02:00
|
|
|
}
|
2023-09-26 00:00:32 +02:00
|
|
|
}
|
|
|
|
|
2024-01-04 21:31:44 +01:00
|
|
|
void APlayerCharacter::BeginCrouchCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-01-16 21:51:38 +01:00
|
|
|
if (UNakatomiCMC* cmc = GetCharacterMovementComponent())
|
2024-01-04 21:31:44 +01:00
|
|
|
{
|
|
|
|
cmc->EnableCrouch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::EndCrouchCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-01-16 21:51:38 +01:00
|
|
|
if (UNakatomiCMC* cmc = GetCharacterMovementComponent())
|
2024-01-04 21:31:44 +01:00
|
|
|
{
|
|
|
|
cmc->DisableCrouch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-12 16:30:55 +01:00
|
|
|
void APlayerCharacter::BeginSlideCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-02-01 21:35:55 +01:00
|
|
|
UNakatomiCMC* cmc = GetCharacterMovementComponent();
|
|
|
|
if (cmc && !IsThrowing)
|
2024-01-12 16:30:55 +01:00
|
|
|
{
|
|
|
|
cmc->EnableSlide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::EndSlideCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-01-16 21:51:38 +01:00
|
|
|
if (UNakatomiCMC* cmc = GetCharacterMovementComponent())
|
2024-01-12 16:30:55 +01:00
|
|
|
{
|
|
|
|
cmc->DisableSlide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-17 03:17:17 +01:00
|
|
|
void APlayerCharacter::BeginDashCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
2024-02-01 21:35:55 +01:00
|
|
|
UNakatomiCMC* cmc = GetCharacterMovementComponent();
|
|
|
|
if (cmc && !IsThrowing)
|
2024-01-17 03:17:17 +01:00
|
|
|
{
|
|
|
|
cmc->EnableDash();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::EndDashCallback(const FInputActionInstance& Instance)
|
|
|
|
{
|
|
|
|
if (UNakatomiCMC* cmc = GetCharacterMovementComponent())
|
|
|
|
{
|
|
|
|
cmc->DisableDash();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-13 22:11:07 +01:00
|
|
|
void APlayerCharacter::OnFire()
|
|
|
|
{
|
2023-09-23 22:10:15 +02:00
|
|
|
if (!IsFiring || CurrentWeapon->GetAmmoCount() == 0)
|
2023-01-13 22:11:07 +01:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2023-06-27 23:17:03 +02:00
|
|
|
|
2023-06-23 22:06:18 +02:00
|
|
|
CurrentWeapon->SetCurrentWeaponStatus(Firing);
|
2023-01-13 22:11:07 +01:00
|
|
|
|
|
|
|
TArray<FHitResult> Hits = TArray<FHitResult>();
|
2024-03-07 03:10:11 +01:00
|
|
|
FVector direction = FVector::ZeroVector;
|
|
|
|
CalculateHits(&Hits, &direction);
|
|
|
|
ProcessHits(Hits, direction);
|
2023-01-13 22:11:07 +01:00
|
|
|
|
2023-01-18 01:10:39 +01:00
|
|
|
CurrentWeapon->DecrementAmmoCount(1);
|
|
|
|
|
2023-03-17 00:50:15 +01:00
|
|
|
CurrentWeapon->PlayFireSoundAtLocation(this->GetTransform().GetLocation());
|
2023-01-18 01:35:06 +01:00
|
|
|
|
2024-02-14 21:35:26 +01:00
|
|
|
MakeNoise(1,this, this->GetTransform().GetLocation());
|
|
|
|
|
2024-02-05 23:35:28 +01:00
|
|
|
PlayOnFireAnimations();
|
2023-01-13 22:11:07 +01:00
|
|
|
|
2023-06-23 22:06:18 +02:00
|
|
|
CurrentWeapon->SetCurrentWeaponStatus(Cooldown);
|
2023-01-24 03:54:17 +01:00
|
|
|
|
2023-08-02 00:02:32 +02:00
|
|
|
Super::OnFire();
|
2023-01-13 22:11:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::WeaponCooldownHandler()
|
|
|
|
{
|
2023-06-23 22:06:18 +02:00
|
|
|
if (CurrentWeapon->GetCurrentWeaponStatus()->GetValue() != Idle)
|
2023-01-13 22:11:07 +01:00
|
|
|
{
|
2023-06-23 22:06:18 +02:00
|
|
|
CurrentWeapon->SetCurrentWeaponStatus(Idle);
|
2023-01-13 22:11:07 +01:00
|
|
|
}
|
2023-09-23 22:10:15 +02:00
|
|
|
|
2023-01-13 22:11:07 +01:00
|
|
|
if (!IsFiring)
|
|
|
|
{
|
|
|
|
GetWorldTimerManager().ClearTimer(FireTimerHandle);
|
|
|
|
GetWorldTimerManager().ClearTimer(CooldownTimerHandle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::ClearAllTimers()
|
|
|
|
{
|
|
|
|
GetWorldTimerManager().ClearTimer(FireTimerHandle);
|
|
|
|
GetWorldTimerManager().ClearTimer(CooldownTimerHandle);
|
|
|
|
}
|
2023-02-06 02:07:01 +01:00
|
|
|
|
|
|
|
int APlayerCharacter::GetCurrentAmmoCount()
|
|
|
|
{
|
|
|
|
if (CurrentWeapon == nullptr)
|
|
|
|
{
|
2023-07-03 21:05:31 +02:00
|
|
|
return 0;
|
2023-02-06 02:07:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return CurrentWeapon->GetAmmoCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
float APlayerCharacter::GetCurrentHealthCount()
|
|
|
|
{
|
|
|
|
if (!GetHealthComponent())
|
|
|
|
{
|
2023-07-03 21:05:31 +02:00
|
|
|
return 0;
|
2023-02-06 02:07:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return GetHealthComponent()->GetCurrentHealth();
|
|
|
|
}
|
2023-07-03 21:05:31 +02:00
|
|
|
|
|
|
|
int APlayerCharacter::GetWeaponProjectiles()
|
|
|
|
{
|
|
|
|
if (CurrentWeapon == nullptr)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CurrentWeapon->GetWeaponProperties()->ProjectilesPerShot;
|
|
|
|
}
|
|
|
|
|
|
|
|
float APlayerCharacter::GetWeaponCooldown()
|
|
|
|
{
|
|
|
|
if (CurrentWeapon == nullptr)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CurrentWeapon->GetWeaponProperties()->WeaponCooldown;
|
|
|
|
}
|
|
|
|
|
|
|
|
float APlayerCharacter::GetWeaponSpread()
|
|
|
|
{
|
|
|
|
if (CurrentWeapon == nullptr)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CurrentWeapon->GetWeaponProperties()->WeaponSpread;
|
|
|
|
}
|
2023-09-08 23:17:05 +02:00
|
|
|
|
2023-09-13 15:55:56 +02:00
|
|
|
void APlayerCharacter::ThrowWeaponCallback()
|
|
|
|
{
|
2024-02-01 21:30:42 +01:00
|
|
|
if (CurrentWeapon && !IsThrowing)
|
2023-09-18 03:28:31 +02:00
|
|
|
{
|
2024-02-01 21:30:42 +01:00
|
|
|
IsThrowing = true;
|
2024-02-01 21:08:00 +01:00
|
|
|
PlayAnimMontage(ThrowWeaponAnimMontage);
|
|
|
|
}
|
|
|
|
}
|
2023-10-05 23:04:28 +02:00
|
|
|
|
2024-02-01 21:08:00 +01:00
|
|
|
void APlayerCharacter::ThrowWeapon()
|
|
|
|
{
|
|
|
|
FVector Location;
|
|
|
|
FVector BoxExtent;
|
|
|
|
GetActorBounds(true, Location, BoxExtent, false);
|
2023-10-05 23:04:28 +02:00
|
|
|
|
2024-02-01 21:08:00 +01:00
|
|
|
FVector SpawnLocation = (BoxExtent.X * GetActorForwardVector()) * 2;
|
|
|
|
SpawnLocation += Location;
|
|
|
|
SpawnLocation.Z += BoxExtent.Z;
|
2023-10-05 23:04:28 +02:00
|
|
|
|
2024-02-01 21:08:00 +01:00
|
|
|
TSubclassOf<AWeaponThrowable> WeaponThrowableTemplate = CurrentWeapon->GetWeaponThrowableTemplate();
|
2023-09-18 03:28:31 +02:00
|
|
|
|
2024-02-01 21:08:00 +01:00
|
|
|
AWeaponThrowable* Throwable = GetWorld()->SpawnActor<AWeaponThrowable>(
|
|
|
|
WeaponThrowableTemplate, SpawnLocation, FRotator::ZeroRotator);
|
2023-09-23 22:10:15 +02:00
|
|
|
|
2024-02-01 21:08:00 +01:00
|
|
|
Throwable->SetWeaponSkeletalMesh(GetCurrentWeapon()->GetSkeletalMesh());
|
2023-09-13 15:55:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::ThrowExplosiveCallback()
|
|
|
|
{
|
2023-09-20 02:57:37 +02:00
|
|
|
if (ThrowableInventory.Num() > 0)
|
|
|
|
{
|
2024-02-01 21:30:42 +01:00
|
|
|
IsThrowing = true;
|
2024-02-01 21:08:18 +01:00
|
|
|
PlayAnimMontage(ThrowExplosiveAnimMontage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::ThrowExplosive()
|
|
|
|
{
|
|
|
|
FVector Location;
|
|
|
|
FVector BoxExtent;
|
|
|
|
GetActorBounds(true, Location, BoxExtent, false);
|
2023-09-13 15:55:56 +02:00
|
|
|
|
2024-02-01 21:08:18 +01:00
|
|
|
FVector SpawnLocation = (BoxExtent.X * GetActorForwardVector()) * 2;
|
|
|
|
SpawnLocation += Location;
|
|
|
|
SpawnLocation += (25.0f * GetActorForwardVector());
|
|
|
|
SpawnLocation.Z += BoxExtent.Z;
|
2023-09-20 02:57:37 +02:00
|
|
|
|
2024-02-01 21:08:18 +01:00
|
|
|
GetWorld()->SpawnActor<AThrowable>(ThrowableInventory.Pop(), SpawnLocation, FRotator::ZeroRotator);
|
2023-09-13 15:55:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
AThrowable* APlayerCharacter::ThrowThrowable()
|
2023-09-08 23:17:05 +02:00
|
|
|
{
|
|
|
|
FVector Location;
|
|
|
|
FVector BoxExtent;
|
|
|
|
GetActorBounds(true, Location, BoxExtent, false);
|
|
|
|
|
|
|
|
FVector SpawnLocation = FVector(Location.Z, Location.Y + (BoxExtent.Y / 2), Location.Z + (BoxExtent.Z / 2));
|
|
|
|
|
2023-09-13 15:55:56 +02:00
|
|
|
if (AThrowable* Throwable = GetWorld()->SpawnActor<AThrowable>(SpawnLocation, FRotator::ZeroRotator))
|
|
|
|
{
|
|
|
|
return Throwable;
|
|
|
|
}
|
2023-09-08 23:17:05 +02:00
|
|
|
|
2023-09-13 15:55:56 +02:00
|
|
|
return nullptr;
|
2024-01-24 18:03:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool APlayerCharacter::GetPressedJump()
|
|
|
|
{
|
|
|
|
return jumpPressed;
|
|
|
|
}
|
2024-02-01 01:53:01 +01:00
|
|
|
|
2024-02-01 21:30:42 +01:00
|
|
|
bool APlayerCharacter::GetIsThrowing()
|
|
|
|
{
|
|
|
|
return IsThrowing;
|
|
|
|
}
|
|
|
|
|
|
|
|
void APlayerCharacter::SetIsThrowing(bool bIsThrowing)
|
|
|
|
{
|
|
|
|
IsThrowing = bIsThrowing;
|
|
|
|
}
|
2024-03-09 04:51:34 +01:00
|
|
|
|
|
|
|
UCameraComponent* APlayerCharacter::GetCameraComponent()
|
|
|
|
{
|
|
|
|
return CameraComponent;
|
|
|
|
}
|