LuckyRobotsUnreal/Source/Luckyrobots/Public/MainScreenUserWidget.h

85 lines
1.9 KiB
C
Raw Normal View History

2025-03-28 14:45:12 +08:00
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Blueprint/UserWidget.h"
2025-03-28 16:13:47 +08:00
#include "SharedDef.h"
2025-03-28 14:45:12 +08:00
#include "MainScreenUserWidget.generated.h"
class UDataTable;
/**
*
*/
UCLASS()
class LUCKYROBOTS_API UMainScreenUserWidget : public UUserWidget
{
GENERATED_BODY()
2025-03-29 22:43:51 +08:00
protected:
virtual void NativeConstruct();
2025-03-28 14:45:12 +08:00
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
UDataTable* RobotDataDataTable;
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
UDataTable* LevelDataTable;
2025-03-28 16:13:47 +08:00
2025-03-28 14:45:12 +08:00
public:
2025-03-28 16:13:47 +08:00
UPROPERTY(EditAnywhere, BlueprintReadWrite)
TArray<FRobotData> RobotDataList;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
TArray<FLevelData> LevelDataList;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
int iCurrentSelectRobot;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
int iCurrentSelectLevel;
2025-03-29 22:43:51 +08:00
UPROPERTY(EditAnywhere, BlueprintReadWrite)
int iCurrentSelectQuality;
2025-03-28 16:13:47 +08:00
public:
UFUNCTION(BlueprintCallable)
2025-03-28 14:45:12 +08:00
void InitData();
2025-03-28 16:13:47 +08:00
UFUNCTION(BlueprintCallable)
void InitRobotData();
UFUNCTION(BlueprintCallable)
void InitLevelData();
UFUNCTION(BlueprintCallable)
FRobotData GetCurrentRobotData();
UFUNCTION(BlueprintCallable)
FLevelData GetCurrentLevelData();
2025-03-29 22:43:51 +08:00
UFUNCTION(BlueprintCallable)
void SelectNextRobot();
UFUNCTION(BlueprintCallable)
void SelectPreviousRobot();
UFUNCTION(BlueprintCallable)
void SelectNextLevel();
UFUNCTION(BlueprintCallable)
void SelectPreviousLevel();
UFUNCTION(BlueprintCallable)
void SelectNextQuality();
UFUNCTION(BlueprintCallable)
void SelectPreviousQuality();
void UpdateSelectRobot();
void UpdateSelectLevel();
void UpdateSelectQuality();
2025-03-28 16:13:47 +08:00
public:
UFUNCTION(BlueprintImplementableEvent)
void BPUpdateSelectRobot();
UFUNCTION(BlueprintImplementableEvent)
void BPUpdateSelectLevel();
2025-03-29 22:43:51 +08:00
UFUNCTION(BlueprintImplementableEvent)
void BPUpdateSelectQuality();
2025-03-28 14:45:12 +08:00
};