src/ai/trolly/trolly.cpp
author rubidium
Sun, 13 Jan 2008 01:21:35 +0000
changeset 8760 ce0891c412ce
parent 8750 fdd6054e7bae
child 8798 eea3a465bd86
permissions -rw-r--r--
(svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
     1
/* $Id$ */
1490
6a13118e99f5 (svn r1994) Fix: 1159456 - hopefully prevent the new AI to get stuck in an infinite loop forlorny trying to build its haven. Unintentionally bundled with trivial tidyup.
pasky
parents: 1377
diff changeset
     2
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
     3
/*
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
     4
 * This AI was created as a direct reaction to the big demand for some good AIs
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
     5
 * in OTTD. Too bad it never left alpha-stage, and it is considered dead in its
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
     6
 * current form.
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
     7
 * By the time of writing this, we, the creator of this AI and a good friend of
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
     8
 * mine, are designing a whole new AI-system that allows us to create AIs
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
     9
 * easier and without all the fuzz we encountered while I was working on this
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
    10
 * AI. By the time that system is finished, you can expect that this AI will
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
    11
 * dissapear, because it is pretty obselete and bad programmed.
2381
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    12
 *
2549
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
    13
 * Meanwhile I wish you all much fun with this AI; if you are interested as
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
    14
 * AI-developer in this AI, I advise you not stare too long to some code, some
f1d3b383d557 (svn r3078) Some more stuff, which piled up:
tron
parents: 2381
diff changeset
    15
 * things in here really are... strange ;) But in either way: enjoy :)
2381
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    16
 *
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    17
 *  -- TrueLight :: 2005-09-01
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    18
 */
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    19
2381
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    20
#include "../../stdafx.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    21
#include "../../openttd.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    22
#include "../../debug.h"
3144
426b825578f9 (svn r3763) Adapt to the new 'map accessors go in foo_map.h'-scheme
tron
parents: 3071
diff changeset
    23
#include "../../road_map.h"
3315
1f65f8260092 (svn r4079) Add GetSation{Index,ByTile}() to get the station index resp. the station from a tile
tron
parents: 3179
diff changeset
    24
#include "../../station_map.h"
8612
6414fc21c2f3 (svn r11677) -Codechange: move price and command related types/functions to their respective places.
rubidium
parents: 8604
diff changeset
    25
#include "../../command_func.h"
2381
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    26
#include "trolly.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    27
#include "../../town.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    28
#include "../../industry.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    29
#include "../../station.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    30
#include "../../engine.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    31
#include "../../gui.h"
de9053fe2a2c (svn r2907) -Codechange: splitted the AIs to their own directory. AINew becomes 'trolly', AIOld becomes 'default', both in their own dir in the 'ai' dir. More AIs to come.
truelight
parents: 2365
diff changeset
    32
#include "../../depot.h"
8640
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8636
diff changeset
    33
#include "../../vehicle_base.h"
1e93b81e96d2 (svn r11706) -Codechange: split vehicle.h and remove another bunch of useless includes.
rubidium
parents: 8636
diff changeset
    34
#include "../../vehicle_func.h"
8636
2b158acb649c (svn r11702) -Codechange: move all date related stuff to date*.
rubidium
parents: 8635
diff changeset
    35
#include "../../date_func.h"
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
    36
#include "../ai.h"
8560
8472721356cf (svn r11625) -Codechange: add CO_* enum at some places, add includes of order.h too
smatz
parents: 8259
diff changeset
    37
#include "../../order.h"
8750
fdd6054e7bae (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8725
diff changeset
    38
#include "../../player_base.h"
fdd6054e7bae (svn r11818) -Codechange: split player.h into smaller pieces.
rubidium
parents: 8725
diff changeset
    39
#include "../../player_func.h"
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    40
8760
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    41
#include "table/strings.h"
ce0891c412ce (svn r11828) -Codechange: include table/* as the last includes and remove an unneeded include from openttd.h.
rubidium
parents: 8750
diff changeset
    42
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    43
PlayerAiNew _players_ainew[MAX_PLAYERS];
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    44
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    45
// This function is called after StartUp. It is the init of an AI
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    46
static void AiNew_State_FirstTime(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    47
{
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    48
	// This assert is used to protect those function from misuse
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    49
	//   You have quickly a small mistake in the state-array
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    50
	//   With that, everything would go wrong. Finding that, is almost impossible
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    51
	//   With this assert, that problem can never happen.
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    52
	assert(_players_ainew[p->index].state == AI_STATE_FIRST_TIME);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    53
	// We first have to init some things
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
    54
4854
383ef523793f (svn r6780) -Codechange: Remove GPMI leftovers (-b impersonisation of AI in MP).
Darkvater
parents: 4559
diff changeset
    55
	if (_current_player == 1) ShowErrorMessage(INVALID_STRING_ID, TEMP_AI_IN_PROGRESS, 0, 0);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    56
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    57
	// The PathFinder (AyStar)
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    58
	// TODO: Maybe when an AI goes bankrupt, this is de-init
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    59
	//  or when coming from a savegame.. should be checked out!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    60
	_players_ainew[p->index].path_info.start_tile_tl = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    61
	_players_ainew[p->index].path_info.start_tile_br = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    62
	_players_ainew[p->index].path_info.end_tile_tl = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    63
	_players_ainew[p->index].path_info.end_tile_br = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    64
	_players_ainew[p->index].pathfinder = new_AyStar_AiPathFinder(12, &_players_ainew[p->index].path_info);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
    65
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    66
	_players_ainew[p->index].idle = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    67
	_players_ainew[p->index].last_vehiclecheck_date = _date;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    68
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    69
	// We ALWAYS start with a bus route.. just some basic money ;)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    70
	_players_ainew[p->index].action = AI_ACTION_BUS_ROUTE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    71
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    72
	// Let's popup the news, and after that, start building..
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    73
	_players_ainew[p->index].state = AI_STATE_WAKE_UP;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    74
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    75
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    76
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    77
// This function just waste some time
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    78
//  It keeps it more real. The AI can build on such tempo no normal user
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    79
//  can ever keep up with that. The competitor_speed already delays a bit
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    80
//  but after the AI finished a track it really needs to go to sleep.
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    81
//
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    82
// Let's say, we sleep between one and three days if the AI is put on Very Fast.
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    83
//  This means that on Very Slow it will be between 16 and 48 days.. slow enough?
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    84
static void AiNew_State_Nothing(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    85
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    86
	assert(_players_ainew[p->index].state == AI_STATE_NOTHING);
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    87
	// If we are done idling, start over again
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    88
	if (_players_ainew[p->index].idle == 0) _players_ainew[p->index].idle = AI_RandomRange(DAY_TICKS * 2) + DAY_TICKS;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    89
	if (--_players_ainew[p->index].idle == 0) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    90
		// We are done idling.. what you say? Let's do something!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    91
		// I mean.. the next tick ;)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
    92
		_players_ainew[p->index].state = AI_STATE_WAKE_UP;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    93
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    94
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    95
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
    96
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    97
// This function picks out a task we are going to do.
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    98
//  Currently supported:
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
    99
//    - Make new route
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   100
//    - Check route
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   101
//    - Build HQ
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   102
static void AiNew_State_WakeUp(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   103
{
1490
6a13118e99f5 (svn r1994) Fix: 1159456 - hopefully prevent the new AI to get stuck in an infinite loop forlorny trying to build its haven. Unintentionally bundled with trivial tidyup.
pasky
parents: 1377
diff changeset
   104
	int c;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   105
	assert(_players_ainew[p->index].state == AI_STATE_WAKE_UP);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   106
	// First, check if we have a HQ
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   107
	if (p->location_of_house == 0) {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   108
		// We have no HQ yet, build one on a random place
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   109
		// Random till we found a place for it!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   110
		// TODO: this should not be on a random place..
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
   111
		AiNew_Build_CompanyHQ(p, AI_Random() % MapSize());
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   112
		// Enough for now, but we want to come back here the next time
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   113
		//  so we do not change any status
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   114
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   115
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   116
7486
d130c10f4dab (svn r10246) -Fix (r10297): some forgotten money conversions and truncation issues. Thanks to benc for providing the patch.
rubidium
parents: 7446
diff changeset
   117
	Money money = p->player_money - AI_MINIMUM_MONEY;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   118
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   119
	// Let's pick an action!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   120
	if (_players_ainew[p->index].action == AI_ACTION_NONE) {
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
   121
		c = AI_Random() & 0xFF;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   122
		if (p->current_loan > 0 &&
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   123
				p->old_economy[1].income > AI_MINIMUM_INCOME_FOR_LOAN &&
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   124
				c < 10) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   125
			_players_ainew[p->index].action = AI_ACTION_REPAY_LOAN;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   126
		} else if (_players_ainew[p->index].last_vehiclecheck_date + AI_DAYS_BETWEEN_VEHICLE_CHECKS < _date) {
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   127
			// Check all vehicles once in a while
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   128
			_players_ainew[p->index].action = AI_ACTION_CHECK_ALL_VEHICLES;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   129
			_players_ainew[p->index].last_vehiclecheck_date = _date;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   130
		} else if (c < 100 && !_patches.ai_disable_veh_roadveh) {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   131
			// Do we have any spots for road-vehicles left open?
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 5907
diff changeset
   132
			if (GetFreeUnitNumber(VEH_ROAD) <= _patches.max_roadveh) {
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   133
				if (c < 85) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   134
					_players_ainew[p->index].action = AI_ACTION_TRUCK_ROUTE;
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   135
				} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   136
					_players_ainew[p->index].action = AI_ACTION_BUS_ROUTE;
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   137
				}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   138
			}
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   139
#if 0
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   140
		} else if (c < 200 && !_patches.ai_disable_veh_train) {
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 5907
diff changeset
   141
			if (GetFreeUnitNumber(VEH_TRAIN) <= _patches.max_trains) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   142
				_players_ainew[p->index].action = AI_ACTION_TRAIN_ROUTE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   143
			}
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   144
#endif
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   145
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   146
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   147
		_players_ainew[p->index].counter = 0;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   148
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   149
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   150
	if (_players_ainew[p->index].counter++ > AI_MAX_TRIES_FOR_SAME_ROUTE) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   151
		_players_ainew[p->index].action = AI_ACTION_NONE;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   152
		return;
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   153
	}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   154
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   155
	if (_patches.ai_disable_veh_roadveh && (
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   156
				_players_ainew[p->index].action == AI_ACTION_BUS_ROUTE ||
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   157
				_players_ainew[p->index].action == AI_ACTION_TRUCK_ROUTE
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   158
			)) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   159
		_players_ainew[p->index].action = AI_ACTION_NONE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   160
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   161
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   162
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   163
	if (_players_ainew[p->index].action == AI_ACTION_REPAY_LOAN &&
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   164
			money > AI_MINIMUM_LOAN_REPAY_MONEY) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   165
		// We start repaying some money..
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   166
		_players_ainew[p->index].state = AI_STATE_REPAY_MONEY;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   167
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   168
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   169
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   170
	if (_players_ainew[p->index].action == AI_ACTION_CHECK_ALL_VEHICLES) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   171
		_players_ainew[p->index].state = AI_STATE_CHECK_ALL_VEHICLES;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   172
		return;
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   173
	}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   174
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   175
	// It is useless to start finding a route if we don't have enough money
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   176
	//  to build the route anyway..
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   177
	if (_players_ainew[p->index].action == AI_ACTION_BUS_ROUTE &&
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   178
			money > AI_MINIMUM_BUS_ROUTE_MONEY) {
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 5907
diff changeset
   179
		if (GetFreeUnitNumber(VEH_ROAD) > _patches.max_roadveh) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   180
			_players_ainew[p->index].action = AI_ACTION_NONE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   181
			return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   182
		}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   183
		_players_ainew[p->index].cargo = AI_NEED_CARGO;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   184
		_players_ainew[p->index].state = AI_STATE_LOCATE_ROUTE;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   185
		_players_ainew[p->index].tbt = AI_BUS; // Bus-route
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   186
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   187
	}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   188
	if (_players_ainew[p->index].action == AI_ACTION_TRUCK_ROUTE &&
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   189
			money > AI_MINIMUM_TRUCK_ROUTE_MONEY) {
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 5907
diff changeset
   190
		if (GetFreeUnitNumber(VEH_ROAD) > _patches.max_roadveh) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   191
			_players_ainew[p->index].action = AI_ACTION_NONE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   192
			return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   193
		}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   194
		_players_ainew[p->index].cargo = AI_NEED_CARGO;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   195
		_players_ainew[p->index].last_id = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   196
		_players_ainew[p->index].state = AI_STATE_LOCATE_ROUTE;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   197
		_players_ainew[p->index].tbt = AI_TRUCK;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   198
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   199
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   200
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   201
	_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   202
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   203
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   204
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   205
static void AiNew_State_ActionDone(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   206
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   207
	_players_ainew[p->index].action = AI_ACTION_NONE;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   208
	_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   209
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   210
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   211
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   212
// Check if a city or industry is good enough to start a route there
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   213
static bool AiNew_Check_City_or_Industry(Player *p, int ic, byte type)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   214
{
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   215
	if (type == AI_CITY) {
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   216
		const Town* t = GetTown(ic);
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   217
		const Station* st;
1377
2a418162176e (svn r1881) -Fix: [ 1119308 ] Max passengers / mail variables are now 32 bit
celestar
parents: 1330
diff changeset
   218
		uint count = 0;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   219
		int j = 0;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   220
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   221
		// We don't like roadconstructions, don't even true such a city
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   222
		if (t->road_build_months != 0) return false;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   223
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   224
		// Check if the rating in a city is high enough
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   225
		//  If not, take a chance if we want to continue
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6585
diff changeset
   226
		if (t->ratings[_current_player] < 0 && AI_CHANCE16(1, 4)) return false;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   227
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6585
diff changeset
   228
		if (t->max_pass - t->act_pass < AI_CHECKCITY_NEEDED_CARGO && !AI_CHANCE16(1, AI_CHECKCITY_CITY_CHANCE)) return false;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   229
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   230
		// Check if we have build a station in this town the last 6 months
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   231
		//  else we don't do it. This is done, because stat updates can be slow
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   232
		//  and sometimes it takes up to 4 months before the stats are corectly.
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   233
		//  This way we don't get 12 busstations in one city of 100 population ;)
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   234
		FOR_ALL_STATIONS(st) {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   235
			// Do we own it?
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   236
			if (st->owner == _current_player) {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   237
				// Are we talking busses?
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   238
				if (_players_ainew[p->index].tbt == AI_BUS && (FACIL_BUS_STOP & st->facilities) != FACIL_BUS_STOP) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   239
				// Is it the same city as we are in now?
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   240
				if (st->town != t) continue;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   241
				// When was this station build?
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   242
				if (_date - st->build_date < AI_CHECKCITY_DATE_BETWEEN) return false;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   243
				// Cound the amount of stations in this city that we own
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   244
				count++;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   245
			} else {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   246
				// We do not own it, request some info about the station
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   247
				//  we want to know if this station gets the same good. If so,
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   248
				//  we want to know its rating. If it is too high, we are not going
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   249
				//  to build there
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   250
				if (!st->goods[CT_PASSENGERS].last_speed) continue;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   251
				// Is it around our city
1245
768d9bc95aaa (svn r1749) Move the functions which calculate distances to map.[ch] and give the more meaningful names
tron
parents: 1209
diff changeset
   252
				if (DistanceManhattan(st->xy, t->xy) > 10) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   253
				// It does take this cargo.. what is his rating?
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   254
				if (st->goods[CT_PASSENGERS].rating < AI_CHECKCITY_CARGO_RATING) continue;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   255
				j++;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   256
				// When this is the first station, we build a second with no problem ;)
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   257
				if (j == 1) continue;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   258
				// The rating is high.. second station...
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   259
				//  a little chance that we still continue
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   260
				//  But if there are 3 stations of this size, we never go on...
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
   261
				if (j == 2 && AI_CHANCE16(1, AI_CHECKCITY_CARGO_RATING_CHANCE)) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   262
				// We don't like this station :(
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   263
				return false;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   264
			}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   265
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   266
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   267
		// We are about to add one...
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   268
		count++;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   269
		// Check if we the city can provide enough cargo for this amount of stations..
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   270
		if (count * AI_CHECKCITY_CARGO_PER_STATION > t->max_pass) return false;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   271
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   272
		// All check are okay, so we can build here!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   273
		return true;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   274
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   275
	if (type == AI_INDUSTRY) {
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   276
		const Industry* i = GetIndustry(ic);
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   277
		const Station* st;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   278
		int count = 0;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   279
		int j = 0;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   280
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6585
diff changeset
   281
		if (i->town != NULL && i->town->ratings[_current_player] < 0 && AI_CHANCE16(1, 4)) return false;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   282
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   283
		// No limits on delevering stations!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   284
		//  Or for industry that does not give anything yet
8141
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   285
		if (i->produced_cargo[0] == CT_INVALID || i->last_month_production[0] == 0) return true;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   286
7315
f1b2591ad082 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 7290
diff changeset
   287
		if (i->last_month_production[0] - i->last_month_transported[0] < AI_CHECKCITY_NEEDED_CARGO) return false;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   288
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   289
		// Check if we have build a station in this town the last 6 months
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   290
		//  else we don't do it. This is done, because stat updates can be slow
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   291
		//  and sometimes it takes up to 4 months before the stats are corectly.
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   292
		FOR_ALL_STATIONS(st) {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   293
			// Do we own it?
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   294
			if (st->owner == _current_player) {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   295
				// Are we talking trucks?
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   296
				if (_players_ainew[p->index].tbt == AI_TRUCK && (FACIL_TRUCK_STOP & st->facilities) != FACIL_TRUCK_STOP) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   297
				// Is it the same city as we are in now?
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   298
				if (st->town != i->town) continue;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   299
				// When was this station build?
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   300
				if (_date - st->build_date < AI_CHECKCITY_DATE_BETWEEN) return false;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   301
				// Cound the amount of stations in this city that we own
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   302
				count++;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   303
			} else {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   304
				// We do not own it, request some info about the station
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   305
				//  we want to know if this station gets the same good. If so,
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   306
				//  we want to know its rating. If it is too high, we are not going
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   307
				//  to build there
8141
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   308
				if (i->produced_cargo[0] == CT_INVALID) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   309
				// It does not take this cargo
8141
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   310
				if (!st->goods[i->produced_cargo[0]].last_speed) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   311
				// Is it around our industry
1245
768d9bc95aaa (svn r1749) Move the functions which calculate distances to map.[ch] and give the more meaningful names
tron
parents: 1209
diff changeset
   312
				if (DistanceManhattan(st->xy, i->xy) > 5) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   313
				// It does take this cargo.. what is his rating?
8141
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   314
				if (st->goods[i->produced_cargo[0]].rating < AI_CHECKCITY_CARGO_RATING) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   315
				j++;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   316
				// The rating is high.. a little chance that we still continue
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   317
				//  But if there are 2 stations of this size, we never go on...
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
   318
				if (j == 1 && AI_CHANCE16(1, AI_CHECKCITY_CARGO_RATING_CHANCE)) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   319
				// We don't like this station :(
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   320
				return false;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   321
			}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   322
		}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   323
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   324
		// We are about to add one...
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   325
		count++;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   326
		// Check if we the city can provide enough cargo for this amount of stations..
7315
f1b2591ad082 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 7290
diff changeset
   327
		if (count * AI_CHECKCITY_CARGO_PER_STATION > i->last_month_production[0]) return false;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   328
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   329
		// All check are okay, so we can build here!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   330
		return true;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   331
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   332
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   333
	return true;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   334
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   335
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   336
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   337
// This functions tries to locate a good route
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   338
static void AiNew_State_LocateRoute(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   339
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   340
	assert(_players_ainew[p->index].state == AI_STATE_LOCATE_ROUTE);
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   341
	// For now, we only support PASSENGERS, CITY and BUSSES
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   342
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   343
	// We don't have a route yet
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   344
	if (_players_ainew[p->index].cargo == AI_NEED_CARGO) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   345
		_players_ainew[p->index].new_cost = 0; // No cost yet
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   346
		_players_ainew[p->index].temp = -1;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   347
		// Reset the counter
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   348
		_players_ainew[p->index].counter = 0;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   349
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   350
		_players_ainew[p->index].from_ic = -1;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   351
		_players_ainew[p->index].to_ic = -1;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   352
		if (_players_ainew[p->index].tbt == AI_BUS) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   353
			// For now we only have a passenger route
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   354
			_players_ainew[p->index].cargo = CT_PASSENGERS;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   355
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   356
			// Find a route to cities
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   357
			_players_ainew[p->index].from_type = AI_CITY;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   358
			_players_ainew[p->index].to_type = AI_CITY;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   359
		} else if (_players_ainew[p->index].tbt == AI_TRUCK) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   360
			_players_ainew[p->index].cargo = AI_NO_CARGO;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   361
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   362
			_players_ainew[p->index].from_type = AI_INDUSTRY;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   363
			_players_ainew[p->index].to_type = AI_INDUSTRY;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   364
		}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   365
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   366
		// Now we are doing initing, we wait one tick
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   367
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   368
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   369
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   370
	// Increase the counter and abort if it is taking too long!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   371
	_players_ainew[p->index].counter++;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   372
	if (_players_ainew[p->index].counter > AI_LOCATE_ROUTE_MAX_COUNTER) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   373
		// Switch back to doing nothing!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   374
		_players_ainew[p->index].state = AI_STATE_NOTHING;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   375
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   376
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   377
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   378
	// We are going to locate a city from where we are going to connect
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   379
	if (_players_ainew[p->index].from_ic == -1) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   380
		if (_players_ainew[p->index].temp == -1) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   381
			// First, we pick a random spot to search from
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   382
			if (_players_ainew[p->index].from_type == AI_CITY) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   383
				_players_ainew[p->index].temp = AI_RandomRange(GetMaxTownIndex() + 1);
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   384
			} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   385
				_players_ainew[p->index].temp = AI_RandomRange(GetMaxIndustryIndex() + 1);
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   386
			}
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   387
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   388
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   389
		if (!AiNew_Check_City_or_Industry(p, _players_ainew[p->index].temp, _players_ainew[p->index].from_type)) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   390
			// It was not a valid city
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   391
			//  increase the temp with one, and return. We will come back later here
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   392
			//  to try again
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   393
			_players_ainew[p->index].temp++;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   394
			if (_players_ainew[p->index].from_type == AI_CITY) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   395
				if (_players_ainew[p->index].temp > GetMaxTownIndex()) _players_ainew[p->index].temp = 0;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   396
			} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   397
				if (_players_ainew[p->index].temp > GetMaxIndustryIndex()) _players_ainew[p->index].temp = 0;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   398
			}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   399
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   400
			// Don't do an attempt if we are trying the same id as the last time...
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   401
			if (_players_ainew[p->index].last_id == _players_ainew[p->index].temp) return;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   402
			_players_ainew[p->index].last_id = _players_ainew[p->index].temp;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   403
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   404
			return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   405
		}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   406
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   407
		// We found a good city/industry, save the data of it
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   408
		_players_ainew[p->index].from_ic = _players_ainew[p->index].temp;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   409
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   410
		// Start the next tick with finding a to-city
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   411
		_players_ainew[p->index].temp = -1;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   412
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   413
	}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   414
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   415
	// Find a to-city
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   416
	if (_players_ainew[p->index].temp == -1) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   417
		// First, we pick a random spot to search to
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   418
		if (_players_ainew[p->index].to_type == AI_CITY) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   419
			_players_ainew[p->index].temp = AI_RandomRange(GetMaxTownIndex() + 1);
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   420
		} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   421
			_players_ainew[p->index].temp = AI_RandomRange(GetMaxIndustryIndex() + 1);
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   422
		}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   423
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   424
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   425
	// The same city is not allowed
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   426
	// Also check if the city is valid
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   427
	if (_players_ainew[p->index].temp != _players_ainew[p->index].from_ic && AiNew_Check_City_or_Industry(p, _players_ainew[p->index].temp, _players_ainew[p->index].to_type)) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   428
		// Maybe it is valid..
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   429
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   430
		/* We need to know if they are not to far apart from eachother..
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   431
		 * We do that by checking how much cargo we have to move and how long the
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   432
		 * route is.
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   433
		 */
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   434
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   435
		if (_players_ainew[p->index].from_type == AI_CITY && _players_ainew[p->index].tbt == AI_BUS) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   436
			const Town* town_from = GetTown(_players_ainew[p->index].from_ic);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   437
			const Town* town_temp = GetTown(_players_ainew[p->index].temp);
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   438
			uint distance = DistanceManhattan(town_from->xy, town_temp->xy);
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   439
			int max_cargo;
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   440
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   441
			max_cargo  = town_from->max_pass + town_temp->max_pass;
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   442
			max_cargo -= town_from->act_pass + town_temp->act_pass;
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   443
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   444
			// max_cargo is now the amount of cargo we can move between the two cities
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   445
			// If it is more than the distance, we allow it
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   446
			if (distance <= max_cargo * AI_LOCATEROUTE_BUS_CARGO_DISTANCE) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   447
				// We found a good city/industry, save the data of it
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   448
				_players_ainew[p->index].to_ic = _players_ainew[p->index].temp;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   449
				_players_ainew[p->index].state = AI_STATE_FIND_STATION;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   450
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5247
diff changeset
   451
				DEBUG(ai, 1, "[LocateRoute] found bus-route of %d tiles long (from %d to %d)",
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   452
					distance,
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   453
					_players_ainew[p->index].from_ic,
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   454
					_players_ainew[p->index].temp
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   455
				);
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   456
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   457
				_players_ainew[p->index].from_tile = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   458
				_players_ainew[p->index].to_tile = 0;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   459
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   460
				return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   461
			}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   462
		} else if (_players_ainew[p->index].tbt == AI_TRUCK) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   463
			const Industry* ind_from = GetIndustry(_players_ainew[p->index].from_ic);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   464
			const Industry* ind_temp = GetIndustry(_players_ainew[p->index].temp);
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   465
			bool found = false;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   466
			int max_cargo = 0;
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   467
			uint i;
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   468
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   469
			// TODO: in max_cargo, also check other cargo (beside [0])
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   470
			// First we check if the from_ic produces cargo that this ic accepts
8141
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   471
			if (ind_from->produced_cargo[0] != CT_INVALID && ind_from->last_month_production[0] != 0) {
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   472
				for (i = 0; i < lengthof(ind_temp->accepts_cargo); i++) {
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   473
					if (ind_temp->accepts_cargo[i] == CT_INVALID) break;
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   474
					if (ind_from->produced_cargo[0] == ind_temp->accepts_cargo[i]) {
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   475
						// Found a compatible industry
7315
f1b2591ad082 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 7290
diff changeset
   476
						max_cargo = ind_from->last_month_production[0] - ind_from->last_month_transported[0];
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   477
						found = true;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   478
						_players_ainew[p->index].from_deliver = true;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   479
						_players_ainew[p->index].to_deliver = false;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   480
						break;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   481
					}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   482
				}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   483
			}
8141
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   484
			if (!found && ind_temp->produced_cargo[0] != CT_INVALID && ind_temp->last_month_production[0] != 0) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   485
				// If not check if the current ic produces cargo that the from_ic accepts
8141
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   486
				for (i = 0; i < lengthof(ind_from->accepts_cargo); i++) {
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   487
					if (ind_from->accepts_cargo[i] == CT_INVALID) break;
c052dc0dc029 (svn r11176) -Revert (r9867): as it is needed for newgrf callbacks 14B and 14C
glx
parents: 7866
diff changeset
   488
					if (ind_from->produced_cargo[0] == ind_from->accepts_cargo[i]) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   489
						// Found a compatbiel industry
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   490
						found = true;
7315
f1b2591ad082 (svn r10058) -Codechange: give some industry variable sensible names (like not telling "last_mo_production" when it is the production of the current month).
rubidium
parents: 7290
diff changeset
   491
						max_cargo = ind_temp->last_month_production[0] - ind_temp->last_month_transported[0];
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   492
						_players_ainew[p->index].from_deliver = false;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   493
						_players_ainew[p->index].to_deliver = true;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   494
						break;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   495
					}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   496
				}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   497
			}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   498
			if (found) {
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   499
				// Yeah, they are compatible!!!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   500
				// Check the length against the amount of goods
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   501
				uint distance = DistanceManhattan(ind_from->xy, ind_temp->xy);
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   502
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   503
				if (distance > AI_LOCATEROUTE_TRUCK_MIN_DISTANCE &&
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   504
						distance <= max_cargo * AI_LOCATEROUTE_TRUCK_CARGO_DISTANCE) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   505
					_players_ainew[p->index].to_ic = _players_ainew[p->index].temp;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   506
					if (_players_ainew[p->index].from_deliver) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   507
						_players_ainew[p->index].cargo = ind_from->produced_cargo[0];
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   508
					} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   509
						_players_ainew[p->index].cargo = ind_temp->produced_cargo[0];
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   510
					}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   511
					_players_ainew[p->index].state = AI_STATE_FIND_STATION;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   512
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5247
diff changeset
   513
					DEBUG(ai, 1, "[LocateRoute] found truck-route of %d tiles long (from %d to %d)",
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   514
						distance,
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   515
						_players_ainew[p->index].from_ic,
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   516
						_players_ainew[p->index].temp
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   517
					);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   518
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   519
					_players_ainew[p->index].from_tile = 0;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   520
					_players_ainew[p->index].to_tile = 0;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   521
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   522
					return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   523
				}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   524
			}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   525
		}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   526
	}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   527
1260
c60e76928e5c (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me know when
truelight
parents: 1253
diff changeset
   528
	// It was not a valid city
c60e76928e5c (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me know when
truelight
parents: 1253
diff changeset
   529
	//  increase the temp with one, and return. We will come back later here
c60e76928e5c (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me know when
truelight
parents: 1253
diff changeset
   530
	//  to try again
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   531
	_players_ainew[p->index].temp++;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   532
	if (_players_ainew[p->index].to_type == AI_CITY) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   533
		if (_players_ainew[p->index].temp > GetMaxTownIndex()) _players_ainew[p->index].temp = 0;
1260
c60e76928e5c (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me know when
truelight
parents: 1253
diff changeset
   534
	} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   535
		if (_players_ainew[p->index].temp > GetMaxIndustryIndex()) _players_ainew[p->index].temp = 0;
1260
c60e76928e5c (svn r1764) -Add: dynamic towns, you can now have up to 64k towns (let me know when
truelight
parents: 1253
diff changeset
   536
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   537
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   538
	// Don't do an attempt if we are trying the same id as the last time...
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   539
	if (_players_ainew[p->index].last_id == _players_ainew[p->index].temp) return;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   540
	_players_ainew[p->index].last_id = _players_ainew[p->index].temp;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   541
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   542
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   543
826
0e2b569b737b (svn r1297) Language fixes in the source.. (ln-)
miham
parents: 679
diff changeset
   544
// Check if there are not more than a certain amount of vehicles pointed to a certain
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   545
//  station. This to prevent 10 busses going to one station, which gives... problems ;)
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   546
static bool AiNew_CheckVehicleStation(Player *p, Station *st)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   547
{
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   548
	int count = 0;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   549
	Vehicle *v;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   550
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   551
	// Also check if we don't have already a lot of busses to this city...
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   552
	FOR_ALL_VEHICLES(v) {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   553
		if (v->owner == _current_player) {
1024
9b06b01490a4 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 926
diff changeset
   554
			const Order *order;
9b06b01490a4 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 926
diff changeset
   555
9b06b01490a4 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 926
diff changeset
   556
			FOR_VEHICLE_ORDERS(v, order) {
4527
b18634a31a4a (svn r6353) -Codechange: Make DestinationID a typedef of uin16, which is as large as any type of destinataion (StationID, DepotID, WaypointID) it can hold
tron
parents: 4389
diff changeset
   557
				if (order->type == OT_GOTO_STATION && GetStation(order->dest) == st) {
1024
9b06b01490a4 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 926
diff changeset
   558
					// This vehicle has this city in its list
9b06b01490a4 (svn r1525) -Codechange: rewrote the _order_array, now it can be made dynamic.
truelight
parents: 926
diff changeset
   559
					count++;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   560
				}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   561
			}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   562
		}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   563
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   564
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   565
	if (count > AI_CHECK_MAX_VEHICLE_PER_STATION) return false;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   566
	return true;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   567
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   568
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   569
// This function finds a good spot for a station
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   570
static void AiNew_State_FindStation(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   571
{
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   572
	TileIndex tile;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   573
	Station *st;
3885
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   574
	int count = 0;
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   575
	EngineID i;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   576
	TileIndex new_tile = 0;
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
   577
	DiagDirection direction = DIAGDIR_NE;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   578
	Town *town = NULL;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   579
	assert(_players_ainew[p->index].state == AI_STATE_FIND_STATION);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   580
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   581
	if (_players_ainew[p->index].from_tile == 0) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   582
		// First we scan for a station in the from-city
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   583
		if (_players_ainew[p->index].from_type == AI_CITY) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   584
			town = GetTown(_players_ainew[p->index].from_ic);
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   585
			tile = town->xy;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   586
		} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   587
			tile = GetIndustry(_players_ainew[p->index].from_ic)->xy;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   588
		}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   589
	} else if (_players_ainew[p->index].to_tile == 0) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   590
		// Second we scan for a station in the to-city
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   591
		if (_players_ainew[p->index].to_type == AI_CITY) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   592
			town = GetTown(_players_ainew[p->index].to_ic);
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   593
			tile = town->xy;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   594
		} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   595
			tile = GetIndustry(_players_ainew[p->index].to_ic)->xy;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   596
		}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   597
	} else {
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   598
		// Unsupported request
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   599
		// Go to FIND_PATH
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   600
		_players_ainew[p->index].temp = -1;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   601
		_players_ainew[p->index].state = AI_STATE_FIND_PATH;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   602
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   603
	}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   604
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   605
	// First, we are going to look at the stations that already exist inside the city
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   606
	//  If there is enough cargo left in the station, we take that station
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   607
	//  If that is not possible, and there are more than 2 stations in the city, abort
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   608
	i = AiNew_PickVehicle(p);
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   609
	// Euhmz, this should not happen _EVER_
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   610
	// Quit finding a route...
3885
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   611
	if (i == INVALID_ENGINE) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   612
		_players_ainew[p->index].state = AI_STATE_NOTHING;
3885
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   613
		return;
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   614
	}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   615
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   616
	FOR_ALL_STATIONS(st) {
4346
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   617
		if (st->owner == _current_player) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   618
			if (_players_ainew[p->index].tbt == AI_BUS && (FACIL_BUS_STOP & st->facilities) == FACIL_BUS_STOP) {
4346
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   619
				if (st->town == town) {
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   620
					// Check how much cargo there is left in the station
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   621
					if ((int)st->goods[_players_ainew[p->index].cargo].cargo.Count() > RoadVehInfo(i)->capacity * AI_STATION_REUSE_MULTIPLER) {
4346
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   622
						if (AiNew_CheckVehicleStation(p, st)) {
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   623
							// We did found a station that was good enough!
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   624
							new_tile = st->xy;
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   625
							direction = GetRoadStopDir(st->xy);
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   626
							break;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   627
						}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   628
					}
4346
3f00094f2670 (svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
truelight
parents: 4261
diff changeset
   629
					count++;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   630
				}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   631
			}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   632
		}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   633
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   634
	// We are going to add a new station...
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   635
	if (new_tile == 0) count++;
826
0e2b569b737b (svn r1297) Language fixes in the source.. (ln-)
miham
parents: 679
diff changeset
   636
	// No more than 2 stations allowed in a city
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   637
	//  This is because only the best 2 stations of one cargo do get any cargo
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   638
	if (count > 2) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   639
		_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   640
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   641
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   642
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   643
	if (new_tile == 0 && _players_ainew[p->index].tbt == AI_BUS) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   644
		uint x, y, i = 0;
7439
0c0e2945c890 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 7420
diff changeset
   645
		CommandCost r;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   646
		uint best;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   647
		uint accepts[NUM_CARGO];
6987
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6585
diff changeset
   648
		TileIndex found_spot[AI_FINDSTATION_TILE_RANGE*AI_FINDSTATION_TILE_RANGE * 4];
b0f13039bda2 (svn r9672) -Cleanup: lots of coding style fixes around operands.
rubidium
parents: 6585
diff changeset
   649
		uint found_best[AI_FINDSTATION_TILE_RANGE*AI_FINDSTATION_TILE_RANGE * 4];
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   650
		// To find a good spot we scan a range from the center, a get the point
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   651
		//  where we get the most cargo and where it is buildable.
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   652
		// TODO: also check for station of myself and make sure we are not
7420
bd7ebdf5a44a (svn r10177) -Fix: Passengers has one A and two Es (ln)
peter1138
parents: 7315
diff changeset
   653
		//   taking eachothers passengers away (bad result when it does not)
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   654
		for (x = TileX(tile) - AI_FINDSTATION_TILE_RANGE; x <= TileX(tile) + AI_FINDSTATION_TILE_RANGE; x++) {
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   655
			for (y = TileY(tile) - AI_FINDSTATION_TILE_RANGE; y <= TileY(tile) + AI_FINDSTATION_TILE_RANGE; y++) {
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   656
				new_tile = TileXY(x, y);
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   657
				if (IsTileType(new_tile, MP_CLEAR) || IsTileType(new_tile, MP_TREES)) {
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   658
					// This tile we can build on!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   659
					// Check acceptance
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   660
					// XXX - Get the catchment area
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   661
					GetAcceptanceAroundTiles(accepts, new_tile, 1, 1, 4);
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   662
					// >> 3 == 0 means no cargo
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   663
					if (accepts[_players_ainew[p->index].cargo] >> 3 == 0) continue;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   664
					// See if we can build the station
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   665
					r = AiNew_Build_Station(p, _players_ainew[p->index].tbt, new_tile, 0, 0, 0, DC_QUERY_COST);
2737
f16e0a808897 (svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents: 2684
diff changeset
   666
					if (CmdFailed(r)) continue;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   667
					// We can build it, so add it to found_spot
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   668
					found_spot[i] = new_tile;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   669
					found_best[i++] = accepts[_players_ainew[p->index].cargo];
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   670
				}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   671
			}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   672
		}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   673
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   674
		// If i is still zero, we did not find anything
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   675
		if (i == 0) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   676
			_players_ainew[p->index].state = AI_STATE_NOTHING;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   677
			return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   678
		}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   679
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   680
		// Go through all the found_best and check which has the highest value
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   681
		best = 0;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   682
		new_tile = 0;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   683
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   684
		for (x = 0; x < i; x++) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   685
			if (found_best[x] > best ||
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   686
					(found_best[x] == best && DistanceManhattan(tile, new_tile) > DistanceManhattan(tile, found_spot[x]))) {
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   687
				new_tile = found_spot[x];
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   688
				best = found_best[x];
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   689
			}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   690
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   691
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   692
		// See how much it is going to cost us...
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   693
		r = AiNew_Build_Station(p, _players_ainew[p->index].tbt, new_tile, 0, 0, 0, DC_QUERY_COST);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   694
		_players_ainew[p->index].new_cost += r.GetCost();
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   695
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
   696
		direction = (DiagDirection)AI_PATHFINDER_NO_DIRECTION;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   697
	} else if (new_tile == 0 && _players_ainew[p->index].tbt == AI_TRUCK) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   698
		// Truck station locater works differently.. a station can be on any place
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   699
		//  as long as it is in range. So we give back code AI_STATION_RANGE
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   700
		//  so the pathfinder routine can work it out!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   701
		new_tile = AI_STATION_RANGE;
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
   702
		direction = (DiagDirection)AI_PATHFINDER_NO_DIRECTION;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   703
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   704
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   705
	if (_players_ainew[p->index].from_tile == 0) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   706
		_players_ainew[p->index].from_tile = new_tile;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   707
		_players_ainew[p->index].from_direction = direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   708
		// Now we found thisone, go in for to_tile
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   709
		return;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   710
	} else if (_players_ainew[p->index].to_tile == 0) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   711
		_players_ainew[p->index].to_tile = new_tile;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   712
		_players_ainew[p->index].to_direction = direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   713
		// K, done placing stations!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   714
		_players_ainew[p->index].temp = -1;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   715
		_players_ainew[p->index].state = AI_STATE_FIND_PATH;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   716
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   717
	}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   718
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   719
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   720
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   721
// We try to find a path between 2 points
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   722
static void AiNew_State_FindPath(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   723
{
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   724
	int r;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   725
	assert(_players_ainew[p->index].state == AI_STATE_FIND_PATH);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   726
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   727
	// First time, init some data
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   728
	if (_players_ainew[p->index].temp == -1) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   729
		// Init path_info
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   730
		if (_players_ainew[p->index].from_tile == AI_STATION_RANGE) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   731
			const Industry* i = GetIndustry(_players_ainew[p->index].from_ic);
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   732
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   733
			// For truck routes we take a range around the industry
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   734
			_players_ainew[p->index].path_info.start_tile_tl = i->xy - TileDiffXY(1, 1);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   735
			_players_ainew[p->index].path_info.start_tile_br = i->xy + TileDiffXY(i->width + 1, i->height + 1);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   736
			_players_ainew[p->index].path_info.start_direction = _players_ainew[p->index].from_direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   737
		} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   738
			_players_ainew[p->index].path_info.start_tile_tl = _players_ainew[p->index].from_tile;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   739
			_players_ainew[p->index].path_info.start_tile_br = _players_ainew[p->index].from_tile;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   740
			_players_ainew[p->index].path_info.start_direction = _players_ainew[p->index].from_direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   741
		}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   742
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   743
		if (_players_ainew[p->index].to_tile == AI_STATION_RANGE) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   744
			const Industry* i = GetIndustry(_players_ainew[p->index].to_ic);
3952
c51a2e094dde (svn r5098) Do some manual CSE and replace a few magic numbers to improve the readability of the trolly AI
tron
parents: 3951
diff changeset
   745
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   746
			_players_ainew[p->index].path_info.end_tile_tl = i->xy - TileDiffXY(1, 1);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   747
			_players_ainew[p->index].path_info.end_tile_br = i->xy + TileDiffXY(i->width + 1, i->height + 1);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   748
			_players_ainew[p->index].path_info.end_direction = _players_ainew[p->index].to_direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   749
		} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   750
			_players_ainew[p->index].path_info.end_tile_tl = _players_ainew[p->index].to_tile;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   751
			_players_ainew[p->index].path_info.end_tile_br = _players_ainew[p->index].to_tile;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   752
			_players_ainew[p->index].path_info.end_direction = _players_ainew[p->index].to_direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   753
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   754
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   755
		_players_ainew[p->index].path_info.rail_or_road = (_players_ainew[p->index].tbt == AI_TRAIN);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   756
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   757
		// First, clean the pathfinder with our new begin and endpoints
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   758
		clean_AyStar_AiPathFinder(_players_ainew[p->index].pathfinder, &_players_ainew[p->index].path_info);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   759
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   760
		_players_ainew[p->index].temp = 0;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   761
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   762
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   763
	// Start the pathfinder
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   764
	r = _players_ainew[p->index].pathfinder->main(_players_ainew[p->index].pathfinder);
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   765
	switch (r) {
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   766
		case AYSTAR_NO_PATH:
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5247
diff changeset
   767
			DEBUG(ai, 1, "No route found by pathfinder");
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   768
			// Start all over again
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   769
			_players_ainew[p->index].state = AI_STATE_NOTHING;
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   770
			break;
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   771
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   772
		case AYSTAR_FOUND_END_NODE: // We found the end-point
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   773
			_players_ainew[p->index].temp = -1;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   774
			_players_ainew[p->index].state = AI_STATE_FIND_DEPOT;
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   775
			break;
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   776
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   777
		// In any other case, we are still busy finding the route
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   778
		default: break;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   779
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   780
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   781
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   782
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   783
// This function tries to locate a good place for a depot!
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   784
static void AiNew_State_FindDepot(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   785
{
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   786
	// To place the depot, we walk through the route, and if we find a lovely spot (MP_CLEAR, MP_TREES), we place it there..
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   787
	// Simple, easy, works!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   788
	// To make the depot stand in the middle of the route, we start from the center..
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   789
	// But first we walk through the route see if we can find a depot that is ours
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   790
	//  this keeps things nice ;)
7439
0c0e2945c890 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 7420
diff changeset
   791
	int g, i;
0c0e2945c890 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 7420
diff changeset
   792
	CommandCost r;
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   793
	DiagDirection j;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   794
	TileIndex tile;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   795
	assert(_players_ainew[p->index].state == AI_STATE_FIND_DEPOT);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   796
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   797
	_players_ainew[p->index].depot_tile = 0;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   798
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   799
	for (i=2;i<_players_ainew[p->index].path_info.route_length-2;i++) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   800
		tile = _players_ainew[p->index].path_info.route[i];
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   801
		for (j = DIAGDIR_BEGIN; j < DIAGDIR_END; j++) {
4559
c853d2440065 (svn r6406) -Codechange: Rename TileOffsByDir to TileOffsByDiagDir because it accepts
Darkvater
parents: 4527
diff changeset
   802
			TileIndex t = tile + TileOffsByDiagDir(j);
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   803
7866
e19fda04e8d3 (svn r10733) -Codechange: change MP_STREET into MP_ROAD as we use the word "road" everywhere except in the tile type.
rubidium
parents: 7813
diff changeset
   804
			if (IsTileType(t, MP_ROAD) &&
3793
33cdb5bf7b21 (svn r4789) - Codechange: rename RoadType to RoadTileType and ROAD_{NORMAL,CROSSING,DEPOT} to ROAD_TILE_* for consistency
rubidium
parents: 3644
diff changeset
   805
					GetRoadTileType(t) == ROAD_TILE_DEPOT &&
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   806
					IsTileOwner(t, _current_player) &&
3179
774b1e6553a7 (svn r3816) Use existing accessors
tron
parents: 3157
diff changeset
   807
					GetRoadDepotDirection(t) == ReverseDiagDir(j)) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   808
				_players_ainew[p->index].depot_tile = t;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   809
				_players_ainew[p->index].depot_direction = ReverseDiagDir(j);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   810
				_players_ainew[p->index].state = AI_STATE_VERIFY_ROUTE;
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   811
				return;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   812
			}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   813
		}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   814
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   815
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   816
	// This routine let depot finding start in the middle, and work his way to the stations
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   817
	// It makes depot placing nicer :)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   818
	i = _players_ainew[p->index].path_info.route_length / 2;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   819
	g = 1;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   820
	while (i > 1 && i < _players_ainew[p->index].path_info.route_length - 2) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   821
		i += g;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   822
		g *= -1;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   823
		(g < 0?g--:g++);
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   824
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   825
		if (_players_ainew[p->index].path_info.route_extra[i] != 0 || _players_ainew[p->index].path_info.route_extra[i+1] != 0) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   826
			// Bridge or tunnel.. we can't place a depot there
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   827
			continue;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   828
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   829
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   830
		tile = _players_ainew[p->index].path_info.route[i];
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   831
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   832
		for (j = DIAGDIR_BEGIN; j < DIAGDIR_END; j++) {
4559
c853d2440065 (svn r6406) -Codechange: Rename TileOffsByDir to TileOffsByDiagDir because it accepts
Darkvater
parents: 4527
diff changeset
   833
			TileIndex t = tile + TileOffsByDiagDir(j);
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   834
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   835
			// It may not be placed on the road/rail itself
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   836
			// And because it is not build yet, we can't see it on the tile..
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   837
			// So check the surrounding tiles :)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   838
			if (t == _players_ainew[p->index].path_info.route[i - 1] ||
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   839
					t == _players_ainew[p->index].path_info.route[i + 1]) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   840
				continue;
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   841
			}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   842
			// Not around a bridge?
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   843
			if (_players_ainew[p->index].path_info.route_extra[i] != 0) continue;
1035
0a170deb6e33 (svn r1536) Move GET_TILEHEIGHT, GET_TILETYPE and IS_TILETYPE to map.h, turn them into inline functions and add some asserts
tron
parents: 1024
diff changeset
   844
			if (IsTileType(tile, MP_TUNNELBRIDGE)) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   845
			// Is the terrain clear?
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   846
			if (IsTileType(t, MP_CLEAR) || IsTileType(t, MP_TREES)) {
3644
45a307767dc1 (svn r4553) int and magic numbers -> Slope and DiagDirection
tron
parents: 3577
diff changeset
   847
				// If the current tile is on a slope then we do not allow this
45a307767dc1 (svn r4553) int and magic numbers -> Slope and DiagDirection
tron
parents: 3577
diff changeset
   848
				if (GetTileSlope(tile, NULL) != SLOPE_FLAT) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   849
				// Check if everything went okay..
3153
301c1d71122b (svn r3776) Replace many ints and magic numbers by Direction, DiagDirection and friends
tron
parents: 3144
diff changeset
   850
				r = AiNew_Build_Depot(p, t, ReverseDiagDir(j), 0);
2737
f16e0a808897 (svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents: 2684
diff changeset
   851
				if (CmdFailed(r)) continue;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   852
				// Found a spot!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   853
				_players_ainew[p->index].new_cost += r.GetCost();
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   854
				_players_ainew[p->index].depot_tile = t;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   855
				_players_ainew[p->index].depot_direction = ReverseDiagDir(j); // Reverse direction
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   856
				_players_ainew[p->index].state = AI_STATE_VERIFY_ROUTE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   857
				return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   858
			}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   859
		}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   860
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   861
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   862
	// Failed to find a depot?
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   863
	_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   864
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   865
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   866
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   867
// This function calculates how many vehicles there are needed on this
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   868
//  traject.
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   869
// It works pretty simple: get the length, see how much we move around
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   870
//  and hussle that, and you know how many vehicles there are needed.
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   871
// It returns the cost for the vehicles
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   872
static int AiNew_HowManyVehicles(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   873
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   874
	if (_players_ainew[p->index].tbt == AI_BUS) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   875
		// For bus-routes we look at the time before we are back in the station
3885
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   876
		EngineID i;
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   877
		int length, tiles_a_day;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   878
		int amount;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   879
		i = AiNew_PickVehicle(p);
3885
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   880
		if (i == INVALID_ENGINE) return 0;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   881
		// Passenger run.. how long is the route?
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   882
		length = _players_ainew[p->index].path_info.route_length;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   883
		// Calculating tiles a day a vehicle moves is not easy.. this is how it must be done!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   884
		tiles_a_day = RoadVehInfo(i)->max_speed * DAY_TICKS / 256 / 16;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   885
		// We want a vehicle in a station once a month at least, so, calculate it!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   886
		// (the * 2 is because we have 2 stations ;))
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   887
		amount = length * 2 * 2 / tiles_a_day / 30;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   888
		if (amount == 0) amount = 1;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   889
		return amount;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   890
	} else if (_players_ainew[p->index].tbt == AI_TRUCK) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   891
		// For truck-routes we look at the cargo
3885
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   892
		EngineID i;
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   893
		int length, amount, tiles_a_day;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   894
		int max_cargo;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   895
		i = AiNew_PickVehicle(p);
3885
327cdee1f0b6 (svn r4941) Replace some ints and magic numbers by proper types and enums
tron
parents: 3793
diff changeset
   896
		if (i == INVALID_ENGINE) return 0;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   897
		// Passenger run.. how long is the route?
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   898
		length = _players_ainew[p->index].path_info.route_length;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   899
		// Calculating tiles a day a vehicle moves is not easy.. this is how it must be done!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   900
		tiles_a_day = RoadVehInfo(i)->max_speed * DAY_TICKS / 256 / 16;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   901
		if (_players_ainew[p->index].from_deliver) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   902
			max_cargo = GetIndustry(_players_ainew[p->index].from_ic)->last_month_production[0];
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   903
		} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   904
			max_cargo = GetIndustry(_players_ainew[p->index].to_ic)->last_month_production[0];
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
   905
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   906
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   907
		// This is because moving 60% is more than we can dream of!
5838
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   908
		max_cargo *= 6;
9c3129cb019b (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, stillunknown and pv2b.
rubidium
parents: 5835
diff changeset
   909
		max_cargo /= 10;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   910
		// We want all the cargo to be gone in a month.. so, we know the cargo it delivers
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   911
		//  we know what the vehicle takes with him, and we know the time it takes him
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   912
		//  to get back here.. now let's do some math!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   913
		amount = 2 * length * max_cargo / tiles_a_day / 30 / RoadVehInfo(i)->capacity;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   914
		amount += 1;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   915
		return amount;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   916
	} else {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   917
		// Currently not supported
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   918
		return 0;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   919
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   920
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   921
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   922
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   923
// This function checks:
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   924
//   - If the route went okay
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   925
//   - Calculates the amount of money needed to build the route
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   926
//   - Calculates how much vehicles needed for the route
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   927
static void AiNew_State_VerifyRoute(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   928
{
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   929
	int res, i;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   930
	assert(_players_ainew[p->index].state == AI_STATE_VERIFY_ROUTE);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   931
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   932
	// Let's calculate the cost of the path..
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   933
	//  new_cost already contains the cost of the stations
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   934
	_players_ainew[p->index].path_info.position = -1;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   935
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   936
	do {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   937
		_players_ainew[p->index].path_info.position++;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   938
		_players_ainew[p->index].new_cost += AiNew_Build_RoutePart(p, &_players_ainew[p->index].path_info, DC_QUERY_COST).GetCost();
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   939
	} while (_players_ainew[p->index].path_info.position != -2);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   940
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   941
	// Now we know the price of build station + path. Now check how many vehicles
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   942
	//  we need and what the price for that will be
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   943
	res = AiNew_HowManyVehicles(p);
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   944
	// If res == 0, no vehicle was found, or an other problem did occour
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   945
	if (res == 0) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   946
		_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   947
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   948
	}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   949
	_players_ainew[p->index].amount_veh = res;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   950
	_players_ainew[p->index].cur_veh = 0;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   951
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   952
	// Check how much it it going to cost us..
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   953
	for (i=0;i<res;i++) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   954
		_players_ainew[p->index].new_cost += AiNew_Build_Vehicle(p, 0, DC_QUERY_COST).GetCost();
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   955
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   956
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   957
	// Now we know how much the route is going to cost us
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   958
	//  Check if we have enough money for it!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   959
	if (_players_ainew[p->index].new_cost > p->player_money - AI_MINIMUM_MONEY) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   960
		// Too bad..
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   961
		DEBUG(ai, 1, "Insufficient funds to build route (%" OTTD_PRINTF64 "d)", (int64)_players_ainew[p->index].new_cost);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   962
		_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   963
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   964
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   965
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   966
	// Now we can build the route, check the direction of the stations!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   967
	if (_players_ainew[p->index].from_direction == AI_PATHFINDER_NO_DIRECTION) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   968
		_players_ainew[p->index].from_direction = AiNew_GetDirection(_players_ainew[p->index].path_info.route[_players_ainew[p->index].path_info.route_length - 1], _players_ainew[p->index].path_info.route[_players_ainew[p->index].path_info.route_length - 2]);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   969
	}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   970
	if (_players_ainew[p->index].to_direction == AI_PATHFINDER_NO_DIRECTION) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   971
		_players_ainew[p->index].to_direction = AiNew_GetDirection(_players_ainew[p->index].path_info.route[0], _players_ainew[p->index].path_info.route[1]);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   972
	}
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   973
	if (_players_ainew[p->index].from_tile == AI_STATION_RANGE)
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   974
		_players_ainew[p->index].from_tile = _players_ainew[p->index].path_info.route[_players_ainew[p->index].path_info.route_length - 1];
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   975
	if (_players_ainew[p->index].to_tile == AI_STATION_RANGE)
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   976
		_players_ainew[p->index].to_tile = _players_ainew[p->index].path_info.route[0];
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   977
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   978
	_players_ainew[p->index].state = AI_STATE_BUILD_STATION;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   979
	_players_ainew[p->index].temp = 0;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
   980
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   981
	DEBUG(ai, 1, "The route is set and buildable, building 0x%X to 0x%X...", _players_ainew[p->index].from_tile, _players_ainew[p->index].to_tile);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   982
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   983
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   984
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
   985
// Build the stations
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   986
static void AiNew_State_BuildStation(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   987
{
7446
1c4d469f986e (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 7442
diff changeset
   988
	CommandCost res;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   989
	assert(_players_ainew[p->index].state == AI_STATE_BUILD_STATION);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   990
	if (_players_ainew[p->index].temp == 0) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   991
		if (!IsTileType(_players_ainew[p->index].from_tile, MP_STATION))
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   992
			res = AiNew_Build_Station(p, _players_ainew[p->index].tbt, _players_ainew[p->index].from_tile, 0, 0, _players_ainew[p->index].from_direction, DC_EXEC);
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   993
	} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   994
		if (!IsTileType(_players_ainew[p->index].to_tile, MP_STATION))
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   995
			res = AiNew_Build_Station(p, _players_ainew[p->index].tbt, _players_ainew[p->index].to_tile, 0, 0, _players_ainew[p->index].to_direction, DC_EXEC);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   996
		_players_ainew[p->index].state = AI_STATE_BUILD_PATH;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
   997
	}
2737
f16e0a808897 (svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents: 2684
diff changeset
   998
	if (CmdFailed(res)) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
   999
		DEBUG(ai, 0, "[BuildStation] station could not be built (0x%X)", _players_ainew[p->index].to_tile);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1000
		_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1001
		// If the first station _was_ build, destroy it
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1002
		if (_players_ainew[p->index].temp != 0)
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1003
			AI_DoCommand(_players_ainew[p->index].from_tile, 0, 0, DC_EXEC, CMD_LANDSCAPE_CLEAR);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1004
		return;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1005
	}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1006
	_players_ainew[p->index].temp++;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1007
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1008
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1009
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1010
// Build the path
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1011
static void AiNew_State_BuildPath(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1012
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1013
	assert(_players_ainew[p->index].state == AI_STATE_BUILD_PATH);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1014
	// _players_ainew[p->index].temp is set to -1 when this function is called for the first time
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1015
	if (_players_ainew[p->index].temp == -1) {
5568
75f13d7bfaed (svn r7565) -Codechange: Rework DEBUG functionality. Look for appropiate debugging levels to
Darkvater
parents: 5247
diff changeset
  1016
		DEBUG(ai, 1, "Starting to build new path");
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1017
		// Init the counter
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1018
		_players_ainew[p->index].counter = (4 - _opt.diff.competitor_speed) * AI_BUILDPATH_PAUSE + 1;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1019
		// Set the position to the startingplace (-1 because in a minute we do ++)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1020
		_players_ainew[p->index].path_info.position = -1;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1021
		// And don't do this again
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1022
		_players_ainew[p->index].temp = 0;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1023
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1024
	// Building goes very fast on normal rate, so we are going to slow it down..
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1025
	//  By let the counter count from AI_BUILDPATH_PAUSE to 0, we have a nice way :)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1026
	if (--_players_ainew[p->index].counter != 0) return;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1027
	_players_ainew[p->index].counter = (4 - _opt.diff.competitor_speed) * AI_BUILDPATH_PAUSE + 1;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1028
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1029
	// Increase the building position
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1030
	_players_ainew[p->index].path_info.position++;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1031
	// Build route
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1032
	AiNew_Build_RoutePart(p, &_players_ainew[p->index].path_info, DC_EXEC);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1033
	if (_players_ainew[p->index].path_info.position == -2) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1034
		// This means we are done building!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1035
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1036
		if (_players_ainew[p->index].tbt == AI_TRUCK && !_patches.roadveh_queue) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1037
			// If they not queue, they have to go up and down to try again at a station...
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1038
			// We don't want that, so try building some road left or right of the station
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1039
			DiagDirection dir1, dir2, dir3;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1040
			TileIndex tile;
7439
0c0e2945c890 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 7420
diff changeset
  1041
			CommandCost ret;
0c0e2945c890 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 7420
diff changeset
  1042
			for (int i = 0; i < 2; i++) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1043
				if (i == 0) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1044
					tile = _players_ainew[p->index].from_tile + TileOffsByDiagDir(_players_ainew[p->index].from_direction);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1045
					dir1 = ChangeDiagDir(_players_ainew[p->index].from_direction, DIAGDIRDIFF_90LEFT);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1046
					dir2 = ChangeDiagDir(_players_ainew[p->index].from_direction, DIAGDIRDIFF_90RIGHT);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1047
					dir3 = _players_ainew[p->index].from_direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1048
				} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1049
					tile = _players_ainew[p->index].to_tile + TileOffsByDiagDir(_players_ainew[p->index].to_direction);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1050
					dir1 = ChangeDiagDir(_players_ainew[p->index].to_direction, DIAGDIRDIFF_90LEFT);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1051
					dir2 = ChangeDiagDir(_players_ainew[p->index].to_direction, DIAGDIRDIFF_90RIGHT);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1052
					dir3 = _players_ainew[p->index].to_direction;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1053
				}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1054
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1055
				ret = AI_DoCommand(tile, DiagDirToRoadBits(ReverseDiagDir(dir1)), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
7442
a4f7989f27d4 (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded).
rubidium
parents: 7439
diff changeset
  1056
				if (CmdSucceeded(ret)) {
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1057
					TileIndex offset = TileOffsByDiagDir(dir1);
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1058
					if (IsTileType(tile + offset, MP_CLEAR) || IsTileType(tile + offset, MP_TREES)) {
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1059
						ret = AI_DoCommand(tile + offset, AiNew_GetRoadDirection(tile, tile + offset, tile + offset + offset), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
7442
a4f7989f27d4 (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded).
rubidium
parents: 7439
diff changeset
  1060
						if (CmdSucceeded(ret)) {
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1061
							if (IsTileType(tile + offset + offset, MP_CLEAR) || IsTileType(tile + offset + offset, MP_TREES))
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1062
								AI_DoCommand(tile + offset + offset, AiNew_GetRoadDirection(tile + offset, tile + offset + offset, tile + offset + offset + offset), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
146
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1063
						}
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1064
					}
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1065
				}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1066
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1067
				ret = AI_DoCommand(tile, DiagDirToRoadBits(ReverseDiagDir(dir2)), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
7442
a4f7989f27d4 (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded).
rubidium
parents: 7439
diff changeset
  1068
				if (CmdSucceeded(ret)) {
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1069
					TileIndex offset = TileOffsByDiagDir(dir2);
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1070
					if (IsTileType(tile + offset, MP_CLEAR) || IsTileType(tile + offset, MP_TREES)) {
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1071
						ret = AI_DoCommand(tile + offset, AiNew_GetRoadDirection(tile, tile + offset, tile + offset + offset), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
7442
a4f7989f27d4 (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded).
rubidium
parents: 7439
diff changeset
  1072
						if (CmdSucceeded(ret)) {
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1073
							if (IsTileType(tile + offset + offset, MP_CLEAR) || IsTileType(tile + offset + offset, MP_TREES))
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1074
								AI_DoCommand(tile + offset + offset, AiNew_GetRoadDirection(tile + offset, tile + offset + offset, tile + offset + offset + offset), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
146
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1075
						}
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1076
					}
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1077
				}
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1078
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1079
				ret = AI_DoCommand(tile, DiagDirToRoadBits(dir3), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
7442
a4f7989f27d4 (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded).
rubidium
parents: 7439
diff changeset
  1080
				if (CmdSucceeded(ret)) {
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1081
					TileIndex offset = TileOffsByDiagDir(dir3);
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1082
					if (IsTileType(tile + offset, MP_CLEAR) || IsTileType(tile + offset, MP_TREES)) {
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1083
						ret = AI_DoCommand(tile + offset, AiNew_GetRoadDirection(tile, tile + offset, tile + offset + offset), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
7442
a4f7989f27d4 (svn r10200) -Codechange: add "shortcut" for !CmdFailed (CmdSucceeded).
rubidium
parents: 7439
diff changeset
  1084
						if (CmdSucceeded(ret)) {
7813
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1085
							if (IsTileType(tile + offset + offset, MP_CLEAR) || IsTileType(tile + offset + offset, MP_TREES))
49fbe41f8a04 (svn r10672) -Codechange: typify some parameters/variables.
rubidium
parents: 7506
diff changeset
  1086
								AI_DoCommand(tile + offset + offset, AiNew_GetRoadDirection(tile + offset, tile + offset + offset, tile + offset + offset + offset), 0, DC_EXEC | DC_NO_WATER, CMD_BUILD_ROAD);
146
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1087
						}
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1088
					}
7632a1ddadc0 (svn r147) -Fix [NewAI]: small fix for road-building when RoadQueueing is disabled
truelight
parents: 145
diff changeset
  1089
				}
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1090
			}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1091
		}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1092
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1093
		DEBUG(ai, 1, "Finished building path, cost: %" OTTD_PRINTF64 "d", (int64)_players_ainew[p->index].new_cost);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1094
		_players_ainew[p->index].state = AI_STATE_BUILD_DEPOT;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1095
	}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1096
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1097
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1098
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1099
// Builds the depot
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1100
static void AiNew_State_BuildDepot(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1101
{
7446
1c4d469f986e (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 7442
diff changeset
  1102
	CommandCost res;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1103
	assert(_players_ainew[p->index].state == AI_STATE_BUILD_DEPOT);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1104
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1105
	if (IsTileType(_players_ainew[p->index].depot_tile, MP_ROAD) && GetRoadTileType(_players_ainew[p->index].depot_tile) == ROAD_TILE_DEPOT) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1106
		if (IsTileOwner(_players_ainew[p->index].depot_tile, _current_player)) {
4000
bab1ebc37da0 (svn r5210) Many small changes which piled up: const, unsigned, variable scope, CSE for readability, DeMorgan, if cascades -> switch, whitespace, parentheses, bracing, misc.
tron
parents: 3952
diff changeset
  1107
			// The depot is already built
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1108
			_players_ainew[p->index].state = AI_STATE_BUILD_VEHICLE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1109
			return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1110
		} else {
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1111
			// There is a depot, but not of our team! :(
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1112
			_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1113
			return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1114
		}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1115
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1116
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1117
	// There is a bus on the tile we want to build road on... idle till he is gone! (BAD PERSON! :p)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1118
	if (!EnsureNoVehicleOnGround(_players_ainew[p->index].depot_tile + TileOffsByDiagDir(_players_ainew[p->index].depot_direction)))
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1119
		return;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1120
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1121
	res = AiNew_Build_Depot(p, _players_ainew[p->index].depot_tile, _players_ainew[p->index].depot_direction, DC_EXEC);
2737
f16e0a808897 (svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents: 2684
diff changeset
  1122
	if (CmdFailed(res)) {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1123
		DEBUG(ai, 0, "[BuildDepot] depot could not be built (0x%X)", _players_ainew[p->index].depot_tile);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1124
		_players_ainew[p->index].state = AI_STATE_NOTHING;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1125
		return;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1126
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1127
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1128
	_players_ainew[p->index].state = AI_STATE_BUILD_VEHICLE;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1129
	_players_ainew[p->index].idle = 10;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1130
	_players_ainew[p->index].veh_main_id = INVALID_VEHICLE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1131
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1132
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1133
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1134
// Build vehicles
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1135
static void AiNew_State_BuildVehicle(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1136
{
7439
0c0e2945c890 (svn r10197) -Codechange: replace int32 with CommandCost where appropriate.
rubidium
parents: 7420
diff changeset
  1137
	CommandCost res;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1138
	assert(_players_ainew[p->index].state == AI_STATE_BUILD_VEHICLE);
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1139
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1140
	// Check if we need to build a vehicle
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1141
	if (_players_ainew[p->index].amount_veh == 0) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1142
		// Nope, we are done!
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1143
		// This means: we are all done! The route is open.. go back to NOTHING
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1144
		//  He will idle some time and it will all start over again.. :)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1145
		_players_ainew[p->index].state = AI_STATE_ACTION_DONE;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1146
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1147
	}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1148
	if (--_players_ainew[p->index].idle != 0) return;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1149
	// It is realistic that the AI can only build 1 vehicle a day..
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1150
	// This makes sure of that!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1151
	_players_ainew[p->index].idle = AI_BUILD_VEHICLE_TIME_BETWEEN;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1152
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1153
	// Build the vehicle
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1154
	res = AiNew_Build_Vehicle(p, _players_ainew[p->index].depot_tile, DC_EXEC);
2737
f16e0a808897 (svn r3282) - Codechange: Replace tests against CMD_ERROR with CmdFailed()
peter1138
parents: 2684
diff changeset
  1155
	if (CmdFailed(res)) {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1156
		// This happens when the AI can't build any more vehicles!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1157
		_players_ainew[p->index].state = AI_STATE_NOTHING;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1158
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1159
	}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1160
	// Increase the current counter
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1161
	_players_ainew[p->index].cur_veh++;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1162
	// Decrease the total counter
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1163
	_players_ainew[p->index].amount_veh--;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1164
	// Go give some orders!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1165
	_players_ainew[p->index].state = AI_STATE_WAIT_FOR_BUILD;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1166
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1167
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1168
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1169
// Put the stations in the order list
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1170
static void AiNew_State_GiveOrders(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1171
{
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1172
	int idx;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1173
	Order order;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1174
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1175
	assert(_players_ainew[p->index].state == AI_STATE_GIVE_ORDERS);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1176
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1177
	if (_players_ainew[p->index].veh_main_id != INVALID_VEHICLE) {
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1178
		AI_DoCommand(0, _players_ainew[p->index].veh_id + (_players_ainew[p->index].veh_main_id << 16), CO_SHARE, DC_EXEC, CMD_CLONE_ORDER);
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1179
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1180
		_players_ainew[p->index].state = AI_STATE_START_VEHICLE;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1181
		return;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1182
	} else {
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1183
		_players_ainew[p->index].veh_main_id = _players_ainew[p->index].veh_id;
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1184
	}
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1185
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1186
	// Very handy for AI, goto depot.. but yeah, it needs to be activated ;)
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1187
	if (_patches.gotodepot) {
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1188
		idx = 0;
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1189
		order.type = OT_GOTO_DEPOT;
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1190
		order.flags = OF_UNLOAD;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1191
		order.dest = GetDepotByTile(_players_ainew[p->index].depot_tile)->index;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1192
		AI_DoCommand(0, _players_ainew[p->index].veh_id + (idx << 16), PackOrder(&order), DC_EXEC, CMD_INSERT_ORDER);
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1193
	}
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1194
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1195
	idx = 0;
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1196
	order.type = OT_GOTO_STATION;
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1197
	order.flags = 0;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1198
	order.dest = GetStationIndex(_players_ainew[p->index].to_tile);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1199
	if (_players_ainew[p->index].tbt == AI_TRUCK && _players_ainew[p->index].to_deliver)
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1200
		order.flags |= OF_FULL_LOAD;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1201
	AI_DoCommand(0, _players_ainew[p->index].veh_id + (idx << 16), PackOrder(&order), DC_EXEC, CMD_INSERT_ORDER);
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1202
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1203
	idx = 0;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1204
	order.type = OT_GOTO_STATION;
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1205
	order.flags = 0;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1206
	order.dest = GetStationIndex(_players_ainew[p->index].from_tile);
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1207
	if (_players_ainew[p->index].tbt == AI_TRUCK && _players_ainew[p->index].from_deliver)
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1208
		order.flags |= OF_FULL_LOAD;
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1209
	AI_DoCommand(0, _players_ainew[p->index].veh_id + (idx << 16), PackOrder(&order), DC_EXEC, CMD_INSERT_ORDER);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1210
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1211
	// Start the engines!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1212
	_players_ainew[p->index].state = AI_STATE_START_VEHICLE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1213
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1214
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1215
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1216
// Start the vehicle
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1217
static void AiNew_State_StartVehicle(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1218
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1219
	assert(_players_ainew[p->index].state == AI_STATE_START_VEHICLE);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1220
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1221
	// Skip the first order if it is a second vehicle
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1222
	//  This to make vehicles go different ways..
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1223
	if (_players_ainew[p->index].cur_veh & 1)
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1224
		AI_DoCommand(0, _players_ainew[p->index].veh_id, 1, DC_EXEC, CMD_SKIP_TO_ORDER);
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1225
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1226
	// 3, 2, 1... go! (give START_STOP command ;))
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1227
	AI_DoCommand(0, _players_ainew[p->index].veh_id, 0, DC_EXEC, CMD_START_STOP_ROADVEH);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1228
	// Try to build an other vehicle (that function will stop building when needed)
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1229
	_players_ainew[p->index].idle  = 10;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1230
	_players_ainew[p->index].state = AI_STATE_BUILD_VEHICLE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1231
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1232
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1233
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1234
// Repays money
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1235
static void AiNew_State_RepayMoney(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1236
{
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
  1237
	uint i;
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
  1238
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
  1239
	for (i = 0; i < AI_LOAN_REPAY; i++) {
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1240
		AI_DoCommand(0, 0, 0, DC_EXEC, CMD_DECREASE_LOAN);
4077
d3022f976946 (svn r5391) Miscellaneous, mostly bracing and whitespace, nothing spectacular
tron
parents: 4000
diff changeset
  1241
	}
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1242
	_players_ainew[p->index].state = AI_STATE_ACTION_DONE;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1243
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1244
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1245
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1246
static void AiNew_CheckVehicle(Player *p, Vehicle *v)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1247
{
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1248
	// When a vehicle is under the 6 months, we don't check for anything
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1249
	if (v->age < 180) return;
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1250
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1251
	// When a vehicle is older then 1 year, it should make money...
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1252
	if (v->age > 360) {
826
0e2b569b737b (svn r1297) Language fixes in the source.. (ln-)
miham
parents: 679
diff changeset
  1253
		// If both years together are not more than AI_MINIMUM_ROUTE_PROFIT,
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1254
		//  it is not worth the line I guess...
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1255
		if (v->profit_last_year + v->profit_this_year < AI_MINIMUM_ROUTE_PROFIT ||
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1256
				(v->reliability * 100 >> 16) < 40) {
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1257
			// There is a possibility that the route is fucked up...
7506
e52d89f5c7c1 (svn r10266) -Codechange: keep track of the origin, time of travel and accumulated feeder share (transfers) of individual pieces of cargo. This means that cargo isn't thrown on a big pile when it's put in a station or unloaded at a station, however the GUI does not reflect these changes yet so you will not actually see it.
rubidium
parents: 7486
diff changeset
  1258
			if (v->cargo.DaysInTransit() > AI_VEHICLE_LOST_DAYS) {
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1259
				// The vehicle is lost.. check the route, or else, get the vehicle
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1260
				//  back to a depot
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1261
				// TODO: make this piece of code
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1262
			}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1263
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1264
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1265
			// We are already sending him back
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1266
			if (AiNew_GetSpecialVehicleFlag(p, v) & AI_VEHICLEFLAG_SELL) {
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 5907
diff changeset
  1267
				if (v->type == VEH_ROAD && IsTileDepotType(v->tile, TRANSPORT_ROAD) &&
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1268
						(v->vehstatus&VS_STOPPED)) {
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1269
					// We are at the depot, sell the vehicle
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1270
					AI_DoCommand(0, v->index, 0, DC_EXEC, CMD_SELL_ROAD_VEH);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1271
				}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1272
				return;
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1273
			}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1274
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1275
			if (!AiNew_SetSpecialVehicleFlag(p, v, AI_VEHICLEFLAG_SELL)) return;
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1276
			{
7446
1c4d469f986e (svn r10205) -Codechange: refactor returning of cost, so it can be more easily modified.
rubidium
parents: 7442
diff changeset
  1277
				CommandCost ret;
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 5907
diff changeset
  1278
				if (v->type == VEH_ROAD)
2682
94ca0b4dc53f (svn r3224) -Add: Allow the NewAI to work in Multiplayer Games (switchable via patch
truelight
parents: 2635
diff changeset
  1279
					ret = AI_DoCommand(0, v->index, 0, DC_EXEC, CMD_SEND_ROADVEH_TO_DEPOT);
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1280
				// This means we can not find a depot :s
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1281
				//				if (CmdFailed(ret))
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1282
			}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1283
		}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1284
	}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1285
}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1286
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1287
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1288
// Checks all vehicles if they are still valid and make money and stuff
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1289
static void AiNew_State_CheckAllVehicles(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1290
{
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1291
	Vehicle *v;
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1292
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1293
	FOR_ALL_VEHICLES(v) {
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1294
		if (v->owner != p->index) continue;
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1295
		// Currently, we only know how to handle road-vehicles
6585
7da94b26498a (svn r9068) -Codechange: capitalize the VEH_Train etc. enums to match the coding style (and rest of the code).
rubidium
parents: 5907
diff changeset
  1296
		if (v->type != VEH_ROAD) continue;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1297
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1298
		AiNew_CheckVehicle(p, v);
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1299
	}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1300
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1301
	_players_ainew[p->index].state = AI_STATE_ACTION_DONE;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1302
}
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1303
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1304
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1305
// Using the technique simular to the original AI
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1306
//   Keeps things logical
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1307
// It really should be in the same order as the AI_STATE's are!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1308
static AiNew_StateFunction* const _ainew_state[] = {
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1309
	NULL,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1310
	AiNew_State_FirstTime,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1311
	AiNew_State_Nothing,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1312
	AiNew_State_WakeUp,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1313
	AiNew_State_LocateRoute,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1314
	AiNew_State_FindStation,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1315
	AiNew_State_FindPath,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1316
	AiNew_State_FindDepot,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1317
	AiNew_State_VerifyRoute,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1318
	AiNew_State_BuildStation,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1319
	AiNew_State_BuildPath,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1320
	AiNew_State_BuildDepot,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1321
	AiNew_State_BuildVehicle,
3946
c9e039a60682 (svn r5092) -Fix: There was a gross race condition in the AI code which made it pretty random if the AI could give a new vehicle its orders
tron
parents: 3945
diff changeset
  1322
	NULL,
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1323
	AiNew_State_GiveOrders,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1324
	AiNew_State_StartVehicle,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1325
	AiNew_State_RepayMoney,
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1326
	AiNew_State_CheckAllVehicles,
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1327
	AiNew_State_ActionDone,
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1328
	NULL,
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1329
};
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1330
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1331
static void AiNew_OnTick(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1332
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1333
	if (_ainew_state[_players_ainew[p->index].state] != NULL)
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1334
		_ainew_state[_players_ainew[p->index].state](p);
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1335
}
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1336
2365
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1337
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1338
void AiNewDoGameLoop(Player *p)
d3f8baf5b10d (svn r2891) Fix indentation
tron
parents: 2186
diff changeset
  1339
{
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1340
	if (_players_ainew[p->index].state == AI_STATE_STARTUP) {
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1341
		// The AI just got alive!
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1342
		_players_ainew[p->index].state = AI_STATE_FIRST_TIME;
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1343
		_players_ainew[p->index].tick = 0;
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1344
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1345
		// Only startup the AI
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1346
		return;
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1347
	}
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1348
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1349
	// We keep a ticker. We use it for competitor_speed
8725
b769d0a63f06 (svn r11792) -Codechange: move some (virtually) globally included AI related structs to a place where they are only included a few times.
rubidium
parents: 8640
diff changeset
  1350
	_players_ainew[p->index].tick++;
145
6e5468217504 (svn r146) -Fix [AI]: Tunnel/bridge bug
truelight
parents: 110
diff changeset
  1351
110
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1352
	// If we come here, we can do a tick.. do so!
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1353
	AiNew_OnTick(p);
a22a6b07904b (svn r111) -Fix: converted all linebreaks to UNIX-linebreak (\n)
truelight
parents: 95
diff changeset
  1354
}