diff --git a/Content/Blueprint/Game/BP_LuckyGameState.uasset b/Content/Blueprint/Game/BP_LuckyGameState.uasset index 0e09c4db..2180cd9d 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 b8717f1b..d5a73623 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 1470abca..babc2f75 100644 Binary files a/Content/Blueprint/Game/BP_LuckyRobots.uasset and b/Content/Blueprint/Game/BP_LuckyRobots.uasset differ diff --git a/Content/Blueprint/Game/BP_SelectScreen.uasset b/Content/Blueprint/Game/BP_SelectScreen.uasset deleted file mode 100644 index be70ac04..00000000 Binary files a/Content/Blueprint/Game/BP_SelectScreen.uasset and /dev/null differ diff --git a/Content/GameBP/BP_LobbyGameMode.uasset b/Content/GameBP/BP_LobbyGameMode.uasset index cf1b58d8..d5711a3a 100644 Binary files a/Content/GameBP/BP_LobbyGameMode.uasset and b/Content/GameBP/BP_LobbyGameMode.uasset differ diff --git a/Content/luckyBot/Luckywidget/WB_MainScreen.uasset b/Content/luckyBot/Luckywidget/WB_MainScreen.uasset index 26ef76cf..f4c1e9fe 100644 Binary files a/Content/luckyBot/Luckywidget/WB_MainScreen.uasset and b/Content/luckyBot/Luckywidget/WB_MainScreen.uasset differ diff --git a/Source/Luckyrobots/Luckyrobots.Build.cs b/Source/Luckyrobots/Luckyrobots.Build.cs index a8ddfca7..b7a16901 100644 --- a/Source/Luckyrobots/Luckyrobots.Build.cs +++ b/Source/Luckyrobots/Luckyrobots.Build.cs @@ -17,8 +17,9 @@ public class Luckyrobots : ModuleRules "LuckyMujoco", "LuckyTextWrite", "SocketIOClient", - "VaRest" - }); + "VaRest", + "SIOJson" + }); PrivateDependencyModuleNames.AddRange(new string[] { }); diff --git a/Source/Luckyrobots/Private/LobbyGameMode.cpp b/Source/Luckyrobots/Private/LobbyGameMode.cpp index 9e3b6e73..c2942b1a 100644 --- a/Source/Luckyrobots/Private/LobbyGameMode.cpp +++ b/Source/Luckyrobots/Private/LobbyGameMode.cpp @@ -2,4 +2,11 @@ #include "LobbyGameMode.h" +#include "LuckyRobotsFunctionLibrary.h" +void ALobbyGameMode::BeginPlay() +{ + Super::BeginPlay(); + + ULuckyRobotsFunctionLibrary::UpdateQualitySettings(this); +} \ No newline at end of file diff --git a/Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp b/Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp index 6492f0a5..3a574c33 100644 --- a/Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp +++ b/Source/Luckyrobots/Private/LuckyRobotsFunctionLibrary.cpp @@ -3,11 +3,17 @@ #include "LuckyRobotsFunctionLibrary.h" #include "LuckyRobotsGameInstance.h" +#include "GameFramework/GameUserSettings.h" + +ULuckyRobotsGameInstance* ULuckyRobotsFunctionLibrary::GetLuckyRobotsGameInstance(const UObject* WorldContextObject) +{ + return Cast(WorldContextObject->GetWorld()->GetGameInstance()); +} TArray ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(const UObject* WorldContextObject) { TArray RobotDataList; - ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast(WorldContextObject->GetWorld()->GetGameInstance()); + ULuckyRobotsGameInstance* LuckyRobotsGameInstance = GetLuckyRobotsGameInstance(WorldContextObject); if (LuckyRobotsGameInstance) { if (LuckyRobotsGameInstance->RobotDataDataTable) @@ -33,7 +39,7 @@ TArray ULuckyRobotsFunctionLibrary::GetActiveRobotDataList(const UOb TArray ULuckyRobotsFunctionLibrary::GetActiveLevelDataList(const UObject* WorldContextObject) { TArray LevelDataList; - ULuckyRobotsGameInstance* LuckyRobotsGameInstance = Cast(WorldContextObject->GetWorld()->GetGameInstance()); + ULuckyRobotsGameInstance* LuckyRobotsGameInstance = GetLuckyRobotsGameInstance(WorldContextObject); if (LuckyRobotsGameInstance) { if (LuckyRobotsGameInstance->LevelDataTable) @@ -54,4 +60,20 @@ TArray ULuckyRobotsFunctionLibrary::GetActiveLevelDataList(const UOb } } return LevelDataList; +} + +void ULuckyRobotsFunctionLibrary::UpdateQualitySettings(const UObject* WorldContextObject) +{ + ULuckyRobotsGameInstance* LuckyRobotsGameInstance = GetLuckyRobotsGameInstance(WorldContextObject); + if (LuckyRobotsGameInstance) + { + // Load game user settings and apply + UGameUserSettings* GameUserSettings = GEngine->GetGameUserSettings(); + if (GameUserSettings) + { + GameUserSettings->SetOverallScalabilityLevel(int(LuckyRobotsGameInstance->CurrentSelectQuality)); + GameUserSettings->SaveSettings(); + GameUserSettings->ApplySettings(true); + } + } } \ No newline at end of file diff --git a/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp b/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp index 11d2ccde..6d7577a4 100644 --- a/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp +++ b/Source/Luckyrobots/Private/LuckyRobotsGameMode.cpp @@ -5,6 +5,13 @@ #include "LuckyRobotsGameInstance.h" #include "LuckyRobotsFunctionLibrary.h" +void ALuckyRobotsGameMode::BeginPlay() +{ + Super::BeginPlay(); + + ULuckyRobotsFunctionLibrary::UpdateQualitySettings(this); +} + UClass* ALuckyRobotsGameMode::GetDefaultPawnClassForController_Implementation(AController* InController) { UClass* RobotClass = Super::GetDefaultPawnClassForController_Implementation(InController); @@ -29,4 +36,5 @@ UClass* ALuckyRobotsGameMode::GetDefaultPawnClassForController_Implementation(AC } return RobotClass; -} \ No newline at end of file +} + diff --git a/Source/Luckyrobots/Private/LuckyRobotsGameState.cpp b/Source/Luckyrobots/Private/LuckyRobotsGameState.cpp index 4f88339c..bb4e6587 100644 --- a/Source/Luckyrobots/Private/LuckyRobotsGameState.cpp +++ b/Source/Luckyrobots/Private/LuckyRobotsGameState.cpp @@ -2,4 +2,54 @@ #include "LuckyRobotsGameState.h" +#include "SocketIOClientComponent.h" +#include "LuckyRobotsFunctionLibrary.h" +#include "LuckyRobotsGameInstance.h" +ALuckyRobotsGameState::ALuckyRobotsGameState() +{ + SocketIOClientComponent = CreateDefaultSubobject(TEXT("SocketIOClientComponent")); +} + +void ALuckyRobotsGameState::BeginPlay() +{ + Super::BeginPlay(); + + if (SocketIOClientComponent) + { + SocketIOClientComponent->Connect(L"http://localhost:3000/"); + } +} + +void ALuckyRobotsGameState::DoSendMessage(FString SendValue) +{ + if (SocketIOClientComponent) + { + if (SocketIOClientComponent->bIsConnected) + { + USIOJsonValue* SIOJsonValue = USIOJsonValue::ConstructJsonValueString(this, SendValue); + SocketIOClientComponent->Emit("message", SIOJsonValue); + } + } +} + + +void ALuckyRobotsGameState::DoSocketOnConnect(FString SocketId, FString SessionId, bool IsReconnection) +{ + if (SocketIOClientComponent) + { + if (SocketIOClientComponent->bIsConnected) + { + SocketIOClientComponent->BindEventToGenericEvent("response"); + } + } +} + +void ALuckyRobotsGameState::DoSocketOnGenericEvent(FString EventName, USIOJsonValue* EventData) +{ + ULuckyRobotsGameInstance* LuckyRobotsGameInstance = ULuckyRobotsFunctionLibrary::GetLuckyRobotsGameInstance(this); + if (LuckyRobotsGameInstance) + { + LuckyRobotsGameInstance->DoGetDispatch(EventName, EventData); + } +} \ No newline at end of file diff --git a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp index b460f625..c06c7dec 100644 --- a/Source/Luckyrobots/Private/MainScreenUserWidget.cpp +++ b/Source/Luckyrobots/Private/MainScreenUserWidget.cpp @@ -104,7 +104,7 @@ void UMainScreenUserWidget::SelectNextQuality() { UEnum* QualityEnum = StaticEnum(); int QualityEnumNum = QualityEnum->NumEnums() - 1; - iCurrentSelectQuality = FMath::Clamp(iCurrentSelectQuality + 1, 0, QualityEnumNum - 1); + iCurrentSelectQuality = FMath::Clamp(iCurrentSelectQuality - 1, 0, QualityEnumNum - 1); UpdateSelectQuality(); } @@ -113,7 +113,7 @@ void UMainScreenUserWidget::SelectPreviousQuality() { UEnum* QualityEnum = StaticEnum(); int QualityEnumNum = QualityEnum->NumEnums() - 1; - iCurrentSelectQuality = FMath::Clamp(iCurrentSelectQuality - 1, 0, QualityEnumNum - 1); + iCurrentSelectQuality = FMath::Clamp(iCurrentSelectQuality + 1, 0, QualityEnumNum - 1); UpdateSelectQuality(); } diff --git a/Source/Luckyrobots/Public/LobbyGameMode.h b/Source/Luckyrobots/Public/LobbyGameMode.h index 636fabba..0702d262 100644 --- a/Source/Luckyrobots/Public/LobbyGameMode.h +++ b/Source/Luckyrobots/Public/LobbyGameMode.h @@ -13,5 +13,7 @@ UCLASS() class LUCKYROBOTS_API ALobbyGameMode : public AGameModeBase { GENERATED_BODY() - + +protected: + virtual void BeginPlay() override; }; diff --git a/Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h b/Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h index 264ea658..d55be048 100644 --- a/Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h +++ b/Source/Luckyrobots/Public/LuckyRobotsFunctionLibrary.h @@ -7,6 +7,7 @@ #include "SharedDef.h" #include "LuckyRobotsFunctionLibrary.generated.h" +class ULuckyRobotsGameInstance; /** * */ @@ -15,9 +16,15 @@ class LUCKYROBOTS_API ULuckyRobotsFunctionLibrary : public UBlueprintFunctionLib { GENERATED_BODY() public: + UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject")) + static ULuckyRobotsGameInstance* GetLuckyRobotsGameInstance(const UObject* WorldContextObject); + UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject")) static TArray GetActiveRobotDataList(const UObject* WorldContextObject); UFUNCTION(BlueprintPure, meta = (WorldContext = "WorldContextObject")) static TArray GetActiveLevelDataList(const UObject* WorldContextObject); + + UFUNCTION(BlueprintCallable, meta = (WorldContext = "WorldContextObject")) + static void UpdateQualitySettings(const UObject* WorldContextObject); }; diff --git a/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h b/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h index 4b699f27..dbfc7a67 100644 --- a/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h +++ b/Source/Luckyrobots/Public/LuckyRobotsGameInstance.h @@ -7,6 +7,7 @@ #include "SharedDef.h" #include "LuckyRobotsGameInstance.generated.h" +class USIOJsonValue; /** * */ @@ -24,13 +25,15 @@ public: public: UPROPERTY(EditAnywhere, BlueprintReadWrite) - ERobotsName CurrentSelectRobot; + ERobotsName CurrentSelectRobot = ERobotsName::None; UPROPERTY(EditAnywhere, BlueprintReadWrite) - ELevelEnum CurrentSelectLevel; + ELevelEnum CurrentSelectLevel = ELevelEnum::None; UPROPERTY(EditAnywhere, BlueprintReadWrite) - EQualityEnum CurrentSelectQuality; - + EQualityEnum CurrentSelectQuality = EQualityEnum::Epic; +public: + UFUNCTION(BlueprintImplementableEvent) + void DoGetDispatch(const FString& EventName, USIOJsonValue* EventData); }; diff --git a/Source/Luckyrobots/Public/LuckyRobotsGameMode.h b/Source/Luckyrobots/Public/LuckyRobotsGameMode.h index 20694e67..995af35d 100644 --- a/Source/Luckyrobots/Public/LuckyRobotsGameMode.h +++ b/Source/Luckyrobots/Public/LuckyRobotsGameMode.h @@ -13,7 +13,9 @@ UCLASS() class LUCKYROBOTS_API ALuckyRobotsGameMode : public AGameModeBase { GENERATED_BODY() -public: + +protected: + virtual void BeginPlay() override; virtual UClass* GetDefaultPawnClassForController_Implementation(AController* InController) override; }; diff --git a/Source/Luckyrobots/Public/LuckyRobotsGameState.h b/Source/Luckyrobots/Public/LuckyRobotsGameState.h index 4e64ee0b..75799030 100644 --- a/Source/Luckyrobots/Public/LuckyRobotsGameState.h +++ b/Source/Luckyrobots/Public/LuckyRobotsGameState.h @@ -6,6 +6,8 @@ #include "GameFramework/GameStateBase.h" #include "LuckyRobotsGameState.generated.h" +class USocketIOClientComponent; +class USIOJsonValue; /** * */ @@ -13,5 +15,21 @@ UCLASS() class LUCKYROBOTS_API ALuckyRobotsGameState : public AGameStateBase { GENERATED_BODY() - +protected: + ALuckyRobotsGameState(); + virtual void BeginPlay() override; + +public: + UPROPERTY(Category = Character, VisibleAnywhere, BlueprintReadOnly, meta = (AllowPrivateAccess = "true")) + USocketIOClientComponent* SocketIOClientComponent; + +public: + UFUNCTION(BlueprintCallable) + void DoSendMessage(FString SendValue); + + UFUNCTION(BlueprintCallable) + void DoSocketOnConnect(FString SocketId, FString SessionId, bool IsReconnection); + + UFUNCTION(BlueprintCallable) + void DoSocketOnGenericEvent(FString EventName, USIOJsonValue* EventData); }; diff --git a/Source/Luckyrobots/Public/SharedDef.h b/Source/Luckyrobots/Public/SharedDef.h index 70952b69..be25e5c3 100644 --- a/Source/Luckyrobots/Public/SharedDef.h +++ b/Source/Luckyrobots/Public/SharedDef.h @@ -64,10 +64,18 @@ enum class ELevelEnum : uint8 UENUM(BlueprintType) enum class EQualityEnum : uint8 { - Epic UMETA(DisplayName = "Epic"), - High UMETA(DisplayName = "High"), + Low UMETA(DisplayName = "Low"), Middle UMETA(DisplayName = "Middle"), - Low UMETA(DisplayName = "Low") + High UMETA(DisplayName = "High"), + Epic UMETA(DisplayName = "Epic") +}; + +UENUM(BlueprintType) +enum class EGoalType : uint8 +{ + GrabAndPull UMETA(DisplayName = "Grab and Pull"), + GrabAndRotate UMETA(DisplayName = "Grab and Rotate"), + }; USTRUCT(BlueprintType) @@ -123,4 +131,92 @@ public: UPROPERTY(EditAnywhere, BlueprintReadWrite) TArray RobotTypeList; -}; \ No newline at end of file +}; + +USTRUCT(BlueprintType) +struct FGoalsTaskData : public FTableRowBase +{ + GENERATED_BODY() +public: + UPROPERTY(EditAnywhere, BlueprintReadWrite) + EGoalType GoalType; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bIsStart; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FTransform TargetLocation; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + AActor* TargetActor; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bIsComplate; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FVector DropOffLocation; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FString ObjectName; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bActive; +}; + +USTRUCT(BlueprintType) +struct FCaptureSettingsData : public FTableRowBase +{ + GENERATED_BODY() +public: + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FText FolderName; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FText FileName; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FText WritesPerSec; + + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool IsScenario; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + TArray TaskList; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bLight; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bMaterials; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bRobotPosition; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bPets; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FText NumberOfPets; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bPeople; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FText NumberOfPeople; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bObjects; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FText NumberOfObjects; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + TArray RandomMeshes; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + bool bInfiniteCapture; + + UPROPERTY(EditAnywhere, BlueprintReadWrite) + FText NumberOfCaptures; +};