Organize the code related to selecting robots and levels in blueprints into C++, and organize the related referenced blueprints
This commit is contained in:
parent
73fb958f07
commit
c35cf74b49
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Content/GameBP/BP_LuckyRobotsPlayerController.uasset
Normal file
BIN
Content/GameBP/BP_LuckyRobotsPlayerController.uasset
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
57
Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp
Normal file
57
Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||||||
|
|
||||||
|
|
||||||
|
#include "LuckyRobotsFunctionLibrary.h"
|
||||||
|
#include "LuckyRobotsGameInstance.h"
|
||||||
|
|
||||||
|
TArray<FRobotData> ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(const UObject* WorldContextObject)
|
||||||
|
{
|
||||||
|
TArray<FRobotData> RobotDataList;
|
||||||
|
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(WorldContextObject->GetWorld()->GetGameInstance());
|
||||||
|
if (LuckyRobotsGameInstance)
|
||||||
|
{
|
||||||
|
if (LuckyRobotsGameInstance->RobotDataDataTable)
|
||||||
|
{
|
||||||
|
FString ContextString;
|
||||||
|
TArray<FName> RowNames = LuckyRobotsGameInstance->RobotDataDataTable->GetRowNames();
|
||||||
|
for (auto RowString : RowNames)
|
||||||
|
{
|
||||||
|
FRobotData* pRow = LuckyRobotsGameInstance->RobotDataDataTable->FindRow<FRobotData>(FName(RowString), ContextString);
|
||||||
|
if (pRow)
|
||||||
|
{
|
||||||
|
if (pRow->bActive)
|
||||||
|
{
|
||||||
|
RobotDataList.Add(*pRow);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return RobotDataList;
|
||||||
|
}
|
||||||
|
|
||||||
|
TArray<FLevelData> ULuckyRobotsFunctionLibrary::GetActiveLevelDataList(const UObject* WorldContextObject)
|
||||||
|
{
|
||||||
|
TArray<FLevelData> LevelDataList;
|
||||||
|
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(WorldContextObject->GetWorld()->GetGameInstance());
|
||||||
|
if (LuckyRobotsGameInstance)
|
||||||
|
{
|
||||||
|
if (LuckyRobotsGameInstance->LevelDataTable)
|
||||||
|
{
|
||||||
|
FString ContextString;
|
||||||
|
TArray<FName> RowNames = LuckyRobotsGameInstance->LevelDataTable->GetRowNames();
|
||||||
|
for (auto RowString : RowNames)
|
||||||
|
{
|
||||||
|
FLevelData* pRow = LuckyRobotsGameInstance->LevelDataTable->FindRow<FLevelData>(FName(RowString), ContextString);
|
||||||
|
if (pRow)
|
||||||
|
{
|
||||||
|
if (pRow->bActive)
|
||||||
|
{
|
||||||
|
LevelDataList.Add(*pRow);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return LevelDataList;
|
||||||
|
}
|
@ -2,4 +2,31 @@
|
|||||||
|
|
||||||
|
|
||||||
#include "LuckyRobotsGameMode.h"
|
#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<ULuckyRobotsGameInstance>(GetGameInstance());
|
||||||
|
if (LuckyRobotsGameInstance)
|
||||||
|
{
|
||||||
|
CurrentRobot = LuckyRobotsGameInstance->CurrentSelectRobot;
|
||||||
|
}
|
||||||
|
if (CurrentRobot != ERobotsName::None)
|
||||||
|
{
|
||||||
|
TArray<FRobotData> ActiveRobotDataList = ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(this);
|
||||||
|
for (auto ActiveRobotData : ActiveRobotDataList)
|
||||||
|
{
|
||||||
|
if (ActiveRobotData.Name == CurrentRobot)
|
||||||
|
{
|
||||||
|
RobotClass = ActiveRobotData.RobotClass;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return RobotClass;
|
||||||
|
}
|
@ -4,6 +4,7 @@
|
|||||||
#include "MainScreenUserWidget.h"
|
#include "MainScreenUserWidget.h"
|
||||||
#include "Engine/DataTable.h"
|
#include "Engine/DataTable.h"
|
||||||
#include "LuckyRobotsGameInstance.h"
|
#include "LuckyRobotsGameInstance.h"
|
||||||
|
#include "LuckyRobotsFunctionLibrary.h"
|
||||||
|
|
||||||
void UMainScreenUserWidget::NativeConstruct()
|
void UMainScreenUserWidget::NativeConstruct()
|
||||||
{
|
{
|
||||||
@ -20,38 +21,13 @@ void UMainScreenUserWidget::InitData()
|
|||||||
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
||||||
if (LuckyRobotsGameInstance)
|
if (LuckyRobotsGameInstance)
|
||||||
{
|
{
|
||||||
UEnum* QualityEnum = StaticEnum<EQualityEnum>();
|
iCurrentSelectQuality = int(LuckyRobotsGameInstance->CurrentSelectQuality);
|
||||||
for (int32 i = 0; i < QualityEnum->NumEnums() - 1; i++)
|
|
||||||
{
|
|
||||||
if (EQualityEnum(QualityEnum->GetValueByIndex(i)) == LuckyRobotsGameInstance->CurrentSelectQuality)
|
|
||||||
{
|
|
||||||
iCurrentSelectRobot = i;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UMainScreenUserWidget::InitRobotData()
|
void UMainScreenUserWidget::InitRobotData()
|
||||||
{
|
{
|
||||||
if (RobotDataDataTable)
|
RobotDataList = ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(this);
|
||||||
{
|
|
||||||
RobotDataList.Empty();
|
|
||||||
|
|
||||||
FString ContextString;
|
|
||||||
TArray<FName> RowNames = RobotDataDataTable->GetRowNames();
|
|
||||||
for (auto RowString : RowNames)
|
|
||||||
{
|
|
||||||
FRobotData* pRow = RobotDataDataTable->FindRow<FRobotData>(FName(RowString), ContextString);
|
|
||||||
if (pRow)
|
|
||||||
{
|
|
||||||
if (pRow->bActive)
|
|
||||||
{
|
|
||||||
RobotDataList.Add(*pRow);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
iCurrentSelectRobot = 0;
|
iCurrentSelectRobot = 0;
|
||||||
UpdateSelectRobot();
|
UpdateSelectRobot();
|
||||||
@ -59,49 +35,19 @@ void UMainScreenUserWidget::InitRobotData()
|
|||||||
|
|
||||||
void UMainScreenUserWidget::InitLevelData()
|
void UMainScreenUserWidget::InitLevelData()
|
||||||
{
|
{
|
||||||
|
LevelDataList = ULuckyRobotsFunctionLibrary::GetActiveLevelDataList(this);
|
||||||
|
|
||||||
FRobotData CurrentRobotData = GetCurrentRobotData();
|
FRobotData CurrentRobotData = GetCurrentRobotData();
|
||||||
if (CurrentRobotData.Name != ERobotsName::None)
|
if (CurrentRobotData.Name != ERobotsName::None)
|
||||||
{
|
{
|
||||||
if (LevelDataTable)
|
TArray<FLevelData> ActiveLevelDataList = LevelDataList;
|
||||||
{
|
|
||||||
LevelDataList.Empty();
|
|
||||||
|
|
||||||
FString ContextString;
|
LevelDataList.Empty();
|
||||||
TArray<FName> RowNames = LevelDataTable->GetRowNames();
|
for (auto ActiveLevelData : ActiveLevelDataList)
|
||||||
for (auto RowString : RowNames)
|
|
||||||
{
|
|
||||||
FLevelData* pRow = LevelDataTable->FindRow<FLevelData>(FName(RowString), ContextString);
|
|
||||||
if (pRow)
|
|
||||||
{
|
|
||||||
if (pRow->bActive)
|
|
||||||
{
|
|
||||||
if (pRow->RobotTypeList.Find(CurrentRobotData.RobotType) >= 0)
|
|
||||||
{
|
|
||||||
LevelDataList.Add(*pRow);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (LevelDataTable)
|
|
||||||
{
|
{
|
||||||
LevelDataList.Empty();
|
if (ActiveLevelData.RobotTypeList.Find(CurrentRobotData.RobotType) >= 0)
|
||||||
|
|
||||||
FString ContextString;
|
|
||||||
TArray<FName> RowNames = LevelDataTable->GetRowNames();
|
|
||||||
for (auto RowString : RowNames)
|
|
||||||
{
|
{
|
||||||
FLevelData* pRow = LevelDataTable->FindRow<FLevelData>(FName(RowString), ContextString);
|
LevelDataList.Add(ActiveLevelData);
|
||||||
if (pRow)
|
|
||||||
{
|
|
||||||
if (pRow->bActive)
|
|
||||||
{
|
|
||||||
LevelDataList.Add(*pRow);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -197,8 +143,7 @@ void UMainScreenUserWidget::UpdateSelectQuality()
|
|||||||
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast<ULuckyRobotsGameInstance>(GetGameInstance());
|
||||||
if (LuckyRobotsGameInstance)
|
if (LuckyRobotsGameInstance)
|
||||||
{
|
{
|
||||||
UEnum* QualityEnum = StaticEnum<EQualityEnum>();
|
LuckyRobotsGameInstance->CurrentSelectQuality = static_cast<EQualityEnum>(iCurrentSelectQuality);
|
||||||
LuckyRobotsGameInstance->CurrentSelectQuality = EQualityEnum(QualityEnum->GetValueByIndex(iCurrentSelectQuality));
|
|
||||||
}
|
}
|
||||||
BPUpdateSelectQuality();
|
BPUpdateSelectQuality();
|
||||||
}
|
}
|
23
Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h
Normal file
23
Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h
Normal file
@ -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<FRobotData> GetActiveRobotDataList(const UObject* WorldContextObject);
|
||||||
|
|
||||||
|
UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject"))
|
||||||
|
static TArray<FLevelData> GetActiveLevelDataList(const UObject* WorldContextObject);
|
||||||
|
};
|
@ -15,6 +15,13 @@ class LUCKYROBOTS_API ULuckyRobotsGameInstance : public UGameInstance
|
|||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
|
||||||
|
public:
|
||||||
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
|
||||||
|
UDataTable* RobotDataDataTable;
|
||||||
|
|
||||||
|
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
|
||||||
|
UDataTable* LevelDataTable;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
||||||
ERobotsName CurrentSelectRobot;
|
ERobotsName CurrentSelectRobot;
|
||||||
@ -24,4 +31,6 @@ public:
|
|||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
||||||
EQualityEnum CurrentSelectQuality;
|
EQualityEnum CurrentSelectQuality;
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -13,5 +13,7 @@ UCLASS()
|
|||||||
class LUCKYROBOTS_API ALuckyRobotsGameMode : public AGameModeBase
|
class LUCKYROBOTS_API ALuckyRobotsGameMode : public AGameModeBase
|
||||||
{
|
{
|
||||||
GENERATED_BODY()
|
GENERATED_BODY()
|
||||||
|
public:
|
||||||
|
virtual UClass* GetDefaultPawnClassForController_Implementation(AController* InController) override;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -18,13 +18,6 @@ class LUCKYROBOTS_API UMainScreenUserWidget : public UUserWidget
|
|||||||
protected:
|
protected:
|
||||||
virtual void NativeConstruct();
|
virtual void NativeConstruct();
|
||||||
|
|
||||||
public:
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
|
|
||||||
UDataTable* RobotDataDataTable;
|
|
||||||
|
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Config")
|
|
||||||
UDataTable* LevelDataTable;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
UPROPERTY(EditAnywhere, BlueprintReadWrite)
|
||||||
TArray<FRobotData> RobotDataList;
|
TArray<FRobotData> RobotDataList;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user