diff --git a/Source/Luckyrobots/Private/LobbyGameMode.cpp b/Source/Luckyrobots/Private/LobbyGameMode.cpp deleted file mode 100644 index 9e3b6e73..00000000 --- a/Source/Luckyrobots/Private/LobbyGameMode.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "LobbyGameMode.h" - diff --git a/Source/Luckyrobots/Private/LobbyPlayerController.cpp b/Source/Luckyrobots/Private/LobbyPlayerController.cpp deleted file mode 100644 index 6aa12218..00000000 --- a/Source/Luckyrobots/Private/LobbyPlayerController.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "LobbyPlayerController.h" - -void ALobbyPlayerController::BeginPlay() -{ - Super::BeginPlay(); - - Init(); -} - -void ALobbyPlayerController::SetupInputComponent() -{ - Super::SetupInputComponent(); - - InputComponent->BindAction("LobbyInit", IE_Pressed, this, &ALobbyPlayerController::Init).bConsumeInput = false; - InputComponent->BindAction("LobbyInit", IE_Released, this, &ALobbyPlayerController::Init).bConsumeInput = false; -} - -void ALobbyPlayerController::Init() -{ - bShowMouseCursor = true; - SetIgnoreMoveInput(true); -} \ No newline at end of file diff --git a/Source/Luckyrobots/Private/LuckyrobotsGameInstance.cpp b/Source/Luckyrobots/Private/LuckyrobotsGameInstance.cpp deleted file mode 100644 index 6e26a695..00000000 --- a/Source/Luckyrobots/Private/LuckyrobotsGameInstance.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "LuckyrobotsGameInstance.h" - diff --git a/Source/Luckyrobots/Private/LuckyrobotsGameMode.cpp b/Source/Luckyrobots/Private/LuckyrobotsGameMode.cpp deleted file mode 100644 index c63ae175..00000000 --- a/Source/Luckyrobots/Private/LuckyrobotsGameMode.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "LuckyrobotsGameMode.h" - diff --git a/Source/Luckyrobots/Private/LuckyrobotsGameState.cpp b/Source/Luckyrobots/Private/LuckyrobotsGameState.cpp deleted file mode 100644 index 331af16a..00000000 --- a/Source/Luckyrobots/Private/LuckyrobotsGameState.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "LuckyrobotsGameState.h" - diff --git a/Source/Luckyrobots/Private/LuckyrobotsPlayerController.cpp b/Source/Luckyrobots/Private/LuckyrobotsPlayerController.cpp deleted file mode 100644 index e175d0ee..00000000 --- a/Source/Luckyrobots/Private/LuckyrobotsPlayerController.cpp +++ /dev/null @@ -1,5 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "LuckyrobotsPlayerController.h" - diff --git a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp deleted file mode 100644 index 8d238ccf..00000000 --- a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp +++ /dev/null @@ -1,204 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - - -#include "MainScreenUserWidget.h" -#include "Engine/DataTable.h" -#include "LuckyrobotsGameInstance.h" - -void UMainScreenUserWidget::NativeConstruct() -{ - Super::NativeConstruct(); - - InitData(); -} - -void UMainScreenUserWidget::InitData() -{ - InitRobotData(); - InitLevelData(); - - 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; - } - } - } -} - -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); - } - } - } - } - - iCurrentSelectRobot = 0; - UpdateSelectRobot(); -} - -void UMainScreenUserWidget::InitLevelData() -{ - FRobotData CurrentRobotData = GetCurrentRobotData(); - if (CurrentRobotData.Name != ERobotsName::None) - { - 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); - } - } - } - } - } - - iCurrentSelectLevel = 0; - UpdateSelectLevel(); -} - -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; -} - -void UMainScreenUserWidget::SelectNextRobot() -{ - iCurrentSelectRobot = FMath::Clamp(iCurrentSelectRobot + 1, 0, RobotDataList.Num() - 1); - UpdateSelectRobot(); -} - -void UMainScreenUserWidget::SelectPreviousRobot() -{ - iCurrentSelectRobot = FMath::Clamp(iCurrentSelectRobot - 1, 0, RobotDataList.Num() - 1); - UpdateSelectRobot(); -} - -void UMainScreenUserWidget::SelectNextLevel() -{ - iCurrentSelectLevel = FMath::Clamp(iCurrentSelectLevel + 1, 0, LevelDataList.Num() - 1); - UpdateSelectLevel(); -} - -void UMainScreenUserWidget::SelectPreviousLevel() -{ - iCurrentSelectLevel = FMath::Clamp(iCurrentSelectLevel - 1, 0, LevelDataList.Num() - 1); - UpdateSelectLevel(); -} - -void UMainScreenUserWidget::SelectNextQuality() -{ - UEnum* QualityEnum = StaticEnum(); - int QualityEnumNum = QualityEnum->NumEnums() - 1; - iCurrentSelectQuality = FMath::Clamp(iCurrentSelectQuality + 1, 0, QualityEnumNum - 1); - - UpdateSelectQuality(); -} - -void UMainScreenUserWidget::SelectPreviousQuality() -{ - UEnum* QualityEnum = StaticEnum(); - int QualityEnumNum = QualityEnum->NumEnums() - 1; - iCurrentSelectQuality = FMath::Clamp(iCurrentSelectQuality - 1, 0, QualityEnumNum - 1); - - UpdateSelectQuality(); -} - -void UMainScreenUserWidget::UpdateSelectRobot() -{ - ULuckyrobotsGameInstance* LuckyrobotsGameInstance = Cast(GetGameInstance()); - if (LuckyrobotsGameInstance) - { - LuckyrobotsGameInstance->CurrentSelectRobot = GetCurrentRobotData().Name; - } - BPUpdateSelectRobot(); - InitLevelData(); -} -void UMainScreenUserWidget::UpdateSelectLevel() -{ - ULuckyrobotsGameInstance* LuckyrobotsGameInstance = Cast(GetGameInstance()); - if (LuckyrobotsGameInstance) - { - LuckyrobotsGameInstance->CurrentSelectLevel = GetCurrentLevelData().LevelEnum; - } - BPUpdateSelectLevel(); -} - -void UMainScreenUserWidget::UpdateSelectQuality() -{ - ULuckyrobotsGameInstance* LuckyrobotsGameInstance = Cast(GetGameInstance()); - if (LuckyrobotsGameInstance) - { - UEnum* QualityEnum = StaticEnum(); - LuckyrobotsGameInstance->CurrentSelectQuality = EQualityEnum(QualityEnum->GetValueByIndex(iCurrentSelectQuality)); - } - BPUpdateSelectQuality(); -} \ No newline at end of file diff --git a/Source/Luckyrobots/Public/LobbyGameMode.h b/Source/Luckyrobots/Public/LobbyGameMode.h deleted file mode 100644 index 636fabba..00000000 --- a/Source/Luckyrobots/Public/LobbyGameMode.h +++ /dev/null @@ -1,17 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - -#pragma once - -#include "CoreMinimal.h" -#include "GameFramework/GameModeBase.h" -#include "LobbyGameMode.generated.h" - -/** - * - */ -UCLASS() -class LUCKYROBOTS_API ALobbyGameMode : public AGameModeBase -{ - GENERATED_BODY() - -}; diff --git a/Source/Luckyrobots/Public/LobbyPlayerController.h b/Source/Luckyrobots/Public/LobbyPlayerController.h deleted file mode 100644 index 119f9f6f..00000000 --- a/Source/Luckyrobots/Public/LobbyPlayerController.h +++ /dev/null @@ -1,24 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - -#pragma once - -#include "CoreMinimal.h" -#include "GameFramework/PlayerController.h" -#include "LobbyPlayerController.generated.h" - -/** - * - */ -UCLASS() -class LUCKYROBOTS_API ALobbyPlayerController : public APlayerController -{ - GENERATED_BODY() - -protected: - virtual void BeginPlay() override; - virtual void SetupInputComponent() override; - -public: - void Init(); - -}; diff --git a/Source/Luckyrobots/Public/LuckyrobotsGameInstance.h b/Source/Luckyrobots/Public/LuckyrobotsGameInstance.h deleted file mode 100644 index 370a774e..00000000 --- a/Source/Luckyrobots/Public/LuckyrobotsGameInstance.h +++ /dev/null @@ -1,27 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - -#pragma once - -#include "CoreMinimal.h" -#include "Engine/GameInstance.h" -#include "SharedDef.h" -#include "LuckyrobotsGameInstance.generated.h" - -/** - * - */ -UCLASS() -class LUCKYROBOTS_API ULuckyrobotsGameInstance : public UGameInstance -{ - GENERATED_BODY() - -public: - UPROPERTY(EditAnywhere, BlueprintReadWrite) - ERobotsName CurrentSelectRobot; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - ELevelEnum CurrentSelectLevel; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - EQualityEnum CurrentSelectQuality; -}; diff --git a/Source/Luckyrobots/Public/LuckyrobotsGameMode.h b/Source/Luckyrobots/Public/LuckyrobotsGameMode.h deleted file mode 100644 index 917ba710..00000000 --- a/Source/Luckyrobots/Public/LuckyrobotsGameMode.h +++ /dev/null @@ -1,17 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - -#pragma once - -#include "CoreMinimal.h" -#include "GameFramework/GameModeBase.h" -#include "LuckyrobotsGameMode.generated.h" - -/** - * - */ -UCLASS() -class LUCKYROBOTS_API ALuckyrobotsGameMode : public AGameModeBase -{ - GENERATED_BODY() - -}; diff --git a/Source/Luckyrobots/Public/LuckyrobotsGameState.h b/Source/Luckyrobots/Public/LuckyrobotsGameState.h deleted file mode 100644 index 0a8fbbd7..00000000 --- a/Source/Luckyrobots/Public/LuckyrobotsGameState.h +++ /dev/null @@ -1,17 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - -#pragma once - -#include "CoreMinimal.h" -#include "GameFramework/GameStateBase.h" -#include "LuckyrobotsGameState.generated.h" - -/** - * - */ -UCLASS() -class LUCKYROBOTS_API ALuckyrobotsGameState : public AGameStateBase -{ - GENERATED_BODY() - -}; diff --git a/Source/Luckyrobots/Public/LuckyrobotsPlayerController.h b/Source/Luckyrobots/Public/LuckyrobotsPlayerController.h deleted file mode 100644 index 490537b0..00000000 --- a/Source/Luckyrobots/Public/LuckyrobotsPlayerController.h +++ /dev/null @@ -1,17 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - -#pragma once - -#include "CoreMinimal.h" -#include "GameFramework/PlayerController.h" -#include "LuckyrobotsPlayerController.generated.h" - -/** - * - */ -UCLASS() -class LUCKYROBOTS_API ALuckyrobotsPlayerController : public APlayerController -{ - GENERATED_BODY() - -}; diff --git a/Source/Luckyrobots/Public/MainScreenUserWidget.h b/Source/Luckyrobots/Public/MainScreenUserWidget.h deleted file mode 100644 index f2327457..00000000 --- a/Source/Luckyrobots/Public/MainScreenUserWidget.h +++ /dev/null @@ -1,84 +0,0 @@ -// Fill out your copyright notice in the Description page of Project Settings. - -#pragma once - -#include "CoreMinimal.h" -#include "Blueprint/UserWidget.h" -#include "SharedDef.h" -#include "MainScreenUserWidget.generated.h" - -class UDataTable; -/** - * - */ -UCLASS() -class LUCKYROBOTS_API UMainScreenUserWidget : public UUserWidget -{ - GENERATED_BODY() -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; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - TArray LevelDataList; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - int iCurrentSelectRobot; - UPROPERTY(EditAnywhere, BlueprintReadWrite) - int iCurrentSelectLevel; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - int iCurrentSelectQuality; - -public: - UFUNCTION(BlueprintCallable) - void InitData(); - UFUNCTION(BlueprintCallable) - void InitRobotData(); - UFUNCTION(BlueprintCallable) - void InitLevelData(); - UFUNCTION(BlueprintCallable) - FRobotData GetCurrentRobotData(); - UFUNCTION(BlueprintCallable) - FLevelData GetCurrentLevelData(); - - 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(); - -public: - UFUNCTION(BlueprintImplementableEvent) - void BPUpdateSelectRobot(); - UFUNCTION(BlueprintImplementableEvent) - void BPUpdateSelectLevel(); - UFUNCTION(BlueprintImplementableEvent) - void BPUpdateSelectQuality(); -}; diff --git a/Source/Luckyrobots/Public/SharedDef.h b/Source/Luckyrobots/Public/SharedDef.h deleted file mode 100644 index e5bb1cb6..00000000 --- a/Source/Luckyrobots/Public/SharedDef.h +++ /dev/null @@ -1,126 +0,0 @@ -#pragma once - -#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 ERobotsName : uint8 -{ - None UMETA(DisplayName = "None"), - Luck_e UMETA(DisplayName = "Luck-e"), - Stretch UMETA(DisplayName = "Stretch"), - LuckyDrone UMETA(DisplayName = "Lucky Drone"), - DJIDrone UMETA(DisplayName = "DJI Drone"), - ArmLucky UMETA(DisplayName = "Arm Lucky"), - UnitreeG1 UMETA(DisplayName = "Unitree G1"), - StretchRobotV1 UMETA(DisplayName = "Stretch Robot V1"), - PandaArmRobot UMETA(DisplayName = "Panda Arm Robot"), - PuralinkRobot UMETA(DisplayName = "Puralink Robot"), - UnitreeGo2 UMETA(DisplayName = "Unitree Go 2"), - RevoluteRobot UMETA(DisplayName = "Revolute Robot"), - BostonSpotRobot UMETA(DisplayName = "Boston Spot Robot") -}; - -UENUM(BlueprintType) -enum class ELevelType : uint8 -{ - Home UMETA(DisplayName = "Home"), - Office UMETA(DisplayName = "Office"), - Street UMETA(DisplayName = "Street"), - TestLevel UMETA(DisplayName = "TestLevel") -}; - -UENUM(BlueprintType) -enum class ELevelEnum : uint8 -{ - None UMETA(DisplayName = "None"), - TestLevel UMETA(DisplayName = "Test Level"), - Loft UMETA(DisplayName = "Loft"), - Rome UMETA(DisplayName = "Rome"), - Paris UMETA(DisplayName = "Paris"), - Marseille UMETA(DisplayName = "Marseille"), - Istanbul UMETA(DisplayName = "Istanbul"), - Office UMETA(DisplayName = "Office"), - BasicForest UMETA(DisplayName = "Basic Forest"), - NaturalForest UMETA(DisplayName = "Natural Forest"), - KitchenForArmRobot UMETA(DisplayName = "Kitchen for Arm Robot"), - PipeFabric UMETA(DisplayName = "Pipe Fabric") -}; - -UENUM(BlueprintType) -enum class EQualityEnum : uint8 -{ - Epic UMETA(DisplayName = "Epic"), - High UMETA(DisplayName = "High"), - Middle UMETA(DisplayName = "Middle"), - Low UMETA(DisplayName = "Low") -}; - -USTRUCT(BlueprintType) -struct FRobotData : public FTableRowBase -{ - GENERATED_BODY() -public: - UPROPERTY(EditAnywhere, BlueprintReadWrite) - ERobotsName 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) - FText HelpText; -}; - -USTRUCT(BlueprintType) -struct FLevelData : public FTableRowBase -{ - GENERATED_BODY() -public: - UPROPERTY(EditAnywhere, BlueprintReadWrite) - int ID; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - ELevelEnum LevelEnum; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - ELevelType LevelType; - - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - FString LevelName; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - UTexture2D* LevelImage; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - bool bActive; - - UPROPERTY(EditAnywhere, BlueprintReadWrite) - TArray RobotTypeList; -}; \ No newline at end of file