1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
#include "stdafx.h"
#include "Goal.h"
#include "GoalSelector.h"
GoalSelector::InternalGoal::InternalGoal(int prio, Goal *goal, bool canDeletePointer)
{
this->prio = prio;
this->goal = goal;
this->canDeletePointer = canDeletePointer;
}
GoalSelector::GoalSelector()
{
tickCount = 0;
newGoalRate = 3;
}
GoalSelector::~GoalSelector()
{
for(auto& goal : goals)
{
if(goal->canDeletePointer) delete goal->goal;
delete goal;
}
}
void GoalSelector::addGoal(int prio, Goal *goal, bool canDeletePointer /*= true*/) // 4J Added canDelete param
{
goals.push_back(new InternalGoal(prio, goal, canDeletePointer));
}
void GoalSelector::removeGoal(Goal *toRemove)
{
for (auto it = goals.begin(); it != goals.end();)
{
InternalGoal *ig = *it;
Goal *goal = ig->goal;
if (goal == toRemove)
{
auto it2 = find(usingGoals.begin(), usingGoals.end(), ig);
if (it2 != usingGoals.end())
{
goal->stop();
usingGoals.erase(it2);
}
if(ig->canDeletePointer) delete ig->goal;
delete ig;
it = goals.erase(it);
}
else
{
++it;
}
}
}
void GoalSelector::tick()
{
vector<InternalGoal *> toStart;
if(tickCount++ % newGoalRate == 0)
{
for(auto& ig : goals)
{
auto usingIt = find(usingGoals.begin(), usingGoals.end(), ig);
//if (isUsing)
if(usingIt != usingGoals.end())
{
if (!canUseInSystem(ig) || !canContinueToUse(ig))
{
ig->goal->stop();
//usingGoals.remove(ig);
usingGoals.erase(usingIt);
}
else continue;
}
if (!canUseInSystem(ig) || !ig->goal->canUse()) continue;
toStart.push_back(ig);
usingGoals.push_back(ig);
}
}
else
{
for (auto it = usingGoals.begin(); it != usingGoals.end();)
{
InternalGoal *ig = *it;
if (!ig->goal->canContinueToUse())
{
ig->goal->stop();
it = usingGoals.erase(it);
}
else
{
++it;
}
}
}
for(auto & ig : toStart)
{
ig->goal->start();
}
for(auto& ig : usingGoals)
{
ig->goal->tick();
}
}
vector<GoalSelector::InternalGoal *> *GoalSelector::getRunningGoals()
{
return &usingGoals;
}
bool GoalSelector::canContinueToUse(InternalGoal *ig)
{
return ig->goal->canContinueToUse();
}
bool GoalSelector::canUseInSystem(GoalSelector::InternalGoal *goal)
{
//for (InternalGoal ig : goals)
for(auto& ig : goals)
{
if (ig == goal) continue;
auto usingIt = find(usingGoals.begin(), usingGoals.end(), ig);
if (goal->prio >= ig->prio)
{
if (usingIt != usingGoals.end() && !canCoExist(goal, ig)) return false;
}
else if (usingIt != usingGoals.end() && !ig->goal->canInterrupt()) return false;
}
return true;
}
bool GoalSelector::canCoExist(GoalSelector::InternalGoal *goalA, GoalSelector::InternalGoal *goalB)
{
return (goalA->goal->getRequiredControlFlags() & goalB->goal->getRequiredControlFlags()) == 0;
}
void GoalSelector::setNewGoalRate(int newGoalRate)
{
this->newGoalRate = newGoalRate;
}
void GoalSelector::setLevel(Level *level)
{
for(auto& ig : goals)
{
ig->goal->setLevel(level);
}
}
|