-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpathfind.cpp
executable file
·272 lines (234 loc) · 6.71 KB
/
pathfind.cpp
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#include "main.hpp"
class PathMap
{
public:
friend PathMap *lookupPath(ICoord dest, Model *model);
PathMap(const PathMap ©);
~PathMap();
double lastReference;
short **distances;
protected:
PathMap(ICoord dest, Model *model);
void fillPaths(ICoord dest, Model *model);
int sizeX, sizeY;
int *refcount;
};
typedef std::map<ICoord, PathMap*> PathCache;
static PathCache cachedPaths;
PathMap *lookupPath(ICoord dest, Model *model)
{
PathCache::iterator it = cachedPaths.find(dest);
if(it != cachedPaths.end()) {
PathMap *ret = it->second;
ret->lastReference = getTime();
return ret;
}
else {
PathMap *path = new PathMap(dest, model);
cachedPaths[dest] = path;
return path;
}
}
int distanceFrom(Model *model, ICoord source, ICoord dest)
{
PathMap *pathfinding = lookupPath(dest, model);
return pathfinding->distances[source.y][source.x];
}
// Un-cache any path which hasn't been used for 5 seconds
void cleanPathCache()
{
for(PathCache::iterator ii=cachedPaths.begin(); ii!=cachedPaths.end(); )
{
if(ii->second->lastReference+5 < getTime()) {
delete ii->second;
ii = cachedPaths.erase(ii);
}
else
ii++;
}
}
PathMap::PathMap(ICoord dest, Model *model)
{
sizeX = model->getSizeX(),
sizeY = model->getSizeY();
lastReference = getTime();
refcount = new int(1);
distances = new short*[sizeY];
for(int ii=0; ii<sizeY; ii++)
distances[ii] = new short[sizeX];
fillPaths(dest, model);
}
void PathMap::fillPaths(ICoord dest, Model *model)
{
std::deque<ICoord> frontier;
for(int ii=0; ii<sizeY; ii++)
for(int jj=0; jj<sizeX; jj++)
{
distances[ii][jj] = 32765;
}
distances[dest.y][dest.x] = 0;
frontier.push_back(dest);
while(frontier.size() > 0)
{
ICoord pos = *frontier.begin();
frontier.pop_front();
int dist = distances[pos.y][pos.x] + 1;
int minX = pos.x-1, minY = pos.y-1,
maxX = pos.x+1, maxY = pos.y+1;
if(minX<0) minX=0;
if(minY<0) minY=0;
if(maxX>=sizeX) maxX=sizeX-1;
if(maxY>=sizeY) maxY=sizeY-1;
if(model->getTile(pos.x, pos.y)->type->passable) {
for(int yi=minY; yi<=maxY; yi++)
for(int xi=minX; xi<=maxX; xi++)
{
if(model->getTile(xi, yi)->type->passable && distances[yi][xi] > dist) {
frontier.push_back(ICoord(xi, yi));
distances[yi][xi] = dist;
}
}
} else {
for(int yi=minY; yi<=maxY; yi++)
for(int xi=minX; xi<=maxX; xi++)
{
if(distances[yi][xi] > dist) {
frontier.push_back(ICoord(xi, yi));
distances[yi][xi] = dist;
}
}
}
}
}
PathMap::PathMap(const PathMap ©)
{
refcount = copy.refcount;
distances = copy.distances;
(*refcount)++;
}
PathMap::~PathMap()
{
(*refcount)--;
if(*refcount == 0) {
delete refcount;
for(int ii=0; ii<sizeY; ii++)
delete[] distances[ii];
delete[] distances;
}
}
//////////////////////////////////////////////////////////////////////////////
void ServerController::turnAndShoot(Model::Unit *shooter, Model::Unit *target)
{
shooter->destAngle = angleHeading(shooter->x, shooter->y, target->nextX, target->nextY);
shooter->turningToShoot = true;
if(network) {
Packet *pathfindMsg = NEW Packet(msg_pathfind);
pathfindMsg->putInt(shooter->getId());
pathfindMsg->putShort(shooter->nextX);
pathfindMsg->putShort(shooter->nextY);
pathfindMsg->putShort(shooter->destAngle);
network->sendToAll(pathfindMsg);
}
}
void ServerController::pathfindUnit(unitID id)
{
Model::Unit *u = model->getUnit(id);
u->moving = false;
if(u->state == Model::Unit::fighting) {
u->moving = (u->nextX != (int)u->x || u->nextY != (int)u->y);
return;
}
if(u->fuel == 0 && u->type->usesFuel) {
return;
}
int u_x = (int)(u->x + .01),
u_y = (int)(u->y + .01);
int minX, maxX, minY, maxY;
int nextX=u->nextX, nextY=u->nextY;
mapRect(model, ICoord(u_x,u_y), ICoord(1,1), minX, minY, maxX, maxY);
// If this is a unit which has to turn towards its target to shoot, and
// it's in a state where it should shoot (attack state or idle), then turn
// towards the target.
if(u->type->facesTarget && u->target && u->nextShotTime<=getTime()
&& (u->state==Model::Unit::attack || u->state==Model::Unit::fighting ||
(u->destX==u->x && u->destY==u->y))
&& !u->turningToShoot)
{
Model::Unit *target = model->getUnit(u->target);
if(!target) {
u->target = 0;
} else {
turnAndShoot(u, target);
return;
}
}
if(u->type->flying)
{
// For flying units, use super-simple pathfinding: Always go to the adjacent
// open tile which is nearest the destination (Cartesian distance).
int distSq = (u_x-u->destX)*(u_x-u->destX) + (u_y-u->destY)*(u_y-u->destY);
for(int ii=minY; ii<=maxY; ii++)
for(int jj=minX; jj<=maxX; jj++)
{
if(!model->getTile(jj, ii)->passable(true))
continue;
int newDistSq = ((jj-u->destX)*(jj-u->destX) + (ii-u->destY)*(ii-u->destY));
if(newDistSq < distSq) {
distSq = newDistSq;
nextX = jj;
nextY = ii;
}
}
}
else
{
// For non-flying units, use path-finding distance instead of Cartesian
// distance.
PathMap *pathfinding = lookupPath(ICoord(u->destX, u->destY), model);
int dist = pathfinding->distances[u_y][u_x];
int origDist = dist;
for(int ii=minY; ii<=maxY; ii++)
for(int jj=minX; jj<=maxX; jj++)
{
if(!model->getTile(jj, ii)->passable(false))
continue;
int newDist = pathfinding->distances[ii][jj];
if( // If this is closer in pathfinding distance or equal in
// pathfinding distance and closer in Manhattan distance, go there
newDist < dist ||
(newDist==dist && abs(u->destX-jj)+abs(u->destY-ii) < abs(u->destX-nextX)+abs(u->destY-nextY))
// Favor lateral moves over diagonal
||(newDist == dist && (ii==u_y||jj==u_x) && newDist<origDist))
{
dist = newDist;
nextX = jj;
nextY = ii;
}
}
}
if(u->type->getSpeed() > 0) // Don't let immobile units move
{
u->moving = (nextX != u_x || nextY != u_y);
if(u->moving)
model->setUnitPath(id, nextX, nextY);
model->getTile(u->nextX, u->nextY)->unitAt(u->type->flying) = id;
}
if(u->x == u->nextX && u->y == u->nextY)
return;
updateUnitFacing(id);
if(u->type->usesFuel) {
u->fuel--;
if(u->fuel < 0)
u->fuel = 0;
}
viewNotifyMoveUnit(id, ICoord(u->x, u->y), ICoord(u->nextX, u->nextY));
// Update the unit's position over the network at this time.
if(network) {
Packet *pathfindMsg = NEW Packet(msg_pathfind);
pathfindMsg->putInt(id);
pathfindMsg->putShort(u->nextX);
pathfindMsg->putShort(u->nextY);
pathfindMsg->putShort(u->destAngle);
network->sendToAll(pathfindMsg);
}
}