| 318 | } |
| 319 | |
| 320 | void CBotManager::BeginMap(const char *szMapName) |
| 321 | { |
| 322 | EndMap(); // End previous map |
| 323 | |
| 324 | WaypointClass.Init(); |
| 325 | WaypointClass.SetMapName(szMapName); |
| 326 | if (!WaypointClass.LoadWaypoints()) |
| 327 | WaypointClass.StartFlood(); |
| 328 | //WaypointClass.LoadWPExpFile(); // UNDONE |
| 329 | |
| 330 | CalculateMaxAStarCount(); |
| 331 | m_sUsingAStarBotsCount = 0; |
| 332 | PickNextTrigger(); |
| 333 | } |
| 334 | |
| 335 | int CBotManager::GetBotIndex(botent *m) |
| 336 | { |
no test coverage detected