Deep RTS
GoldCollect.h
Go to the documentation of this file.
1//
2// Created by per on 9/6/21.
3//
4
5#ifndef DEEPRTS_GOLDCOLLECT_H
6#define DEEPRTS_GOLDCOLLECT_H
7#include "ScenarioCriteria.h"
8namespace DeepRTS::Criteria{
10 int goldCollectedLimit;
11 bool isValid;
12 public:
13 explicit GoldCollect(int goldCollectedLimit, int rewardSuccess=0.01, int rewardFailure=-0.01);
14
15 [[nodiscard]] bool evaluate(const Player& player) override;
16 [[nodiscard]] int reward() const override;
17 [[nodiscard]] std::shared_ptr<ScenarioCriteria> clone() const override{
18 return std::shared_ptr<ScenarioCriteria>(new GoldCollect(*this));
19 }
20
21 };
22
23}
24
25
26#endif //DEEPRTS_GOLDCOLLECT_H
Definition: GoldCollect.h:9
int reward() const override
Definition: GoldCollect.cpp:19
GoldCollect(int goldCollectedLimit, int rewardSuccess=0.01, int rewardFailure=-0.01)
Definition: GoldCollect.cpp:9
std::shared_ptr< ScenarioCriteria > clone() const override
Definition: GoldCollect.h:17
bool evaluate(const Player &player) override
Definition: GoldCollect.cpp:14
Definition: ScenarioCriteria.h:14
const int rewardFailure
Definition: ScenarioCriteria.h:18
const int rewardSuccess
Definition: ScenarioCriteria.h:17
Definition: Player.h:18
Definition: DamageDone.h:10