From 0dc0e58cfc2da80a9038b307d1851b20639492e1 Mon Sep 17 00:00:00 2001 From: Martin2 Date: Fri, 28 Mar 2025 14:45:12 +0800 Subject: [PATCH] update --- .../Private/MainScreenUserWidget.cpp | 10 +++ .../Luckyrobots/Public/MainScreenUserWidget.h | 26 ++++++ Source/Luckyrobots/Public/SharedDef.h | 82 +++++++++++++++++++ 3 files changed, 118 insertions(+) create mode 100644 Source/Luckyrobots/Private/MainScreenUserWidget.cpp create mode 100644 Source/Luckyrobots/Public/MainScreenUserWidget.h create mode 100644 Source/Luckyrobots/Public/SharedDef.h diff --git a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp new file mode 100644 index 00000000..143e88c0 --- /dev/null +++ b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp @@ -0,0 +1,10 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "MainScreenUserWidget.h" +#include "Engine/DataTable.h" + +void UMainScreenUserWidget::InitData() +{ + +} \ No newline at end of file diff --git a/Source/Luckyrobots/Public/MainScreenUserWidget.h b/Source/Luckyrobots/Public/MainScreenUserWidget.h new file mode 100644 index 00000000..10552ae7 --- /dev/null +++ b/Source/Luckyrobots/Public/MainScreenUserWidget.h @@ -0,0 +1,26 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "Blueprint/UserWidget.h" +#include "MainScreenUserWidget.generated.h" + +class UDataTable; +/** + * + */ +UCLASS() +class LUCKYROBOTS_API UMainScreenUserWidget : public UUserWidget +{ + GENERATED_BODY() + +public: + UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config") + UDataTable* RobotDataDataTable; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config") + UDataTable* LevelDataTable; +public: + void InitData(); +}; diff --git a/Source/Luckyrobots/Public/SharedDef.h b/Source/Luckyrobots/Public/SharedDef.h new file mode 100644 index 00000000..ebb3f86d --- /dev/null +++ b/Source/Luckyrobots/Public/SharedDef.h @@ -0,0 +1,82 @@ +#pragma once + +#include "Engine/DataTable.h" +#include "SharedDef.generated.h" + + +UENUM(BlueprintType) +enum class ERobotsCategories : uint8 +{ + Wheeled UMETA(DisplayName = "Wheeled Robots"), + FourLegged UMETA(DisplayName = "Four-Legged Robots"), + TwoLegged UMETA(DisplayName = "Two-Legged Robots"), + Stationary UMETA(DisplayName = "Stationary Robots"), + IndoorFlying UMETA(DisplayName = "Indoor Flying Robots"), + SwimmingUnderwater UMETA(DisplayName = "Swimming/Underwater Robots"), + CrawlingModular UMETA(DisplayName = "Crawling/Modular Robots"), + Arm UMETA(DisplayName = "Arm-Robots"), + OutdoorFlying UMETA(DisplayName = "Outdoor Flying Robots") +}; + +UENUM(BlueprintType) +enum class ELevelType : uint8 +{ + Home UMETA(DisplayName = "Home"), + Office UMETA(DisplayName = "Office"), + Street UMETA(DisplayName = "Street"), + TestLevel UMETA(DisplayName = "TestLevel") +}; + +USTRUCT(BlueprintType) +struct FRobotData : public FTableRowBase +{ + GENERATED_BODY() +public: + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FString Name; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + TSubclassOf RobotClass; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FTransform Transform; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bActive; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + UTexture2D* RobotImage; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + ERobotsCategories RobotType; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FString HelpStr; +}; + +USTRUCT(BlueprintType) +struct FLevelData : public FTableRowBase +{ + GENERATED_BODY() +public: + UPROPERTY(EditAnywhere, BlueprintReadWrite) + int ID; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FString LevelName; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + ELevelType LevelType; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FString MenuName; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + UTexture2D* LevelImage; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bActive; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + TArray RobotTypeList; +}; \ No newline at end of file