unreal/HexTile.h

88 lines
2.2 KiB
C
Raw Permalink Normal View History

2022-01-11 11:07:17 +01:00
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "HexTile.generated.h"
class USceneComponent;
class UStaticMeshComponent;
2022-01-13 16:34:06 +01:00
class AAdventureMap;
class AMapObject;
class AStarFog;
2022-01-11 11:07:17 +01:00
class AAdventurePlayerController;
UCLASS()
class FRAY_API AHexTile : public AActor
{
GENERATED_BODY()
public:
// Sets default value for this actor's properties
AHexTile();
UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, Category = "Config")
float TileSize;
//UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Config")
// USceneComponent* SceneComponent;
UPROPERTY(BlueprintReadWrite, Category = "Config")
AAdventureMap* MapRef;
UPROPERTY(BlueprintReadWrite, Category = "Config")
AStarFog* CoveringFog;
2022-01-11 11:07:17 +01:00
UFUNCTION(BlueprintCallable, Category = "debug")
2022-01-11 11:07:17 +01:00
FVector Corner(int32 i);
UFUNCTION()
void FillCornersArray();
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "debug")
TArray<FVector> Corners;
2022-01-11 11:07:17 +01:00
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Coordinates")
2022-01-11 11:07:17 +01:00
int32 Q;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Coordinates")
2022-01-11 11:07:17 +01:00
int32 R;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = "Coordinates")
2022-01-11 11:07:17 +01:00
int32 Index;
UFUNCTION(BlueprintCallable, Category = "Coordinates")
int32 Distance(AHexTile* ToHex);
// Pathfinding
UPROPERTY(BlueprintReadWrite)
int32 MoveCost = 1;
UPROPERTY()
int32 FCost;
UPROPERTY()
int32 GCost = 9999;
UPROPERTY()
int32 HCost;
UPROPERTY(BlueprintReadWrite, VisibleInstanceOnly, Category = "Runtime")
AHexTile* CameFrom;
// MapObject Placement
UPROPERTY(BlueprintReadWrite, VisibleAnywhere)
bool bFree = true;
UPROPERTY(BlueprintReadWrite, VisibleAnywhere)
AMapObject* MapObject;
UPROPERTY(BlueprintReadWrite, EditDefaultsOnly)
bool bCanActivate = false;
UPROPERTY(BlueprintReadWrite, EditDefaultsOnly)
bool bEvent = false;
FORCEINLINE bool operator == (const AHexTile &Other)
{
if (this->Q == Other.Q && this->R == Other.R) { return true; }
else { return false; }
}
FORCEINLINE bool operator != (const AHexTile &Other)
{
if (this->Q == Other.Q && this->R == Other.R) { return false; }
else { return true; }
}
2022-01-11 11:07:17 +01:00
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
};