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