You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
awesome_game/Source/TurnBasedTutorial/MyGameState.h

70 lines
1.5 KiB

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "MyPlayerState.h"
#include "GameFramework/GameState.h"
#include "MyGameState.generated.h"
/**
*
*/
UCLASS()
class TURNBASEDTUTORIAL_API AMyGameState : public AGameState {
GENERATED_BODY()
public:
2 years ago
AMyGameState();
virtual void BeginPlay() override;
UFUNCTION(Server, Reliable)
2 years ago
virtual void AddTrooper(ATrooper *Trooper);
UFUNCTION(Server, Reliable)
void StartGame();
UFUNCTION(BlueprintCallable, Server, Reliable)
2 years ago
virtual void CycleTurns();
UFUNCTION(BlueprintPure)
AMyPlayerState *PlayerInTurn() const;
UFUNCTION(BlueprintPure)
AMyPlayerState *PlayerNotInTurn() const;
UFUNCTION()
TArray<ATrooper *> GetTroopers() const;
UFUNCTION()
bool IsInTurn(uint8 PlayerIndex) const;
UFUNCTION()
bool IsGameStarted() const;
UFUNCTION()
void DecreaseLivingTroopers(int PlayerIndex);
2 years ago
protected:
UPROPERTY()
bool IsMultiplayer = true;
UPROPERTY(Replicated)
bool bGameIsOver = false;
UPROPERTY(Replicated)
TArray<ATrooper *> Troopers;
UPROPERTY(Replicated)
2 years ago
TArray<int> LivingTroopersCount;
UPROPERTY(Replicated)
bool bGameStarted = false;
UPROPERTY(Replicated)
uint8 CurrentPlayerTurn{0};
auto GetMyPlayerState(uint8 PlayerIndex) const;
};