diff --git a/Content/Blueprint/Core/BP_3DtextHelp.uasset b/Content/Blueprint/Core/BP_3DtextHelp.uasset index fef43069..2e1479b1 100644 Binary files a/Content/Blueprint/Core/BP_3DtextHelp.uasset and b/Content/Blueprint/Core/BP_3DtextHelp.uasset differ diff --git a/Content/Blueprint/Game/BP_LuckyGameState.uasset b/Content/Blueprint/Game/BP_LuckyGameState.uasset index 38572b2e..0e09c4db 100644 Binary files a/Content/Blueprint/Game/BP_LuckyGameState.uasset and b/Content/Blueprint/Game/BP_LuckyGameState.uasset differ diff --git a/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset b/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset index c8578e1d..b8717f1b 100644 Binary files a/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset and b/Content/Blueprint/Game/BP_LuckyGameinstanceMode.uasset differ diff --git a/Content/Blueprint/Game/BP_LuckyRobots.uasset b/Content/Blueprint/Game/BP_LuckyRobots.uasset index c0d2557d..1470abca 100644 Binary files a/Content/Blueprint/Game/BP_LuckyRobots.uasset and b/Content/Blueprint/Game/BP_LuckyRobots.uasset differ diff --git a/Content/Blueprint/RobotPawnActors/BP_mujokoStretch.uasset b/Content/Blueprint/RobotPawnActors/BP_mujokoStretch.uasset index 5a72e633..2e6f3df7 100644 Binary files a/Content/Blueprint/RobotPawnActors/BP_mujokoStretch.uasset and b/Content/Blueprint/RobotPawnActors/BP_mujokoStretch.uasset differ diff --git a/Content/GameBP/BP_LobbyGameMode.uasset b/Content/GameBP/BP_LobbyGameMode.uasset index bc283f10..cf1b58d8 100644 Binary files a/Content/GameBP/BP_LobbyGameMode.uasset and b/Content/GameBP/BP_LobbyGameMode.uasset differ diff --git a/Content/GameBP/BP_LuckyRobotsPlayerController.uasset b/Content/GameBP/BP_LuckyRobotsPlayerController.uasset new file mode 100644 index 00000000..22c215c2 Binary files /dev/null and b/Content/GameBP/BP_LuckyRobotsPlayerController.uasset differ diff --git a/Content/Map/simpleTestMap.umap b/Content/Map/simpleTestMap.umap index 0fb9b250..e48519a7 100644 Binary files a/Content/Map/simpleTestMap.umap and b/Content/Map/simpleTestMap.umap differ diff --git a/Content/luckyBot/Luckywidget/WB_AddModelScreen.uasset b/Content/luckyBot/Luckywidget/WB_AddModelScreen.uasset index 92a6222e..9ec16611 100644 Binary files a/Content/luckyBot/Luckywidget/WB_AddModelScreen.uasset and b/Content/luckyBot/Luckywidget/WB_AddModelScreen.uasset differ diff --git a/Content/luckyBot/Luckywidget/WB_GameWidget.uasset b/Content/luckyBot/Luckywidget/WB_GameWidget.uasset index 710213cd..239d0fa5 100644 Binary files a/Content/luckyBot/Luckywidget/WB_GameWidget.uasset and b/Content/luckyBot/Luckywidget/WB_GameWidget.uasset differ diff --git a/Content/luckyBot/Luckywidget/WB_MainScreen.uasset b/Content/luckyBot/Luckywidget/WB_MainScreen.uasset index 28be5a37..26ef76cf 100644 Binary files a/Content/luckyBot/Luckywidget/WB_MainScreen.uasset and b/Content/luckyBot/Luckywidget/WB_MainScreen.uasset differ diff --git a/Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp b/Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp new file mode 100644 index 00000000..6492f0a5 --- /dev/null +++ b/Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp @@ -0,0 +1,57 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "LuckyRobotsFunctionLibrary.h" +#include "LuckyRobotsGameInstance.h" + +TArray ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(const UObject* WorldContextObject) +{ + TArray RobotDataList; + ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast(WorldContextObject->GetWorld()->GetGameInstance()); + if (LuckyRobotsGameInstance) + { + if (LuckyRobotsGameInstance->RobotDataDataTable) + { + FString ContextString; + TArray RowNames = LuckyRobotsGameInstance->RobotDataDataTable->GetRowNames(); + for (auto RowString : RowNames) + { + FRobotData* pRow = LuckyRobotsGameInstance->RobotDataDataTable->FindRow(FName(RowString), ContextString); + if (pRow) + { + if (pRow->bActive) + { + RobotDataList.Add(*pRow); + } + } + } + } + } + return RobotDataList; +} + +TArray ULuckyRobotsFunctionLibrary::GetActiveLevelDataList(const UObject* WorldContextObject) +{ + TArray LevelDataList; + ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast(WorldContextObject->GetWorld()->GetGameInstance()); + if (LuckyRobotsGameInstance) + { + if (LuckyRobotsGameInstance->LevelDataTable) + { + FString ContextString; + TArray RowNames = LuckyRobotsGameInstance->LevelDataTable->GetRowNames(); + for (auto RowString : RowNames) + { + FLevelData* pRow = LuckyRobotsGameInstance->LevelDataTable->FindRow(FName(RowString), ContextString); + if (pRow) + { + if (pRow->bActive) + { + LevelDataList.Add(*pRow); + } + } + } + } + } + return LevelDataList; +} \ No newline at end of file diff --git a/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp b/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp index 4eea9db1..11d2ccde 100644 --- a/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp +++ b/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp @@ -2,4 +2,31 @@ #include "LuckyRobotsGameMode.h" +#include "LuckyRobotsGameInstance.h" +#include "LuckyRobotsFunctionLibrary.h" +UClass* ALuckyRobotsGameMode::GetDefaultPawnClassForController_Implementation(AController* InController) +{ + UClass* RobotClass = Super::GetDefaultPawnClassForController_Implementation(InController); + + ERobotsName CurrentRobot = ERobotsName::None; + ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast(GetGameInstance()); + if (LuckyRobotsGameInstance) + { + CurrentRobot = LuckyRobotsGameInstance->CurrentSelectRobot; + } + if (CurrentRobot != ERobotsName::None) + { + TArray ActiveRobotDataList = ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(this); + for (auto ActiveRobotData : ActiveRobotDataList) + { + if (ActiveRobotData.Name == CurrentRobot) + { + RobotClass = ActiveRobotData.RobotClass; + break; + } + } + } + + return RobotClass; +} \ No newline at end of file diff --git a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp index 93ca25e8..b460f625 100644 --- a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp +++ b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp @@ -4,6 +4,7 @@ #include "MainScreenUserWidget.h" #include "Engine/DataTable.h" #include "LuckyRobotsGameInstance.h" +#include "LuckyRobotsFunctionLibrary.h" void UMainScreenUserWidget::NativeConstruct() { @@ -20,38 +21,13 @@ void UMainScreenUserWidget::InitData() ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast(GetGameInstance()); if (LuckyRobotsGameInstance) { - UEnum* QualityEnum = StaticEnum(); - for (int32 i = 0; i < QualityEnum->NumEnums() - 1; i++) - { - if (EQualityEnum(QualityEnum->GetValueByIndex(i)) == LuckyRobotsGameInstance->CurrentSelectQuality) - { - iCurrentSelectRobot = i; - break; - } - } + iCurrentSelectQuality = int(LuckyRobotsGameInstance->CurrentSelectQuality); } } void UMainScreenUserWidget::InitRobotData() { - 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); - } - } - } - } + RobotDataList = ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(this); iCurrentSelectRobot = 0; UpdateSelectRobot(); @@ -59,49 +35,19 @@ void UMainScreenUserWidget::InitRobotData() void UMainScreenUserWidget::InitLevelData() { + LevelDataList = ULuckyRobotsFunctionLibrary::GetActiveLevelDataList(this); + FRobotData CurrentRobotData = GetCurrentRobotData(); if (CurrentRobotData.Name != ERobotsName::None) { - if (LevelDataTable) - { - LevelDataList.Empty(); + TArray ActiveLevelDataList = LevelDataList; - 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(); + for (auto ActiveLevelData : ActiveLevelDataList) { - LevelDataList.Empty(); - - FString ContextString; - TArray RowNames = LevelDataTable->GetRowNames(); - for (auto RowString : RowNames) + if (ActiveLevelData.RobotTypeList.Find(CurrentRobotData.RobotType) >= 0) { - FLevelData* pRow = LevelDataTable->FindRow(FName(RowString), ContextString); - if (pRow) - { - if (pRow->bActive) - { - LevelDataList.Add(*pRow); - } - } + LevelDataList.Add(ActiveLevelData); } } } @@ -197,8 +143,7 @@ void UMainScreenUserWidget::UpdateSelectQuality() ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast(GetGameInstance()); if (LuckyRobotsGameInstance) { - UEnum* QualityEnum = StaticEnum(); - LuckyRobotsGameInstance->CurrentSelectQuality = EQualityEnum(QualityEnum->GetValueByIndex(iCurrentSelectQuality)); + LuckyRobotsGameInstance->CurrentSelectQuality = static_cast(iCurrentSelectQuality); } BPUpdateSelectQuality(); } \ No newline at end of file diff --git a/Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h b/Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h new file mode 100644 index 00000000..264ea658 --- /dev/null +++ b/Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h @@ -0,0 +1,23 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "Kismet/BlueprintFunctionLibrary.h" +#include "SharedDef.h" +#include "LuckyRobotsFunctionLibrary.generated.h" + +/** + * + */ +UCLASS() +class LUCKYROBOTS_API ULuckyRobotsFunctionLibrary : public UBlueprintFunctionLibrary +{ + GENERATED_BODY() +public: + UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject")) + static TArray GetActiveRobotDataList(const UObject* WorldContextObject); + + UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject")) + static TArray GetActiveLevelDataList(const UObject* WorldContextObject); +}; diff --git a/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h b/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h index f1c48776..4b699f27 100644 --- a/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h +++ b/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h @@ -15,6 +15,13 @@ class LUCKYROBOTS_API ULuckyRobotsGameInstance : public UGameInstance { GENERATED_BODY() +public: + UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config") + UDataTable* RobotDataDataTable; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config") + UDataTable* LevelDataTable; + public: UPROPERTY(EditAnywhere, BlueprintReadWrite) ERobotsName CurrentSelectRobot; @@ -24,4 +31,6 @@ public: UPROPERTY(EditAnywhere, BlueprintReadWrite) EQualityEnum CurrentSelectQuality; + + }; diff --git a/Source/Luckyrobots/Public/LuckyRobotsGameMode.h b/Source/Luckyrobots/Public/LuckyRobotsGameMode.h index d36ec760..20694e67 100644 --- a/Source/Luckyrobots/Public/LuckyRobotsGameMode.h +++ b/Source/Luckyrobots/Public/LuckyRobotsGameMode.h @@ -13,5 +13,7 @@ UCLASS() class LUCKYROBOTS_API ALuckyRobotsGameMode : public AGameModeBase { GENERATED_BODY() - +public: + virtual UClass* GetDefaultPawnClassForController_Implementation(AController* InController) override; + }; diff --git a/Source/Luckyrobots/Public/MainScreenUserWidget.h b/Source/Luckyrobots/Public/MainScreenUserWidget.h index f2327457..7e30945d 100644 --- a/Source/Luckyrobots/Public/MainScreenUserWidget.h +++ b/Source/Luckyrobots/Public/MainScreenUserWidget.h @@ -18,13 +18,6 @@ class LUCKYROBOTS_API UMainScreenUserWidget : public UUserWidget protected: virtual void NativeConstruct(); -public: - UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config") - UDataTable* RobotDataDataTable; - - UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config") - UDataTable* LevelDataTable; - public: UPROPERTY(EditAnywhere, BlueprintReadWrite) TArray RobotDataList;