53 lines
1017 B
C++
53 lines
1017 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "EXPComponent.h"
|
|
|
|
// Sets default values for this component's properties
|
|
UEXPComponent::UEXPComponent()
|
|
{
|
|
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features
|
|
// off to improve performance if you don't need them.
|
|
PrimaryComponentTick.bCanEverTick = false;
|
|
|
|
// ...
|
|
}
|
|
|
|
void UEXPComponent::IncrementEXP(int value)
|
|
{
|
|
// TODO: I should be updating the level here
|
|
CurrentEXP += value;
|
|
OnEXPGained.ExecuteIfBound();
|
|
}
|
|
|
|
void UEXPComponent::SetCurrentEXP(int value)
|
|
{
|
|
// TODO: I should be updating the level here
|
|
CurrentEXP = value;
|
|
OnEXPGained.ExecuteIfBound();
|
|
}
|
|
|
|
int UEXPComponent::GetCurrentEXP()
|
|
{
|
|
return CurrentEXP;
|
|
}
|
|
|
|
int UEXPComponent::GetCurrentLevel()
|
|
{
|
|
return CurrentLevel;
|
|
}
|
|
|
|
void UEXPComponent::Reset()
|
|
{
|
|
CurrentEXP = 0;
|
|
CurrentLevel = 0;
|
|
}
|
|
|
|
// Called when the game starts
|
|
void UEXPComponent::BeginPlay()
|
|
{
|
|
Super::BeginPlay();
|
|
|
|
Reset();
|
|
}
|