diff --git a/Content/Blueprint/Game/BP_LobbyGameMode.uasset b/Content/Blueprint/Game/BP_LobbyGameMode.uasset new file mode 100644 index 00000000..7aa1408d Binary files /dev/null and b/Content/Blueprint/Game/BP_LobbyGameMode.uasset differ diff --git a/Content/Blueprint/Game/BP_LobbyPlayerController.uasset b/Content/Blueprint/Game/BP_LobbyPlayerController.uasset new file mode 100644 index 00000000..3dde2d39 Binary files /dev/null and b/Content/Blueprint/Game/BP_LobbyPlayerController.uasset differ diff --git a/Content/Blueprint/Game/BP_LuckyGameState.uasset b/Content/Blueprint/Game/BP_LuckyGameState.uasset index f075c411..548124f0 100644 Binary files a/Content/Blueprint/Game/BP_LuckyGameState.uasset and b/Content/Blueprint/Game/BP_LuckyGameState.uasset differ diff --git a/Content/Map/SelectLevel.umap b/Content/Map/SelectLevel.umap index 01354e91..46fd8bab 100644 Binary files a/Content/Map/SelectLevel.umap and b/Content/Map/SelectLevel.umap differ diff --git a/Content/luckyBot/Luckywidget/WB_MainScreen.uasset b/Content/luckyBot/Luckywidget/WB_MainScreen.uasset index e6905f4e..247ae810 100644 Binary files a/Content/luckyBot/Luckywidget/WB_MainScreen.uasset and b/Content/luckyBot/Luckywidget/WB_MainScreen.uasset differ diff --git a/README.md b/README.md index a4f18d2b..0c0ae7ee 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ -# LuckyRobotUnreal +# LuckyRobotsUnreal diff --git a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp index 143e88c0..7723c1cd 100644 --- a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp +++ b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp @@ -4,7 +4,133 @@ #include "MainScreenUserWidget.h" #include "Engine/DataTable.h" + void UMainScreenUserWidget::InitData() { + InitRobotData(); + InitLevelData(); +} +void UMainScreenUserWidget::InitRobotData() +{ + FLevelData CurrentLevelData = GetCurrentLevelData(); + if (CurrentLevelData.ID > 0) + { + if (RobotDataDataTable) + { + RobotDataList.Empty(); + + FString ContextString; + TArray RowNames = RobotDataDataTable->GetRowNames(); + for (auto RowString : RowNames) + { + FRobotData* pRow = RobotDataDataTable->FindRow(FName(RowString), ContextString); + if (pRow) + { + if (pRow->bActive) + { + if (CurrentLevelData.RobotTypeList.Find(pRow->RobotType) >= 0) + { + RobotDataList.Add(*pRow); + } + } + } + } + } + } + else + { + if (RobotDataDataTable) + { + RobotDataList.Empty(); + + FString ContextString; + TArray RowNames = RobotDataDataTable->GetRowNames(); + for (auto RowString : RowNames) + { + FRobotData* pRow = RobotDataDataTable->FindRow(FName(RowString), ContextString); + if (pRow) + { + if (pRow->bActive) + { + RobotDataList.Add(*pRow); + } + } + } + } + } + + BPUpdateSelectRobot(); +} + +void UMainScreenUserWidget::InitLevelData() +{ + FRobotData CurrentRobotData = GetCurrentRobotData(); + if (!CurrentRobotData.Name.IsEmpty()) + { + if (LevelDataTable) + { + LevelDataList.Empty(); + + FString ContextString; + TArray RowNames = LevelDataTable->GetRowNames(); + for (auto RowString : RowNames) + { + FLevelData* pRow = LevelDataTable->FindRow(FName(RowString), ContextString); + if (pRow) + { + if (pRow->bActive) + { + if (pRow->RobotTypeList.Find(CurrentRobotData.RobotType) >= 0) + { + LevelDataList.Add(*pRow); + } + } + } + } + } + } + else + { + if (LevelDataTable) + { + LevelDataList.Empty(); + + FString ContextString; + TArray RowNames = LevelDataTable->GetRowNames(); + for (auto RowString : RowNames) + { + FLevelData* pRow = LevelDataTable->FindRow(FName(RowString), ContextString); + if (pRow) + { + if (pRow->bActive) + { + LevelDataList.Add(*pRow); + } + } + } + } + } + + BPUpdateSelectLevel(); +} + +FRobotData UMainScreenUserWidget::GetCurrentRobotData() +{ + FRobotData CurrentRobotData; + if (RobotDataList.IsValidIndex(iCurrentSelectRobot)) + { + CurrentRobotData = RobotDataList[iCurrentSelectRobot]; + } + return CurrentRobotData; +} + +FLevelData UMainScreenUserWidget::GetCurrentLevelData() +{ + FLevelData CurrentLevelData; + if (LevelDataList.IsValidIndex(iCurrentSelectLevel)) + { + CurrentLevelData = LevelDataList[iCurrentSelectLevel]; + } + return CurrentLevelData; } \ No newline at end of file diff --git a/Source/Luckyrobots/Public/MainScreenUserWidget.h b/Source/Luckyrobots/Public/MainScreenUserWidget.h index 10552ae7..38b442e3 100644 --- a/Source/Luckyrobots/Public/MainScreenUserWidget.h +++ b/Source/Luckyrobots/Public/MainScreenUserWidget.h @@ -4,6 +4,7 @@ #include "CoreMinimal.h" #include "Blueprint/UserWidget.h" +#include "SharedDef.h" #include "MainScreenUserWidget.generated.h" class UDataTable; @@ -21,6 +22,32 @@ public: UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config") UDataTable* LevelDataTable; + public: + UPROPERTY(EditAnywhere, BlueprintReadWrite) + TArray RobotDataList; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + TArray LevelDataList; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + int iCurrentSelectRobot; + UPROPERTY(EditAnywhere, BlueprintReadWrite) + int iCurrentSelectLevel; +public: + UFUNCTION(BlueprintCallable) void InitData(); + UFUNCTION(BlueprintCallable) + void InitRobotData(); + UFUNCTION(BlueprintCallable) + void InitLevelData(); + UFUNCTION(BlueprintCallable) + FRobotData GetCurrentRobotData(); + UFUNCTION(BlueprintCallable) + FLevelData GetCurrentLevelData(); +public: + UFUNCTION(BlueprintImplementableEvent) + void BPUpdateSelectRobot(); + UFUNCTION(BlueprintImplementableEvent) + void BPUpdateSelectLevel(); }; diff --git a/Source/Luckyrobots/Public/SharedDef.h b/Source/Luckyrobots/Public/SharedDef.h index ebb3f86d..b89cab6b 100644 --- a/Source/Luckyrobots/Public/SharedDef.h +++ b/Source/Luckyrobots/Public/SharedDef.h @@ -1,6 +1,5 @@ #pragma once -#include "Engine/DataTable.h" #include "SharedDef.generated.h"