Made Movement Componenet and got collision act to move
This commit is contained in:
47
Source/jumpingship/MoveComponent.cpp
Normal file
47
Source/jumpingship/MoveComponent.cpp
Normal file
@ -0,0 +1,47 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
|
||||
#include "MoveComponent.h"
|
||||
|
||||
// Sets default values for this component's properties
|
||||
UMoveComponent::UMoveComponent()
|
||||
{
|
||||
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features
|
||||
// off to improve performance if you don't need them.
|
||||
PrimaryComponentTick.bCanEverTick = true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
// Called when the game starts
|
||||
void UMoveComponent::BeginPlay()
|
||||
{
|
||||
Super::BeginPlay();
|
||||
|
||||
// Set start location
|
||||
StartRelativeLocation = this->GetRelativeLocation();
|
||||
|
||||
//Compute normalized movement
|
||||
MoveOffsetNorm = MoveOffset;
|
||||
MoveOffsetNorm.Normalize();
|
||||
MaxDistance = MoveOffset.Length();
|
||||
//Check if ticking required
|
||||
SetComponentTickEnabled(MoveEnable);
|
||||
}
|
||||
|
||||
|
||||
// Called every frame
|
||||
void UMoveComponent::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
|
||||
{
|
||||
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
|
||||
//Set the current distance
|
||||
if (MoveEnable)
|
||||
{
|
||||
CurDistance += DeltaTime * Speed * MoveDirection;
|
||||
if (CurDistance >= MaxDistance || CurDistance <= 0.0f) {
|
||||
MoveDirection *= -1;
|
||||
}
|
||||
}
|
||||
// Compute and set current location
|
||||
SetRelativeLocation(StartRelativeLocation + MoveOffsetNorm * CurDistance);
|
||||
}
|
46
Source/jumpingship/MoveComponent.h
Normal file
46
Source/jumpingship/MoveComponent.h
Normal file
@ -0,0 +1,46 @@
|
||||
// Fill out your copyright notice in the Description page of Project Settings.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "Components/SceneComponent.h"
|
||||
#include "MoveComponent.generated.h"
|
||||
|
||||
|
||||
UCLASS(ClassGroup = (Actors), meta = (BlueprintSpawnableComponent))
|
||||
class JUMPINGSHIP_API UMoveComponent : public USceneComponent
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
public:
|
||||
// Sets default values for this component's properties
|
||||
UMoveComponent();
|
||||
|
||||
protected:
|
||||
// Called when the game starts
|
||||
virtual void BeginPlay() override;
|
||||
|
||||
public:
|
||||
// Called every frame
|
||||
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
|
||||
|
||||
//Offset to move
|
||||
UPROPERTY(EditAnywhere)
|
||||
FVector MoveOffset;
|
||||
private:
|
||||
friend class FMoveComponentVisualizer;
|
||||
|
||||
// Enables the movement of the component
|
||||
UPROPERTY(EditAnywhere)
|
||||
bool MoveEnable = true;
|
||||
//Speed
|
||||
UPROPERTY(EditAnywhere)
|
||||
float Speed = 1.0f;
|
||||
|
||||
//Computed locations
|
||||
FVector StartRelativeLocation;
|
||||
FVector MoveOffsetNorm;
|
||||
float MaxDistance = 0.0f;
|
||||
float CurDistance = 0.0f;
|
||||
float MoveDirection = 1;
|
||||
};
|
Reference in New Issue
Block a user