bin/ai/regression/regression.txt
author truebrain
Thu, 12 Jun 2008 21:54:34 +0000
branchnoai
changeset 10946 7ccfbff5698d
parent 10944 588393239ac6
child 10952 d16212cc2394
permissions -rw-r--r--
(svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
     1
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
     2
--TestInit--
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
     3
 TickTest: 1
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
     4
 TickTest: 2
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
     5
 SetCommandDelay: (null : 0x00000000)
10852
f02afc46afa8 (svn r13403) [NoAI] -Add: wrapper to read the game settings directly without *any* promises on the results being stable in the future when OpenTTD changes the semantics.
rubidium
parents: 10847
diff changeset
     6
 IsValid(vehicle.plane_speed): true
f02afc46afa8 (svn r13403) [NoAI] -Add: wrapper to read the game settings directly without *any* promises on the results being stable in the future when OpenTTD changes the semantics.
rubidium
parents: 10847
diff changeset
     7
 vehicle.plane_speed: 2
10649
9034b80fdbdb (svn r13193) [NoAI] -Add: allow AIs to be packed in a .tar. one AI per tar, always in a subdir. It looks for main.nut in the first dir it finds in the archive
truebrain
parents: 10455
diff changeset
     8
  Required this file
10938
df6235dd2b7a (svn r13492) [NoAI] -Add: added the 'standard' functions max() and min() in global scope
truebrain
parents: 10933
diff changeset
     9
 min(6, 3): 3
df6235dd2b7a (svn r13492) [NoAI] -Add: added the 'standard' functions max() and min() in global scope
truebrain
parents: 10933
diff changeset
    10
 min(3, 6): 3
df6235dd2b7a (svn r13492) [NoAI] -Add: added the 'standard' functions max() and min() in global scope
truebrain
parents: 10933
diff changeset
    11
 max(6, 3): 6
df6235dd2b7a (svn r13492) [NoAI] -Add: added the 'standard' functions max() and min() in global scope
truebrain
parents: 10933
diff changeset
    12
 max(3, 6): 6
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    13
9487
0575126e0267 (svn r9356) [NoAI] -Add: add abs() function to global scope in SQ. This means we now have an own squirrel_std class which registers such functions. (on request by Zuu)
truelight
parents: 9485
diff changeset
    14
--Std--
0575126e0267 (svn r9356) [NoAI] -Add: add abs() function to global scope in SQ. This means we now have an own squirrel_std class which registers such functions. (on request by Zuu)
truelight
parents: 9485
diff changeset
    15
 abs(-21): 21
0575126e0267 (svn r9356) [NoAI] -Add: add abs() function to global scope in SQ. This means we now have an own squirrel_std class which registers such functions. (on request by Zuu)
truelight
parents: 9485
diff changeset
    16
 abs( 21): 21
0575126e0267 (svn r9356) [NoAI] -Add: add abs() function to global scope in SQ. This means we now have an own squirrel_std class which registers such functions. (on request by Zuu)
truelight
parents: 9485
diff changeset
    17
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    18
--AIBase--
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
    19
  Rand():       753450495
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
    20
  Rand():       202826571
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
    21
  Rand():       203856518
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    22
  RandRange(0): 0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    23
  RandRange(0): 0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    24
  RandRange(0): 0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    25
  RandRange(1): 0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    26
  RandRange(1): 0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    27
  RandRange(1): 0
10355
ee4b5f7a5bf2 (svn r12896) [NoAI] -Sync: with trunk r12824:r12895.
rubidium
parents: 10344
diff changeset
    28
  RandRange(2): 1
9495
29284ad4ae39 (svn r9365) [NoAI] -Fix: fixed the regression.sav to load correct and adjust regression result according (with a big tnx to glx!)
truelight
parents: 9492
diff changeset
    29
  RandRange(2): 0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
    30
  RandRange(2): 1
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
    31
  RandRange(9): 7
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
    32
  RandRange(9): 2
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
    33
  RandRange(9): 7
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    34
  Chance(1, 2): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    35
  Chance(1, 2): true
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
    36
  Chance(1, 2): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
    37
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    38
--List--
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    39
  IsEmpty():     true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    40
  Count():       101
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    41
  HasItem(1050): false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    42
  HasItem(1051): true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    43
  IsEmpty():     false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    44
  List Dump:
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    45
    1 => 1
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    46
    2 => 2
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    47
    1000 => 1000
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    48
    1001 => 1001
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    49
    1002 => 1002
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    50
    1003 => 1003
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    51
    1004 => 1004
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    52
    1005 => 1005
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    53
    1006 => 1006
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    54
    1007 => 1007
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    55
    1008 => 1008
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    56
    1009 => 1009
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    57
    1010 => 1010
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    58
    1011 => 1011
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    59
    1012 => 1012
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    60
    1013 => 1013
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    61
    1014 => 1014
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    62
    1015 => 1015
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    63
    1016 => 1016
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    64
    1017 => 1017
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    65
    1018 => 1018
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    66
    1019 => 1019
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    67
    1020 => 1020
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    68
    1021 => 1021
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    69
    1022 => 1022
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    70
    1023 => 1023
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    71
    1024 => 1024
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    72
    1025 => 1025
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    73
    1026 => 1026
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    74
    1027 => 1027
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    75
    1028 => 1028
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    76
    1029 => 1029
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    77
    1030 => 1030
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    78
    1031 => 1031
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    79
    1032 => 1032
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    80
    1033 => 1033
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    81
    1034 => 1034
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    82
    1035 => 1035
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    83
    1036 => 1036
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    84
    1037 => 1037
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    85
    1038 => 1038
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    86
    1039 => 1039
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    87
    1040 => 1040
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    88
    1041 => 1041
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    89
    1042 => 1042
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    90
    1043 => 1043
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    91
    1044 => 1044
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    92
    1045 => 1045
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    93
    1046 => 1046
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    94
    1047 => 1047
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    95
    1048 => 1048
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    96
    1049 => 1049
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    97
    1051 => 12
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    98
    1052 => 1052
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
    99
    1053 => 1053
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   100
    1054 => 1054
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   101
    1055 => 1055
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   102
    1056 => 1056
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   103
    1057 => 1057
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   104
    1058 => 1058
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   105
    1059 => 1059
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   106
    1060 => 1060
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   107
    1061 => 1061
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   108
    1062 => 1062
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   109
    1063 => 1063
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   110
    1064 => 1064
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   111
    1065 => 1065
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   112
    1066 => 1066
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   113
    1067 => 1067
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   114
    1068 => 1068
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   115
    1069 => 1069
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   116
    1070 => 1070
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   117
    1071 => 1071
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   118
    1072 => 1072
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   119
    1073 => 1073
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   120
    1074 => 1074
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   121
    1075 => 1075
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   122
    1076 => 1076
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   123
    1077 => 1077
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   124
    1078 => 1078
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   125
    1079 => 1079
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   126
    1080 => 1080
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   127
    1081 => 1081
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   128
    1082 => 1082
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   129
    1083 => 1083
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   130
    1084 => 1084
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   131
    1085 => 1085
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   132
    1086 => 1086
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   133
    1087 => 1087
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   134
    1088 => 1088
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   135
    1089 => 1089
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   136
    1090 => 1090
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   137
    1091 => 1091
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   138
    1092 => 1092
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   139
    1093 => 1093
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   140
    1094 => 1094
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   141
    1095 => 1095
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   142
    1096 => 1096
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   143
    1097 => 1097
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   144
    1098 => 1098
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   145
    1099 => 1099
9814
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   146
  Custom ListDump:
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   147
    1 => 4343
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   148
    2 => 8686
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   149
    1000 => 4343000
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   150
    1001 => 4347343
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   151
    1002 => 4351686
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   152
    1003 => 4356029
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   153
    1004 => 4360372
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   154
    1005 => 4364715
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   155
    1006 => 4369058
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   156
    1007 => 4373401
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   157
    1008 => 4377744
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   158
    1009 => 4382087
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   159
    1010 => 4386430
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   160
    1011 => 4390773
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   161
    1012 => 4395116
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   162
    1013 => 4399459
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   163
    1014 => 4403802
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   164
    1015 => 4408145
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   165
    1016 => 4412488
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   166
    1017 => 4416831
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   167
    1018 => 4421174
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   168
    1019 => 4425517
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   169
    1020 => 4429860
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   170
    1021 => 4434203
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   171
    1022 => 4438546
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   172
    1023 => 4442889
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   173
    1024 => 4447232
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   174
    1025 => 4451575
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   175
    1026 => 4455918
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   176
    1027 => 4460261
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   177
    1028 => 4464604
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   178
    1029 => 4468947
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   179
    1030 => 4473290
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   180
    1031 => 4477633
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   181
    1032 => 4481976
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   182
    1033 => 4486319
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   183
    1034 => 4490662
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   184
    1035 => 4495005
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   185
    1036 => 4499348
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   186
    1037 => 4503691
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   187
    1038 => 4508034
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   188
    1039 => 4512377
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   189
    1040 => 4516720
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   190
    1041 => 4521063
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   191
    1042 => 4525406
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   192
    1043 => 4529749
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   193
    1044 => 4534092
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   194
    1045 => 4538435
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   195
    1046 => 4542778
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   196
    1047 => 4547121
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   197
    1048 => 4551464
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   198
    1049 => 4555807
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   199
    1051 => 4564493
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   200
    1052 => 4568836
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   201
    1053 => 4573179
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   202
    1054 => 4577522
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   203
    1055 => 4581865
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   204
    1056 => 4586208
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   205
    1057 => 4590551
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   206
    1058 => 4594894
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   207
    1059 => 4599237
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   208
    1060 => 4603580
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   209
    1061 => 4607923
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   210
    1062 => 4612266
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   211
    1063 => 4616609
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   212
    1064 => 4620952
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   213
    1065 => 4625295
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   214
    1066 => 4629638
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   215
    1067 => 4633981
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   216
    1068 => 4638324
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   217
    1069 => 4642667
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   218
    1070 => 4647010
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   219
    1071 => 4651353
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   220
    1072 => 4655696
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   221
    1073 => 4660039
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   222
    1074 => 4664382
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   223
    1075 => 4668725
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   224
    1076 => 4673068
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   225
    1077 => 4677411
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   226
    1078 => 4681754
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   227
    1079 => 4686097
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   228
    1080 => 4690440
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   229
    1081 => 4694783
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   230
    1082 => 4699126
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   231
    1083 => 4703469
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   232
    1084 => 4707812
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   233
    1085 => 4712155
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   234
    1086 => 4716498
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   235
    1087 => 4720841
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   236
    1088 => 4725184
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   237
    1089 => 4729527
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   238
    1090 => 4733870
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   239
    1091 => 4738213
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   240
    1092 => 4742556
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   241
    1093 => 4746899
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   242
    1094 => 4751242
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   243
    1095 => 4755585
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   244
    1096 => 4759928
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   245
    1097 => 4764271
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   246
    1098 => 4768614
be51ea0adc29 (svn r12411) [NoAI] -Change [API CHANGE]: order of params of CargoIncome is changed
truebrain
parents: 9810
diff changeset
   247
    1099 => 4772957
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   248
  Randomize ListDump:
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   249
    1 => -1893761951
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   250
    2 => -1937566705
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   251
    1000 => 875192026
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   252
    1001 => -799929174
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   253
    1002 => 429626413
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   254
    1003 => -821285437
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   255
    1004 => 1670322612
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   256
    1005 => 1925605331
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   257
    1006 => 1705170599
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   258
    1007 => -256175309
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   259
    1008 => 651753684
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   260
    1009 => -1710121819
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   261
    1010 => 1155454929
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   262
    1011 => 461431108
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   263
    1012 => -2028561436
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   264
    1013 => 1977157906
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   265
    1014 => -54636091
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   266
    1015 => -669496035
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   267
    1016 => -959189089
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   268
    1017 => -1081705818
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   269
    1018 => 935048341
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   270
    1019 => 1848058144
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   271
    1020 => 682657049
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   272
    1021 => 9406967
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   273
    1022 => -98686165
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   274
    1023 => -64824797
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   275
    1024 => 1365042371
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   276
    1025 => 1754819174
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   277
    1026 => 933840019
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   278
    1027 => 1577578402
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   279
    1028 => 420566759
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   280
    1029 => -1872469035
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   281
    1030 => -697881323
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   282
    1031 => 1091027235
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   283
    1032 => 1001969154
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   284
    1033 => 315466472
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   285
    1034 => 840435208
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   286
    1035 => 2010662021
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   287
    1036 => -1784655975
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   288
    1037 => 1413073566
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   289
    1038 => -841240668
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   290
    1039 => 103625484
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   291
    1040 => -1658507510
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   292
    1041 => -102091421
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   293
    1042 => 1464728002
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   294
    1043 => 1049162075
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   295
    1044 => 769281991
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   296
    1045 => 384138993
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   297
    1046 => -2064287113
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   298
    1047 => -931746111
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   299
    1048 => -358850804
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   300
    1049 => 978513867
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   301
    1051 => -1756292659
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   302
    1052 => 73085820
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   303
    1053 => 284986576
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   304
    1054 => 1908549801
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   305
    1055 => 1031985888
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   306
    1056 => -216278913
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   307
    1057 => 988268067
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   308
    1058 => -618655226
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   309
    1059 => -232110358
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   310
    1060 => 278694908
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   311
    1061 => 1444189056
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   312
    1062 => -690668105
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   313
    1063 => 1453737449
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   314
    1064 => 1222082116
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   315
    1065 => 1315480265
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   316
    1066 => 2101304211
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   317
    1067 => -1428786480
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   318
    1068 => 636630420
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   319
    1069 => 1910533661
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   320
    1070 => 1823367094
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   321
    1071 => -2058922812
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   322
    1072 => 396819271
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   323
    1073 => -963848185
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   324
    1074 => 881736883
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   325
    1075 => -758945066
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   326
    1076 => -2050156175
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   327
    1077 => -801286336
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   328
    1078 => -1276947052
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   329
    1079 => 64214997
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   330
    1080 => 515657110
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   331
    1081 => -1992243338
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   332
    1082 => -2088507011
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   333
    1083 => -437598559
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   334
    1084 => -963693423
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   335
    1085 => 508374070
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   336
    1086 => -637379826
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   337
    1087 => 1816492397
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   338
    1088 => -927496464
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   339
    1089 => -1386798276
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   340
    1090 => -246561744
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   341
    1091 => 1111334158
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   342
    1092 => -164201614
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   343
    1093 => -762675739
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   344
    1094 => 906198641
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   345
    1095 => 1018408444
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   346
    1096 => 1077722054
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   347
    1097 => 1091067333
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   348
    1098 => -815996928
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   349
    1099 => -571363581
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   350
  KeepTop(10):
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   351
    1 => -1893761951
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   352
    2 => -1937566705
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   353
    1000 => 875192026
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   354
    1001 => -799929174
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   355
    1002 => 429626413
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   356
    1003 => -821285437
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   357
    1004 => 1670322612
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   358
    1005 => 1925605331
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   359
    1006 => 1705170599
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   360
    1007 => -256175309
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   361
  KeepBottom(8):
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   362
    1000 => 875192026
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   363
    1001 => -799929174
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   364
    1002 => 429626413
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   365
    1003 => -821285437
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   366
    1004 => 1670322612
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   367
    1005 => 1925605331
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   368
    1006 => 1705170599
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   369
    1007 => -256175309
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   370
  RemoveBottom(2):
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   371
    1000 => 875192026
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   372
    1001 => -799929174
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   373
    1002 => 429626413
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   374
    1003 => -821285437
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   375
    1004 => 1670322612
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   376
    1005 => 1925605331
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   377
  RemoveTop(2):
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   378
    1002 => 429626413
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   379
    1003 => -821285437
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   380
    1004 => 1670322612
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   381
    1005 => 1925605331
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   382
  RemoveList({1003, 1004}):
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   383
    1002 => 429626413
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   384
    1005 => 1925605331
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   385
  KeepList({1003, 1004, 1005}):
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
   386
    1005 => 1925605331
9796
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   387
  AddList({1005, 4000, 4001, 4002}):
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   388
    1005 => 1005
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   389
    4000 => 4000
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   390
    4001 => 4001
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   391
    4002 => 4002
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   392
  IsEmpty():     true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   393
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   394
--AIAirport--
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   395
  IsHangarTile():       false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   396
  IsAirportTile():      false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   397
  GetHangarOfAirport(): -1
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   398
  AirportAvailable(-1):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   399
  GetAirportWidth(-1):          0
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   400
  GetAirportHeight(-1):         0
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   401
  GetAirportCoverageRadius(-1): 0
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   402
  AirportAvailable(0):         true
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   403
  GetAirportWidth(0):          4
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   404
  GetAirportHeight(0):         3
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   405
  GetAirportCoverageRadius(0): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   406
  AirportAvailable(1):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   407
  GetAirportWidth(1):          6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   408
  GetAirportHeight(1):         6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   409
  GetAirportCoverageRadius(1): 5
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   410
  AirportAvailable(2):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   411
  GetAirportWidth(2):          1
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   412
  GetAirportHeight(2):         1
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   413
  GetAirportCoverageRadius(2): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   414
  AirportAvailable(3):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   415
  GetAirportWidth(3):          6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   416
  GetAirportHeight(3):         6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   417
  GetAirportCoverageRadius(3): 6
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   418
  AirportAvailable(4):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   419
  GetAirportWidth(4):          7
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   420
  GetAirportHeight(4):         7
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   421
  GetAirportCoverageRadius(4): 8
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   422
  AirportAvailable(5):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   423
  GetAirportWidth(5):          5
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   424
  GetAirportHeight(5):         4
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   425
  GetAirportCoverageRadius(5): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   426
  AirportAvailable(6):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   427
  GetAirportWidth(6):          2
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   428
  GetAirportHeight(6):         2
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   429
  GetAirportCoverageRadius(6): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   430
  AirportAvailable(7):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   431
  GetAirportWidth(7):          9
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   432
  GetAirportHeight(7):         11
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   433
  GetAirportCoverageRadius(7): 10
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   434
  AirportAvailable(8):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   435
  GetAirportWidth(8):          4
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   436
  GetAirportHeight(8):         2
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   437
  GetAirportCoverageRadius(8): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   438
  AirportAvailable(9):         false
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   439
  GetAirportWidth(9):          -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   440
  GetAirportHeight(9):         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   441
  GetAirportCoverageRadius(9): -1
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   442
  GetBankBalance():     100000
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   443
  BuildAirport():       true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   444
  IsHangarTile():       false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   445
  IsAirportTile():      true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   446
  GetHangarOfAirport(): 32119
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   447
  IsHangarTile():       true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   448
  IsAirportTile():      true
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   449
  GetBankBalance():     90100
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   450
  RemoveAirport():      true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   451
  IsHangarTile():       false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   452
  IsAirportTile():      false
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   453
  GetBankBalance():     89836
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   454
  BuildAirport():       true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   455
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   456
--Bridge--
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   457
  Bridge -1
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   458
    IsValidBridge():    false
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   459
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   460
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   461
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   462
    GetMaxLength():     -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   463
    GetMinLength():     -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   464
    GetYearAvailable(): -1
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   465
  Bridge 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   466
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   467
    GetName():          Wooden rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   468
    GetMaxSpeed():      32
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   469
    GetPrice():         321
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   470
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   471
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   472
    GetYearAvailable(): 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   473
  Bridge 1
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   474
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   475
    GetName():          Concrete rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   476
    GetMaxSpeed():      48
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   477
    GetPrice():         450
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   478
    GetMaxLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   479
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   480
    GetYearAvailable(): 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   481
  Bridge 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   482
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   483
    GetName():          Steel girder rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   484
    GetMaxSpeed():      64
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   485
    GetPrice():         579
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   486
    GetMaxLength():     7
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   487
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   488
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   489
  Bridge 3
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   490
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   491
    GetName():          Reinforced concrete suspension rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   492
    GetMaxSpeed():      80
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   493
    GetPrice():         675
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   494
    GetMaxLength():     12
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   495
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   496
    GetYearAvailable(): 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   497
  Bridge 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   498
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   499
    GetName():          Steel suspension rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   500
    GetMaxSpeed():      96
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   501
    GetPrice():         744
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   502
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   503
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   504
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   505
  Bridge 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   506
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   507
    GetName():          Steel suspension rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   508
    GetMaxSpeed():      112
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   509
    GetPrice():         772
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   510
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   511
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   512
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   513
  Bridge 6
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   514
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   515
    GetName():          Steel cantilever rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   516
    GetMaxSpeed():      160
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   517
    GetPrice():         901
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   518
    GetMaxLength():     9
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   519
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   520
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   521
  Bridge 7
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   522
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   523
    GetName():          Steel cantilever rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   524
    GetMaxSpeed():      208
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   525
    GetPrice():         933
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   526
    GetMaxLength():     10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   527
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   528
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   529
  Bridge 8
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   530
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   531
    GetName():          Steel cantilever rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   532
    GetMaxSpeed():      240
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   533
    GetPrice():         997
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   534
    GetMaxLength():     11
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   535
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   536
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   537
  Bridge 9
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   538
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   539
    GetName():          Steel girder rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   540
    GetMaxSpeed():      256
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   541
    GetPrice():         965
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   542
    GetMaxLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   543
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   544
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   545
  Bridge 10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   546
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   547
    GetName():          Tubular rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   548
    GetMaxSpeed():      320
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   549
    GetPrice():         1025
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   550
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   551
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   552
    GetYearAvailable(): 1995
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   553
  Bridge 11
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   554
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   555
    GetName():          Tubular rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   556
    GetMaxSpeed():      512
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   557
    GetPrice():         1528
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   558
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   559
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   560
    GetYearAvailable(): 2005
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   561
  Bridge 12
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   562
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   563
    GetName():          Tubular rail bridge
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   564
    GetMaxSpeed():      608
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   565
    GetPrice():         2051
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   566
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   567
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   568
    GetYearAvailable(): 2010
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   569
  Bridge 13
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   570
    IsValidBridge():    false
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   571
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   572
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   573
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   574
    GetMaxLength():     -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   575
    GetMinLength():     -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   576
    GetYearAvailable(): -1
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   577
  Valid Bridges:        13
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   578
  IsBridgeTile():       false
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   579
  RemoveBridge():       false
9867
b7d9ffe24f81 (svn r12589) [NoAI] -Add: GetLastError support for AIBridge.
rubidium
parents: 9865
diff changeset
   580
  GetLastErrorString(): ERR_PRECONDITION_FAILED
10691
a60393d87c0b (svn r13235) [NoAI] -Change [API CHANGE]: AITunnel.GetOtherTunnelEnd() now returns INVALID_TILE if no other end is found
glx
parents: 10676
diff changeset
   581
  GetOtherBridgeEnd():  -1
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   582
  BuildBridge():        true
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   583
  IsBridgeTile():       true
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   584
  IsBridgeTile():       true
10691
a60393d87c0b (svn r13235) [NoAI] -Change [API CHANGE]: AITunnel.GetOtherTunnelEnd() now returns INVALID_TILE if no other end is found
glx
parents: 10676
diff changeset
   585
  GetOtherBridgeEnd():  33155
9867
b7d9ffe24f81 (svn r12589) [NoAI] -Add: GetLastError support for AIBridge.
rubidium
parents: 9865
diff changeset
   586
  BuildBridge():        false
b7d9ffe24f81 (svn r12589) [NoAI] -Add: GetLastError support for AIBridge.
rubidium
parents: 9865
diff changeset
   587
  GetLastErrorString(): ERR_ALREADY_BUILT
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   588
  RemoveBridge():       true
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   589
  IsBridgeTile():       false
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   590
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   591
--BridgeList--
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   592
  Count():             10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   593
  MaxSpeed ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   594
    9 => 256
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   595
    8 => 240
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   596
    7 => 208
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   597
    6 => 160
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   598
    5 => 112
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   599
    4 => 96
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   600
    3 => 80
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   601
    2 => 64
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   602
    1 => 48
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   603
    0 => 32
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   604
  Price ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   605
    8 => 997
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   606
    9 => 965
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   607
    7 => 933
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   608
    6 => 901
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   609
    5 => 772
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   610
    4 => 744
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   611
    3 => 675
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   612
    2 => 579
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   613
    1 => 450
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   614
    0 => 321
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   615
  MaxLength ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   616
    5 => 102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   617
    4 => 102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   618
    0 => 102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   619
    3 => 12
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   620
    8 => 11
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   621
    7 => 10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   622
    6 => 9
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   623
    2 => 7
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   624
    9 => 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   625
    1 => 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   626
  MinLength ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   627
    8 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   628
    7 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   629
    6 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   630
    5 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   631
    4 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   632
    3 => 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   633
    9 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   634
    2 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   635
    1 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   636
    0 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   637
  YearAvailable ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   638
    9 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   639
    8 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   640
    7 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   641
    6 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   642
    5 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   643
    4 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   644
    2 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   645
    3 => 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   646
    1 => 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   647
    0 => 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   648
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   649
--BridgeList_Length--
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   650
  Count():             3
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   651
  MaxSpeed ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   652
    5 => 112
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   653
    4 => 96
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   654
    0 => 32
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   655
  Price ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   656
    5 => 2163
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   657
    4 => 2084
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   658
    0 => 901
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   659
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   660
--AICargo--
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   661
  Cargo -1
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   662
    IsValidCargo():          false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
   663
    GetCargoLabel():         '(null : 0x00000000)'
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   664
    IsFreight():             false
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   665
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   666
    GetTownEffect():         0
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   667
    GetCargoIncome(0, 0):    -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   668
    GetCargoIncome(10, 10):  -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   669
    GetCargoIncome(100, 10): -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   670
    GetCargoIncome(10, 100): -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   671
  Cargo 0
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   672
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   673
    GetCargoLabel():         'PASS'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   674
    IsFreight():             false
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   675
    HasCargoClass():         true
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   676
    GetTownEffect():         1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   677
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   678
    GetCargoIncome(10, 10):  3
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   679
    GetCargoIncome(100, 10): 37
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   680
    GetCargoIncome(10, 100): 1
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   681
  Cargo 1
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   682
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   683
    GetCargoLabel():         'COAL'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   684
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   685
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   686
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   687
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   688
    GetCargoIncome(10, 10):  7
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   689
    GetCargoIncome(100, 10): 71
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   690
    GetCargoIncome(10, 100): 4
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   691
  Cargo 2
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   692
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   693
    GetCargoLabel():         'MAIL'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   694
    IsFreight():             false
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   695
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   696
    GetTownEffect():         2
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   697
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   698
    GetCargoIncome(10, 10):  5
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   699
    GetCargoIncome(100, 10): 55
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   700
    GetCargoIncome(10, 100): 3
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   701
  Cargo 3
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   702
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   703
    GetCargoLabel():         'OIL_'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   704
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   705
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   706
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   707
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   708
    GetCargoIncome(10, 10):  5
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   709
    GetCargoIncome(100, 10): 53
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   710
    GetCargoIncome(10, 100): 3
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   711
  Cargo 4
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   712
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   713
    GetCargoLabel():         'LVST'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   714
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   715
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   716
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   717
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   718
    GetCargoIncome(10, 10):  5
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   719
    GetCargoIncome(100, 10): 51
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   720
    GetCargoIncome(10, 100): 1
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   721
  Cargo 5
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   722
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   723
    GetCargoLabel():         'GOOD'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   724
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   725
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   726
    GetTownEffect():         3
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   727
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   728
    GetCargoIncome(10, 10):  7
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   729
    GetCargoIncome(100, 10): 73
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   730
    GetCargoIncome(10, 100): 2
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   731
  Cargo 6
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   732
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   733
    GetCargoLabel():         'GRAI'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   734
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   735
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   736
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   737
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   738
    GetCargoIncome(10, 10):  5
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   739
    GetCargoIncome(100, 10): 56
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   740
    GetCargoIncome(10, 100): 2
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   741
  Cargo 7
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   742
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   743
    GetCargoLabel():         'WOOD'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   744
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   745
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   746
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   747
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   748
    GetCargoIncome(10, 10):  6
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   749
    GetCargoIncome(100, 10): 60
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   750
    GetCargoIncome(10, 100): 4
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   751
  Cargo 8
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   752
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   753
    GetCargoLabel():         'IORE'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   754
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   755
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   756
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   757
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   758
    GetCargoIncome(10, 10):  6
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   759
    GetCargoIncome(100, 10): 62
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   760
    GetCargoIncome(10, 100): 4
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   761
  Cargo 9
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   762
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   763
    GetCargoLabel():         'STEL'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   764
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   765
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   766
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   767
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   768
    GetCargoIncome(10, 10):  6
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   769
    GetCargoIncome(100, 10): 68
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   770
    GetCargoIncome(10, 100): 4
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   771
  Cargo 10
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   772
    IsValidCargo():          true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   773
    GetCargoLabel():         'VALU'
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   774
    IsFreight():             true
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   775
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   776
    GetTownEffect():         0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   777
    GetCargoIncome(0, 0):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   778
    GetCargoIncome(10, 10):  8
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   779
    GetCargoIncome(100, 10): 88
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   780
    GetCargoIncome(10, 100): 3
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   781
  Cargo 11
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   782
    IsValidCargo():          false
9478
2d1459762868 (svn r9326) [NoAI] -Fix r9325: somehow I fucked up the regression.txt update
truelight
parents: 9477
diff changeset
   783
    GetCargoLabel():         '(null : 0x00000000)'
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   784
    IsFreight():             false
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   785
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   786
    GetTownEffect():         0
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   787
    GetCargoIncome(0, 0):    -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   788
    GetCargoIncome(10, 10):  -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   789
    GetCargoIncome(100, 10): -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   790
    GetCargoIncome(10, 100): -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   791
  Cargo 12
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   792
    IsValidCargo():          false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
   793
    GetCargoLabel():         '(null : 0x00000000)'
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   794
    IsFreight():             false
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   795
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   796
    GetTownEffect():         0
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   797
    GetCargoIncome(0, 0):    -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   798
    GetCargoIncome(10, 10):  -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   799
    GetCargoIncome(100, 10): -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   800
    GetCargoIncome(10, 100): -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   801
  Cargo 13
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   802
    IsValidCargo():          false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
   803
    GetCargoLabel():         '(null : 0x00000000)'
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   804
    IsFreight():             false
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   805
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   806
    GetTownEffect():         0
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   807
    GetCargoIncome(0, 0):    -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   808
    GetCargoIncome(10, 10):  -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   809
    GetCargoIncome(100, 10): -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   810
    GetCargoIncome(10, 100): -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   811
  Cargo 14
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   812
    IsValidCargo():          false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
   813
    GetCargoLabel():         '(null : 0x00000000)'
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   814
    IsFreight():             false
10676
9dca9483f2c0 (svn r13220) [NoAI] -Fix r13219: it has been a while, but I forgot to commit the regression update ;)
truebrain
parents: 10668
diff changeset
   815
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   816
    GetTownEffect():         0
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   817
    GetCargoIncome(0, 0):    -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   818
    GetCargoIncome(10, 10):  -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   819
    GetCargoIncome(100, 10): -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   820
    GetCargoIncome(10, 100): -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   821
9785
edbd185e05ed (svn r12280) [NoAI] -Add: added AICargoList (Morloth)
truebrain
parents: 9776
diff changeset
   822
--CargoList--
edbd185e05ed (svn r12280) [NoAI] -Add: added AICargoList (Morloth)
truebrain
parents: 9776
diff changeset
   823
  Count():            11
9788
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   824
  IsFreight ListDump:
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   825
    10 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   826
    9 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   827
    8 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   828
    7 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   829
    6 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   830
    5 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   831
    4 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   832
    3 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   833
    1 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   834
    2 => 0
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   835
    0 => 0
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   836
  CargoIncomes(100, 100) ListDump:
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   837
    1 => 45
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   838
    9 => 43
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   839
    8 => 40
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   840
    7 => 40
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   841
    3 => 38
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   842
    2 => 37
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   843
    10 => 31
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   844
    5 => 27
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   845
    6 => 23
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   846
    4 => 16
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   847
    0 => 11
9785
edbd185e05ed (svn r12280) [NoAI] -Add: added AICargoList (Morloth)
truebrain
parents: 9776
diff changeset
   848
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   849
--Company--
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   850
  SetCompanyName():     true
9558
4fc9b464a932 (svn r9496) [NoAI] -Add: added regression for AITestMode() and AIExecMode()
truelight
parents: 9557
diff changeset
   851
  SetCompanyName():     true
4fc9b464a932 (svn r9496) [NoAI] -Add: added regression for AITestMode() and AIExecMode()
truelight
parents: 9557
diff changeset
   852
  SetCompanyName():     true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   853
  SetCompanyName():     false
9865
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   854
  GetLastErrorString(): ERR_NAME_IS_NOT_UNIQUE
9668
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   855
  GetCompanyName():            Regression
10355
ee4b5f7a5bf2 (svn r12896) [NoAI] -Sync: with trunk r12824:r12895.
rubidium
parents: 10344
diff changeset
   856
  GetPresidentName():          I. O'Donnell
9668
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   857
  SetPresidentName():          true
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   858
  GetPresidentName():          Regression AI
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   859
  GetCompanyValue():           0
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   860
  GetBankBalance():            82534
9697
a6a9379988f6 (svn r10938) [NoAI] -Fix r10937: regression update
truelight
parents: 9694
diff changeset
   861
  GetCompanyName():            (null : 0x00000000)
9668
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   862
  GetLoanAmount():             100000
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   863
  GetMaxLoanAmount():          300000
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   864
  GetLoanInterval():           10000
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   865
  SetLoanAmount(1):            false
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   866
  SetLoanAmount(100):          false
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   867
  SetLoanAmount(10000):        false
9865
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   868
  GetLastErrorString():        ERR_PRECONDITION_FAILED
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   869
  GetBankBalance():            82534
9668
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   870
  GetLoanAmount():             100000
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   871
  SetMinimumLoanAmount(31337): true
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   872
  GetBankBalance():            22534
9668
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   873
  GetLoanAmount():             40000
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   874
  SetLoanAmount(10000):        true
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   875
  GetBankBalance():            282534
9668
6fe3d2cb9655 (svn r10582) [NoAI] -Codechange: allow getting the president and company names of other companies as well as their company value and bank balance.
rubidium
parents: 9666
diff changeset
   876
  GetLoanAmount():             300000
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   877
  GetCompanyHQ():              -1
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   878
  BuildCompanyHQ():            true
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   879
  GetCompanyHQ():              33151
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   880
  BuildCompanyHQ():            true
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   881
  GetCompanyHQ():              33153
9865
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   882
  BuildCompanyHQ():            false
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   883
  GetLastErrorString():        ERR_AREA_NOT_CLEAR
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   884
  GetAutoRenewStatus();        false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   885
  SetAutoRenewStatus(true);    true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   886
  GetAutoRenewStatus();        true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   887
  SetAutoRenewStatus(true);    false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   888
  SetAutoRenewStatus(false);   true
10776
07203fc29812 (svn r13326) [NoAI] -Sync with trunk r13264:13325
glx
parents: 10691
diff changeset
   889
  GetAutoRenewMonths();        -6
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   890
  SetAutoRenewMonths(-12);     true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   891
  GetAutoRenewMonths();        -12
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   892
  SetAutoRenewMonths(-12);     false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   893
  SetAutoRenewMonths(6);       true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   894
  GetAutoRenewMoney();         100000
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   895
  SetAutoRenewMoney(200000);   true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   896
  GetAutoRenewMoney();         200000
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   897
  SetAutoRenewMoney(200000);   false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   898
  SetAutoRenewMoney(100000);   true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
   899
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
   900
--Engine--
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
   901
  Engine -1
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
   902
    IsValidEngine():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
   903
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   904
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   905
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   906
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   907
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   908
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   909
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   910
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   911
    GetRunningCost():   -1
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
   912
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
   913
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
   914
  Engine 0
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
   915
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
   916
    GetName():          Kirby Paul Tank (Steam)
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
   917
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
   918
    CanRefitCargo():    false
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   919
    GetCapacity():      -1
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
   920
    GetReliability():   82
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
   921
    GetMaxSpeed():      64
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   922
    GetPrice():         8203
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
   923
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
   924
    GetRunningCost():   820
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
   925
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
   926
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
   927
  Engine 1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   928
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   929
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   930
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   931
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   932
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   933
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   934
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   935
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   936
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   937
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   938
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
   939
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   940
  Engine 2
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   941
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   942
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   943
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   944
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   945
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   946
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   947
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   948
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   949
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   950
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   951
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
   952
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   953
  Engine 3
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   954
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   955
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   956
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   957
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   958
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   959
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   960
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   961
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   962
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   963
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   964
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
   965
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   966
  Engine 4
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   967
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   968
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   969
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   970
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   971
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   972
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   973
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   974
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   975
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   976
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   977
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
   978
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   979
  Engine 5
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   980
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   981
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   982
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   983
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   984
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   985
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   986
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   987
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   988
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   989
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   990
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
   991
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   992
  Engine 6
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   993
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
   994
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   995
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   996
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   997
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   998
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
   999
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1000
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1001
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1002
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1003
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1004
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1005
  Engine 7
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1006
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1007
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1008
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1009
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1010
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1011
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1012
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1013
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1014
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1015
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1016
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1017
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1018
  Engine 8
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1019
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1020
    GetName():          Chaney 'Jubilee' (Steam)
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1021
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1022
    CanRefitCargo():    false
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1023
    GetCapacity():      -1
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1024
    GetReliability():   79
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1025
    GetMaxSpeed():      112
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1026
    GetPrice():         15234
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1027
    GetMaxAge():        7686
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1028
    GetRunningCost():   1968
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1029
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1030
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1031
  Engine 9
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1032
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1033
    GetName():          Ginzu 'A4' (Steam)
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1034
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1035
    CanRefitCargo():    false
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1036
    GetCapacity():      -1
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1037
    GetReliability():   83
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1038
    GetMaxSpeed():      128
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1039
    GetPrice():         22265
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1040
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1041
    GetRunningCost():   2296
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1042
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1043
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1044
  Engine 10
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1045
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1046
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1047
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1048
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1049
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1050
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1051
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1052
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1053
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1054
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1055
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1056
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1057
  Engine 11
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1058
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1059
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1060
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1061
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1062
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1063
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1064
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1065
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1066
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1067
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1068
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1069
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1070
  Engine 12
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1071
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1072
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1073
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1074
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1075
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1076
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1077
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1078
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1079
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1080
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1081
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1082
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1083
  Engine 13
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1084
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1085
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1086
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1087
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1088
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1089
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1090
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1091
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1092
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1093
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1094
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1095
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1096
  Engine 14
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1097
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1098
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1099
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1100
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1101
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1102
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1103
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1104
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1105
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1106
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1107
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1108
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1109
  Engine 15
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1110
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1111
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1112
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1113
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1114
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1115
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1116
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1117
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1118
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1119
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1120
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1121
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1122
  Engine 16
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1123
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1124
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1125
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1126
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1127
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1128
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1129
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1130
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1131
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1132
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1133
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1134
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1135
  Engine 17
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1136
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1137
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1138
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1139
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1140
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1141
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1142
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1143
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1144
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1145
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1146
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1147
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1148
  Engine 18
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1149
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1150
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1151
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1152
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1153
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1154
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1155
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1156
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1157
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1158
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1159
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1160
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1161
  Engine 19
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1162
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1163
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1164
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1165
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1166
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1167
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1168
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1169
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1170
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1171
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1172
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1173
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1174
  Engine 20
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1175
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1176
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1177
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1178
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1179
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1180
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1181
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1182
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1183
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1184
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1185
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1186
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1187
  Engine 21
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1188
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1189
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1190
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1191
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1192
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1193
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1194
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1195
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1196
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1197
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1198
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1199
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1200
  Engine 22
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1201
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1202
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1203
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1204
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1205
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1206
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1207
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1208
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1209
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1210
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1211
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1212
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1213
  Engine 23
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1214
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1215
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1216
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1217
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1218
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1219
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1220
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1221
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1222
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1223
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1224
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1225
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1226
  Engine 24
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1227
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1228
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1229
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1230
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1231
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1232
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1233
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1234
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1235
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1236
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1237
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1238
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1239
  Engine 25
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1240
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1241
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1242
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1243
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1244
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1245
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1246
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1247
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1248
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1249
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1250
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1251
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1252
  Engine 26
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1253
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1254
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1255
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1256
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1257
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1258
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1259
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1260
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1261
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1262
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1263
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1264
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1265
  Engine 27
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1266
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1267
    GetName():          Passenger Carriage
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1268
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1269
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1270
    GetCapacity():      40
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1271
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1272
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1273
    GetPrice():         289453
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1274
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1275
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1276
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1277
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1278
  Engine 28
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1279
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1280
    GetName():          Mail Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1281
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1282
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1283
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1284
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1285
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1286
    GetPrice():         267187
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1287
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1288
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1289
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1290
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1291
  Engine 29
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1292
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1293
    GetName():          Coal Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1294
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1295
    CanRefitCargo():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1296
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1297
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1298
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1299
    GetPrice():         206250
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1300
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1301
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1302
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1303
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1304
  Engine 30
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1305
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1306
    GetName():          Oil Tanker
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1307
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1308
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1309
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1310
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1311
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1312
    GetPrice():         234375
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1313
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1314
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1315
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1316
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1317
  Engine 31
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1318
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1319
    GetName():          Livestock Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1320
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1321
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1322
    GetCapacity():      25
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1323
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1324
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1325
    GetPrice():         225000
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1326
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1327
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1328
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1329
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1330
  Engine 32
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1331
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1332
    GetName():          Goods Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1333
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1334
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1335
    GetCapacity():      25
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1336
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1337
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1338
    GetPrice():         222656
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1339
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1340
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1341
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1342
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1343
  Engine 33
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1344
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1345
    GetName():          Grain Hopper
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1346
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1347
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1348
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1349
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1350
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1351
    GetPrice():         213281
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1352
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1353
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1354
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1355
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1356
  Engine 34
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1357
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1358
    GetName():          Wood Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1359
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1360
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1361
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1362
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1363
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1364
    GetPrice():         212109
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1365
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1366
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1367
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1368
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1369
  Engine 35
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1370
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1371
    GetName():          Iron Ore Hopper
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1372
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1373
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1374
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1375
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1376
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1377
    GetPrice():         209765
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1378
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1379
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1380
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1381
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1382
  Engine 36
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1383
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1384
    GetName():          Steel Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1385
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1386
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1387
    GetCapacity():      20
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1388
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1389
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1390
    GetPrice():         229687
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1391
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1392
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1393
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1394
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1395
  Engine 37
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1396
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1397
    GetName():          Armoured Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1398
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1399
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1400
    GetCapacity():      20
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1401
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1402
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1403
    GetPrice():         298828
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1404
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1405
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1406
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1407
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1408
  Engine 38
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1409
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1410
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1411
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1412
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1413
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1414
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1415
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1416
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1417
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1418
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1419
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1420
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1421
  Engine 39
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1422
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1423
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1424
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1425
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1426
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1427
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1428
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1429
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1430
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1431
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1432
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1433
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1434
  Engine 40
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1435
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1436
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1437
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1438
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1439
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1440
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1441
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1442
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1443
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1444
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1445
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1446
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1447
  Engine 41
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1448
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1449
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1450
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1451
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1452
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1453
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1454
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1455
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1456
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1457
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1458
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1459
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1460
  Engine 42
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1461
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1462
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1463
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1464
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1465
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1466
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1467
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1468
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1469
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1470
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1471
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1472
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1473
  Engine 43
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1474
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1475
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1476
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1477
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1478
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1479
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1480
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1481
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1482
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1483
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1484
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1485
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1486
  Engine 44
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1487
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1488
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1489
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1490
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1491
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1492
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1493
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1494
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1495
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1496
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1497
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1498
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1499
  Engine 45
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1500
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1501
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1502
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1503
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1504
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1505
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1506
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1507
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1508
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1509
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1510
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1511
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1512
  Engine 46
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1513
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1514
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1515
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1516
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1517
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1518
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1519
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1520
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1521
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1522
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1523
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1524
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1525
  Engine 47
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1526
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1527
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1528
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1529
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1530
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1531
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1532
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1533
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1534
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1535
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1536
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1537
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1538
  Engine 48
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1539
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1540
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1541
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1542
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1543
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1544
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1545
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1546
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1547
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1548
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1549
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1550
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1551
  Engine 49
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1552
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1553
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1554
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1555
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1556
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1557
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1558
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1559
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1560
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1561
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1562
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1563
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1564
  Engine 50
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1565
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1566
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1567
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1568
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1569
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1570
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1571
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1572
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1573
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1574
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1575
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1576
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1577
  Engine 51
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1578
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1579
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1580
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1581
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1582
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1583
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1584
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1585
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1586
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1587
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1588
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1589
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1590
  Engine 52
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1591
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1592
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1593
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1594
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1595
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1596
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1597
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1598
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1599
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1600
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1601
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1602
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1603
  Engine 53
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1604
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1605
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1606
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1607
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1608
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1609
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1610
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1611
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1612
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1613
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1614
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1615
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1616
  Engine 54
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1617
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1618
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1619
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1620
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1621
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1622
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1623
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1624
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1625
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1626
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1627
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1628
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1629
  Engine 55
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1630
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1631
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1632
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1633
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1634
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1635
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1636
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1637
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1638
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1639
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1640
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1641
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1642
  Engine 56
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1643
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1644
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1645
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1646
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1647
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1648
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1649
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1650
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1651
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1652
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1653
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1654
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1655
  Engine 57
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1656
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1657
    GetName():          Passenger Carriage
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1658
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1659
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1660
    GetCapacity():      45
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1661
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1662
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1663
    GetPrice():         289453
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1664
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1665
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1666
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1667
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1668
  Engine 58
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1669
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1670
    GetName():          Mail Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1671
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1672
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1673
    GetCapacity():      35
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1674
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1675
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1676
    GetPrice():         267187
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1677
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1678
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1679
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1680
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1681
  Engine 59
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1682
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1683
    GetName():          Coal Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1684
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1685
    CanRefitCargo():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1686
    GetCapacity():      35
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1687
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1688
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1689
    GetPrice():         206250
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1690
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1691
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1692
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1693
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1694
  Engine 60
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1695
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1696
    GetName():          Oil Tanker
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1697
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1698
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1699
    GetCapacity():      35
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1700
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1701
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1702
    GetPrice():         234375
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1703
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1704
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1705
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1706
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1707
  Engine 61
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1708
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1709
    GetName():          Livestock Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1710
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1711
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1712
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1713
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1714
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1715
    GetPrice():         225000
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1716
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1717
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1718
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1719
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1720
  Engine 62
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1721
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1722
    GetName():          Goods Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1723
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1724
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1725
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1726
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1727
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1728
    GetPrice():         222656
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1729
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1730
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1731
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1732
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1733
  Engine 63
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1734
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1735
    GetName():          Grain Hopper
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1736
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1737
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1738
    GetCapacity():      35
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1739
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1740
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1741
    GetPrice():         213281
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1742
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1743
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1744
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1745
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1746
  Engine 64
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1747
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1748
    GetName():          Wood Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1749
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1750
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1751
    GetCapacity():      35
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1752
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1753
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1754
    GetPrice():         212109
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1755
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1756
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1757
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1758
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1759
  Engine 65
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1760
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1761
    GetName():          Iron Ore Hopper
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1762
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1763
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1764
    GetCapacity():      35
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1765
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1766
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1767
    GetPrice():         209765
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1768
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1769
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1770
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1771
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1772
  Engine 66
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1773
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1774
    GetName():          Steel Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1775
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1776
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1777
    GetCapacity():      25
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1778
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1779
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1780
    GetPrice():         229687
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1781
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1782
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1783
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1784
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1785
  Engine 67
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1786
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1787
    GetName():          Armoured Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1788
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1789
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1790
    GetCapacity():      25
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1791
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1792
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1793
    GetPrice():         298828
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1794
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1795
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  1796
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1797
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  1798
  Engine 68
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1799
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1800
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1801
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1802
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1803
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1804
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1805
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1806
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1807
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1808
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1809
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1810
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1811
  Engine 69
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1812
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1813
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1814
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1815
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1816
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1817
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1818
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1819
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1820
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1821
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1822
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1823
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1824
  Engine 70
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1825
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1826
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1827
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1828
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1829
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1830
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1831
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1832
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1833
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1834
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1835
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1836
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1837
  Engine 71
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1838
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1839
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1840
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1841
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1842
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1843
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1844
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1845
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1846
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1847
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1848
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1849
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1850
  Engine 72
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1851
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1852
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1853
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1854
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1855
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1856
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1857
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1858
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1859
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1860
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1861
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1862
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1863
  Engine 73
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1864
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1865
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1866
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1867
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1868
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1869
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1870
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1871
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1872
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1873
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1874
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1875
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1876
  Engine 74
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1877
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1878
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1879
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1880
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1881
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1882
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1883
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1884
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1885
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1886
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1887
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1888
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1889
  Engine 75
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1890
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1891
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1892
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1893
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1894
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1895
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1896
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1897
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1898
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1899
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1900
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1901
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1902
  Engine 76
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1903
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1904
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1905
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1906
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1907
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1908
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1909
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1910
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1911
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1912
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1913
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1914
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1915
  Engine 77
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1916
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1917
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1918
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1919
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1920
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1921
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1922
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1923
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1924
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1925
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1926
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1927
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1928
  Engine 78
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1929
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1930
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1931
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1932
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1933
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1934
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1935
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1936
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1937
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1938
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1939
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1940
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1941
  Engine 79
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1942
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1943
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1944
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1945
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1946
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1947
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1948
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1949
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1950
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1951
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1952
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1953
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1954
  Engine 80
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1955
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1956
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1957
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1958
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1959
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1960
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1961
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1962
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1963
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1964
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1965
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1966
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1967
  Engine 81
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1968
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1969
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1970
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1971
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1972
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1973
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1974
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1975
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1976
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1977
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1978
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1979
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1980
  Engine 82
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1981
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1982
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1983
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1984
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1985
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1986
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1987
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1988
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1989
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1990
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1991
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  1992
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1993
  Engine 83
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1994
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  1995
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1996
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1997
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1998
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  1999
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2000
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2001
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2002
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2003
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2004
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2005
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2006
  Engine 84
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2007
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2008
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2009
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2010
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2011
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2012
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2013
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2014
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2015
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2016
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2017
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2018
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2019
  Engine 85
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2020
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2021
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2022
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2023
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2024
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2025
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2026
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2027
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2028
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2029
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2030
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2031
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2032
  Engine 86
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2033
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2034
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2035
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2036
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2037
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2038
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2039
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2040
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2041
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2042
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2043
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2044
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2045
  Engine 87
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2046
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2047
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2048
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2049
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2050
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2051
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2052
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2053
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2054
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2055
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2056
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2057
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2058
  Engine 88
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2059
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2060
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2061
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2062
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2063
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2064
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2065
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2066
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2067
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2068
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2069
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2070
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2071
  Engine 89
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2072
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2073
    GetName():          Passenger Carriage
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2074
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2075
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2076
    GetCapacity():      47
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2077
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2078
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2079
    GetPrice():         289453
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2080
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2081
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2082
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2083
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2084
  Engine 90
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2085
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2086
    GetName():          Mail Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2087
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2088
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2089
    GetCapacity():      37
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2090
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2091
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2092
    GetPrice():         267187
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2093
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2094
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2095
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2096
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2097
  Engine 91
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2098
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2099
    GetName():          Coal Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2100
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2101
    CanRefitCargo():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2102
    GetCapacity():      37
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2103
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2104
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2105
    GetPrice():         206250
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2106
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2107
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2108
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2109
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2110
  Engine 92
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2111
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2112
    GetName():          Oil Tanker
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2113
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2114
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2115
    GetCapacity():      37
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2116
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2117
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2118
    GetPrice():         234375
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2119
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2120
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2121
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2122
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2123
  Engine 93
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2124
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2125
    GetName():          Livestock Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2126
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2127
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2128
    GetCapacity():      32
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2129
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2130
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2131
    GetPrice():         225000
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2132
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2133
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2134
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2135
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2136
  Engine 94
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2137
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2138
    GetName():          Goods Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2139
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2140
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2141
    GetCapacity():      32
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2142
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2143
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2144
    GetPrice():         222656
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2145
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2146
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2147
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2148
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2149
  Engine 95
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2150
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2151
    GetName():          Grain Hopper
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2152
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2153
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2154
    GetCapacity():      37
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2155
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2156
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2157
    GetPrice():         213281
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2158
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2159
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2160
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2161
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2162
  Engine 96
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2163
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2164
    GetName():          Wood Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2165
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2166
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2167
    GetCapacity():      37
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2168
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2169
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2170
    GetPrice():         212109
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2171
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2172
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2173
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2174
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2175
  Engine 97
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2176
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2177
    GetName():          Iron Ore Hopper
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2178
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2179
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2180
    GetCapacity():      37
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2181
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2182
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2183
    GetPrice():         209765
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2184
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2185
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2186
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2187
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2188
  Engine 98
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2189
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2190
    GetName():          Steel Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2191
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2192
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2193
    GetCapacity():      27
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2194
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2195
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2196
    GetPrice():         229687
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2197
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2198
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2199
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2200
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2201
  Engine 99
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2202
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2203
    GetName():          Armoured Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2204
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2205
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2206
    GetCapacity():      27
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2207
    GetReliability():   0
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2208
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2209
    GetPrice():         298828
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2210
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2211
    GetRunningCost():   0
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2212
    GetVehicleType():   0
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2213
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2214
  Engine 100
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2215
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2216
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2217
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2218
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2219
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2220
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2221
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2222
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2223
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2224
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2225
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2226
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2227
  Engine 101
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2228
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2229
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2230
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2231
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2232
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2233
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2234
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2235
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2236
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2237
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2238
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2239
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2240
  Engine 102
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2241
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2242
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2243
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2244
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2245
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2246
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2247
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2248
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2249
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2250
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2251
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2252
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2253
  Engine 103
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2254
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2255
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2256
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2257
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2258
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2259
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2260
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2261
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2262
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2263
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2264
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2265
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2266
  Engine 104
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2267
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2268
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2269
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2270
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2271
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2272
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2273
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2274
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2275
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2276
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2277
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2278
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2279
  Engine 105
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2280
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2281
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2282
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2283
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2284
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2285
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2286
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2287
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2288
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2289
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2290
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2291
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2292
  Engine 106
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2293
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2294
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2295
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2296
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2297
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2298
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2299
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2300
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2301
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2302
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2303
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2304
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2305
  Engine 107
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2306
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2307
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2308
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2309
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2310
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2311
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2312
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2313
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2314
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2315
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2316
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2317
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2318
  Engine 108
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2319
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2320
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2321
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2322
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2323
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2324
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2325
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2326
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2327
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2328
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2329
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2330
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2331
  Engine 109
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2332
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2333
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2334
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2335
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2336
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2337
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2338
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2339
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2340
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2341
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2342
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2343
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2344
  Engine 110
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2345
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2346
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2347
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2348
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2349
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2350
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2351
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2352
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2353
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2354
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2355
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2356
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2357
  Engine 111
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2358
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2359
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2360
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2361
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2362
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2363
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2364
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2365
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2366
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2367
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2368
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2369
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2370
  Engine 112
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2371
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2372
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2373
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2374
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2375
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2376
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2377
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2378
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2379
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2380
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2381
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2382
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2383
  Engine 113
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2384
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2385
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2386
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2387
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2388
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2389
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2390
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2391
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2392
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2393
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2394
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2395
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2396
  Engine 114
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2397
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2398
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2399
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2400
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2401
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2402
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2403
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2404
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2405
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2406
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2407
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2408
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2409
  Engine 115
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2410
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2411
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2412
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2413
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2414
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2415
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2416
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2417
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2418
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2419
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2420
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2421
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2422
  Engine 116
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2423
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2424
    GetName():          MPS Regal Bus
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2425
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2426
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2427
    GetCapacity():      31
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2428
    GetReliability():   78
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2429
    GetMaxSpeed():      56
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2430
    GetPrice():         4920
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2431
    GetMaxAge():        4392
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2432
    GetRunningCost():   426
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2433
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2434
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2435
  Engine 117
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2436
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2437
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2438
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2439
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2440
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2441
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2442
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2443
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2444
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2445
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2446
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2447
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2448
  Engine 118
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2449
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2450
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2451
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2452
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2453
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2454
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2455
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2456
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2457
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2458
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2459
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2460
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2461
  Engine 119
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2462
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2463
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2464
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2465
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2466
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2467
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2468
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2469
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2470
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2471
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2472
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2473
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2474
  Engine 120
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2475
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2476
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2477
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2478
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2479
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2480
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2481
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2482
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2483
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2484
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2485
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2486
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2487
  Engine 121
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2488
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2489
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2490
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2491
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2492
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2493
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2494
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2495
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2496
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2497
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2498
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2499
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2500
  Engine 122
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2501
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2502
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2503
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2504
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2505
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2506
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2507
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2508
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2509
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2510
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2511
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2512
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2513
  Engine 123
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2514
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2515
    GetName():          Balogh Coal Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2516
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2517
    CanRefitCargo():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2518
    GetCapacity():      20
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2519
    GetReliability():   76
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2520
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2521
    GetPrice():         4428
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2522
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2523
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2524
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2525
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2526
  Engine 124
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2527
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2528
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2529
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2530
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2531
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2532
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2533
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2534
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2535
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2536
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2537
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2538
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2539
  Engine 125
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2540
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2541
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2542
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2543
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2544
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2545
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2546
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2547
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2548
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2549
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2550
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2551
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2552
  Engine 126
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2553
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2554
    GetName():          MPS Mail Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2555
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2556
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2557
    GetCapacity():      22
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2558
    GetReliability():   91
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2559
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2560
    GetPrice():         4715
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2561
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2562
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2563
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2564
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2565
  Engine 127
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2566
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2567
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2568
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2569
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2570
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2571
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2572
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2573
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2574
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2575
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2576
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2577
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2578
  Engine 128
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2579
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2580
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2581
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2582
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2583
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2584
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2585
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2586
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2587
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2588
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2589
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2590
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2591
  Engine 129
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2592
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2593
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2594
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2595
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2596
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2597
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2598
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2599
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2600
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2601
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2602
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2603
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2604
  Engine 130
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2605
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2606
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2607
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2608
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2609
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2610
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2611
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2612
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2613
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2614
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2615
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2616
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2617
  Engine 131
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2618
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2619
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2620
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2621
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2622
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2623
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2624
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2625
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2626
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2627
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2628
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2629
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2630
  Engine 132
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2631
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2632
    GetName():          Witcombe Oil Tanker
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2633
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2634
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2635
    GetCapacity():      21
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2636
    GetReliability():   97
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2637
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2638
    GetPrice():         4510
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2639
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2640
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2641
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2642
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2643
  Engine 133
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2644
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2645
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2646
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2647
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2648
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2649
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2650
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2651
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2652
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2653
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2654
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2655
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2656
  Engine 134
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2657
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2658
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2659
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2660
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2661
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2662
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2663
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2664
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2665
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2666
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2667
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2668
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2669
  Engine 135
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2670
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2671
    GetName():          Talbott Livestock Van
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2672
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2673
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2674
    GetCapacity():      14
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2675
    GetReliability():   96
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2676
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2677
    GetPrice():         4305
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2678
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2679
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2680
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2681
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2682
  Engine 136
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2683
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2684
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2685
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2686
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2687
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2688
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2689
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2690
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2691
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2692
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2693
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2694
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2695
  Engine 137
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2696
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2697
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2698
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2699
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2700
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2701
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2702
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2703
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2704
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2705
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2706
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2707
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2708
  Engine 138
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2709
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2710
    GetName():          Balogh Goods Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2711
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2712
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2713
    GetCapacity():      14
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2714
    GetReliability():   86
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2715
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2716
    GetPrice():         4387
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2717
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2718
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2719
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2720
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2721
  Engine 139
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2722
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2723
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2724
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2725
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2726
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2727
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2728
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2729
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2730
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2731
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2732
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2733
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2734
  Engine 140
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2735
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2736
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2737
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2738
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2739
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2740
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2741
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2742
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2743
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2744
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2745
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2746
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2747
  Engine 141
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2748
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2749
    GetName():          Hereford Grain Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2750
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2751
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2752
    GetCapacity():      20
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2753
    GetReliability():   96
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2754
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2755
    GetPrice():         4674
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2756
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2757
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2758
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2759
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2760
  Engine 142
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2761
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2762
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2763
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2764
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2765
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2766
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2767
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2768
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2769
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2770
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2771
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2772
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2773
  Engine 143
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2774
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2775
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2776
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2777
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2778
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2779
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2780
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2781
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2782
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2783
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2784
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2785
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2786
  Engine 144
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2787
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2788
    GetName():          Witcombe Wood Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2789
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2790
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2791
    GetCapacity():      20
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2792
    GetReliability():   97
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2793
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2794
    GetPrice():         4838
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2795
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2796
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2797
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2798
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2799
  Engine 145
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2800
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2801
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2802
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2803
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2804
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2805
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2806
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2807
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2808
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2809
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2810
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2811
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2812
  Engine 146
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2813
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2814
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2815
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2816
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2817
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2818
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2819
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2820
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2821
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2822
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2823
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2824
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2825
  Engine 147
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2826
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2827
    GetName():          MPS Iron Ore Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2828
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2829
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2830
    GetCapacity():      22
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2831
    GetReliability():   96
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2832
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2833
    GetPrice():         4961
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2834
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2835
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2836
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2837
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2838
  Engine 148
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2839
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2840
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2841
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2842
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2843
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2844
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2845
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2846
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2847
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2848
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2849
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2850
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2851
  Engine 149
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2852
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2853
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2854
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2855
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2856
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2857
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2858
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2859
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2860
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2861
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2862
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2863
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2864
  Engine 150
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2865
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2866
    GetName():          Balogh Steel Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2867
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2868
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2869
    GetCapacity():      15
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2870
    GetReliability():   81
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2871
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2872
    GetPrice():         4592
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2873
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2874
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2875
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2876
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2877
  Engine 151
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2878
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2879
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2880
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2881
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2882
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2883
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2884
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2885
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2886
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2887
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2888
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2889
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2890
  Engine 152
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2891
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2892
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2893
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2894
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2895
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2896
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2897
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2898
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2899
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2900
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2901
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2902
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2903
  Engine 153
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2904
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2905
    GetName():          Balogh Armoured Truck
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2906
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2907
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2908
    GetCapacity():      12
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2909
    GetReliability():   75
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2910
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2911
    GetPrice():         5945
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2912
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2913
    GetRunningCost():   421
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  2914
    GetVehicleType():   1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2915
    GetRoadType():      0
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2916
  Engine 154
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2917
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2918
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2919
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2920
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2921
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2922
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2923
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2924
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2925
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2926
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2927
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2928
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2929
  Engine 155
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2930
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2931
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2932
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2933
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2934
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2935
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2936
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2937
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2938
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2939
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2940
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2941
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2942
  Engine 156
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2943
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2944
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2945
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2946
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2947
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2948
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2949
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2950
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2951
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2952
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2953
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2954
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2955
  Engine 157
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2956
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2957
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2958
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2959
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2960
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2961
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2962
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2963
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2964
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2965
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2966
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2967
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2968
  Engine 158
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2969
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2970
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2971
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2972
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2973
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2974
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2975
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2976
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2977
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2978
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2979
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2980
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2981
  Engine 159
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2982
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2983
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2984
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2985
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2986
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2987
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2988
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2989
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2990
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2991
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2992
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  2993
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  2994
  Engine 160
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2995
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  2996
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2997
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2998
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  2999
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3000
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3001
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3002
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3003
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3004
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3005
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3006
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3007
  Engine 161
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3008
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3009
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3010
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3011
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3012
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3013
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3014
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3015
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3016
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3017
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3018
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3019
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3020
  Engine 162
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3021
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3022
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3023
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3024
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3025
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3026
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3027
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3028
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3029
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3030
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3031
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3032
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3033
  Engine 163
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3034
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3035
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3036
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3037
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3038
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3039
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3040
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3041
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3042
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3043
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3044
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3045
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3046
  Engine 164
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3047
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3048
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3049
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3050
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3051
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3052
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3053
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3054
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3055
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3056
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3057
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3058
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3059
  Engine 165
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3060
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3061
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3062
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3063
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3064
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3065
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3066
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3067
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3068
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3069
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3070
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3071
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3072
  Engine 166
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3073
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3074
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3075
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3076
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3077
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3078
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3079
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3080
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3081
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3082
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3083
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3084
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3085
  Engine 167
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3086
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3087
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3088
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3089
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3090
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3091
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3092
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3093
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3094
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3095
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3096
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3097
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3098
  Engine 168
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3099
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3100
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3101
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3102
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3103
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3104
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3105
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3106
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3107
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3108
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3109
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3110
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3111
  Engine 169
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3112
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3113
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3114
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3115
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3116
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3117
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3118
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3119
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3120
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3121
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3122
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3123
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3124
  Engine 170
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3125
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3126
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3127
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3128
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3129
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3130
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3131
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3132
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3133
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3134
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3135
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3136
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3137
  Engine 171
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3138
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3139
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3140
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3141
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3142
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3143
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3144
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3145
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3146
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3147
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3148
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3149
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3150
  Engine 172
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3151
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3152
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3153
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3154
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3155
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3156
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3157
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3158
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3159
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3160
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3161
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3162
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3163
  Engine 173
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3164
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3165
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3166
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3167
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3168
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3169
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3170
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3171
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3172
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3173
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3174
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3175
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3176
  Engine 174
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3177
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3178
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3179
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3180
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3181
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3182
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3183
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3184
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3185
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3186
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3187
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3188
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3189
  Engine 175
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3190
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3191
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3192
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3193
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3194
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3195
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3196
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3197
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3198
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3199
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3200
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3201
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3202
  Engine 176
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3203
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3204
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3205
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3206
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3207
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3208
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3209
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3210
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3211
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3212
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3213
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3214
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3215
  Engine 177
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3216
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3217
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3218
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3219
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3220
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3221
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3222
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3223
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3224
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3225
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3226
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3227
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3228
  Engine 178
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3229
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3230
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3231
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3232
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3233
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3234
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3235
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3236
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3237
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3238
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3239
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3240
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3241
  Engine 179
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3242
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3243
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3244
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3245
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3246
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3247
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3248
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3249
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3250
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3251
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3252
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3253
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3254
  Engine 180
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3255
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3256
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3257
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3258
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3259
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3260
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3261
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3262
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3263
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3264
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3265
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3266
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3267
  Engine 181
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3268
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3269
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3270
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3271
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3272
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3273
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3274
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3275
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3276
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3277
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3278
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3279
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3280
  Engine 182
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3281
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3282
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3283
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3284
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3285
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3286
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3287
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3288
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3289
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3290
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3291
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3292
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3293
  Engine 183
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3294
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3295
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3296
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3297
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3298
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3299
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3300
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3301
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3302
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3303
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3304
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3305
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3306
  Engine 184
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3307
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3308
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3309
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3310
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3311
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3312
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3313
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3314
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3315
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3316
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3317
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3318
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3319
  Engine 185
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3320
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3321
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3322
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3323
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3324
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3325
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3326
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3327
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3328
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3329
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3330
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3331
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3332
  Engine 186
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3333
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3334
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3335
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3336
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3337
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3338
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3339
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3340
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3341
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3342
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3343
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3344
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3345
  Engine 187
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3346
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3347
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3348
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3349
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3350
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3351
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3352
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3353
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3354
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3355
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3356
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3357
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3358
  Engine 188
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3359
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3360
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3361
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3362
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3363
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3364
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3365
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3366
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3367
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3368
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3369
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3370
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3371
  Engine 189
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3372
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3373
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3374
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3375
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3376
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3377
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3378
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3379
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3380
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3381
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3382
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3383
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3384
  Engine 190
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3385
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3386
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3387
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3388
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3389
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3390
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3391
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3392
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3393
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3394
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3395
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3396
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3397
  Engine 191
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3398
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3399
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3400
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3401
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3402
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3403
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3404
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3405
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3406
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3407
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3408
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3409
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3410
  Engine 192
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3411
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3412
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3413
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3414
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3415
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3416
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3417
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3418
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3419
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3420
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3421
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3422
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3423
  Engine 193
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3424
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3425
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3426
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3427
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3428
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3429
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3430
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3431
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3432
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3433
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3434
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3435
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3436
  Engine 194
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3437
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3438
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3439
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3440
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3441
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3442
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3443
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3444
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3445
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3446
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3447
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3448
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3449
  Engine 195
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3450
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3451
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3452
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3453
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3454
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3455
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3456
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3457
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3458
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3459
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3460
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3461
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3462
  Engine 196
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3463
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3464
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3465
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3466
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3467
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3468
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3469
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3470
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3471
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3472
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3473
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3474
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3475
  Engine 197
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3476
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3477
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3478
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3479
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3480
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3481
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3482
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3483
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3484
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3485
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3486
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3487
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3488
  Engine 198
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3489
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3490
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3491
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3492
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3493
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3494
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3495
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3496
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3497
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3498
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3499
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3500
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3501
  Engine 199
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3502
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3503
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3504
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3505
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3506
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3507
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3508
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3509
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3510
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3511
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3512
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3513
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3514
  Engine 200
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3515
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3516
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3517
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3518
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3519
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3520
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3521
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3522
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3523
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3524
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3525
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3526
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3527
  Engine 201
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3528
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3529
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3530
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3531
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3532
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3533
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3534
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3535
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3536
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3537
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3538
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3539
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3540
  Engine 202
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3541
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3542
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3543
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3544
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3545
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3546
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3547
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3548
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3549
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3550
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3551
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3552
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3553
  Engine 203
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3554
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3555
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3556
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3557
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3558
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3559
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3560
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3561
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3562
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3563
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3564
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3565
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3566
  Engine 204
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3567
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3568
    GetName():          MPS Oil Tanker
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3569
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3570
    CanRefitCargo():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3571
    GetCapacity():      220
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3572
    GetReliability():   98
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  3573
    GetMaxSpeed():      24
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3574
    GetPrice():         30465
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3575
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3576
    GetRunningCost():   2296
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3577
    GetVehicleType():   2
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3578
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3579
  Engine 205
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3580
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3581
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3582
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3583
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3584
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3585
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3586
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3587
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3588
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3589
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3590
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3591
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3592
  Engine 206
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3593
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3594
    GetName():          MPS Passenger Ferry
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3595
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3596
    CanRefitCargo():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3597
    GetCapacity():      100
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3598
    GetReliability():   87
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  3599
    GetMaxSpeed():      32
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3600
    GetPrice():         18279
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3601
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3602
    GetRunningCost():   1476
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3603
    GetVehicleType():   2
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3604
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3605
  Engine 207
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3606
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3607
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3608
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3609
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3610
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3611
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3612
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3613
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3614
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3615
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3616
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3617
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3618
  Engine 208
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3619
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3620
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3621
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3622
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3623
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3624
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3625
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3626
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3627
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3628
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3629
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3630
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3631
  Engine 209
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3632
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3633
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3634
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3635
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3636
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3637
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3638
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3639
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3640
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3641
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3642
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3643
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3644
  Engine 210
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3645
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3646
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3647
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3648
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3649
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3650
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3651
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3652
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3653
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3654
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3655
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3656
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3657
  Engine 211
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3658
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3659
    GetName():          Yate Cargo ship
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3660
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3661
    CanRefitCargo():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3662
    GetCapacity():      160
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3663
    GetReliability():   81
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  3664
    GetMaxSpeed():      24
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3665
    GetPrice():         24372
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3666
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3667
    GetRunningCost():   2460
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3668
    GetVehicleType():   2
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3669
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3670
  Engine 212
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3671
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3672
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3673
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3674
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3675
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3676
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3677
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3678
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3679
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3680
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3681
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3682
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3683
  Engine 213
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3684
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3685
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3686
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3687
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3688
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3689
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3690
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3691
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3692
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3693
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3694
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3695
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3696
  Engine 214
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3697
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3698
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3699
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3700
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3701
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3702
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3703
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3704
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3705
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3706
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3707
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3708
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3709
  Engine 215
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3710
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3711
    GetName():          Sampson U52
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3712
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3713
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3714
    GetCapacity():      25
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3715
    GetReliability():   70
9804
217f77b77400 (svn r12310) [NoAI] -Fix: make MaxSpeed for Aircrafts return the value divided by plane_speed (which in regression is now set to 1/2th)
truebrain
parents: 9799
diff changeset
  3716
    GetMaxSpeed():      238
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3717
    GetPrice():         28710
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3718
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3719
    GetRunningCost():   2390
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3720
    GetVehicleType():   3
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3721
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3722
  Engine 216
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3723
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3724
    GetName():          Coleman Count
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3725
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3726
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3727
    GetCapacity():      65
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3728
    GetReliability():   95
9804
217f77b77400 (svn r12310) [NoAI] -Fix: make MaxSpeed for Aircrafts return the value divided by plane_speed (which in regression is now set to 1/2th)
truebrain
parents: 9799
diff changeset
  3729
    GetMaxSpeed():      238
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3730
    GetPrice():         30761
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3731
    GetMaxAge():        8784
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3732
    GetRunningCost():   2812
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3733
    GetVehicleType():   3
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3734
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3735
  Engine 217
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3736
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3737
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3738
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3739
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3740
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3741
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3742
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3743
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3744
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3745
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3746
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3747
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3748
  Engine 218
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3749
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3750
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3751
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3752
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3753
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3754
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3755
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3756
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3757
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3758
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3759
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3760
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3761
  Engine 219
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3762
    IsValidEngine():    true
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3763
    GetName():          Bakewell Cotswald LB-3
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3764
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3765
    CanRefitCargo():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3766
    GetCapacity():      30
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3767
    GetReliability():   76
9804
217f77b77400 (svn r12310) [NoAI] -Fix: make MaxSpeed for Aircrafts return the value divided by plane_speed (which in regression is now set to 1/2th)
truebrain
parents: 9799
diff changeset
  3768
    GetMaxSpeed():      238
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3769
    GetPrice():         30761
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3770
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3771
    GetRunningCost():   2756
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  3772
    GetVehicleType():   3
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3773
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3774
  Engine 220
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3775
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3776
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3777
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3778
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3779
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3780
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3781
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3782
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3783
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3784
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3785
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3786
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3787
  Engine 221
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3788
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3789
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3790
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3791
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3792
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3793
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3794
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3795
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3796
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3797
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3798
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3799
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3800
  Engine 222
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3801
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3802
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3803
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3804
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3805
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3806
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3807
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3808
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3809
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3810
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3811
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3812
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3813
  Engine 223
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3814
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3815
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3816
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3817
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3818
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3819
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3820
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3821
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3822
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3823
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3824
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3825
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3826
  Engine 224
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3827
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3828
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3829
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3830
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3831
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3832
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3833
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3834
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3835
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3836
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3837
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3838
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3839
  Engine 225
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3840
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3841
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3842
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3843
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3844
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3845
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3846
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3847
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3848
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3849
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3850
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3851
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3852
  Engine 226
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3853
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3854
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3855
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3856
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3857
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3858
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3859
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3860
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3861
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3862
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3863
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3864
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3865
  Engine 227
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3866
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3867
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3868
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3869
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3870
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3871
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3872
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3873
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3874
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3875
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3876
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3877
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3878
  Engine 228
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3879
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3880
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3881
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3882
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3883
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3884
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3885
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3886
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3887
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3888
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3889
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3890
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3891
  Engine 229
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3892
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3893
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3894
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3895
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3896
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3897
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3898
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3899
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3900
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3901
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3902
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3903
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3904
  Engine 230
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3905
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3906
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3907
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3908
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3909
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3910
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3911
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3912
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3913
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3914
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3915
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3916
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3917
  Engine 231
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3918
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3919
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3920
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3921
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3922
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3923
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3924
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3925
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3926
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3927
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3928
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3929
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3930
  Engine 232
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3931
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3932
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3933
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3934
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3935
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3936
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3937
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3938
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3939
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3940
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3941
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3942
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3943
  Engine 233
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3944
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3945
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3946
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3947
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3948
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3949
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3950
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3951
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3952
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3953
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3954
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3955
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3956
  Engine 234
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3957
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3958
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3959
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3960
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3961
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3962
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3963
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3964
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3965
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3966
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3967
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3968
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3969
  Engine 235
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3970
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3971
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3972
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3973
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3974
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3975
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3976
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3977
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3978
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3979
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3980
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3981
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3982
  Engine 236
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3983
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3984
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3985
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3986
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3987
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3988
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3989
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3990
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3991
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3992
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3993
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  3994
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  3995
  Engine 237
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3996
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  3997
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3998
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  3999
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4000
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4001
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4002
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4003
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4004
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4005
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4006
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4007
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4008
  Engine 238
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4009
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4010
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4011
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4012
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4013
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4014
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4015
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4016
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4017
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4018
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4019
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4020
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4021
  Engine 239
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4022
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4023
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4024
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4025
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4026
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4027
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4028
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4029
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4030
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4031
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4032
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4033
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4034
  Engine 240
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4035
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4036
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4037
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4038
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4039
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4040
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4041
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4042
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4043
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4044
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4045
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4046
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4047
  Engine 241
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4048
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4049
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4050
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4051
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4052
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4053
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4054
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4055
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4056
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4057
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4058
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4059
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4060
  Engine 242
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4061
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4062
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4063
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4064
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4065
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4066
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4067
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4068
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4069
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4070
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4071
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4072
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4073
  Engine 243
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4074
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4075
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4076
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4077
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4078
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4079
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4080
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4081
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4082
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4083
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4084
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4085
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4086
  Engine 244
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4087
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4088
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4089
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4090
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4091
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4092
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4093
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4094
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4095
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4096
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4097
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4098
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4099
  Engine 245
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4100
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4101
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4102
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4103
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4104
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4105
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4106
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4107
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4108
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4109
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4110
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4111
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4112
  Engine 246
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4113
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4114
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4115
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4116
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4117
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4118
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4119
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4120
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4121
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4122
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4123
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4124
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4125
  Engine 247
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4126
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4127
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4128
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4129
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4130
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4131
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4132
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4133
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4134
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4135
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4136
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4137
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4138
  Engine 248
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4139
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4140
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4141
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4142
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4143
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4144
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4145
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4146
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4147
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4148
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4149
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4150
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4151
  Engine 249
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4152
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4153
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4154
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4155
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4156
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4157
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4158
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4159
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4160
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4161
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4162
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4163
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4164
  Engine 250
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4165
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4166
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4167
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4168
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4169
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4170
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4171
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4172
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4173
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4174
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4175
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4176
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4177
  Engine 251
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4178
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4179
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4180
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4181
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4182
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4183
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4184
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4185
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4186
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4187
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4188
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4189
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4190
  Engine 252
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4191
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4192
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4193
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4194
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4195
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4196
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4197
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4198
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4199
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4200
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4201
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4202
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4203
  Engine 253
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4204
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4205
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4206
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4207
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4208
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4209
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4210
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4211
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4212
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4213
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4214
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4215
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4216
  Engine 254
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4217
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4218
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4219
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4220
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4221
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4222
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4223
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4224
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4225
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4226
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4227
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4228
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4229
  Engine 255
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4230
    IsValidEngine():    false
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4231
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4232
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4233
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4234
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4235
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4236
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4237
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4238
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4239
    GetRunningCost():   -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4240
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4241
    GetRoadType():      -1
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4242
  Engine 256
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4243
    IsValidEngine():    false
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  4244
    GetName():          (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4245
    GetCargoType():     255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4246
    CanRefitCargo():    false
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4247
    GetCapacity():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4248
    GetReliability():   -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4249
    GetMaxSpeed():      -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4250
    GetPrice():         -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4251
    GetMaxAge():        -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4252
    GetRunningCost():   -1
9713
7cd214115969 (svn r11297) [NoAI] -Add: in AIEngine, added: GetName, GetCargoType, GetCapacity, GetReliability, GetMaxSpeed, GetVehicleType, and GetPrice (on request by Kilinich)
truelight
parents: 9711
diff changeset
  4253
    GetVehicleType():   255
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  4254
    GetRoadType():      -1
9716
5d25a5271050 (svn r11300) [NoAI] -Fix: only show those engines you can purchase (all others return false with IsValidEngine)
truelight
parents: 9715
diff changeset
  4255
  Valid Engines:        53
9711
c8b427215c9d (svn r11295) [NoAI] -Change [API CHANGE]: put Engine things in AIEngine, and rename functions as such. Most noticable: FindBestXXXVehicle -> FineBestXXXEngine
truelight
parents: 9710
diff changeset
  4256
9714
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4257
--EngineList--
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4258
  Count():             88
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4259
  CargoType ListDump:
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4260
    203 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4261
    202 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4262
    201 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4263
    200 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4264
    199 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4265
    198 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4266
    197 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4267
    196 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4268
    195 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4269
    194 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4270
    193 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4271
    192 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4272
    191 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4273
    190 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4274
    189 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4275
    188 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4276
    187 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4277
    186 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4278
    185 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4279
    184 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4280
    183 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4281
    182 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4282
    181 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4283
    180 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4284
    179 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4285
    178 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4286
    177 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4287
    176 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4288
    175 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4289
    174 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4290
    173 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4291
    172 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4292
    171 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4293
    170 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4294
    169 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4295
    168 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4296
    167 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4297
    166 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4298
    165 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4299
    164 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4300
    163 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4301
    162 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4302
    161 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4303
    160 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4304
    159 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4305
    158 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4306
    157 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4307
    156 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4308
    155 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4309
    154 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4310
    152 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4311
    151 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4312
    149 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4313
    148 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4314
    146 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4315
    145 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4316
    143 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4317
    142 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4318
    140 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4319
    139 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4320
    137 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4321
    136 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4322
    134 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4323
    133 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4324
    131 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4325
    130 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4326
    129 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4327
    128 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4328
    127 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4329
    125 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4330
    124 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4331
    122 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4332
    121 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4333
    120 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4334
    119 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4335
    118 => 255
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4336
    117 => 255
9714
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4337
    153 => 10
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4338
    150 => 9
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4339
    147 => 8
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4340
    144 => 7
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4341
    141 => 6
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4342
    138 => 5
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4343
    135 => 4
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4344
    132 => 3
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4345
    126 => 2
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4346
    123 => 1
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4347
    116 => 0
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4348
  Capacity ListDump:
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4349
    116 => 31
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4350
    147 => 22
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4351
    126 => 22
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4352
    132 => 21
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4353
    144 => 20
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4354
    141 => 20
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4355
    123 => 20
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4356
    150 => 15
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4357
    138 => 14
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4358
    135 => 14
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4359
    153 => 12
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4360
    203 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4361
    202 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4362
    201 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4363
    200 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4364
    199 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4365
    198 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4366
    197 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4367
    196 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4368
    195 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4369
    194 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4370
    193 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4371
    192 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4372
    191 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4373
    190 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4374
    189 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4375
    188 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4376
    187 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4377
    186 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4378
    185 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4379
    184 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4380
    183 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4381
    182 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4382
    181 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4383
    180 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4384
    179 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4385
    178 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4386
    177 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4387
    176 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4388
    175 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4389
    174 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4390
    173 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4391
    172 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4392
    171 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4393
    170 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4394
    169 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4395
    168 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4396
    167 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4397
    166 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4398
    165 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4399
    164 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4400
    163 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4401
    162 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4402
    161 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4403
    160 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4404
    159 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4405
    158 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4406
    157 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4407
    156 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4408
    155 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4409
    154 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4410
    152 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4411
    151 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4412
    149 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4413
    148 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4414
    146 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4415
    145 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4416
    143 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4417
    142 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4418
    140 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4419
    139 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4420
    137 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4421
    136 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4422
    134 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4423
    133 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4424
    131 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4425
    130 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4426
    129 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4427
    128 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4428
    127 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4429
    125 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4430
    124 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4431
    122 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4432
    121 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4433
    120 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4434
    119 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4435
    118 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4436
    117 => -1
9714
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4437
  Reliability ListDump:
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4438
    144 => 97
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4439
    132 => 97
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4440
    147 => 96
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4441
    141 => 96
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4442
    135 => 96
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4443
    126 => 91
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4444
    138 => 86
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4445
    150 => 81
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4446
    116 => 78
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4447
    123 => 76
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4448
    153 => 75
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4449
    203 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4450
    202 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4451
    201 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4452
    200 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4453
    199 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4454
    198 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4455
    197 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4456
    196 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4457
    195 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4458
    194 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4459
    193 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4460
    192 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4461
    191 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4462
    190 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4463
    189 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4464
    188 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4465
    187 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4466
    186 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4467
    185 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4468
    184 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4469
    183 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4470
    182 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4471
    181 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4472
    180 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4473
    179 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4474
    178 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4475
    177 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4476
    176 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4477
    175 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4478
    174 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4479
    173 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4480
    172 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4481
    171 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4482
    170 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4483
    169 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4484
    168 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4485
    167 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4486
    166 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4487
    165 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4488
    164 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4489
    163 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4490
    162 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4491
    161 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4492
    160 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4493
    159 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4494
    158 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4495
    157 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4496
    156 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4497
    155 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4498
    154 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4499
    152 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4500
    151 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4501
    149 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4502
    148 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4503
    146 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4504
    145 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4505
    143 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4506
    142 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4507
    140 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4508
    139 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4509
    137 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4510
    136 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4511
    134 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4512
    133 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4513
    131 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4514
    130 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4515
    129 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4516
    128 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4517
    127 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4518
    125 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4519
    124 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4520
    122 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4521
    121 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4522
    120 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4523
    119 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4524
    118 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4525
    117 => -1
9714
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4526
  MaxSpeed ListDump:
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4527
    116 => 56
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4528
    153 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4529
    150 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4530
    147 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4531
    144 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4532
    141 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4533
    138 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4534
    135 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4535
    132 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4536
    126 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4537
    123 => 48
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4538
    203 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4539
    202 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4540
    201 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4541
    200 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4542
    199 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4543
    198 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4544
    197 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4545
    196 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4546
    195 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4547
    194 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4548
    193 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4549
    192 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4550
    191 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4551
    190 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4552
    189 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4553
    188 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4554
    187 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4555
    186 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4556
    185 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4557
    184 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4558
    183 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4559
    182 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4560
    181 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4561
    180 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4562
    179 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4563
    178 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4564
    177 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4565
    176 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4566
    175 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4567
    174 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4568
    173 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4569
    172 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4570
    171 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4571
    170 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4572
    169 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4573
    168 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4574
    167 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4575
    166 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4576
    165 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4577
    164 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4578
    163 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4579
    162 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4580
    161 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4581
    160 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4582
    159 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4583
    158 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4584
    157 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4585
    156 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4586
    155 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4587
    154 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4588
    152 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4589
    151 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4590
    149 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4591
    148 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4592
    146 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4593
    145 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4594
    143 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4595
    142 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4596
    140 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4597
    139 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4598
    137 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4599
    136 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4600
    134 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4601
    133 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4602
    131 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4603
    130 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4604
    129 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4605
    128 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4606
    127 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4607
    125 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4608
    124 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4609
    122 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4610
    121 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4611
    120 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4612
    119 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4613
    118 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4614
    117 => -1
9714
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4615
  Price ListDump:
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4616
    153 => 5945
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4617
    147 => 4961
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4618
    116 => 4920
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4619
    144 => 4838
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4620
    126 => 4715
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4621
    141 => 4674
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4622
    150 => 4592
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4623
    132 => 4510
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4624
    123 => 4428
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4625
    138 => 4387
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4626
    135 => 4305
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4627
    203 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4628
    202 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4629
    201 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4630
    200 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4631
    199 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4632
    198 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4633
    197 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4634
    196 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4635
    195 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4636
    194 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4637
    193 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4638
    192 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4639
    191 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4640
    190 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4641
    189 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4642
    188 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4643
    187 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4644
    186 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4645
    185 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4646
    184 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4647
    183 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4648
    182 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4649
    181 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4650
    180 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4651
    179 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4652
    178 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4653
    177 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4654
    176 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4655
    175 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4656
    174 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4657
    173 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4658
    172 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4659
    171 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4660
    170 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4661
    169 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4662
    168 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4663
    167 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4664
    166 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4665
    165 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4666
    164 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4667
    163 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4668
    162 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4669
    161 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4670
    160 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4671
    159 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4672
    158 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4673
    157 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4674
    156 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4675
    155 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4676
    154 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4677
    152 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4678
    151 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4679
    149 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4680
    148 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4681
    146 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4682
    145 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4683
    143 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4684
    142 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4685
    140 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4686
    139 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4687
    137 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4688
    136 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4689
    134 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4690
    133 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4691
    131 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4692
    130 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4693
    129 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4694
    128 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4695
    127 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4696
    125 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4697
    124 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4698
    122 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4699
    121 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4700
    120 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4701
    119 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4702
    118 => -1
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  4703
    117 => -1
9714
fdbdae7ea647 (svn r11298) [NoAI] -Add: added EngineList + Valuators for all common functions. This should replace all FindXXXEngine, which will be removed soon
truelight
parents: 9713
diff changeset
  4704
9682
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4705
--Event--
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4706
  GetNextEvent:      instance
9682
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4707
    GetEventType:    1
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4708
    Convert:         instance
9682
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4709
      GetTest:       42
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4710
  DisableEvent(1):   done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4711
  GetNextEvent:      null
9682
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4712
  EnableEvent(1):    done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4713
  GetNextEvent:      instance
9682
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4714
  DisableAllEvents():done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4715
  GetNextEvent:      null
9682
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4716
  EnableEvent(1):    done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4717
  GetNextEvent:      instance
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4718
  GetNextEvent:      null
10910
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4719
--AyStar--
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4720
  Fastest path:
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4721
    Tile 10
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4722
    Tile 9
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4723
    Tile 8
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4724
    Tile 7
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4725
    Tile 6
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4726
    Tile 5
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4727
    Tile 4
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4728
    Tile 3
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4729
    Tile 2
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4730
    Tile 1
9682
d031eb183733 (svn r10631) [NoAI] -Add: AIEvent, to take care of events; for now it only reports when vehicles are crashed
truelight
parents: 9672
diff changeset
  4731
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4732
--Industry--
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4733
  GetMaxIndustryID():  71
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4734
  GetIndustryCount():  69
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4735
  Industry -1
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4736
    IsValidIndustry(): false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
  4737
    GetName():         (null : 0x00000000)
9465
ccc1a559607b (svn r9297) [NoAI] -Fix: regression-test shows that 64bit systems gave other results for INVALID_TILE then 32bit system. Now they both act like the 32bit system.
truelight
parents: 9464
diff changeset
  4738
    GetLocation():     -1
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4739
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4740
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4741
  Industry 0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4742
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4743
    GetName():         Kennville Oil Refinery
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4744
    GetLocation():     19695
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4745
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4746
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4747
  Industry 1
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4748
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4749
    GetName():         Sadtown Forest
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4750
    GetLocation():     45122
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4751
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4752
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4753
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4754
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4755
  Industry 2
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4756
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4757
    GetName():         Fudinghattan Forest
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4758
    GetLocation():     41929
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4759
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4760
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4761
	   GetLastMonthProduction(): 56
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4762
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4763
  Industry 3
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4764
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4765
    GetName():         Benville Forest
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4766
    GetLocation():     44640
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4767
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4768
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4769
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4770
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4771
  Industry 4
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4772
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4773
    GetName():         Netfingbridge Forest
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4774
    GetLocation():     8793
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4775
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4776
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4777
	   GetLastMonthProduction(): 120
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4778
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4779
  Industry 5
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4780
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4781
    GetName():         Hutfingford Forest
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4782
    GetLocation():     55429
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4783
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4784
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4785
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4786
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4787
  Industry 6
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4788
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4789
    GetName():         Great Hinninghall Forest
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4790
    GetLocation():     6533
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4791
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4792
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4793
	   GetLastMonthProduction(): 72
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4794
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4795
  Industry 7
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4796
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4797
    GetName():         Tondston Forest
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4798
    GetLocation():     27609
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4799
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4800
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4801
	   GetLastMonthProduction(): 152
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4802
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4803
  Industry 8
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4804
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4805
    GetName():         Planfield Sawmill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4806
    GetLocation():     17318
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4807
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4808
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4809
  Industry 9
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4810
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4811
    GetName():         Hutfingford Sawmill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4812
    GetLocation():     60050
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4813
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4814
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4815
  Industry 10
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4816
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4817
    GetName():         Naborough Sawmill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4818
    GetLocation():     54184
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4819
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4820
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4821
  Industry 11
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4822
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4823
    GetName():         Prundinghall Sawmill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4824
    GetLocation():     48499
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4825
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4826
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4827
  Industry 12
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4828
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4829
    GetName():         Fraston Sawmill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4830
    GetLocation():     51419
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4831
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4832
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4833
  Industry 13
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4834
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4835
    GetName():         Fort Frindston Sawmill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4836
    GetLocation():     15950
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4837
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4838
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4839
  Industry 14
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4840
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4841
    GetName():         Grinnway Sawmill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4842
    GetLocation():     20001
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4843
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4844
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4845
  Industry 15
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4846
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4847
    GetName():         Trenningville Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4848
    GetLocation():     51854
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4849
    GetProduction():   144
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4850
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4851
	   GetLastMonthProduction(): 144
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4852
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4853
  Industry 16
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4854
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4855
    GetName():         Kennville Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4856
    GetLocation():     11734
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4857
    GetProduction():   112
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4858
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4859
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4860
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4861
  Industry 17
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4862
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4863
    GetName():         Great Hinninghall Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4864
    GetLocation():     13947
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4865
    GetProduction():   160
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4866
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4867
	   GetLastMonthProduction(): 160
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4868
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4869
  Industry 18
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4870
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4871
    GetName():         Little Fruford Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4872
    GetLocation():     23682
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4873
    GetProduction():   136
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4874
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4875
	   GetLastMonthProduction(): 136
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4876
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4877
  Industry 19
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4878
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4879
    GetName():         Hutfingford Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4880
    GetLocation():     57429
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4881
    GetProduction():   112
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4882
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4883
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4884
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4885
  Industry 20
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4886
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4887
    GetName():         Mendingston Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4888
    GetLocation():     8562
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4889
    GetProduction():   136
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4890
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4891
	   GetLastMonthProduction(): 136
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4892
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4893
  Industry 21
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4894
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4895
    GetName():         Tondston Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4896
    GetLocation():     29147
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4897
    GetProduction():   104
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4898
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4899
	   GetLastMonthProduction(): 104
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4900
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4901
  Industry 22
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4902
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4903
    GetName():         Quartfingfield Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4904
    GetLocation():     27822
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4905
    GetProduction():   152
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4906
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4907
	   GetLastMonthProduction(): 152
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4908
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4909
  Industry 23
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4910
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4911
    GetName():         Muningville Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4912
    GetLocation():     43035
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4913
    GetProduction():   96
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4914
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4915
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4916
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4917
  Industry 24
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4918
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4919
    GetName():         Grinnway Coal Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4920
    GetLocation():     17943
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4921
    GetProduction():   72
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4922
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4923
	   GetLastMonthProduction(): 72
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4924
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4925
  Industry 25
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4926
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4927
    GetName():         Sadtown Power Station
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4928
    GetLocation():     48182
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4929
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4930
    IsCargoAccepted(): true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4931
  Industry 26
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4932
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4933
    GetName():         Tunford Power Station
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4934
    GetLocation():     33934
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4935
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4936
    IsCargoAccepted(): true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4937
  Industry 27
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4938
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4939
    GetName():         Quartfingfield Power Station
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4940
    GetLocation():     23714
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4941
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4942
    IsCargoAccepted(): true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4943
  Industry 28
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4944
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4945
    GetName():         Kennville Power Station
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4946
    GetLocation():     20170
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4947
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4948
    IsCargoAccepted(): true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4949
  Industry 29
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4950
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4951
    GetName():         Nuntfingburg Power Station
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4952
    GetLocation():     6685
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4953
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4954
    IsCargoAccepted(): true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4955
  Industry 30
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4956
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4957
    GetName():         Bedburg Power Station
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4958
    GetLocation():     29022
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4959
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4960
    IsCargoAccepted(): true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4961
  Industry 31
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4962
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4963
    GetName():         Benville Power Station
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4964
    GetLocation():     44160
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4965
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4966
    IsCargoAccepted(): true
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4967
  Industry 32
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4968
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4969
    GetName():         Fort Frindston Oil Wells
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4970
    GetLocation():     14701
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4971
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4972
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4973
	   GetLastMonthProduction(): 120
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4974
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4975
  Industry 33
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4976
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4977
    GetName():         Nuntfingburg Oil Wells
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4978
    GetLocation():     5659
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4979
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4980
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4981
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4982
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4983
  Industry 34
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4984
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4985
    GetName():         Benville Oil Wells
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4986
    GetLocation():     36728
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4987
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4988
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4989
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4990
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4991
  Industry 35
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4992
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4993
    GetName():         Grinnway Oil Wells
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4994
    GetLocation():     14361
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4995
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4996
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4997
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4998
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  4999
  Industry 36
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5000
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5001
    GetName():         Muningville Oil Wells
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5002
    GetLocation():     36908
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5003
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5004
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5005
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5006
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5007
  Industry 37
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5008
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5009
    GetName():         Tondston Oil Wells
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5010
    GetLocation():     34237
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5011
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5012
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5013
	   GetLastMonthProduction(): 128
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5014
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5015
  Industry 38
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5016
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5017
    GetName():         Fort Frindston Iron Ore Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5018
    GetLocation():     17742
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5019
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5020
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5021
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5022
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5023
  Industry 39
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5024
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5025
    GetName():         Tondston Iron Ore Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5026
    GetLocation():     25545
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5027
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5028
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5029
	   GetLastMonthProduction(): 40
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5030
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5031
  Industry 40
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5032
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5033
    GetName():         Fudinghattan Iron Ore Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5034
    GetLocation():     47838
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5035
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5036
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5037
	   GetLastMonthProduction(): 72
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5038
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5039
  Industry 41
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5040
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5041
    GetName():         Nuntfingburg Iron Ore Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5042
    GetLocation():     8763
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5043
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5044
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5045
	   GetLastMonthProduction(): 56
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5046
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5047
  Industry 42
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5048
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5049
    GetName():         Lardborough Iron Ore Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5050
    GetLocation():     60866
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5051
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5052
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5053
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5054
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5055
  Industry 43
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5056
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5057
    GetName():         Tunford Iron Ore Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5058
    GetLocation():     41155
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5059
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5060
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5061
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5062
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5063
  Industry 44
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5064
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5065
    GetName():         Chentfingbourne Iron Ore Mine
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5066
    GetLocation():     19529
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5067
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5068
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5069
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5070
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5071
  Industry 45
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5072
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5073
    GetName():         Naborough Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5074
    GetLocation():     52931
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5075
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5076
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5077
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5078
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5079
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5080
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5081
  Industry 46
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5082
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5083
    GetName():         Lardborough Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5084
    GetLocation():     59604
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5085
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5086
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5087
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5088
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5089
	   GetLastMonthProduction(): 56
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5090
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5091
  Industry 47
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5092
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5093
    GetName():         Chentfingbourne Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5094
    GetLocation():     24366
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5095
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5096
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5097
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5098
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5099
	   GetLastMonthProduction(): 48
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5100
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5101
  Industry 48
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5102
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5103
    GetName():         Wrundtown Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5104
    GetLocation():     36847
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5105
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5106
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5107
	   GetLastMonthProduction(): 88
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5108
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5109
	   GetLastMonthProduction(): 104
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5110
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5111
  Industry 49
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5112
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5113
    GetName():         Little Fruford Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5114
    GetLocation():     28287
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5115
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5116
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5117
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5118
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5119
	   GetLastMonthProduction(): 40
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5120
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5121
  Industry 50
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5122
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5123
    GetName():         Hutfingford Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5124
    GetLocation():     57432
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5125
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5126
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5127
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5128
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5129
	   GetLastMonthProduction(): 88
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5130
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5131
  Industry 51
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5132
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5133
    GetName():         Tondston Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5134
    GetLocation():     23519
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5135
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5136
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5137
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5138
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5139
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5140
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5141
  Industry 52
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5142
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5143
    GetName():         Nuntfingburg Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5144
    GetLocation():     10773
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5145
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5146
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5147
	   GetLastMonthProduction(): 104
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5148
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5149
	   GetLastMonthProduction(): 72
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5150
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5151
  Industry 53
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5152
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5153
    GetName():         Sadtown Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5154
    GetLocation():     48206
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5155
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5156
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5157
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5158
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5159
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5160
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5161
  Industry 54
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5162
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5163
    GetName():         Quartfingfield Farm
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5164
    GetLocation():     24005
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5165
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5166
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5167
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5168
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5169
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5170
	   GetLastMonthTransported(): 0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5171
  Industry 55
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5172
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5173
    GetName():         Little Fruford Steel Mill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5174
    GetLocation():     21107
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5175
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5176
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5177
  Industry 56
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5178
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5179
    GetName():         Quartfingfield Steel Mill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5180
    GetLocation():     23727
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5181
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5182
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5183
  Industry 57
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5184
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5185
    GetName():         Bedburg Steel Mill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5186
    GetLocation():     41813
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5187
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5188
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5189
  Industry 58
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5190
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5191
    GetName():         Franinghead Steel Mill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5192
    GetLocation():     8852
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5193
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5194
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5195
  Industry 59
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5196
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5197
    GetName():         Lardborough Steel Mill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5198
    GetLocation():     59867
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5199
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5200
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5201
  Industry 60
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5202
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5203
    GetName():         Sadtown Steel Mill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5204
    GetLocation():     55360
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5205
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5206
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5207
  Industry 61
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5208
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5209
    GetName():         Fraston Steel Mill
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5210
    GetLocation():     52953
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5211
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5212
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5213
  Industry 62
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5214
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5215
    GetName():         Chentfingbourne Factory
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5216
    GetLocation():     24893
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5217
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5218
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5219
  Industry 63
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5220
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5221
    GetName():         Fort Frindston Factory
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5222
    GetLocation():     20819
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5223
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5224
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5225
  Industry 64
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5226
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5227
    GetName():         Fudinghattan Factory
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5228
    GetLocation():     46278
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5229
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5230
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5231
  Industry 65
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5232
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5233
    GetName():         Prundinghall Factory
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5234
    GetLocation():     53096
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5235
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5236
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5237
  Industry 66
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5238
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5239
    GetName():         Kennville Factory
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5240
    GetLocation():     14818
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5241
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5242
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5243
  Industry 67
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5244
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5245
    GetName():         Muningville Factory
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5246
    GetLocation():     34375
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5247
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5248
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5249
  Industry 68
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5250
    IsValidIndustry(): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5251
    GetName():         Trenningville Factory
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5252
    GetLocation():     44181
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5253
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5254
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5255
  Industry 69
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5256
    IsValidIndustry(): false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
  5257
    GetName():         (null : 0x00000000)
9465
ccc1a559607b (svn r9297) [NoAI] -Fix: regression-test shows that 64bit systems gave other results for INVALID_TILE then 32bit system. Now they both act like the 32bit system.
truelight
parents: 9464
diff changeset
  5258
    GetLocation():     -1
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5259
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5260
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5261
  Industry 70
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5262
    IsValidIndustry(): false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
  5263
    GetName():         (null : 0x00000000)
9465
ccc1a559607b (svn r9297) [NoAI] -Fix: regression-test shows that 64bit systems gave other results for INVALID_TILE then 32bit system. Now they both act like the 32bit system.
truelight
parents: 9464
diff changeset
  5264
    GetLocation():     -1
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5265
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5266
    IsCargoAccepted(): false
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5267
  Industry 71
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5268
    IsValidIndustry(): false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5269
    GetName():         (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5270
    GetLocation():     -1
9717
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5271
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5272
    IsCargoAccepted(): false
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5273
  Valid Industries:    69
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5274
  GetIndustryCount():  69
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5275
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5276
--IndustryList--
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5277
  Count():             69
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5278
  Location ListDump:
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5279
    42 => 60866
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5280
    9 => 60050
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5281
    59 => 59867
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5282
    46 => 59604
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5283
    50 => 57432
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5284
    19 => 57429
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5285
    5 => 55429
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5286
    60 => 55360
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5287
    10 => 54184
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5288
    65 => 53096
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5289
    61 => 52953
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5290
    45 => 52931
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5291
    15 => 51854
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5292
    12 => 51419
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5293
    11 => 48499
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5294
    53 => 48206
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5295
    25 => 48182
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5296
    40 => 47838
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5297
    64 => 46278
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5298
    1 => 45122
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5299
    3 => 44640
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5300
    68 => 44181
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5301
    31 => 44160
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5302
    23 => 43035
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5303
    2 => 41929
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5304
    57 => 41813
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5305
    43 => 41155
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5306
    36 => 36908
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5307
    48 => 36847
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5308
    34 => 36728
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5309
    67 => 34375
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5310
    37 => 34237
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5311
    26 => 33934
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5312
    21 => 29147
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5313
    30 => 29022
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5314
    49 => 28287
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5315
    22 => 27822
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5316
    7 => 27609
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5317
    39 => 25545
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5318
    62 => 24893
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5319
    47 => 24366
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5320
    54 => 24005
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5321
    56 => 23727
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5322
    27 => 23714
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5323
    18 => 23682
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5324
    51 => 23519
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5325
    55 => 21107
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5326
    63 => 20819
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5327
    28 => 20170
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5328
    14 => 20001
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5329
    0 => 19695
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5330
    44 => 19529
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5331
    24 => 17943
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5332
    38 => 17742
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5333
    8 => 17318
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5334
    13 => 15950
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5335
    66 => 14818
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5336
    32 => 14701
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5337
    35 => 14361
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5338
    17 => 13947
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5339
    16 => 11734
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5340
    52 => 10773
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5341
    58 => 8852
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5342
    4 => 8793
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5343
    41 => 8763
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5344
    20 => 8562
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5345
    29 => 6685
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5346
    6 => 6533
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5347
    33 => 5659
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5348
  DistanceManhattanToTile(30000) ListDump:
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5349
    59 => 287
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5350
    46 => 279
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5351
    42 => 266
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5352
    61 => 258
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5353
    12 => 254
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5354
    40 => 243
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5355
    66 => 238
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5356
    16 => 238
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5357
    45 => 236
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5358
    0 => 232
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5359
    48 => 217
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5360
    9 => 215
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5361
    10 => 214
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5362
    64 => 213
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5363
    51 => 201
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5364
    2 => 199
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5365
    28 => 193
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5366
    43 => 190
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5367
    5 => 184
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5368
    58 => 183
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5369
    15 => 179
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5370
    7 => 179
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5371
    6 => 177
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5372
    21 => 175
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5373
    54 => 173
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5374
    39 => 171
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5375
    8 => 168
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5376
    37 => 157
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5377
    68 => 156
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5378
    56 => 152
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5379
    20 => 150
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5380
    50 => 147
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5381
    65 => 146
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5382
    19 => 144
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5383
    27 => 139
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5384
    11 => 139
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5385
    17 => 138
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5386
    31 => 135
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5387
    22 => 135
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5388
    4 => 124
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5389
    32 => 121
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5390
    33 => 116
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5391
    60 => 115
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5392
    29 => 110
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5393
    26 => 109
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5394
    18 => 107
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5395
    3 => 105
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5396
    55 => 102
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5397
    52 => 102
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5398
    53 => 101
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5399
    34 => 98
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5400
    41 => 94
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5401
    49 => 86
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5402
    13 => 85
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5403
    35 => 84
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5404
    57 => 83
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5405
    38 => 78
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5406
    25 => 77
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5407
    1 => 77
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5408
    24 => 72
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5409
    23 => 72
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5410
    63 => 71
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5411
    44 => 66
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5412
    14 => 54
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5413
    30 => 50
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5414
    67 => 40
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5415
    62 => 33
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5416
    36 => 31
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5417
    47 => 24
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5418
  DistanceSquareToTile(30000) ListDump:
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5419
    59 => 42697
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5420
    46 => 40121
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5421
    0 => 38162
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5422
    48 => 37157
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5423
    61 => 36482
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5424
    12 => 36130
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5425
    42 => 35716
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5426
    66 => 35284
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5427
    40 => 35037
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5428
    16 => 32740
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5429
    51 => 31301
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5430
    45 => 29530
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5431
    21 => 29257
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5432
    7 => 28661
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5433
    64 => 26469
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5434
    2 => 25525
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5435
    28 => 25237
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5436
    39 => 23733
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5437
    43 => 23458
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5438
    9 => 23293
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5439
    10 => 23236
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5440
    54 => 22777
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5441
    37 => 20137
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5442
    5 => 17026
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5443
    58 => 16889
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5444
    56 => 16754
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5445
    8 => 16424
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5446
    15 => 16061
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5447
    22 => 15957
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5448
    6 => 15689
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5449
    27 => 13621
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5450
    68 => 13226
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5451
    50 => 13049
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5452
    19 => 12818
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5453
    20 => 11412
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5454
    65 => 11236
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5455
    60 => 10057
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5456
    11 => 9673
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5457
    17 => 9594
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5458
    33 => 9466
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5459
    31 => 9425
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5460
    26 => 9061
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5461
    29 => 8642
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5462
    4 => 8570
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5463
    18 => 7349
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5464
    32 => 7321
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5465
    41 => 7010
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5466
    52 => 6354
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5467
    49 => 6290
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5468
    53 => 5941
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5469
    34 => 5860
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5470
    55 => 5714
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5471
    3 => 5553
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5472
    25 => 5077
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5473
    35 => 4250
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5474
    13 => 3925
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5475
    1 => 3805
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5476
    57 => 3485
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5477
    38 => 3204
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5478
    23 => 3042
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5479
    24 => 2834
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5480
    63 => 2521
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5481
    44 => 2306
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5482
    30 => 2132
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5483
    14 => 1746
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5484
    67 => 818
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5485
    36 => 745
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5486
    62 => 569
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  5487
    47 => 488
10384
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5488
  GetAmountOfStationsAround(30000) ListDump:
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5489
    68 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5490
    67 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5491
    66 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5492
    65 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5493
    64 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5494
    63 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5495
    62 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5496
    61 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5497
    60 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5498
    59 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5499
    58 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5500
    57 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5501
    56 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5502
    55 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5503
    54 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5504
    53 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5505
    52 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5506
    51 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5507
    50 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5508
    49 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5509
    48 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5510
    47 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5511
    46 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5512
    45 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5513
    44 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5514
    43 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5515
    42 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5516
    41 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5517
    40 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5518
    39 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5519
    38 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5520
    37 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5521
    36 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5522
    35 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5523
    34 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5524
    33 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5525
    32 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5526
    31 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5527
    30 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5528
    29 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5529
    28 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5530
    27 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5531
    26 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5532
    25 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5533
    24 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5534
    23 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5535
    22 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5536
    21 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5537
    20 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5538
    19 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5539
    18 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5540
    17 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5541
    16 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5542
    15 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5543
    14 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5544
    13 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5545
    12 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5546
    11 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5547
    10 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5548
    9 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5549
    8 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5550
    7 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5551
    6 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5552
    5 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5553
    4 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5554
    3 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5555
    2 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5556
    1 => 0
f0106eb03df3 (svn r12926) [NoAI] -Fix r12925: it has been a while, but... forgot to update regression (tnx glx)
truebrain
parents: 10381
diff changeset
  5557
    0 => 0
9710
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5558
  CargoAccepted(1) ListDump:
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5559
    31 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5560
    30 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5561
    29 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5562
    28 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5563
    27 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5564
    26 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5565
    25 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5566
    68 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5567
    67 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5568
    66 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5569
    65 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5570
    64 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5571
    63 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5572
    62 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5573
    61 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5574
    60 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5575
    59 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5576
    58 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5577
    57 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5578
    56 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5579
    55 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5580
    54 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5581
    53 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5582
    52 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5583
    51 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5584
    50 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5585
    49 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5586
    48 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5587
    47 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5588
    46 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5589
    45 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5590
    44 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5591
    43 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5592
    42 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5593
    41 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5594
    40 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5595
    39 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5596
    38 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5597
    37 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5598
    36 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5599
    35 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5600
    34 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5601
    33 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5602
    32 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5603
    24 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5604
    23 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5605
    22 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5606
    21 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5607
    20 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5608
    19 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5609
    18 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5610
    17 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5611
    16 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5612
    15 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5613
    14 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5614
    13 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5615
    12 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5616
    11 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5617
    10 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5618
    9 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5619
    8 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5620
    7 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5621
    6 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5622
    5 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5623
    4 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5624
    3 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5625
    2 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5626
    1 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5627
    0 => 0
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5628
  KeepAboveValue(50): done
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5629
  Count():             10
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5630
  Production ListDump:
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5631
    17 => 160
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5632
    22 => 152
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5633
    15 => 144
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5634
    20 => 136
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5635
    18 => 136
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5636
    19 => 112
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5637
    16 => 112
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5638
    21 => 104
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5639
    23 => 96
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5640
    24 => 72
9776
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5641
--IndustryList_CargoAccepting--
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5642
  Count():             7
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5643
  Location ListDump:
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5644
    25 => 48182
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5645
    31 => 44160
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5646
    26 => 33934
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5647
    30 => 29022
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5648
    27 => 23714
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5649
    28 => 20170
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5650
    29 => 6685
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5651
--IndustryList_CargoProducing--
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5652
  Count():             10
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5653
  Location ListDump:
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5654
    19 => 57429
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5655
    15 => 51854
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5656
    23 => 43035
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5657
    21 => 29147
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5658
    22 => 27822
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5659
    18 => 23682
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5660
    24 => 17943
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5661
    17 => 13947
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5662
    16 => 11734
ee9923d46fba (svn r12270) [NoAI] -Add: added AIIndustryList_CargoAccepting and AIIndustryList_CargoProducing, which gives you Industry Lists with from where to where you can move cargo
truebrain
parents: 9774
diff changeset
  5663
    20 => 8562
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5664
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5665
--Map--
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5666
  GetMapSize():     65536
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5667
  GetMapSizeX():    256
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5668
  GetMapSizeY():    256
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5669
  GetTileX(123):    123
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5670
  GetTileY(123):    0
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5671
  GetTileIndex():   123
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5672
  GetTileIndex():   31488
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5673
  GetTileIndex():   0
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5674
  GetTileIndex():   -257
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5675
  GetTileIndex():   2570000
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5676
  IsValidTile(123): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5677
  GetTileX(124):    124
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5678
  GetTileY(124):    0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5679
  IsValidTile(124): true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5680
  IsValidTile(0):   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5681
  IsValidTile(-1):  false
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5682
  IsValidTile():    false
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5683
  IsValidTile():    true
9492
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5684
  DemolishTile():   false
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5685
  DemolishTile():   true
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5686
  Distance
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5687
    DistanceManhattan(): 54
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5688
    DistanceMax():       39
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5689
    DistanceSquare():    1746
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5690
    DistanceFromEdge():  16
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  5691
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5692
--AIMarine--
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5693
  IsWaterDepotTile():   false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5694
  IsDockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5695
  IsBuoyTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5696
  IsLockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5697
  IsCanalTile():        false
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
  5698
  GetBankBalance():     282086
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5699
  BuildWaterDepot():    true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5700
  BuildDock():          true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5701
  BuildBuoy():          true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5702
  BuildLock():          true
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  5703
  HasTransportType():   false
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5704
  BuildCanal():         true
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  5705
  HasTransportType():   true
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5706
  IsWaterDepotTile():   true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5707
  IsDockTile():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5708
  IsBuoyTile():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5709
  IsLockTile():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5710
  IsCanalTile():        true
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
  5711
  GetBankBalance():     252537
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5712
  RemoveWaterDepot():   true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5713
  RemoveDock():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5714
  RemoveBuoy():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5715
  RemoveLock():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5716
  RemoveCanal():        true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5717
  IsWaterDepotTile():   false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5718
  IsDockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5719
  IsBuoyTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5720
  IsLockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5721
  IsCanalTile():        false
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
  5722
  GetBankBalance():     229892
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5723
  BuildWaterDepot():    true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5724
  BuildDock():          true
9579
632263c0cf5a (svn r9603) [NoAI] -Add: added AIList(), a simple list in which you can add item/value pairs. You can sort them, walk them, and valuate them
truelight
parents: 9575
diff changeset
  5725
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5726
--PathFinder--
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5727
  Road Between Towns:
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5728
    Tile 46751
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5729
    Tile 46495
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5730
    Tile 46239
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5731
    Tile 45983
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5732
    Tile 45727
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5733
    Tile 45471
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5734
    Tile 45470
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5735
    Tile 45469
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5736
    Tile 45468
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5737
    Tile 45467
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5738
    Tile 45211
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5739
    Tile 44955
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5740
    Tile 44699
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5741
    Tile 44443
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5742
    Tile 44187
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5743
    Tile 43931
10946
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5744
    Tile 43930
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5745
    Tile 43929
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5746
    Tile 43928
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5747
    Tile 43927
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5748
    Tile 43926
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5749
    Tile 43925
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5750
    Tile 43669
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5751
    Tile 43413
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5752
    Tile 43157
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5753
    Tile 42901
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5754
    Tile 42645
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5755
    Tile 42389
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5756
    Tile 42133
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5757
    Tile 41877
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5758
    Tile 41621
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5759
    Tile 41365
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5760
    Tile 41109
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5761
    Tile 40853
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5762
    Tile 40597
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5763
    Tile 40341
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5764
    Tile 40085
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5765
    Tile 39829
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5766
    Tile 39573
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5767
    Tile 39317
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5768
    Tile 39061
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5769
    Tile 38805
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5770
    Tile 38549
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5771
    Tile 38293
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5772
    Tile 38037
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5773
    Tile 37781
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5774
    Tile 37525
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5775
    Tile 37269
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5776
    Tile 37013
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5777
    Tile 36757
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5778
    Tile 36501
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5779
    Tile 36245
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5780
    Tile 35989
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5781
    Tile 35733
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5782
    Tile 35477
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5783
    Tile 35221
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5784
    Tile 34965
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5785
    Tile 34709
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5786
    Tile 34453
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5787
    Tile 34197
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5788
    Tile 33941
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5789
    Tile 33685
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5790
    Tile 33429
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5791
    Tile 33173
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5792
    Tile 32917
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5793
    Tile 32661
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5794
    Tile 32405
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5795
    Tile 32149
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5796
    Tile 31893
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5797
    Tile 31637
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5798
    Tile 31381
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5799
    Tile 31125
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5800
    Tile 30869
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5801
    Tile 30613
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5802
    Tile 30357
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5803
    Tile 30101
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5804
    Tile 29845
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5805
    Tile 29589
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5806
    Tile 29333
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5807
    Tile 29077
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5808
    Tile 28821
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5809
    Tile 28565
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5810
    Tile 28309
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5811
    Tile 28053
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5812
    Tile 27797
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5813
    Tile 27541
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5814
    Tile 27285
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5815
    Tile 27029
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5816
    Tile 26773
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5817
    Tile 26517
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5818
    Tile 26261
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5819
    Tile 26005
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5820
    Tile 25749
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5821
    Tile 25493
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5822
    Tile 25237
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5823
    Tile 24981
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5824
    Tile 24725
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5825
    Tile 24469
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5826
    Tile 24213
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5827
    Tile 23957
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5828
    Tile 23701
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5829
    Tile 23445
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5830
    Tile 23189
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5831
    Tile 22933
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5832
    Tile 22677
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5833
    Tile 22421
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5834
    Tile 22165
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5835
    Tile 21909
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5836
    Tile 21653
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5837
    Tile 21397
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5838
    Tile 21141
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5839
    Tile 20885
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5840
    Tile 20629
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5841
    Tile 20373
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5842
    Tile 20117
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5843
    Tile 19861
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5844
    Tile 19605
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5845
    Tile 19349
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5846
    Tile 19093
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5847
    Tile 18837
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5848
    Tile 18581
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5849
    Tile 18325
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5850
    Tile 18069
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5851
    Tile 17813
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5852
    Tile 17557
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5853
    Tile 17301
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5854
    Tile 17045
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5855
    Tile 16789
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5856
    Tile 16533
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5857
    Tile 16277
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5858
    Tile 16021
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5859
    Tile 15765
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5860
    Tile 15509
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5861
    Tile 15508
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5862
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5863
--PriorityQueue--
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5864
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5865
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5866
  Pop():   (null : 0x00000000)
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5867
  Count(): 9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5868
  Peek():  1
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5869
  Pop():   1
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5870
  Pop():   4
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5871
  Pop():   3
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5872
  Pop():   2
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5873
  Pop():   1
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5874
  Pop():   5
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5875
  Pop():   6
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5876
  Pop():   7
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5877
  Pop():   8
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5878
  Pop():   9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5879
  Pop():   10
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5880
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5881
  Pop():   (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5882
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5883
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5884
--BinaryHeap--
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5885
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5886
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5887
  Pop():   (null : 0x00000000)
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5888
  Count(): 9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5889
  Peek():  1
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5890
  Pop():   1
10908
429195fd03f2 (svn r13459) [NoAI] -Fix: final fixes in binary_heap
truebrain
parents: 10907
diff changeset
  5891
  Pop():   3
10907
6e0aecaf6e4c (svn r13458) [NoAI] -Fix r13457: fix the regression Luke...
truebrain
parents: 10904
diff changeset
  5892
  Pop():   4
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5893
  Pop():   2
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5894
  Pop():   1
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5895
  Pop():   5
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5896
  Pop():   6
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5897
  Pop():   7
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5898
  Pop():   8
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5899
  Pop():   9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5900
  Pop():   10
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5901
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5902
  Pop():   (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5903
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5904
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5905
--Road--
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5906
  Road
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5907
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5908
    BuildRoad():                   false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5909
    BuildRoad():                   false
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  5910
    HasTransportType():            false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5911
    BuildRoad():                   true
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  5912
    HasTransportType():            true
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5913
    AreRoadTilesConnected():       true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5914
    IsRoadTile():                  true
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5915
    HasRoadType(Road):             true
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5916
    HasRoadType(Tram):             false
9618
a370e3f3bd70 (svn r9787) [NoAI] -Fix r9786: and again, forgot to update regression.txt..... (tnx glx)
truelight
parents: 9617
diff changeset
  5917
    GetNeighbourRoadCount():       2
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5918
    RemoveRoad():                  true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5919
    RemoveRoad():                  true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5920
    RemoveRoad():                  true
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5921
    IsRoadTypeAvailable(Road):     true
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5922
    IsRoadTypeAvailable(Tram):     false
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5923
    SetCurrentRoadType(Tram):      (null : 0x00000000)
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5924
    GetCurrentRoadType():          0
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5925
  Depot
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5926
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5927
    BuildRoadDepot():              false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5928
    BuildRoadDepot():              false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5929
    BuildRoadDepot():              true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5930
    BuildRoadDepot():              false
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5931
    HasRoadType(Road):             true
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5932
    HasRoadType(Tram):             false
9844
738b8f69675f (svn r12510) [NoAI] -Add: added AIError, which allows you to catch errors triggered by commands (Morloth)
truebrain
parents: 9831
diff changeset
  5933
    GetLastError():                260
738b8f69675f (svn r12510) [NoAI] -Add: added AIError, which allows you to catch errors triggered by commands (Morloth)
truebrain
parents: 9831
diff changeset
  5934
    GetLastErrorString():          ERR_AREA_NOT_CLEAR
738b8f69675f (svn r12510) [NoAI] -Add: added AIError, which allows you to catch errors triggered by commands (Morloth)
truebrain
parents: 9831
diff changeset
  5935
    GetErrorCategory():            1
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5936
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5937
    GetRoadDepotFrontTile():       33412
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5938
    IsRoadDepotTile():             true
9769
015b6674c8ad (svn r12259) [NoAI] -Fix: depots were considered buildable (tnx Progman)
truebrain
parents: 9767
diff changeset
  5939
    IsBuildable():                 false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5940
    RemoveRoadDepot():             true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5941
    RemoveRoadDepot():             false
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5942
  Station
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5943
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5944
    BuildRoadStation():            false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5945
    BuildRoadStation():            false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5946
    BuildRoadStation():            true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5947
    BuildRoadStation():            false
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5948
    HasRoadType(Road):             true
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  5949
    HasRoadType(Tram):             false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5950
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5951
    GetDriveThroughBackTile():     -1
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5952
    GetRoadStationFrontTile():     33412
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5953
    IsRoadStationTile():           true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5954
    IsDriveThroughRoadStationTile: false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5955
    RemoveRoadStation():           true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5956
    RemoveRoadStation():           false
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5957
  Station Types
9634
e359d82f0652 (svn r10525) [NoAI] -Fix: the build-truck-param of BuildRoadStation was flipped
truelight
parents: 9630
diff changeset
  5958
    BuildRoadStation(bus):         true
9647
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  5959
    BuildRoadStation(truck):       true
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5960
    BuildRoadStation(truck):       true
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5961
    BuildRoadStation(bus):         true
9634
e359d82f0652 (svn r10525) [NoAI] -Fix: the build-truck-param of BuildRoadStation was flipped
truelight
parents: 9630
diff changeset
  5962
    BuildRoadStation(truck):       true
e359d82f0652 (svn r10525) [NoAI] -Fix: the build-truck-param of BuildRoadStation was flipped
truelight
parents: 9630
diff changeset
  5963
    BuildRoadStation(bus-drive):   true
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5964
    BuildRoadStation(truck-drive): true
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5965
    BuildRoadStation(bus-drive):   true
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5966
    BuildRoadStation(truck-drive): true
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  5967
    BuildRoadDepot():              true
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5968
    GetRoadStationFrontTile():     33411
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5969
    GetRoadStationFrontTile():     33924
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5970
    IsDriveThroughRoadStationTile: true
9769
015b6674c8ad (svn r12259) [NoAI] -Fix: depots were considered buildable (tnx Progman)
truebrain
parents: 9767
diff changeset
  5971
    IsBuildable():                 false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5972
    GetDriveThroughBackTile():     33416
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5973
    GetRoadStationFrontTile():     33414
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  5974
    IsRoadTile():                  true
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  5975
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5976
--Sign--
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5977
  BuildSign(33410, 'Some Sign'):       0
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5978
  BuildSign(33409, 'Some other Sign'): 1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5979
  RemoveSign(1):                       true
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5980
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5981
  GetMaxSignID():    3
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5982
  Sign -1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5983
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5984
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5985
    GetLocation():   -1
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  5986
    GetOwner():      -1
10856
c7b29152d594 (svn r13407) [NoAI] -Add: added AICompany::IsMine() to ease up owner-checks (no, not the ones to cash in money)
truebrain
parents: 10855
diff changeset
  5987
    IsMine():        false
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5988
  Sign 0
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5989
    IsValidSign():   true
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5990
    GetText():       Some Sign
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5991
    GetLocation():   33410
10847
6c003b73a276 (svn r13398) [NoAI] -Add: added AISign::GetOwner (on request by Finaldeath)
truebrain
parents: 10844
diff changeset
  5992
    GetOwner():      1
10856
c7b29152d594 (svn r13407) [NoAI] -Add: added AICompany::IsMine() to ease up owner-checks (no, not the ones to cash in money)
truebrain
parents: 10855
diff changeset
  5993
    IsMine():        true
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5994
  Sign 1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5995
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5996
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5997
    GetLocation():   -1
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  5998
    GetOwner():      -1
10856
c7b29152d594 (svn r13407) [NoAI] -Add: added AICompany::IsMine() to ease up owner-checks (no, not the ones to cash in money)
truebrain
parents: 10855
diff changeset
  5999
    IsMine():        false
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6000
  Sign 2
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6001
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6002
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6003
    GetLocation():   -1
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6004
    GetOwner():      -1
10856
c7b29152d594 (svn r13407) [NoAI] -Add: added AICompany::IsMine() to ease up owner-checks (no, not the ones to cash in money)
truebrain
parents: 10855
diff changeset
  6005
    IsMine():        false
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6006
  Sign 3
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6007
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6008
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6009
    GetLocation():   -1
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6010
    GetOwner():      -1
10856
c7b29152d594 (svn r13407) [NoAI] -Add: added AICompany::IsMine() to ease up owner-checks (no, not the ones to cash in money)
truebrain
parents: 10855
diff changeset
  6011
    IsMine():        false
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6012
  Valid Signs:       1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6013
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6014
--Station--
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6015
  IsValidStation(0):        true
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6016
  IsValidStation(1000):     false
9697
a6a9379988f6 (svn r10938) [NoAI] -Fix r10937: regression update
truelight
parents: 9694
diff changeset
  6017
  GetName(0):               Benville Airport
10381
4ad8b98acd82 (svn r12922) [NoAI] -Add: added AIStation::SetName() (Yexo)
truebrain
parents: 10370
diff changeset
  6018
  SetName(0):               true
4ad8b98acd82 (svn r12922) [NoAI] -Add: added AIStation::SetName() (Yexo)
truebrain
parents: 10370
diff changeset
  6019
  GetName(0):               Look, a station
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  6020
  GetLocation(1):           29253
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6021
  GetLocation(1000):        -1
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6022
  GetStationID(33411):      3
9666
5765eb70736d (svn r10580) [NoAI] -Add: added GetStationID to get the StationID based on a tile
truelight
parents: 9665
diff changeset
  6023
  GetStationID(34411):      65535
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6024
  GetCargoWaiting(0, 0):    0
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6025
  GetCargoWaiting(1000, 0): -1
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6026
  GetCargoWaiting(0, 1000): -1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  6027
  GetStationID(33411):      3
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  6028
  HasRoadType(3, TRAM):     false
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  6029
  HasRoadType(3, ROAD):     true
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  6030
  HasRoadType(33411, TRAM): false
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  6031
  HasRoadType(33411, ROAD): true
10863
7b31d67e1553 (svn r13414) [NoAI] -Add: added AIStation::HasStationType(station_id, station_type) to check if a given station has a given station-type
truebrain
parents: 10859
diff changeset
  6032
  HasStationType(3, BUS):   true
7b31d67e1553 (svn r13414) [NoAI] -Add: added AIStation::HasStationType(station_id, station_type) to check if a given station has a given station-type
truebrain
parents: 10859
diff changeset
  6033
  HasStationType(3, TRAIN): false
7b31d67e1553 (svn r13414) [NoAI] -Add: added AIStation::HasStationType(station_id, station_type) to check if a given station has a given station-type
truebrain
parents: 10859
diff changeset
  6034
  GetCoverageRadius(BUS):   3
7b31d67e1553 (svn r13414) [NoAI] -Add: added AIStation::HasStationType(station_id, station_type) to check if a given station has a given station-type
truebrain
parents: 10859
diff changeset
  6035
  GetCoverageRadius(TRUCK): 3
7b31d67e1553 (svn r13414) [NoAI] -Add: added AIStation::HasStationType(station_id, station_type) to check if a given station has a given station-type
truebrain
parents: 10859
diff changeset
  6036
  GetCoverageRadius(TRAIN): 4
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6037
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6038
--StationList--
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6039
  Count():             2
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6040
  Location ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6041
    4 => 33421
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6042
    3 => 33411
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6043
  CargoWaiting(0) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6044
    4 => 0
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  6045
    3 => 0
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6046
  CargoWaiting(1) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6047
    4 => 0
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  6048
    3 => 0
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6049
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6050
--TileList--
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6051
  Count():             0
10191
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6052
  Count():             9
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6053
  Slope():             done
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6054
  Count():             9
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6055
  ListDump:
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6056
    27631 => 29
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6057
    27631 => 255
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6058
    27631 => true
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6059
    27631 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6060
    27888 => 13
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6061
    27888 => 2
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6062
    27888 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6063
    27888 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6064
    27376 => 12
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6065
    27376 => 3
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6066
    27376 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6067
    27376 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6068
    27375 => 12
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6069
    27375 => 3
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6070
    27375 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6071
    27375 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6072
    27889 => 9
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6073
    27889 => 6
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6074
    27889 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6075
    27889 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6076
    27887 => 8
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6077
    27887 => 7
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6078
    27887 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6079
    27887 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6080
    27632 => 8
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6081
    27632 => 7
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6082
    27632 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6083
    27632 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6084
    27633 => 0
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6085
    27633 => 15
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6086
    27633 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6087
    27633 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6088
    27377 => 0
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6089
    27377 => 15
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6090
    27377 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6091
    27377 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6092
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6093
--TileList--
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6094
  Count():             0
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6095
  Count():             45
9700
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6096
  Height():            done
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6097
  Count():             45
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6098
  ListDump:
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6099
    42411 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6100
    42410 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6101
    42409 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6102
    42408 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6103
    42407 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6104
    42154 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6105
    42153 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6106
    42152 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6107
    42151 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6108
    41898 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6109
    41897 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6110
    41896 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6111
    41895 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6112
    41642 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6113
    41641 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6114
    41640 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6115
    41639 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6116
    41386 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6117
    41385 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6118
    41384 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6119
    41383 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6120
    42415 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6121
    42414 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6122
    42413 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6123
    42412 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6124
    42159 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6125
    42158 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6126
    42157 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6127
    42156 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6128
    42155 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6129
    41903 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6130
    41902 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6131
    41901 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6132
    41900 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6133
    41899 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6134
    41647 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6135
    41646 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6136
    41645 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6137
    41644 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6138
    41643 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6139
    41391 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6140
    41390 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6141
    41389 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6142
    41388 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6143
    41387 => 1
9613
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6144
  Slope():             done
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6145
  KeepValue(0):        done
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6146
  Count():             38
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6147
  ListDump:
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6148
    42415 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6149
    42414 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6150
    42413 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6151
    42410 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6152
    42409 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6153
    42408 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6154
    42407 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6155
    42159 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6156
    42158 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6157
    42157 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6158
    42156 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6159
    42153 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6160
    42152 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6161
    42151 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6162
    41903 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6163
    41902 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6164
    41901 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6165
    41900 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6166
    41899 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6167
    41897 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6168
    41896 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6169
    41895 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6170
    41647 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6171
    41646 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6172
    41645 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6173
    41644 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6174
    41643 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6175
    41641 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6176
    41640 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6177
    41639 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6178
    41391 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6179
    41390 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6180
    41389 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6181
    41388 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6182
    41387 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6183
    41385 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6184
    41384 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6185
    41383 => 0
9605
2c2348827b52 (svn r9749) [NoAI] -Add: added regression-test for new AITileList valuators
truelight
parents: 9592
diff changeset
  6186
  Buildable():         done
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6187
  KeepValue(1):        done
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6188
  Count():             26
9657
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6189
  BuildableRectangle(3, 3) ListDump:
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6190
    42415 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6191
    42414 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6192
    42413 => 1
9657
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6193
    42410 => 1
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6194
    42159 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6195
    42158 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6196
    42157 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6197
    42156 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6198
    41903 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6199
    41902 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6200
    41901 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6201
    41900 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6202
    41899 => 1
9657
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6203
    41647 => 1
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6204
    41646 => 1
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6205
    41645 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6206
    41644 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6207
    41643 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6208
    41641 => 1
9657
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6209
    41391 => 1
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6210
    41390 => 1
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6211
    41389 => 1
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6212
    41388 => 1
f2c6e332d8bc (svn r10564) [NoAI] -Add: added a AITileList valuator that checks for a NxM buildable spot with the entry from the AITileList as top-left tile
truelight
parents: 9655
diff changeset
  6213
    41387 => 1
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6214
    42153 => 0
10853
87f2238f47d4 (svn r13404) [NoAI] -Change [API CHANGE]: AITile::IsBuildable no longer returns 'true' on road, but only on a halve piece of road (as that is auto-removed). This should make this function return less 'true', and more sane results :)
truebrain
parents: 10852
diff changeset
  6215
    41897 => 0
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6216
  DistanceManhattanToTile(30000) ListDump:
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6217
    42415 => 175
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6218
    42414 => 174
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6219
    42159 => 174
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6220
    42413 => 173
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6221
    42158 => 173
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6222
    41903 => 173
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6223
    42157 => 172
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6224
    41902 => 172
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6225
    41647 => 172
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6226
    42156 => 171
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6227
    41901 => 171
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6228
    41646 => 171
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6229
    41391 => 171
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6230
    42410 => 170
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6231
    41900 => 170
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6232
    41645 => 170
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6233
    41390 => 170
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6234
    41899 => 169
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6235
    41644 => 169
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6236
    41389 => 169
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6237
    42153 => 168
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6238
    41643 => 168
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6239
    41388 => 168
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6240
    41897 => 167
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6241
    41387 => 167
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6242
    41641 => 166
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6243
  DistanceSquareToTile(30000) ListDump:
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6244
    42415 => 18433
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6245
    42159 => 18338
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6246
    41903 => 18245
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6247
    42414 => 18180
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6248
    41647 => 18154
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6249
    42158 => 18085
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6250
    41391 => 18065
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6251
    41902 => 17992
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6252
    42413 => 17929
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6253
    41646 => 17901
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6254
    42157 => 17834
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6255
    41390 => 17812
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6256
    41901 => 17741
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6257
    41645 => 17650
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6258
    42156 => 17585
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6259
    41389 => 17561
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6260
    41900 => 17492
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6261
    41644 => 17401
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6262
    41388 => 17312
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6263
    41899 => 17245
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6264
    42410 => 17188
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6265
    41643 => 17154
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6266
    41387 => 17065
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6267
    42153 => 16850
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6268
    41897 => 16757
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6269
    41641 => 16666
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6270
  GetOwner() ListDump:
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6271
    42415 => -1
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6272
    42414 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6273
    42413 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6274
    42410 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6275
    42159 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6276
    42158 => -1
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6277
    42157 => -1
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6278
    42156 => -1
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6279
    42153 => -1
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6280
    41903 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6281
    41902 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6282
    41901 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6283
    41900 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6284
    41899 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6285
    41897 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6286
    41647 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6287
    41646 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6288
    41645 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6289
    41644 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6290
    41643 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6291
    41641 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6292
    41391 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6293
    41390 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6294
    41389 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6295
    41388 => -1
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  6296
    41387 => -1
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6297
  CargoAcceptance():   done
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6298
  KeepAboveValue(10):  done
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6299
  Count():             7
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6300
  ListDump:
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6301
    41897 => 41
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6302
    41641 => 35
10930
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6303
    42153 => 33
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6304
    41899 => 29
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6305
    41387 => 29
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6306
    41643 => 26
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6307
    42410 => 13
9605
2c2348827b52 (svn r9749) [NoAI] -Add: added regression-test for new AITileList valuators
truelight
parents: 9592
diff changeset
  6308
  RoadTile():          done
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6309
  KeepValue(1):        done
10853
87f2238f47d4 (svn r13404) [NoAI] -Change [API CHANGE]: AITile::IsBuildable no longer returns 'true' on road, but only on a halve piece of road (as that is auto-removed). This should make this function return less 'true', and more sane results :)
truebrain
parents: 10852
diff changeset
  6310
  Count():             0
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6311
  ListDump:
9618
a370e3f3bd70 (svn r9787) [NoAI] -Fix r9786: and again, forgot to update regression.txt..... (tnx glx)
truelight
parents: 9617
diff changeset
  6312
  NeighbourRoadCount():done
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6313
  KeepValue(1):        done
10853
87f2238f47d4 (svn r13404) [NoAI] -Change [API CHANGE]: AITile::IsBuildable no longer returns 'true' on road, but only on a halve piece of road (as that is auto-removed). This should make this function return less 'true', and more sane results :)
truebrain
parents: 10852
diff changeset
  6314
  Count():             0
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6315
  ListDump:
9698
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6316
  Water():             done
10853
87f2238f47d4 (svn r13404) [NoAI] -Change [API CHANGE]: AITile::IsBuildable no longer returns 'true' on road, but only on a halve piece of road (as that is auto-removed). This should make this function return less 'true', and more sane results :)
truebrain
parents: 10852
diff changeset
  6317
  Count():             45
9698
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6318
  ListDump:
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6319
    54941 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6320
    54940 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6321
    54939 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6322
    54938 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6323
    54937 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6324
    54936 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6325
    54935 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6326
    54934 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6327
    54933 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6328
    54685 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6329
    54684 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6330
    54683 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6331
    54682 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6332
    54681 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6333
    54680 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6334
    54679 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6335
    54678 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6336
    54677 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6337
    54429 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6338
    54428 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6339
    54427 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6340
    54426 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6341
    54425 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6342
    54424 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6343
    54423 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6344
    54422 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6345
    54421 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6346
    54173 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6347
    54172 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6348
    54171 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6349
    54170 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6350
    54169 => 1
10931
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6351
    54168 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6352
    54167 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6353
    54166 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6354
    54165 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6355
    53917 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6356
    53916 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6357
    53915 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6358
    53914 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6359
    53913 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6360
    53912 => 0
9698
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6361
    53911 => 0
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6362
    53910 => 0
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6363
    53909 => 0
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6364
9759
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6365
--TileList_IndustryAccepting--
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6366
  Count():             47
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6367
  Location ListDump:
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6368
    21234 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6369
    21233 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6370
    21232 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6371
    21231 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6372
    21230 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6373
    21229 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6374
    20978 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6375
    20977 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6376
    20976 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6377
    20975 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6378
    20974 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6379
    20973 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6380
    20722 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6381
    20718 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6382
    20717 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6383
    20466 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6384
    20462 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6385
    20461 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6386
    20210 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6387
    20206 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6388
    20205 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6389
    19954 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6390
    19950 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6391
    19949 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6392
    21490 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6393
    21489 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6394
    21488 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6395
    21487 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6396
    21486 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6397
    21485 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6398
    21484 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6399
    21235 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6400
    21228 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6401
    20979 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6402
    20972 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6403
    20723 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6404
    20716 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6405
    20467 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6406
    20460 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6407
    20211 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6408
    20204 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6409
    19955 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6410
    19948 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6411
    19699 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6412
    19698 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6413
    19694 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6414
    19693 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6415
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6416
--TileList_IndustryProducing--
9767
a937441fecf1 (svn r12256) [NoAI] -Fix: because of a 'bug' in OpenTTD, FindStationsAroundIndustryTile gave inconsitant results with GetProductionAroundTiles (first ignores station layout). Fixed with HACK, waiting for real solution in OpenTTD.
truebrain
parents: 9759
diff changeset
  6417
  Count():             90
9759
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6418
  Location ListDump:
9771
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6419
    46149 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6420
    46146 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6421
    45894 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6422
    45889 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6423
    45638 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6424
    45633 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6425
    45382 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6426
    45377 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6427
    45126 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6428
    45121 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6429
    44869 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6430
    44868 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6431
    44867 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6432
    44866 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6433
    46150 => 11
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6434
    46145 => 11
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6435
    46405 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6436
    46404 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6437
    46403 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6438
    46402 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6439
    45895 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6440
    45888 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6441
    45639 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6442
    45632 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6443
    45383 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6444
    45376 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6445
    44870 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6446
    44865 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6447
    46406 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6448
    46401 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6449
    45127 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6450
    45120 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6451
    44613 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6452
    44612 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6453
    44611 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6454
    44610 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6455
    46151 => 7
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6456
    46144 => 7
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6457
    46661 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6458
    46660 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6459
    46659 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6460
    46658 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6461
    44871 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6462
    44864 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6463
    44614 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6464
    44609 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6465
    46662 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6466
    46657 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6467
    46407 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6468
    46400 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6469
    45896 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6470
    45887 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6471
    45640 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6472
    45631 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6473
    45384 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6474
    45375 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6475
    45128 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6476
    45119 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6477
    44615 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6478
    44608 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6479
    44357 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6480
    44356 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6481
    44355 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6482
    44354 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6483
    46663 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6484
    46656 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6485
    46152 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6486
    46143 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6487
    44872 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6488
    44863 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6489
    44358 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6490
    44353 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6491
    46918 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6492
    46917 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6493
    46916 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6494
    46915 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6495
    46914 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6496
    46913 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6497
    46408 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6498
    46399 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6499
    44616 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6500
    44607 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6501
    44359 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6502
    44352 => 2
9759
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6503
    46919 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6504
    46912 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6505
    46664 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6506
    46655 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6507
    44360 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6508
    44351 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6509
10864
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6510
--TileList_StationType--
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6511
  Count():             4
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6512
  Location ListDump:
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6513
    33668 => 0
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6514
    33416 => 0
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6515
    33414 => 0
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6516
    33412 => 0
9a6616a1dce6 (svn r13415) [NoAI] -Add: added AITileList_StationType, giving all the tiles on which a station of your requested type is, for a given station
truebrain
parents: 10863
diff changeset
  6517
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6518
--Town--
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6519
  GetMaxTownID():    31
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6520
  GetTownCount():    28
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6521
  Town -1
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6522
    IsValidTown():   false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
  6523
    GetName():       (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  6524
    GetPopulation(): -1
9465
ccc1a559607b (svn r9297) [NoAI] -Fix: regression-test shows that 64bit systems gave other results for INVALID_TILE then 32bit system. Now they both act like the 32bit system.
truelight
parents: 9464
diff changeset
  6525
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6526
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6527
    GetRating():     -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6528
  Town 0
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6529
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6530
    GetName():       Planfield
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6531
    GetPopulation(): 538
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6532
    GetLocation():   15508
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6533
    GetHouseCount(): 29
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6534
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6535
  Town 1
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6536
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6537
    GetName():       Trenningville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6538
    GetPopulation(): 236
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6539
    GetLocation():   46751
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6540
    GetHouseCount(): 16
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6541
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6542
  Town 2
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6543
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6544
    GetName():       Tondston
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6545
    GetPopulation(): 253
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6546
    GetLocation():   28365
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6547
    GetHouseCount(): 18
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6548
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6549
  Town 3
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6550
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6551
    GetName():       Tunford
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6552
    GetPopulation(): 206
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6553
    GetLocation():   41895
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6554
    GetHouseCount(): 11
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6555
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6556
  Town 4
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6557
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6558
    GetName():       Wrundtown
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6559
    GetPopulation(): 414
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6560
    GetLocation():   41450
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6561
    GetHouseCount(): 18
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6562
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6563
  Town 5
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6564
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6565
    GetName():       Fraston
9495
29284ad4ae39 (svn r9365) [NoAI] -Fix: fixed the regression.sav to load correct and adjust regression result according (with a big tnx to glx!)
truelight
parents: 9492
diff changeset
  6566
    GetPopulation(): 206
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6567
    GetLocation():   55007
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6568
    GetHouseCount(): 11
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6569
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6570
  Town 6
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6571
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6572
    GetName():       Muningville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6573
    GetPopulation(): 566
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6574
    GetLocation():   38200
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6575
    GetHouseCount(): 28
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6576
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6577
  Town 7
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6578
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6579
    GetName():       Hutfingford
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6580
    GetPopulation(): 652
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6581
    GetLocation():   59234
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6582
    GetHouseCount(): 32
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6583
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6584
  Town 8
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6585
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6586
    GetName():       Sadtown
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6587
    GetPopulation(): 292
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6588
    GetLocation():   51267
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6589
    GetHouseCount(): 20
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6590
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6591
  Town 9
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6592
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6593
    GetName():       Frindinghattan
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6594
    GetPopulation(): 447
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6595
    GetLocation():   5825
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6596
    GetHouseCount(): 18
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6597
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6598
  Town 10
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6599
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6600
    GetName():       Nuntfingburg
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6601
    GetPopulation(): 702
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6602
    GetLocation():   6446
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6603
    GetHouseCount(): 26
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6604
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6605
  Town 11
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6606
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6607
    GetName():       Fort Frindston
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6608
    GetPopulation(): 156
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6609
    GetLocation():   14935
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6610
    GetHouseCount(): 13
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6611
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6612
  Town 12
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6613
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6614
    GetName():       Ginborough
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6615
    GetPopulation(): 766
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6616
    GetLocation():   32740
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6617
    GetHouseCount(): 27
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6618
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6619
  Town 13
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6620
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6621
    GetName():       Great Hinninghall
9495
29284ad4ae39 (svn r9365) [NoAI] -Fix: fixed the regression.sav to load correct and adjust regression result according (with a big tnx to glx!)
truelight
parents: 9492
diff changeset
  6622
    GetPopulation(): 276
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6623
    GetLocation():   9595
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6624
    GetHouseCount(): 14
10946
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  6625
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6626
  Town 14
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6627
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6628
    GetName():       Prundinghall
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6629
    GetPopulation(): 316
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6630
    GetLocation():   51298
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6631
    GetHouseCount(): 17
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6632
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6633
  Town 15
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6634
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6635
    GetName():       Benville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6636
    GetPopulation(): 699
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6637
    GetLocation():   42338
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6638
    GetHouseCount(): 32
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6639
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6640
  Town 16
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6641
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6642
    GetName():       Kennville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6643
    GetPopulation(): 659
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6644
    GetLocation():   17345
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6645
    GetHouseCount(): 32
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6646
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6647
  Town 17
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6648
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6649
    GetName():       Quartfingfield
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6650
    GetPopulation(): 185
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6651
    GetLocation():   24252
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6652
    GetHouseCount(): 13
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6653
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6654
  Town 18
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6655
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6656
    GetName():       Netfingbridge
9495
29284ad4ae39 (svn r9365) [NoAI] -Fix: fixed the regression.sav to load correct and adjust regression result according (with a big tnx to glx!)
truelight
parents: 9492
diff changeset
  6657
    GetPopulation(): 267
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6658
    GetLocation():   10574
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6659
    GetHouseCount(): 12
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6660
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6661
  Town 19
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6662
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6663
    GetName():       Mendingston
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6664
    GetPopulation(): 221
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6665
    GetLocation():   6511
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6666
    GetHouseCount(): 14
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6667
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6668
  Town 20
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6669
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6670
    GetName():       Chentfingbourne
9495
29284ad4ae39 (svn r9365) [NoAI] -Fix: fixed the regression.sav to load correct and adjust regression result according (with a big tnx to glx!)
truelight
parents: 9492
diff changeset
  6671
    GetPopulation(): 425
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6672
    GetLocation():   22585
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6673
    GetHouseCount(): 14
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6674
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6675
  Town 21
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6676
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6677
    GetName():       Franinghead
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6678
    GetPopulation(): 598
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6679
    GetLocation():   9634
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6680
    GetHouseCount(): 27
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6681
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6682
  Town 22
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6683
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6684
    GetName():       Naborough
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6685
    GetPopulation(): 174
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6686
    GetLocation():   51891
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6687
    GetHouseCount(): 12
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6688
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6689
  Town 23
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6690
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6691
    GetName():       Lardborough
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6692
    GetPopulation(): 657
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6693
    GetLocation():   59622
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6694
    GetHouseCount(): 27
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6695
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6696
  Town 24
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6697
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6698
    GetName():       Little Fruford
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6699
    GetPopulation(): 624
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6700
    GetLocation():   19596
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6701
    GetHouseCount(): 33
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6702
    GetRating():     5
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6703
  Town 25
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6704
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6705
    GetName():       Grinnway
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6706
    GetPopulation(): 548
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6707
    GetLocation():   16433
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6708
    GetHouseCount(): 15
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6709
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6710
  Town 26
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6711
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6712
    GetName():       Bedburg
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6713
    GetPopulation(): 336
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6714
    GetLocation():   39505
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6715
    GetHouseCount(): 17
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6716
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6717
  Town 27
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6718
    IsValidTown():   true
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6719
    GetName():       Fudinghattan
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6720
    GetPopulation(): 382
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6721
    GetLocation():   45525
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6722
    GetHouseCount(): 19
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6723
    GetRating():     0
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6724
  Town 28
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6725
    IsValidTown():   false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
  6726
    GetName():       (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  6727
    GetPopulation(): -1
9465
ccc1a559607b (svn r9297) [NoAI] -Fix: regression-test shows that 64bit systems gave other results for INVALID_TILE then 32bit system. Now they both act like the 32bit system.
truelight
parents: 9464
diff changeset
  6728
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6729
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6730
    GetRating():     -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6731
  Town 29
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6732
    IsValidTown():   false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
  6733
    GetName():       (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  6734
    GetPopulation(): -1
9465
ccc1a559607b (svn r9297) [NoAI] -Fix: regression-test shows that 64bit systems gave other results for INVALID_TILE then 32bit system. Now they both act like the 32bit system.
truelight
parents: 9464
diff changeset
  6735
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6736
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6737
    GetRating():     -1
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6738
  Town 30
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6739
    IsValidTown():   false
9464
6c2cbcb79ff7 (svn r9296) [NoAI] -Fix: regression test now replaced 0x(nil) with 0x0000000 to make everything the same on all platforms
truelight
parents: 9461
diff changeset
  6740
    GetName():       (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  6741
    GetPopulation(): -1
9465
ccc1a559607b (svn r9297) [NoAI] -Fix: regression-test shows that 64bit systems gave other results for INVALID_TILE then 32bit system. Now they both act like the 32bit system.
truelight
parents: 9464
diff changeset
  6742
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6743
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6744
    GetRating():     -1
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6745
  Town 31
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6746
    IsValidTown():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6747
    GetName():       (null : 0x00000000)
10194
c9fdeb7450da (svn r12727) [NoAI] -Fix (API CHANGE): return -1 to indicate invalidity, instead of 0 or -1, depending on the class
truebrain
parents: 10193
diff changeset
  6748
    GetPopulation(): -1
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6749
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6750
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6751
    GetRating():     -1
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6752
  Valid Towns:       28
9461
ab1079656642 (svn r9293) [NoAI] -Add: added regression.sav, regression.txt and a small script to test if the regression passes. Make sure to disable any other AI when running this!
truelight
parents:
diff changeset
  6753
  GetTownCount():    28
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6754
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6755
--TownList--
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6756
  Count():             28
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6757
  Location ListDump:
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6758
    23 => 59622
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6759
    7 => 59234
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6760
    5 => 55007
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6761
    22 => 51891
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6762
    14 => 51298
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6763
    8 => 51267
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6764
    1 => 46751
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6765
    27 => 45525
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6766
    15 => 42338
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6767
    3 => 41895
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6768
    4 => 41450
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6769
    26 => 39505
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6770
    6 => 38200
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6771
    12 => 32740
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6772
    2 => 28365
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6773
    17 => 24252
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6774
    20 => 22585
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6775
    24 => 19596
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6776
    16 => 17345
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6777
    25 => 16433
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6778
    0 => 15508
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6779
    11 => 14935
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6780
    18 => 10574
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6781
    21 => 9634
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6782
    13 => 9595
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6783
    19 => 6511
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6784
    10 => 6446
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6785
    9 => 5825
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6786
  DistanceManhattanToTile(30000) ListDump:
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6787
    23 => 297
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6788
    5 => 272
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6789
    9 => 240
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6790
    4 => 230
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6791
    27 => 225
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6792
    22 => 216
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6793
    16 => 195
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6794
    21 => 194
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6795
    12 => 190
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6796
    1 => 176
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6797
    3 => 165
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6798
    7 => 164
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6799
    2 => 164
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6800
    17 => 163
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6801
    0 => 157
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6802
    19 => 155
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6803
    13 => 155
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6804
    24 => 133
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6805
    14 => 133
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6806
    18 => 106
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6807
    8 => 102
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6808
    15 => 98
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6809
    11 => 98
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6810
    10 => 94
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6811
    26 => 70
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6812
    25 => 54
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6813
    6 => 40
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6814
    20 => 38
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6815
  DistanceSquareToTile(30000) ListDump:
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6816
    23 => 46349
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6817
    5 => 40034
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6818
    4 => 36532
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6819
    12 => 32500
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6820
    27 => 30825
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6821
    9 => 30050
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6822
    2 => 24698
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6823
    22 => 24386
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6824
    16 => 23525
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6825
    17 => 20129
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6826
    21 => 19396
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6827
    1 => 16546
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6828
    3 => 16277
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6829
    7 => 15496
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6830
    0 => 13249
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6831
    19 => 12433
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6832
    13 => 12025
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6833
    24 => 10145
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6834
    14 => 9389
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6835
    10 => 8468
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6836
    8 => 7250
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6837
    18 => 6676
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6838
    11 => 5002
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6839
    15 => 4804
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6840
    25 => 2810
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6841
    26 => 2458
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6842
    6 => 1088
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  6843
    20 => 922
10361
4cdffd48480f (svn r12902) [NoAI] -Fix r12901 [API CHANGE]: renamed IsWithinTownRadius to IsWithinTownInfluence, as that reflects the meaning much better
truebrain
parents: 10360
diff changeset
  6844
  IsWithinTownInfluence(15508) ListDump:
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6845
    0 => 1
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6846
    27 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6847
    26 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6848
    25 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6849
    24 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6850
    23 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6851
    22 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6852
    21 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6853
    20 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6854
    19 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6855
    18 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6856
    17 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6857
    16 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6858
    15 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6859
    14 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6860
    13 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6861
    12 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6862
    11 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6863
    10 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6864
    9 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6865
    8 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6866
    7 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6867
    6 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6868
    5 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6869
    4 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6870
    3 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6871
    2 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6872
    1 => 0
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6873
  KeepAboveValue(500): done
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6874
  Count():             11
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6875
  Population ListDump:
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6876
    12 => 766
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6877
    10 => 702
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6878
    15 => 699
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6879
    16 => 659
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6880
    23 => 657
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6881
    7 => 652
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6882
    24 => 624
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6883
    21 => 598
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6884
    6 => 566
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6885
    25 => 548
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6886
    0 => 538
10859
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6887
  HasStatue():                     false
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6888
  GetRoadReworkDuration():         0
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6889
  GetExclusiveRightsPlayer():      -1
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6890
  GetExclusiveRightsDuration():    0
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6891
  IsActionAvailable(BUILD_STATUE): true
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6892
  PerformTownAction(BUILD_STATUE): true
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6893
  IsActionAvailable(BUILD_STATUE): false
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6894
  HasStatue():                     true
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6895
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6896
--Tunnel--
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6897
  IsTunnelTile():       false
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6898
  RemoveTunnel():       false
9807
5b3be41b3ce6 (svn r12315) [NoAI] -Fix: AITunnel::GetOtherTunnelEnd() now also works to estimate where a non-existing tunnel would end (Morloth / glx)
truebrain
parents: 9806
diff changeset
  6899
  GetOtherTunnelEnd():  28026
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6900
  BuildTunnel():        true
9807
5b3be41b3ce6 (svn r12315) [NoAI] -Fix: AITunnel::GetOtherTunnelEnd() now also works to estimate where a non-existing tunnel would end (Morloth / glx)
truebrain
parents: 9806
diff changeset
  6901
  GetOtherTunnelEnd():  28026
5b3be41b3ce6 (svn r12315) [NoAI] -Fix: AITunnel::GetOtherTunnelEnd() now also works to estimate where a non-existing tunnel would end (Morloth / glx)
truebrain
parents: 9806
diff changeset
  6902
  IsTunnelTile():       true
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6903
  IsTunnelTile():       true
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6904
  RemoveTunnel():       true
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6905
  IsTunnelTile():       false
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6906
  --Errors--
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6907
  BuildTunnel():        true
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6908
  BuildTunnel():        false
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6909
  GetLastErrorString(): ERR_TUNNEL_ANOTHER_TUNNEL_IN_THE_WAY
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6910
  RemoveTunnel():       true
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6911
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6912
--Vehicle--
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6913
  IsValidVehicle(-1):   false
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6914
  IsValidVehicle(0):    false
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6915
  IsValidVehicle(11):   false
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6916
  ISValidVehicle(9999): false
9560
ff2dde050a4c (svn r9498) [NoAI] -Add: added regression for AITransactionMode()
truelight
parents: 9558
diff changeset
  6917
  BuildVehicle():       0
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6918
  IsValidVehicle(11):   false
9560
ff2dde050a4c (svn r9498) [NoAI] -Add: added regression for AITransactionMode()
truelight
parents: 9558
diff changeset
  6919
  --Transaction--
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6920
    GetCosts():         5945
9560
ff2dde050a4c (svn r9498) [NoAI] -Add: added regression for AITransactionMode()
truelight
parents: 9558
diff changeset
  6921
    Execute():          true
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6922
  IsValidVehicle(11):   true
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6923
  CloneVehicle():       12
9557
a3e1a25cf3d3 (svn r9495) [NoAI] -Add: add regression for AIAccounting() in AIVehicle() regression
truelight
parents: 9555
diff changeset
  6924
  --Accounting--
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6925
    GetCosts():         11890
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6926
    Should be:          11890
9557
a3e1a25cf3d3 (svn r9495) [NoAI] -Add: add regression for AIAccounting() in AIVehicle() regression
truelight
parents: 9555
diff changeset
  6927
    ResetCosts():       (null : 0x00000000)
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6928
  SellVehicle(12):      true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6929
  IsInDepot():          true
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6930
  IsStoppedInDepot():   true
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6931
  StartStopVehicle():   true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6932
  IsInDepot():          false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6933
  IsStoppedInDepot():   false
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6934
  SendVehicleToDepot(): true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6935
  IsInDepot():          false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6936
  IsStoppedInDepot():   false
9557
a3e1a25cf3d3 (svn r9495) [NoAI] -Add: add regression for AIAccounting() in AIVehicle() regression
truelight
parents: 9555
diff changeset
  6937
  --Accounting--
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6938
    GetCosts():         -5945
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6939
    Should be:          -5945
9699
e1b5f29cc6f9 (svn r10940) [NoAI] -Add: added AIVehicle::GetName and AIVehicle::SetName to set vehicle names
truelight
parents: 9698
diff changeset
  6940
  GetName():            Road Vehicle 1
e1b5f29cc6f9 (svn r10940) [NoAI] -Add: added AIVehicle::GetName and AIVehicle::SetName to set vehicle names
truelight
parents: 9698
diff changeset
  6941
  SetName():            true
e1b5f29cc6f9 (svn r10940) [NoAI] -Add: added AIVehicle::GetName and AIVehicle::SetName to set vehicle names
truelight
parents: 9698
diff changeset
  6942
  GetName():            MyVehicleName
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6943
  CloneVehicle():       12
9615
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  6944
  --VehicleData--
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  6945
    GetLocation():       33417
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  6946
    GetEngineType():     153
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  6947
    GetUnitNumber():     1
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  6948
    GetAge():            0
9615
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  6949
    GetMaxAge():         5490
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  6950
    GetAgeLeft():        5490
10187
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  6951
    GetCurrentSpeed():   4
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  6952
    GetRunningCost():    421
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6953
    GetProfitThisYear(): 0
9615
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  6954
    GetProfitLastYear(): 0
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  6955
    GetVehicleType():    1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  6956
    GetRoadType():       0
10193
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  6957
    GetCapacity():       12
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  6958
    GetCargoLoad():      0
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6959
    IsInDepot():         false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6960
    IsStoppedInDepot():  false
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6961
  GetOwner():           1
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6962
  BuildVehicle():       13
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6963
  IsValidVehicle(13):   true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6964
  IsInDepot(13):        true
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6965
  IsStoppedInDepot(13): true
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6966
  IsValidVehicle(14):   false
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6967
  IsInDepot(14):        false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6968
  IsStoppedInDepot(14): false
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6969
  BuildVehicle():       15
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6970
  IsValidVehicle(15):   true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6971
  IsInDepot(15):        true
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  6972
  IsStoppedInDepot(15): true
9874
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  6973
  --Errors--
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  6974
    RefitVehicle():        false
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  6975
    GetLastErrorString():  ERR_VEHICLE_NOT_IN_DEPOT
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  6976
    SellVehicle():         false
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  6977
    GetLastErrorString():  ERR_VEHICLE_NOT_IN_DEPOT
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  6978
    SendVehicleToDepot():  false
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  6979
    GetLastErrorString():  ERR_UNKNOWN
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  6980
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  6981
--VehicleList--
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  6982
  Count():             4
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  6983
  Location ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6984
    12 => 33417
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6985
    11 => 33417
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6986
    13 => 32119
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6987
    15 => 28479
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  6988
  EngineType ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6989
    13 => 219
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6990
    15 => 204
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6991
    12 => 153
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6992
    11 => 153
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  6993
  UnitNumber ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6994
    12 => 2
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6995
    15 => 1
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6996
    13 => 1
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  6997
    11 => 1
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  6998
  Age ListDump:
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  6999
    15 => 0
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  7000
    13 => 0
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  7001
    12 => 0
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  7002
    11 => 0
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7003
  MaxAge ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7004
    15 => 10980
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7005
    13 => 10980
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7006
    12 => 5490
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7007
    11 => 5490
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7008
  AgeLeft ListDump:
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  7009
    15 => 10980
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  7010
    13 => 10980
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  7011
    12 => 5490
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  7012
    11 => 5490
10187
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7013
  CurrentSpeed ListDump:
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7014
    11 => 7
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7015
    15 => 0
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7016
    13 => 0
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7017
    12 => 0
9806
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7018
  RunningCost ListDump:
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7019
    13 => 2756
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7020
    15 => 2296
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7021
    12 => 421
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7022
    11 => 421
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7023
  ProfitThisYear ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7024
    15 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7025
    13 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7026
    12 => 0
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  7027
    11 => 0
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7028
  ProfitLastYear ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7029
    15 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7030
    13 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7031
    12 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7032
    11 => 0
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  7033
  VehicleType ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7034
    13 => 3
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7035
    15 => 2
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7036
    12 => 1
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7037
    11 => 1
10668
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  7038
  RoadType ListDump:
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  7039
    12 => 0
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  7040
    11 => 0
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  7041
    15 => -1
495789401303 (svn r13212) [NoAI] -Add: introducing the ability to build trams. Use AIRoad.SetCurrentRoadType to switch to Trams, than all AIRoad functions will produce tram-objects.
truebrain
parents: 10649
diff changeset
  7042
    13 => -1
10193
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7043
  VehicleType ListDump:
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7044
    12 => 12
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7045
    11 => 12
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7046
    15 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7047
    13 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7048
  VehicleType ListDump:
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7049
    15 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7050
    13 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7051
    12 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7052
    11 => 0
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7053
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7054
--Order--
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  7055
  GetOrderCount():       0
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7056
  GetOrderDestination(): -1
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7057
  AreOrderFlagsValid():  true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7058
  IsValidVehicleOrder(): false
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7059
  GetOrderFlags():       65535
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7060
  AppendOrder():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7061
  InsertOrder():         true
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  7062
  GetOrderCount():       2
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7063
  IsValidVehicleOrder(): true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7064
  RemoveOrder():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7065
  ChangeOrder():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7066
  GetOrderDestination(): 33411
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7067
  CopyOrders():          false
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7068
  CopyOrders():          true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7069
  ShareOrders():         false
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7070
  ShareOrders():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7071
  UnshareOrders():       true
9647
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7072
  AppendOrder():         true
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7073
9746
e4ab7ea8d897 (svn r12226) [NoAI] -Fix: remove the dep for AIStationList_Vehicle on AIStationList, as Squirrel doesn't like it
truebrain
parents: 9734
diff changeset
  7074
--StationList_Vehicle--
9647
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7075
  Count():             2
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7076
  Location ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7077
    4 => 33421
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7078
    3 => 33411
9647
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7079
  CargoWaiting(0) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7080
    4 => 0
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  7081
    3 => 0
10355
ee4b5f7a5bf2 (svn r12896) [NoAI] -Sync: with trunk r12824:r12895.
rubidium
parents: 10344
diff changeset
  7082
  CargoWaiting(1) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7083
    4 => 0
10355
ee4b5f7a5bf2 (svn r12896) [NoAI] -Sync: with trunk r12824:r12895.
rubidium
parents: 10344
diff changeset
  7084
    3 => 0
9648
760b7b504e37 (svn r10543) [NoAI] -Add: added AIStationListCargoRating as valuator for a station list
truelight
parents: 9647
diff changeset
  7085
  CargoRating(1) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7086
    4 => 69
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  7087
    3 => 69
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  7088
  DistanceManhattanToTile(30000) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7089
    4 => 106
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7090
    3 => 96
9655
e8e43f333832 (svn r10557) [NoAI] -Add: added for all lists 2 valuators: DistanceManhattanToTile and DistanceSquareToTile, to get the distance from object to some tile you specify
truelight
parents: 9654
diff changeset
  7091
  DistanceSquareToTile(30000) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7092
    4 => 8818
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7093
    3 => 7058
10361
4cdffd48480f (svn r12902) [NoAI] -Fix r12901 [API CHANGE]: renamed IsWithinTownRadius to IsWithinTownInfluence, as that reflects the meaning much better
truebrain
parents: 10360
diff changeset
  7094
  IsWithinTownInfluence(0) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7095
    4 => 0
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  7096
    3 => 0
9647
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7097
9746
e4ab7ea8d897 (svn r12226) [NoAI] -Fix: remove the dep for AIStationList_Vehicle on AIStationList, as Squirrel doesn't like it
truebrain
parents: 9734
diff changeset
  7098
--VehicleList_Station--
9647
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7099
  Count():             1
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7100
  Location ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7101
    11 => 33417
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7102
      --Subsidy (0) --
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7103
        IsValidSubsidy():     false
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7104
        IsAwarded():          false
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  7105
        GetAwardedTo():       -1
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7106
        GetExpireDate():      -1
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7107
        SourceIsTown():       false
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7108
        GetSource():          65535
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7109
        DestionationIsTown(): false
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7110
        GetDestionation():    65535
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7111
        GetCargoType():       255
9823
0b7f816cf46f (svn r12431) [NoAI] -Add: added AIEventSubsidiaryOffer, which keeps you informed about new Subsidiaries
truebrain
parents: 9814
diff changeset
  7112
  GetNextEvent:          instance
10370
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7113
    GetEventType:        13
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7114
      EventName:         VehicleWaitingInDepot
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7115
      VehicleID:         11
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7116
  GetNextEvent:          instance
9823
0b7f816cf46f (svn r12431) [NoAI] -Add: added AIEventSubsidiaryOffer, which keeps you informed about new Subsidiaries
truebrain
parents: 9814
diff changeset
  7117
    GetEventType:        3
10086
6497ef78f031 (svn r12610) [NoAI] -Fix: a subsidiary is a 'subcompany' and not the financial bonus for routes which is called a subsidy.
rubidium
parents: 9874
diff changeset
  7118
      EventName:         SubsidyOffer
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7119
      --Subsidy (0) --
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7120
        IsValidSubsidy():     true
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7121
        IsAwarded():          false
10855
90904faa1890 (svn r13406) [NoAI] -Change [API CHANGE]: renamed CompanyIndex to CompanyID and AICompany::ResolveCompanyIndex() to AICompany::ResolveCompanyID(), to be more consistant with the rest of the API
truebrain
parents: 10853
diff changeset
  7122
        GetAwardedTo():       -1
10381
4ad8b98acd82 (svn r12922) [NoAI] -Add: added AIStation::SetName() (Yexo)
truebrain
parents: 10370
diff changeset
  7123
        GetExpireDate():      712800
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7124
        SourceIsTown():       true
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
  7125
        GetSource():          7
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7126
        DestionationIsTown(): true
10870
20b6cff3d6b2 (svn r13421) [NoAI] -Fix: remove the need for a Sleep(1) before executing a command at the beginning of Start(), by skipping the first tick before calling Start() in the first place
truebrain
parents: 10869
diff changeset
  7127
        GetDestionation():    15
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7128
        GetCargoType():       0
9823
0b7f816cf46f (svn r12431) [NoAI] -Add: added AIEventSubsidiaryOffer, which keeps you informed about new Subsidiaries
truebrain
parents: 9814
diff changeset
  7129
  IsEventWaiting:        false
9851
a5f5a7cf2b61 (svn r12519) [NoAI] -Add: added AILog with Info(), Warning(), and Error()
truebrain
parents: 9844
diff changeset
  7130
ERROR: We've got a suicidal AI for player 1