bin/ai/regression/regression.txt
author truebrain
Fri, 13 Jun 2008 19:57:25 +0000
branchnoai
changeset 10957 7a140b4cd91d
parent 10952 d16212cc2394
child 10974 f012c1ff38cd
permissions -rw-r--r--
(svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
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
10957
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   248
  Custom ListDump:
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   249
    1 => 42
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   250
    2 => 84
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   251
    1000 => 42000
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   252
    1001 => 42042
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   253
    1002 => 42084
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   254
    1003 => 42126
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   255
    1004 => 42168
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   256
    1005 => 42210
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   257
    1006 => 42252
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   258
    1007 => 42294
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   259
    1008 => 42336
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   260
    1009 => 42378
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   261
    1010 => 42420
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   262
    1011 => 42462
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   263
    1012 => 42504
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   264
    1013 => 42546
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   265
    1014 => 42588
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   266
    1015 => 42630
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   267
    1016 => 42672
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   268
    1017 => 42714
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   269
    1018 => 42756
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   270
    1019 => 42798
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   271
    1020 => 42840
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   272
    1021 => 42882
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   273
    1022 => 42924
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   274
    1023 => 42966
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   275
    1024 => 43008
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   276
    1025 => 43050
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   277
    1026 => 43092
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   278
    1027 => 43134
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   279
    1028 => 43176
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   280
    1029 => 43218
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   281
    1030 => 43260
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   282
    1031 => 43302
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   283
    1032 => 43344
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   284
    1033 => 43386
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   285
    1034 => 43428
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   286
    1035 => 43470
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   287
    1036 => 43512
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   288
    1037 => 43554
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   289
    1038 => 43596
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   290
    1039 => 43638
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   291
    1040 => 43680
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   292
    1041 => 43722
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   293
    1042 => 43764
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   294
    1043 => 43806
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   295
    1044 => 43848
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   296
    1045 => 43890
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   297
    1046 => 43932
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   298
    1047 => 43974
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   299
    1048 => 44016
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   300
    1049 => 44058
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   301
    1051 => 44142
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   302
    1052 => 44184
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   303
    1053 => 44226
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   304
    1054 => 44268
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   305
    1055 => 44310
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   306
    1056 => 44352
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   307
    1057 => 44394
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   308
    1058 => 44436
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   309
    1059 => 44478
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   310
    1060 => 44520
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   311
    1061 => 44562
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   312
    1062 => 44604
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   313
    1063 => 44646
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   314
    1064 => 44688
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   315
    1065 => 44730
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   316
    1066 => 44772
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   317
    1067 => 44814
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   318
    1068 => 44856
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   319
    1069 => 44898
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   320
    1070 => 44940
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   321
    1071 => 44982
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   322
    1072 => 45024
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   323
    1073 => 45066
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   324
    1074 => 45108
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   325
    1075 => 45150
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   326
    1076 => 45192
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   327
    1077 => 45234
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   328
    1078 => 45276
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   329
    1079 => 45318
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   330
    1080 => 45360
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   331
    1081 => 45402
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   332
    1082 => 45444
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   333
    1083 => 45486
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   334
    1084 => 45528
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   335
    1085 => 45570
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   336
    1086 => 45612
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   337
    1087 => 45654
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   338
    1088 => 45696
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   339
    1089 => 45738
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   340
    1090 => 45780
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   341
    1091 => 45822
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   342
    1092 => 45864
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   343
    1093 => 45906
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   344
    1094 => 45948
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   345
    1095 => 45990
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   346
    1096 => 46032
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   347
    1097 => 46074
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   348
    1098 => 46116
7a140b4cd91d (svn r13511) [NoAI] -Fix: add a reference to objects given in Valuate(), so they remain valid during their usage. This allows nameless functions (lambda functions) in Valuate() on long lists.
truebrain
parents: 10952
diff changeset
   349
    1099 => 46158
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   350
  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
   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
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
   361
    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
   362
    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
   363
    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
   364
    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
   365
    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
   366
    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
   367
    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
   368
    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
   369
    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
   370
    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
   371
    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
   372
    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
   373
    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
   374
    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
   375
    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
   376
    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
   377
    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
   378
    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
   379
    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
   380
    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
   381
    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
   382
    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
   383
    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
   384
    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
   385
    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
   386
    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
   387
    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
   388
    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
   389
    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
   390
    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
   391
    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
   392
    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
   393
    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
   394
    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
   395
    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
   396
    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
   397
    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
   398
    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
   399
    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
   400
    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
   401
    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
   402
    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
   403
    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
   404
    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
   405
    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
   406
    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
   407
    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
   408
    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
   409
    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
   410
    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
   411
    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
   412
    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
   413
    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
   414
    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
   415
    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
   416
    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
   417
    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
   418
    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
   419
    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
   420
    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
   421
    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
   422
    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
   423
    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
   424
    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
   425
    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
   426
    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
   427
    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
   428
    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
   429
    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
   430
    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
   431
    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
   432
    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
   433
    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
   434
    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
   435
    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
   436
    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
   437
    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
   438
    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
   439
    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
   440
    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
   441
    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
   442
    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
   443
    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
   444
    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
   445
    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
   446
    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
   447
    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
   448
    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
   449
    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
   450
    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
   451
    1099 => -571363581
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   452
  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
   453
    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
   454
    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
   455
    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
   456
    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
   457
    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
   458
    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
   459
    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
   460
    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
   461
    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
   462
    1007 => -256175309
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   463
  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
   464
    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
   465
    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
   466
    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
   467
    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
   468
    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
   469
    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
   470
    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
   471
    1007 => -256175309
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   472
  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
   473
    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
   474
    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
   475
    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
   476
    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
   477
    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
   478
    1005 => 1925605331
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   479
  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
   480
    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
   481
    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
   482
    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
   483
    1005 => 1925605331
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   484
  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
   485
    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
   486
    1005 => 1925605331
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   487
  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
   488
    1005 => 1925605331
9796
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   489
  AddList({1005, 4000, 4001, 4002}):
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   490
    1005 => 1005
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   491
    4000 => 4000
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   492
    4001 => 4001
83d54622190c (svn r12300) [NoAI] -Add: added AIAbstractList.AddList() (on request by Progman)
truebrain
parents: 9794
diff changeset
   493
    4002 => 4002
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   494
  IsEmpty():     true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
   495
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   496
--AIAirport--
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   497
  IsHangarTile():       false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   498
  IsAirportTile():      false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   499
  GetHangarOfAirport(): -1
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   500
  AirportAvailable(-1):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   501
  GetAirportWidth(-1):          0
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   502
  GetAirportHeight(-1):         0
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   503
  GetAirportCoverageRadius(-1): 0
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   504
  AirportAvailable(0):         true
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   505
  GetAirportWidth(0):          4
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   506
  GetAirportHeight(0):         3
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   507
  GetAirportCoverageRadius(0): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   508
  AirportAvailable(1):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   509
  GetAirportWidth(1):          6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   510
  GetAirportHeight(1):         6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   511
  GetAirportCoverageRadius(1): 5
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   512
  AirportAvailable(2):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   513
  GetAirportWidth(2):          1
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   514
  GetAirportHeight(2):         1
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   515
  GetAirportCoverageRadius(2): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   516
  AirportAvailable(3):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   517
  GetAirportWidth(3):          6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   518
  GetAirportHeight(3):         6
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   519
  GetAirportCoverageRadius(3): 6
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   520
  AirportAvailable(4):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   521
  GetAirportWidth(4):          7
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   522
  GetAirportHeight(4):         7
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   523
  GetAirportCoverageRadius(4): 8
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   524
  AirportAvailable(5):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   525
  GetAirportWidth(5):          5
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   526
  GetAirportHeight(5):         4
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   527
  GetAirportCoverageRadius(5): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   528
  AirportAvailable(6):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   529
  GetAirportWidth(6):          2
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   530
  GetAirportHeight(6):         2
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   531
  GetAirportCoverageRadius(6): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   532
  AirportAvailable(7):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   533
  GetAirportWidth(7):          9
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   534
  GetAirportHeight(7):         11
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   535
  GetAirportCoverageRadius(7): 10
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   536
  AirportAvailable(8):         false
9670
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   537
  GetAirportWidth(8):          4
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   538
  GetAirportHeight(8):         2
820b77e19bb3 (svn r10609) [NoAI] -Add: added GetAirportWidth / GetAirportHeight
truelight
parents: 9668
diff changeset
   539
  GetAirportCoverageRadius(8): 4
9774
74115e38e688 (svn r12267) [NoAI] -Fix r12266: forgot to update the regression output (again and again...)
truebrain
parents: 9771
diff changeset
   540
  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
   541
  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
   542
  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
   543
  GetAirportCoverageRadius(9): -1
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   544
  GetBankBalance():     100000
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   545
  BuildAirport():       true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   546
  IsHangarTile():       false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   547
  IsAirportTile():      true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   548
  GetHangarOfAirport(): 32119
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   549
  IsHangarTile():       true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   550
  IsAirportTile():      true
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   551
  GetBankBalance():     90100
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   552
  RemoveAirport():      true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   553
  IsHangarTile():       false
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   554
  IsAirportTile():      false
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   555
  GetBankBalance():     89836
9654
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   556
  BuildAirport():       true
b836eb5c521f (svn r10556) [NoAI] -Add: added AIAirport, which can build an airport
truelight
parents: 9652
diff changeset
   557
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   558
--Bridge--
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   559
  Bridge -1
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   560
    IsValidBridge():    false
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   561
    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
   562
    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
   563
    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
   564
    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
   565
    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
   566
    GetYearAvailable(): -1
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   567
  Bridge 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   568
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   569
    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
   570
    GetMaxSpeed():      32
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   571
    GetPrice():         321
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   572
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   573
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   574
    GetYearAvailable(): 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   575
  Bridge 1
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   576
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   577
    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
   578
    GetMaxSpeed():      48
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   579
    GetPrice():         450
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   580
    GetMaxLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   581
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   582
    GetYearAvailable(): 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   583
  Bridge 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   584
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   585
    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
   586
    GetMaxSpeed():      64
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   587
    GetPrice():         579
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   588
    GetMaxLength():     7
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   589
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   590
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   591
  Bridge 3
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   592
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   593
    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
   594
    GetMaxSpeed():      80
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   595
    GetPrice():         675
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   596
    GetMaxLength():     12
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   597
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   598
    GetYearAvailable(): 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   599
  Bridge 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   600
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   601
    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
   602
    GetMaxSpeed():      96
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   603
    GetPrice():         744
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   604
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   605
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   606
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   607
  Bridge 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   608
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   609
    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
   610
    GetMaxSpeed():      112
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   611
    GetPrice():         772
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   612
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   613
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   614
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   615
  Bridge 6
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   616
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   617
    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
   618
    GetMaxSpeed():      160
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   619
    GetPrice():         901
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   620
    GetMaxLength():     9
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   621
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   622
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   623
  Bridge 7
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   624
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   625
    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
   626
    GetMaxSpeed():      208
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   627
    GetPrice():         933
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   628
    GetMaxLength():     10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   629
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   630
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   631
  Bridge 8
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   632
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   633
    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
   634
    GetMaxSpeed():      240
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   635
    GetPrice():         997
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   636
    GetMaxLength():     11
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   637
    GetMinLength():     5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   638
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   639
  Bridge 9
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   640
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   641
    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
   642
    GetMaxSpeed():      256
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   643
    GetPrice():         965
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   644
    GetMaxLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   645
    GetMinLength():     2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   646
    GetYearAvailable(): 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   647
  Bridge 10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   648
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   649
    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
   650
    GetMaxSpeed():      320
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   651
    GetPrice():         1025
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   652
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   653
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   654
    GetYearAvailable(): 1995
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   655
  Bridge 11
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   656
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   657
    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
   658
    GetMaxSpeed():      512
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   659
    GetPrice():         1528
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   660
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   661
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   662
    GetYearAvailable(): 2005
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   663
  Bridge 12
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   664
    IsValidBridge():    true
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   665
    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
   666
    GetMaxSpeed():      608
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   667
    GetPrice():         2051
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   668
    GetMaxLength():     102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   669
    GetMinLength():     4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   670
    GetYearAvailable(): 2010
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   671
  Bridge 13
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   672
    IsValidBridge():    false
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   673
    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
   674
    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
   675
    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
   676
    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
   677
    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
   678
    GetYearAvailable(): -1
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   679
  Valid Bridges:        13
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   680
  IsBridgeTile():       false
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   681
  RemoveBridge():       false
9867
b7d9ffe24f81 (svn r12589) [NoAI] -Add: GetLastError support for AIBridge.
rubidium
parents: 9865
diff changeset
   682
  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
   683
  GetOtherBridgeEnd():  -1
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   684
  BuildBridge():        true
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   685
  IsBridgeTile():       true
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   686
  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
   687
  GetOtherBridgeEnd():  33155
9867
b7d9ffe24f81 (svn r12589) [NoAI] -Add: GetLastError support for AIBridge.
rubidium
parents: 9865
diff changeset
   688
  BuildBridge():        false
b7d9ffe24f81 (svn r12589) [NoAI] -Add: GetLastError support for AIBridge.
rubidium
parents: 9865
diff changeset
   689
  GetLastErrorString(): ERR_ALREADY_BUILT
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   690
  RemoveBridge():       true
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   691
  IsBridgeTile():       false
9792
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   692
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   693
--BridgeList--
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   694
  Count():             10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   695
  MaxSpeed ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   696
    9 => 256
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   697
    8 => 240
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   698
    7 => 208
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   699
    6 => 160
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   700
    5 => 112
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   701
    4 => 96
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   702
    3 => 80
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   703
    2 => 64
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   704
    1 => 48
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   705
    0 => 32
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   706
  Price ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   707
    8 => 997
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   708
    9 => 965
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   709
    7 => 933
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   710
    6 => 901
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   711
    5 => 772
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   712
    4 => 744
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   713
    3 => 675
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   714
    2 => 579
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   715
    1 => 450
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   716
    0 => 321
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   717
  MaxLength ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   718
    5 => 102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   719
    4 => 102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   720
    0 => 102
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   721
    3 => 12
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   722
    8 => 11
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   723
    7 => 10
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   724
    6 => 9
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   725
    2 => 7
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   726
    9 => 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   727
    1 => 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   728
  MinLength ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   729
    8 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   730
    7 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   731
    6 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   732
    5 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   733
    4 => 5
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   734
    3 => 4
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   735
    9 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   736
    2 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   737
    1 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   738
    0 => 2
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   739
  YearAvailable ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   740
    9 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   741
    8 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   742
    7 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   743
    6 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   744
    5 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   745
    4 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   746
    2 => 1930
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   747
    3 => 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   748
    1 => 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   749
    0 => 0
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   750
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   751
--BridgeList_Length--
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   752
  Count():             3
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   753
  MaxSpeed ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   754
    5 => 112
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   755
    4 => 96
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   756
    0 => 32
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   757
  Price ListDump:
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   758
    5 => 2163
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   759
    4 => 2084
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   760
    0 => 901
e1222f4674c2 (svn r12294) [NoAI] -Add: added AIBridge(List), which lists all available bridges (no build yet)
truebrain
parents: 9791
diff changeset
   761
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
   762
--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
   763
  Cargo -1
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   764
    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
   765
    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
   766
    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
   767
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   768
    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
   769
    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
   770
    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
   771
    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
   772
    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
   773
  Cargo 0
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   774
    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
   775
    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
   776
    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
   777
    HasCargoClass():         true
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   778
    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
   779
    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
   780
    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
   781
    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
   782
    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
   783
  Cargo 1
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   784
    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
   785
    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
   786
    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
   787
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   788
    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
   789
    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
   790
    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
   791
    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
   792
    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
   793
  Cargo 2
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   794
    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
   795
    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
   796
    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
   797
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   798
    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
   799
    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
   800
    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
   801
    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
   802
    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
   803
  Cargo 3
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   804
    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
   805
    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
   806
    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
   807
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   808
    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
   809
    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
   810
    GetCargoIncome(10, 10):  5
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   811
    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
   812
    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
   813
  Cargo 4
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   814
    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
   815
    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
   816
    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
   817
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   818
    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
   819
    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
   820
    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
   821
    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
   822
    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
   823
  Cargo 5
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   824
    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
   825
    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
   826
    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
   827
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   828
    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
   829
    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
   830
    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
   831
    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
   832
    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
   833
  Cargo 6
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   834
    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
   835
    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
   836
    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
   837
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   838
    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
   839
    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
   840
    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
   841
    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
   842
    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
   843
  Cargo 7
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   844
    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
   845
    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
   846
    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
   847
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   848
    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
   849
    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
   850
    GetCargoIncome(10, 10):  6
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
   851
    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
   852
    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
   853
  Cargo 8
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   854
    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
   855
    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
   856
    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
   857
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   858
    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
   859
    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
   860
    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
   861
    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
   862
    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
   863
  Cargo 9
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   864
    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
   865
    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
   866
    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
   867
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   868
    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
   869
    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
   870
    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
   871
    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
   872
    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
   873
  Cargo 10
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   874
    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
   875
    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
   876
    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
   877
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   878
    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
   879
    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
   880
    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
   881
    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
   882
    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
   883
  Cargo 11
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   884
    IsValidCargo():          false
9478
2d1459762868 (svn r9326) [NoAI] -Fix r9325: somehow I fucked up the regression.txt update
truelight
parents: 9477
diff changeset
   885
    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
   886
    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
   887
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   888
    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
   889
    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
   890
    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
   891
    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
   892
    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
   893
  Cargo 12
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   894
    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
   895
    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
   896
    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
   897
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   898
    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
   899
    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
   900
    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
   901
    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
   902
    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
   903
  Cargo 13
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   904
    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
   905
    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
   906
    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
   907
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   908
    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
   909
    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
   910
    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
   911
    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
   912
    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
   913
  Cargo 14
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
   914
    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
   915
    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
   916
    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
   917
    HasCargoClass():         false
10831
f7e17819358b (svn r13382) [NoAI] -Add: added AICargo::GetTownEffect()
truebrain
parents: 10776
diff changeset
   918
    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
   919
    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
   920
    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
   921
    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
   922
    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
   923
9785
edbd185e05ed (svn r12280) [NoAI] -Add: added AICargoList (Morloth)
truebrain
parents: 9776
diff changeset
   924
--CargoList--
edbd185e05ed (svn r12280) [NoAI] -Add: added AICargoList (Morloth)
truebrain
parents: 9776
diff changeset
   925
  Count():            11
9788
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   926
  IsFreight ListDump:
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   927
    10 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   928
    9 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   929
    8 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   930
    7 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   931
    6 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   932
    5 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   933
    4 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   934
    3 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   935
    1 => 1
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   936
    2 => 0
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   937
    0 => 0
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   938
  CargoIncomes(100, 100) ListDump:
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   939
    1 => 45
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   940
    9 => 43
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   941
    8 => 40
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   942
    7 => 40
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   943
    3 => 38
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   944
    2 => 37
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   945
    10 => 31
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   946
    5 => 27
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   947
    6 => 23
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   948
    4 => 16
e9dbd4ec1784 (svn r12284) [NoAI] -Add: added AICargoList_v(IsFreight|CargoIncomes) (Morloth)
truebrain
parents: 9785
diff changeset
   949
    0 => 11
9785
edbd185e05ed (svn r12280) [NoAI] -Add: added AICargoList (Morloth)
truebrain
parents: 9776
diff changeset
   950
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
   951
--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
   952
  SetCompanyName():     true
9558
4fc9b464a932 (svn r9496) [NoAI] -Add: added regression for AITestMode() and AIExecMode()
truelight
parents: 9557
diff changeset
   953
  SetCompanyName():     true
4fc9b464a932 (svn r9496) [NoAI] -Add: added regression for AITestMode() and AIExecMode()
truelight
parents: 9557
diff changeset
   954
  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
   955
  SetCompanyName():     false
9865
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   956
  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
   957
  GetCompanyName():            Regression
10355
ee4b5f7a5bf2 (svn r12896) [NoAI] -Sync: with trunk r12824:r12895.
rubidium
parents: 10344
diff changeset
   958
  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
   959
  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
   960
  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
   961
  GetCompanyValue():           0
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   962
  GetBankBalance():            82534
9697
a6a9379988f6 (svn r10938) [NoAI] -Fix r10937: regression update
truelight
parents: 9694
diff changeset
   963
  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
   964
  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
   965
  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
   966
  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
   967
  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
   968
  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
   969
  SetLoanAmount(10000):        false
9865
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   970
  GetLastErrorString():        ERR_PRECONDITION_FAILED
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   971
  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
   972
  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
   973
  SetMinimumLoanAmount(31337): true
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   974
  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
   975
  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
   976
  SetLoanAmount(10000):        true
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
   977
  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
   978
  GetLoanAmount():             300000
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   979
  GetCompanyHQ():              -1
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   980
  BuildCompanyHQ():            true
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   981
  GetCompanyHQ():              33151
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   982
  BuildCompanyHQ():            true
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
   983
  GetCompanyHQ():              33153
9865
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   984
  BuildCompanyHQ():            false
f241472f09dc (svn r12555) [NoAI] -Add: support for GetLastError for AICompany.
rubidium
parents: 9851
diff changeset
   985
  GetLastErrorString():        ERR_AREA_NOT_CLEAR
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   986
  GetAutoRenewStatus();        false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   987
  SetAutoRenewStatus(true);    true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   988
  GetAutoRenewStatus();        true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   989
  SetAutoRenewStatus(true);    false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   990
  SetAutoRenewStatus(false);   true
10776
07203fc29812 (svn r13326) [NoAI] -Sync with trunk r13264:13325
glx
parents: 10691
diff changeset
   991
  GetAutoRenewMonths();        -6
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   992
  SetAutoRenewMonths(-12);     true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   993
  GetAutoRenewMonths();        -12
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   994
  SetAutoRenewMonths(-12);     false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   995
  SetAutoRenewMonths(6);       true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   996
  GetAutoRenewMoney();         100000
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   997
  SetAutoRenewMoney(200000);   true
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   998
  GetAutoRenewMoney();         200000
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
   999
  SetAutoRenewMoney(200000);   false
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  1000
  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
  1001
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
  1002
--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
  1003
  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
  1004
    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
  1005
    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
  1006
    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
  1007
    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
  1008
    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
  1009
    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
  1010
    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
  1011
    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
  1012
    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
  1013
    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
  1014
    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
  1015
    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
  1016
  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
  1017
    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
  1018
    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
  1019
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1020
    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
  1021
    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
  1022
    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
  1023
    GetMaxSpeed():      64
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1024
    GetPrice():         8203
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1025
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1026
    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
  1027
    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
  1028
    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
  1029
  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
  1030
    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
  1031
    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
  1032
    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
  1033
    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
  1034
    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
  1035
    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
  1036
    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
  1037
    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
  1038
    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
  1039
    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
  1040
    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
  1041
    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
  1042
  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
  1043
    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
  1044
    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
  1045
    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
  1046
    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
  1047
    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
  1048
    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
  1049
    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
  1050
    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
  1051
    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
  1052
    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
  1053
    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
  1054
    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
  1055
  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
  1056
    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
  1057
    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
  1058
    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
  1059
    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
  1060
    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
  1061
    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
  1062
    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
  1063
    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
  1064
    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
  1065
    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
  1066
    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
  1067
    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
  1068
  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
  1069
    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
  1070
    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
  1071
    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
  1072
    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
  1073
    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
  1074
    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
  1075
    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
  1076
    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
  1077
    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
  1078
    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
  1079
    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
  1080
    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
  1081
  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
  1082
    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
  1083
    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
  1084
    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
  1085
    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
  1086
    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
  1087
    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
  1088
    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
  1089
    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
  1090
    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
  1091
    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
  1092
    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
  1093
    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
  1094
  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
  1095
    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
  1096
    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
  1097
    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
  1098
    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
  1099
    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
  1100
    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
  1101
    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
  1102
    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
  1103
    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
  1104
    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
  1105
    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
  1106
    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
  1107
  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
  1108
    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
  1109
    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
  1110
    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
  1111
    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
  1112
    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
  1113
    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
  1114
    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
  1115
    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
  1116
    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
  1117
    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
  1118
    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
  1119
    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
  1120
  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
  1121
    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
  1122
    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
  1123
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1124
    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
  1125
    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
  1126
    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
  1127
    GetMaxSpeed():      112
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1128
    GetPrice():         15234
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1129
    GetMaxAge():        7686
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1130
    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
  1131
    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
  1132
    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
  1133
  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
  1134
    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
  1135
    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
  1136
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1137
    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
  1138
    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
  1139
    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
  1140
    GetMaxSpeed():      128
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1141
    GetPrice():         22265
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1142
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1143
    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
  1144
    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
  1145
    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
  1146
  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
  1147
    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
  1148
    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
  1149
    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
  1150
    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
  1151
    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
  1152
    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
  1153
    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
  1154
    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
  1155
    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
  1156
    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
  1157
    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
  1158
    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
  1159
  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
  1160
    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
  1161
    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
  1162
    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
  1163
    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
  1164
    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
  1165
    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
  1166
    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
  1167
    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
  1168
    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
  1169
    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
  1170
    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
  1171
    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
  1172
  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
  1173
    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
  1174
    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
  1175
    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
  1176
    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
  1177
    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
  1178
    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
  1179
    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
  1180
    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
  1181
    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
  1182
    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
  1183
    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
  1184
    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
  1185
  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
  1186
    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
  1187
    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
  1188
    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
  1189
    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
  1190
    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
  1191
    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
  1192
    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
  1193
    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
  1194
    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
  1195
    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
  1196
    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
  1197
    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
  1198
  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
  1199
    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
  1200
    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
  1201
    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
  1202
    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
  1203
    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
  1204
    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
  1205
    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
  1206
    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
  1207
    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
  1208
    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
  1209
    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
  1210
    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
  1211
  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
  1212
    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
  1213
    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
  1214
    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
  1215
    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
  1216
    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
  1217
    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
  1218
    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
  1219
    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
  1220
    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
  1221
    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
  1222
    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
  1223
    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
  1224
  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
  1225
    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
  1226
    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
  1227
    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
  1228
    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
  1229
    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
  1230
    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
  1231
    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
  1232
    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
  1233
    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
  1234
    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
  1235
    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
  1236
    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
  1237
  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
  1238
    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
  1239
    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
  1240
    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
  1241
    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
  1242
    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
  1243
    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
  1244
    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
  1245
    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
  1246
    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
  1247
    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
  1248
    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
  1249
    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
  1250
  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
  1251
    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
  1252
    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
  1253
    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
  1254
    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
  1255
    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
  1256
    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
  1257
    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
  1258
    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
  1259
    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
  1260
    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
  1261
    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
  1262
    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
  1263
  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
  1264
    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
  1265
    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
  1266
    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
  1267
    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
  1268
    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
  1269
    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
  1270
    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
  1271
    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
  1272
    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
  1273
    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
  1274
    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
  1275
    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
  1276
  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
  1277
    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
  1278
    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
  1279
    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
  1280
    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
  1281
    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
  1282
    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
  1283
    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
  1284
    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
  1285
    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
  1286
    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
  1287
    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
  1288
    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
  1289
  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
  1290
    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
  1291
    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
  1292
    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
  1293
    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
  1294
    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
  1295
    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
  1296
    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
  1297
    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
  1298
    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
  1299
    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
  1300
    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
  1301
    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
  1302
  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
  1303
    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
  1304
    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
  1305
    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
  1306
    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
  1307
    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
  1308
    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
  1309
    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
  1310
    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
  1311
    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
  1312
    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
  1313
    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
  1314
    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
  1315
  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
  1316
    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
  1317
    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
  1318
    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
  1319
    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
  1320
    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
  1321
    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
  1322
    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
  1323
    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
  1324
    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
  1325
    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
  1326
    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
  1327
    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
  1328
  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
  1329
    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
  1330
    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
  1331
    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
  1332
    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
  1333
    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
  1334
    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
  1335
    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
  1336
    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
  1337
    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
  1338
    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
  1339
    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
  1340
    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
  1341
  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
  1342
    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
  1343
    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
  1344
    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
  1345
    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
  1346
    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
  1347
    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
  1348
    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
  1349
    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
  1350
    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
  1351
    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
  1352
    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
  1353
    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
  1354
  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
  1355
    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
  1356
    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
  1357
    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
  1358
    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
  1359
    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
  1360
    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
  1361
    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
  1362
    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
  1363
    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
  1364
    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
  1365
    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
  1366
    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
  1367
  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
  1368
    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
  1369
    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
  1370
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1371
    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
  1372
    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
  1373
    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
  1374
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1375
    GetPrice():         289453
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1376
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1377
    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
  1378
    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
  1379
    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
  1380
  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
  1381
    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
  1382
    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
  1383
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1384
    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
  1385
    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
  1386
    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
  1387
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1388
    GetPrice():         267187
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1389
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1390
    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
  1391
    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
  1392
    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
  1393
  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
  1394
    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
  1395
    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
  1396
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1397
    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
  1398
    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
  1399
    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
  1400
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1401
    GetPrice():         206250
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1402
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1403
    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
  1404
    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
  1405
    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
  1406
  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
  1407
    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
  1408
    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
  1409
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1410
    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
  1411
    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
  1412
    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
  1413
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1414
    GetPrice():         234375
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1415
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1416
    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
  1417
    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
  1418
    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
  1419
  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
  1420
    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
  1421
    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
  1422
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1423
    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
  1424
    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
  1425
    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
  1426
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1427
    GetPrice():         225000
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1428
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1429
    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
  1430
    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
  1431
    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
  1432
  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
  1433
    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
  1434
    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
  1435
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1436
    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
  1437
    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
  1438
    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
  1439
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1440
    GetPrice():         222656
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1441
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1442
    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
  1443
    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
  1444
    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
  1445
  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
  1446
    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
  1447
    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
  1448
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1449
    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
  1450
    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
  1451
    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
  1452
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1453
    GetPrice():         213281
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1454
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1455
    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
  1456
    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
  1457
    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
  1458
  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
  1459
    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
  1460
    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
  1461
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1462
    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
  1463
    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
  1464
    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
  1465
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1466
    GetPrice():         212109
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1467
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1468
    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
  1469
    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
  1470
    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
  1471
  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
  1472
    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
  1473
    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
  1474
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1475
    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
  1476
    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
  1477
    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
  1478
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1479
    GetPrice():         209765
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1480
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1481
    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
  1482
    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
  1483
    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
  1484
  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
  1485
    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
  1486
    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
  1487
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1488
    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
  1489
    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
  1490
    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
  1491
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1492
    GetPrice():         229687
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1493
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1494
    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
  1495
    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
  1496
    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
  1497
  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
  1498
    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
  1499
    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
  1500
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1501
    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
  1502
    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
  1503
    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
  1504
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1505
    GetPrice():         298828
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1506
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1507
    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
  1508
    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
  1509
    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
  1510
  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
  1511
    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
  1512
    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
  1513
    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
  1514
    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
  1515
    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
  1516
    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
  1517
    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
  1518
    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
  1519
    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
  1520
    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
  1521
    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
  1522
    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
  1523
  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
  1524
    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
  1525
    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
  1526
    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
  1527
    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
  1528
    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
  1529
    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
  1530
    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
  1531
    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
  1532
    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
  1533
    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
  1534
    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
  1535
    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
  1536
  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
  1537
    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
  1538
    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
  1539
    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
  1540
    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
  1541
    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
  1542
    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
  1543
    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
  1544
    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
  1545
    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
  1546
    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
  1547
    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
  1548
    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
  1549
  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
  1550
    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
  1551
    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
  1552
    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
  1553
    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
  1554
    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
  1555
    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
  1556
    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
  1557
    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
  1558
    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
  1559
    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
  1560
    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
  1561
    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
  1562
  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
  1563
    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
  1564
    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
  1565
    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
  1566
    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
  1567
    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
  1568
    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
  1569
    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
  1570
    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
  1571
    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
  1572
    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
  1573
    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
  1574
    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
  1575
  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
  1576
    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
  1577
    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
  1578
    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
  1579
    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
  1580
    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
  1581
    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
  1582
    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
  1583
    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
  1584
    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
  1585
    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
  1586
    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
  1587
    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
  1588
  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
  1589
    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
  1590
    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
  1591
    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
  1592
    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
  1593
    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
  1594
    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
  1595
    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
  1596
    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
  1597
    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
  1598
    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
  1599
    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
  1600
    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
  1601
  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
  1602
    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
  1603
    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
  1604
    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
  1605
    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
  1606
    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
  1607
    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
  1608
    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
  1609
    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
  1610
    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
  1611
    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
  1612
    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
  1613
    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
  1614
  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
  1615
    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
  1616
    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
  1617
    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
  1618
    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
  1619
    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
  1620
    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
  1621
    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
  1622
    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
  1623
    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
  1624
    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
  1625
    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
  1626
    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
  1627
  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
  1628
    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
  1629
    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
  1630
    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
  1631
    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
  1632
    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
  1633
    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
  1634
    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
  1635
    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
  1636
    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
  1637
    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
  1638
    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
  1639
    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
  1640
  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
  1641
    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
  1642
    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
  1643
    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
  1644
    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
  1645
    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
  1646
    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
  1647
    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
  1648
    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
  1649
    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
  1650
    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
  1651
    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
  1652
    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
  1653
  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
  1654
    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
  1655
    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
  1656
    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
  1657
    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
  1658
    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
  1659
    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
  1660
    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
  1661
    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
  1662
    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
  1663
    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
  1664
    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
  1665
    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
  1666
  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
  1667
    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
  1668
    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
  1669
    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
  1670
    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
  1671
    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
  1672
    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
  1673
    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
  1674
    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
  1675
    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
  1676
    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
  1677
    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
  1678
    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
  1679
  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
  1680
    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
  1681
    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
  1682
    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
  1683
    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
  1684
    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
  1685
    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
  1686
    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
  1687
    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
  1688
    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
  1689
    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
  1690
    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
  1691
    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
  1692
  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
  1693
    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
  1694
    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
  1695
    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
  1696
    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
  1697
    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
  1698
    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
  1699
    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
  1700
    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
  1701
    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
  1702
    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
  1703
    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
  1704
    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
  1705
  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
  1706
    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
  1707
    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
  1708
    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
  1709
    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
  1710
    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
  1711
    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
  1712
    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
  1713
    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
  1714
    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
  1715
    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
  1716
    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
  1717
    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
  1718
  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
  1719
    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
  1720
    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
  1721
    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
  1722
    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
  1723
    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
  1724
    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
  1725
    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
  1726
    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
  1727
    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
  1728
    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
  1729
    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
  1730
    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
  1731
  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
  1732
    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
  1733
    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
  1734
    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
  1735
    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
  1736
    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
  1737
    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
  1738
    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
  1739
    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
  1740
    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
  1741
    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
  1742
    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
  1743
    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
  1744
  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
  1745
    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
  1746
    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
  1747
    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
  1748
    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
  1749
    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
  1750
    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
  1751
    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
  1752
    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
  1753
    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
  1754
    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
  1755
    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
  1756
    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
  1757
  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
  1758
    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
  1759
    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
  1760
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1761
    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
  1762
    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
  1763
    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
  1764
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1765
    GetPrice():         289453
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1766
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1767
    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
  1768
    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
  1769
    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
  1770
  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
  1771
    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
  1772
    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
  1773
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1774
    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
  1775
    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
  1776
    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
  1777
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1778
    GetPrice():         267187
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1779
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1780
    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
  1781
    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
  1782
    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
  1783
  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
  1784
    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
  1785
    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
  1786
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1787
    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
  1788
    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
  1789
    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
  1790
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1791
    GetPrice():         206250
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1792
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1793
    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
  1794
    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
  1795
    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
  1796
  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
  1797
    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
  1798
    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
  1799
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1800
    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
  1801
    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
  1802
    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
  1803
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1804
    GetPrice():         234375
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1805
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1806
    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
  1807
    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
  1808
    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
  1809
  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
  1810
    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
  1811
    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
  1812
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1813
    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
  1814
    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
  1815
    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
  1816
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1817
    GetPrice():         225000
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1818
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1819
    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
  1820
    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
  1821
    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
  1822
  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
  1823
    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
  1824
    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
  1825
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1826
    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
  1827
    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
  1828
    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
  1829
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1830
    GetPrice():         222656
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1831
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1832
    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
  1833
    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
  1834
    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
  1835
  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
  1836
    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
  1837
    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
  1838
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1839
    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
  1840
    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
  1841
    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
  1842
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1843
    GetPrice():         213281
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1844
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1845
    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
  1846
    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
  1847
    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
  1848
  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
  1849
    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
  1850
    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
  1851
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1852
    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
  1853
    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
  1854
    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
  1855
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1856
    GetPrice():         212109
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1857
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1858
    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
  1859
    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
  1860
    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
  1861
  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
  1862
    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
  1863
    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
  1864
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1865
    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
  1866
    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
  1867
    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
  1868
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1869
    GetPrice():         209765
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1870
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1871
    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
  1872
    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
  1873
    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
  1874
  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
  1875
    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
  1876
    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
  1877
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1878
    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
  1879
    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
  1880
    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
  1881
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1882
    GetPrice():         229687
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1883
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1884
    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
  1885
    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
  1886
    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
  1887
  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
  1888
    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
  1889
    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
  1890
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  1891
    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
  1892
    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
  1893
    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
  1894
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  1895
    GetPrice():         298828
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1896
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  1897
    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
  1898
    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
  1899
    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
  1900
  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
  1901
    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
  1902
    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
  1903
    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
  1904
    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
  1905
    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
  1906
    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
  1907
    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
  1908
    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
  1909
    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
  1910
    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
  1911
    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
  1912
    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
  1913
  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
  1914
    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
  1915
    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
  1916
    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
  1917
    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
  1918
    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
  1919
    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
  1920
    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
  1921
    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
  1922
    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
  1923
    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
  1924
    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
  1925
    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
  1926
  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
  1927
    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
  1928
    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
  1929
    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
  1930
    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
  1931
    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
  1932
    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
  1933
    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
  1934
    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
  1935
    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
  1936
    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
  1937
    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
  1938
    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
  1939
  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
  1940
    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
  1941
    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
  1942
    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
  1943
    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
  1944
    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
  1945
    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
  1946
    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
  1947
    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
  1948
    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
  1949
    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
  1950
    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
  1951
    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
  1952
  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
  1953
    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
  1954
    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
  1955
    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
  1956
    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
  1957
    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
  1958
    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
  1959
    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
  1960
    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
  1961
    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
  1962
    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
  1963
    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
  1964
    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
  1965
  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
  1966
    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
  1967
    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
  1968
    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
  1969
    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
  1970
    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
  1971
    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
  1972
    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
  1973
    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
  1974
    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
  1975
    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
  1976
    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
  1977
    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
  1978
  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
  1979
    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
  1980
    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
  1981
    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
  1982
    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
  1983
    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
  1984
    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
  1985
    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
  1986
    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
  1987
    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
  1988
    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
  1989
    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
  1990
    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
  1991
  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
  1992
    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
  1993
    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
  1994
    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
  1995
    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
  1996
    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
  1997
    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
  1998
    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
  1999
    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
  2000
    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
  2001
    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
  2002
    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
  2003
    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
  2004
  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
  2005
    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
  2006
    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
  2007
    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
  2008
    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
  2009
    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
  2010
    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
  2011
    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
  2012
    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
  2013
    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
  2014
    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
  2015
    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
  2016
    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
  2017
  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
  2018
    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
  2019
    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
  2020
    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
  2021
    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
  2022
    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
  2023
    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
  2024
    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
  2025
    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
  2026
    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
  2027
    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
  2028
    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
  2029
    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
  2030
  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
  2031
    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
  2032
    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
  2033
    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
  2034
    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
  2035
    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
  2036
    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
  2037
    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
  2038
    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
  2039
    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
  2040
    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
  2041
    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
  2042
    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
  2043
  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
  2044
    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
  2045
    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
  2046
    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
  2047
    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
  2048
    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
  2049
    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
  2050
    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
  2051
    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
  2052
    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
  2053
    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
  2054
    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
  2055
    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
  2056
  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
  2057
    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
  2058
    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
  2059
    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
  2060
    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
  2061
    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
  2062
    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
  2063
    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
  2064
    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
  2065
    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
  2066
    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
  2067
    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
  2068
    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
  2069
  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
  2070
    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
  2071
    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
  2072
    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
  2073
    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
  2074
    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
  2075
    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
  2076
    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
  2077
    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
  2078
    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
  2079
    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
  2080
    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
  2081
    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
  2082
  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
  2083
    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
  2084
    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
  2085
    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
  2086
    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
  2087
    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
  2088
    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
  2089
    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
  2090
    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
  2091
    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
  2092
    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
  2093
    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
  2094
    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
  2095
  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
  2096
    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
  2097
    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
  2098
    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
  2099
    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
  2100
    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
  2101
    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
  2102
    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
  2103
    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
  2104
    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
  2105
    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
  2106
    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
  2107
    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
  2108
  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
  2109
    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
  2110
    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
  2111
    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
  2112
    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
  2113
    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
  2114
    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
  2115
    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
  2116
    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
  2117
    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
  2118
    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
  2119
    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
  2120
    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
  2121
  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
  2122
    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
  2123
    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
  2124
    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
  2125
    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
  2126
    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
  2127
    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
  2128
    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
  2129
    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
  2130
    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
  2131
    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
  2132
    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
  2133
    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
  2134
  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
  2135
    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
  2136
    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
  2137
    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
  2138
    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
  2139
    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
  2140
    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
  2141
    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
  2142
    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
  2143
    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
  2144
    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
  2145
    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
  2146
    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
  2147
  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
  2148
    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
  2149
    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
  2150
    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
  2151
    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
  2152
    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
  2153
    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
  2154
    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
  2155
    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
  2156
    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
  2157
    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
  2158
    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
  2159
    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
  2160
  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
  2161
    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
  2162
    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
  2163
    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
  2164
    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
  2165
    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
  2166
    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
  2167
    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
  2168
    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
  2169
    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
  2170
    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
  2171
    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
  2172
    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
  2173
  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
  2174
    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
  2175
    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
  2176
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2177
    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
  2178
    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
  2179
    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
  2180
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2181
    GetPrice():         289453
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2182
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2183
    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
  2184
    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
  2185
    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
  2186
  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
  2187
    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
  2188
    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
  2189
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2190
    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
  2191
    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
  2192
    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
  2193
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2194
    GetPrice():         267187
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2195
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2196
    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
  2197
    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
  2198
    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
  2199
  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
  2200
    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
  2201
    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
  2202
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2203
    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
  2204
    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
  2205
    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
  2206
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2207
    GetPrice():         206250
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2208
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2209
    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
  2210
    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
  2211
    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
  2212
  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
  2213
    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
  2214
    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
  2215
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2216
    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
  2217
    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
  2218
    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
  2219
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2220
    GetPrice():         234375
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2221
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2222
    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
  2223
    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
  2224
    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
  2225
  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
  2226
    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
  2227
    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
  2228
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2229
    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
  2230
    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
  2231
    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
  2232
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2233
    GetPrice():         225000
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2234
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2235
    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
  2236
    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
  2237
    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
  2238
  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
  2239
    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
  2240
    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
  2241
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2242
    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
  2243
    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
  2244
    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
  2245
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2246
    GetPrice():         222656
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2247
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2248
    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
  2249
    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
  2250
    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
  2251
  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
  2252
    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
  2253
    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
  2254
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2255
    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
  2256
    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
  2257
    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
  2258
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2259
    GetPrice():         213281
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2260
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2261
    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
  2262
    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
  2263
    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
  2264
  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
  2265
    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
  2266
    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
  2267
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2268
    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
  2269
    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
  2270
    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
  2271
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2272
    GetPrice():         212109
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2273
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2274
    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
  2275
    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
  2276
    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
  2277
  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
  2278
    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
  2279
    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
  2280
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2281
    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
  2282
    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
  2283
    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
  2284
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2285
    GetPrice():         209765
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2286
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2287
    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
  2288
    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
  2289
    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
  2290
  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
  2291
    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
  2292
    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
  2293
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2294
    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
  2295
    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
  2296
    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
  2297
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2298
    GetPrice():         229687
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2299
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2300
    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
  2301
    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
  2302
    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
  2303
  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
  2304
    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
  2305
    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
  2306
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2307
    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
  2308
    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
  2309
    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
  2310
    GetMaxSpeed():      0
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2311
    GetPrice():         298828
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2312
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2313
    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
  2314
    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
  2315
    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
  2316
  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
  2317
    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
  2318
    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
  2319
    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
  2320
    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
  2321
    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
  2322
    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
  2323
    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
  2324
    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
  2325
    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
  2326
    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
  2327
    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
  2328
    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
  2329
  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
  2330
    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
  2331
    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
  2332
    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
  2333
    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
  2334
    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
  2335
    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
  2336
    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
  2337
    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
  2338
    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
  2339
    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
  2340
    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
  2341
    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
  2342
  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
  2343
    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
  2344
    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
  2345
    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
  2346
    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
  2347
    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
  2348
    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
  2349
    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
  2350
    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
  2351
    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
  2352
    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
  2353
    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
  2354
    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
  2355
  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
  2356
    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
  2357
    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
  2358
    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
  2359
    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
  2360
    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
  2361
    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
  2362
    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
  2363
    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
  2364
    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
  2365
    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
  2366
    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
  2367
    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
  2368
  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
  2369
    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
  2370
    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
  2371
    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
  2372
    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
  2373
    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
  2374
    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
  2375
    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
  2376
    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
  2377
    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
  2378
    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
  2379
    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
  2380
    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
  2381
  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
  2382
    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
  2383
    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
  2384
    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
  2385
    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
  2386
    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
  2387
    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
  2388
    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
  2389
    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
  2390
    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
  2391
    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
  2392
    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
  2393
    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
  2394
  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
  2395
    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
  2396
    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
  2397
    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
  2398
    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
  2399
    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
  2400
    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
  2401
    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
  2402
    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
  2403
    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
  2404
    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
  2405
    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
  2406
    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
  2407
  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
  2408
    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
  2409
    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
  2410
    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
  2411
    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
  2412
    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
  2413
    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
  2414
    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
  2415
    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
  2416
    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
  2417
    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
  2418
    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
  2419
    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
  2420
  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
  2421
    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
  2422
    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
  2423
    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
  2424
    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
  2425
    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
  2426
    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
  2427
    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
  2428
    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
  2429
    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
  2430
    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
  2431
    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
  2432
    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
  2433
  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
  2434
    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
  2435
    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
  2436
    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
  2437
    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
  2438
    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
  2439
    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
  2440
    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
  2441
    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
  2442
    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
  2443
    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
  2444
    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
  2445
    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
  2446
  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
  2447
    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
  2448
    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
  2449
    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
  2450
    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
  2451
    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
  2452
    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
  2453
    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
  2454
    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
  2455
    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
  2456
    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
  2457
    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
  2458
    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
  2459
  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
  2460
    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
  2461
    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
  2462
    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
  2463
    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
  2464
    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
  2465
    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
  2466
    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
  2467
    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
  2468
    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
  2469
    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
  2470
    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
  2471
    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
  2472
  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
  2473
    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
  2474
    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
  2475
    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
  2476
    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
  2477
    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
  2478
    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
  2479
    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
  2480
    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
  2481
    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
  2482
    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
  2483
    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
  2484
    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
  2485
  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
  2486
    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
  2487
    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
  2488
    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
  2489
    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
  2490
    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
  2491
    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
  2492
    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
  2493
    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
  2494
    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
  2495
    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
  2496
    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
  2497
    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
  2498
  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
  2499
    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
  2500
    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
  2501
    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
  2502
    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
  2503
    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
  2504
    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
  2505
    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
  2506
    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
  2507
    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
  2508
    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
  2509
    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
  2510
    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
  2511
  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
  2512
    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
  2513
    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
  2514
    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
  2515
    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
  2516
    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
  2517
    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
  2518
    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
  2519
    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
  2520
    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
  2521
    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
  2522
    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
  2523
    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
  2524
  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
  2525
    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
  2526
    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
  2527
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2528
    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
  2529
    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
  2530
    GetReliability():   78
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2531
    GetMaxSpeed():      56
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2532
    GetPrice():         4920
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2533
    GetMaxAge():        4392
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2534
    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
  2535
    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
  2536
    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
  2537
  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
  2538
    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
  2539
    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
  2540
    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
  2541
    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
  2542
    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
  2543
    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
  2544
    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
  2545
    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
  2546
    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
  2547
    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
  2548
    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
  2549
    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
  2550
  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
  2551
    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
  2552
    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
  2553
    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
  2554
    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
  2555
    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
  2556
    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
  2557
    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
  2558
    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
  2559
    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
  2560
    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
  2561
    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
  2562
    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
  2563
  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
  2564
    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
  2565
    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
  2566
    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
  2567
    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
  2568
    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
  2569
    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
  2570
    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
  2571
    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
  2572
    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
  2573
    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
  2574
    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
  2575
    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
  2576
  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
  2577
    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
  2578
    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
  2579
    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
  2580
    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
  2581
    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
  2582
    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
  2583
    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
  2584
    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
  2585
    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
  2586
    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
  2587
    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
  2588
    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
  2589
  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
  2590
    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
  2591
    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
  2592
    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
  2593
    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
  2594
    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
  2595
    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
  2596
    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
  2597
    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
  2598
    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
  2599
    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
  2600
    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
  2601
    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
  2602
  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
  2603
    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
  2604
    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
  2605
    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
  2606
    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
  2607
    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
  2608
    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
  2609
    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
  2610
    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
  2611
    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
  2612
    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
  2613
    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
  2614
    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
  2615
  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
  2616
    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
  2617
    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
  2618
    GetCargoType():     1
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2619
    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
  2620
    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
  2621
    GetReliability():   76
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2622
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2623
    GetPrice():         4428
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2624
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2625
    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
  2626
    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
  2627
    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
  2628
  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
  2629
    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
  2630
    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
  2631
    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
  2632
    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
  2633
    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
  2634
    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
  2635
    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
  2636
    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
  2637
    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
  2638
    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
  2639
    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
  2640
    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
  2641
  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
  2642
    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
  2643
    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
  2644
    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
  2645
    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
  2646
    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
  2647
    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
  2648
    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
  2649
    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
  2650
    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
  2651
    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
  2652
    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
  2653
    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
  2654
  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
  2655
    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
  2656
    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
  2657
    GetCargoType():     2
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2658
    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
  2659
    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
  2660
    GetReliability():   91
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2661
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2662
    GetPrice():         4715
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2663
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2664
    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
  2665
    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
  2666
    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
  2667
  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
  2668
    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
  2669
    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
  2670
    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
  2671
    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
  2672
    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
  2673
    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
  2674
    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
  2675
    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
  2676
    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
  2677
    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
  2678
    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
  2679
    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
  2680
  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
  2681
    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
  2682
    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
  2683
    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
  2684
    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
  2685
    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
  2686
    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
  2687
    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
  2688
    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
  2689
    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
  2690
    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
  2691
    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
  2692
    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
  2693
  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
  2694
    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
  2695
    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
  2696
    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
  2697
    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
  2698
    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
  2699
    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
  2700
    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
  2701
    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
  2702
    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
  2703
    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
  2704
    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
  2705
    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
  2706
  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
  2707
    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
  2708
    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
  2709
    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
  2710
    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
  2711
    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
  2712
    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
  2713
    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
  2714
    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
  2715
    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
  2716
    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
  2717
    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
  2718
    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
  2719
  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
  2720
    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
  2721
    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
  2722
    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
  2723
    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
  2724
    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
  2725
    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
  2726
    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
  2727
    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
  2728
    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
  2729
    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
  2730
    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
  2731
    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
  2732
  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
  2733
    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
  2734
    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
  2735
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2736
    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
  2737
    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
  2738
    GetReliability():   97
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2739
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2740
    GetPrice():         4510
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2741
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2742
    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
  2743
    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
  2744
    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
  2745
  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
  2746
    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
  2747
    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
  2748
    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
  2749
    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
  2750
    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
  2751
    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
  2752
    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
  2753
    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
  2754
    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
  2755
    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
  2756
    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
  2757
    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
  2758
  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
  2759
    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
  2760
    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
  2761
    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
  2762
    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
  2763
    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
  2764
    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
  2765
    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
  2766
    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
  2767
    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
  2768
    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
  2769
    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
  2770
    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
  2771
  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
  2772
    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
  2773
    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
  2774
    GetCargoType():     4
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2775
    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
  2776
    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
  2777
    GetReliability():   96
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2778
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2779
    GetPrice():         4305
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2780
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2781
    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
  2782
    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
  2783
    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
  2784
  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
  2785
    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
  2786
    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
  2787
    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
  2788
    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
  2789
    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
  2790
    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
  2791
    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
  2792
    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
  2793
    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
  2794
    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
  2795
    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
  2796
    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
  2797
  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
  2798
    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
  2799
    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
  2800
    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
  2801
    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
  2802
    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
  2803
    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
  2804
    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
  2805
    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
  2806
    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
  2807
    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
  2808
    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
  2809
    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
  2810
  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
  2811
    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
  2812
    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
  2813
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2814
    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
  2815
    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
  2816
    GetReliability():   86
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2817
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2818
    GetPrice():         4387
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2819
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2820
    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
  2821
    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
  2822
    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
  2823
  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
  2824
    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
  2825
    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
  2826
    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
  2827
    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
  2828
    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
  2829
    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
  2830
    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
  2831
    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
  2832
    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
  2833
    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
  2834
    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
  2835
    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
  2836
  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
  2837
    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
  2838
    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
  2839
    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
  2840
    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
  2841
    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
  2842
    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
  2843
    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
  2844
    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
  2845
    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
  2846
    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
  2847
    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
  2848
    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
  2849
  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
  2850
    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
  2851
    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
  2852
    GetCargoType():     6
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2853
    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
  2854
    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
  2855
    GetReliability():   96
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2856
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2857
    GetPrice():         4674
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2858
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2859
    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
  2860
    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
  2861
    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
  2862
  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
  2863
    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
  2864
    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
  2865
    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
  2866
    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
  2867
    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
  2868
    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
  2869
    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
  2870
    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
  2871
    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
  2872
    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
  2873
    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
  2874
    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
  2875
  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
  2876
    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
  2877
    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
  2878
    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
  2879
    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
  2880
    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
  2881
    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
  2882
    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
  2883
    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
  2884
    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
  2885
    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
  2886
    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
  2887
    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
  2888
  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
  2889
    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
  2890
    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
  2891
    GetCargoType():     7
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2892
    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
  2893
    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
  2894
    GetReliability():   97
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2895
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2896
    GetPrice():         4838
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2897
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2898
    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
  2899
    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
  2900
    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
  2901
  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
  2902
    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
  2903
    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
  2904
    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
  2905
    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
  2906
    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
  2907
    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
  2908
    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
  2909
    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
  2910
    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
  2911
    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
  2912
    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
  2913
    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
  2914
  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
  2915
    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
  2916
    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
  2917
    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
  2918
    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
  2919
    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
  2920
    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
  2921
    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
  2922
    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
  2923
    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
  2924
    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
  2925
    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
  2926
    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
  2927
  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
  2928
    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
  2929
    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
  2930
    GetCargoType():     8
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2931
    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
  2932
    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
  2933
    GetReliability():   96
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2934
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2935
    GetPrice():         4961
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2936
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2937
    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
  2938
    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
  2939
    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
  2940
  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
  2941
    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
  2942
    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
  2943
    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
  2944
    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
  2945
    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
  2946
    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
  2947
    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
  2948
    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
  2949
    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
  2950
    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
  2951
    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
  2952
    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
  2953
  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
  2954
    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
  2955
    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
  2956
    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
  2957
    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
  2958
    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
  2959
    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
  2960
    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
  2961
    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
  2962
    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
  2963
    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
  2964
    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
  2965
    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
  2966
  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
  2967
    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
  2968
    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
  2969
    GetCargoType():     9
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  2970
    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
  2971
    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
  2972
    GetReliability():   81
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  2973
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  2974
    GetPrice():         4592
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2975
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  2976
    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
  2977
    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
  2978
    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
  2979
  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
  2980
    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
  2981
    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
  2982
    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
  2983
    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
  2984
    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
  2985
    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
  2986
    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
  2987
    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
  2988
    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
  2989
    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
  2990
    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
  2991
    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
  2992
  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
  2993
    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
  2994
    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
  2995
    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
  2996
    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
  2997
    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
  2998
    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
  2999
    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
  3000
    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
  3001
    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
  3002
    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
  3003
    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
  3004
    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
  3005
  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
  3006
    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
  3007
    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
  3008
    GetCargoType():     10
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3009
    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
  3010
    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
  3011
    GetReliability():   75
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  3012
    GetMaxSpeed():      48
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3013
    GetPrice():         5945
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3014
    GetMaxAge():        5490
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3015
    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
  3016
    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
  3017
    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
  3018
  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
  3019
    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
  3020
    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
  3021
    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
  3022
    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
  3023
    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
  3024
    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
  3025
    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
  3026
    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
  3027
    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
  3028
    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
  3029
    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
  3030
    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
  3031
  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
  3032
    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
  3033
    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
  3034
    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
  3035
    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
  3036
    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
  3037
    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
  3038
    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
  3039
    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
  3040
    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
  3041
    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
  3042
    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
  3043
    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
  3044
  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
  3045
    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
  3046
    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
  3047
    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
  3048
    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
  3049
    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
  3050
    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
  3051
    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
  3052
    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
  3053
    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
  3054
    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
  3055
    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
  3056
    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
  3057
  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
  3058
    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
  3059
    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
  3060
    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
  3061
    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
  3062
    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
  3063
    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
  3064
    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
  3065
    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
  3066
    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
  3067
    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
  3068
    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
  3069
    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
  3070
  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
  3071
    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
  3072
    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
  3073
    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
  3074
    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
  3075
    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
  3076
    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
  3077
    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
  3078
    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
  3079
    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
  3080
    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
  3081
    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
  3082
    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
  3083
  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
  3084
    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
  3085
    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
  3086
    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
  3087
    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
  3088
    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
  3089
    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
  3090
    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
  3091
    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
  3092
    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
  3093
    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
  3094
    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
  3095
    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
  3096
  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
  3097
    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
  3098
    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
  3099
    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
  3100
    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
  3101
    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
  3102
    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
  3103
    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
  3104
    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
  3105
    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
  3106
    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
  3107
    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
  3108
    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
  3109
  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
  3110
    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
  3111
    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
  3112
    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
  3113
    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
  3114
    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
  3115
    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
  3116
    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
  3117
    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
  3118
    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
  3119
    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
  3120
    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
  3121
    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
  3122
  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
  3123
    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
  3124
    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
  3125
    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
  3126
    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
  3127
    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
  3128
    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
  3129
    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
  3130
    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
  3131
    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
  3132
    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
  3133
    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
  3134
    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
  3135
  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
  3136
    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
  3137
    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
  3138
    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
  3139
    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
  3140
    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
  3141
    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
  3142
    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
  3143
    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
  3144
    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
  3145
    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
  3146
    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
  3147
    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
  3148
  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
  3149
    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
  3150
    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
  3151
    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
  3152
    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
  3153
    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
  3154
    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
  3155
    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
  3156
    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
  3157
    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
  3158
    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
  3159
    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
  3160
    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
  3161
  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
  3162
    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
  3163
    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
  3164
    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
  3165
    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
  3166
    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
  3167
    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
  3168
    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
  3169
    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
  3170
    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
  3171
    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
  3172
    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
  3173
    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
  3174
  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
  3175
    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
  3176
    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
  3177
    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
  3178
    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
  3179
    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
  3180
    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
  3181
    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
  3182
    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
  3183
    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
  3184
    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
  3185
    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
  3186
    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
  3187
  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
  3188
    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
  3189
    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
  3190
    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
  3191
    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
  3192
    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
  3193
    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
  3194
    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
  3195
    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
  3196
    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
  3197
    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
  3198
    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
  3199
    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
  3200
  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
  3201
    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
  3202
    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
  3203
    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
  3204
    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
  3205
    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
  3206
    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
  3207
    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
  3208
    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
  3209
    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
  3210
    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
  3211
    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
  3212
    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
  3213
  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
  3214
    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
  3215
    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
  3216
    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
  3217
    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
  3218
    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
  3219
    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
  3220
    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
  3221
    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
  3222
    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
  3223
    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
  3224
    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
  3225
    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
  3226
  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
  3227
    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
  3228
    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
  3229
    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
  3230
    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
  3231
    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
  3232
    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
  3233
    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
  3234
    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
  3235
    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
  3236
    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
  3237
    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
  3238
    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
  3239
  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
  3240
    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
  3241
    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
  3242
    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
  3243
    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
  3244
    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
  3245
    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
  3246
    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
  3247
    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
  3248
    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
  3249
    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
  3250
    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
  3251
    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
  3252
  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
  3253
    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
  3254
    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
  3255
    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
  3256
    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
  3257
    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
  3258
    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
  3259
    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
  3260
    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
  3261
    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
  3262
    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
  3263
    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
  3264
    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
  3265
  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
  3266
    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
  3267
    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
  3268
    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
  3269
    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
  3270
    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
  3271
    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
  3272
    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
  3273
    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
  3274
    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
  3275
    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
  3276
    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
  3277
    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
  3278
  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
  3279
    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
  3280
    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
  3281
    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
  3282
    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
  3283
    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
  3284
    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
  3285
    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
  3286
    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
  3287
    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
  3288
    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
  3289
    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
  3290
    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
  3291
  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
  3292
    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
  3293
    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
  3294
    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
  3295
    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
  3296
    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
  3297
    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
  3298
    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
  3299
    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
  3300
    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
  3301
    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
  3302
    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
  3303
    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
  3304
  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
  3305
    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
  3306
    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
  3307
    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
  3308
    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
  3309
    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
  3310
    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
  3311
    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
  3312
    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
  3313
    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
  3314
    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
  3315
    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
  3316
    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
  3317
  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
  3318
    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
  3319
    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
  3320
    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
  3321
    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
  3322
    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
  3323
    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
  3324
    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
  3325
    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
  3326
    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
  3327
    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
  3328
    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
  3329
    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
  3330
  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
  3331
    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
  3332
    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
  3333
    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
  3334
    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
  3335
    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
  3336
    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
  3337
    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
  3338
    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
  3339
    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
  3340
    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
  3341
    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
  3342
    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
  3343
  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
  3344
    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
  3345
    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
  3346
    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
  3347
    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
  3348
    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
  3349
    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
  3350
    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
  3351
    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
  3352
    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
  3353
    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
  3354
    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
  3355
    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
  3356
  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
  3357
    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
  3358
    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
  3359
    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
  3360
    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
  3361
    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
  3362
    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
  3363
    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
  3364
    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
  3365
    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
  3366
    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
  3367
    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
  3368
    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
  3369
  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
  3370
    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
  3371
    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
  3372
    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
  3373
    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
  3374
    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
  3375
    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
  3376
    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
  3377
    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
  3378
    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
  3379
    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
  3380
    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
  3381
    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
  3382
  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
  3383
    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
  3384
    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
  3385
    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
  3386
    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
  3387
    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
  3388
    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
  3389
    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
  3390
    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
  3391
    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
  3392
    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
  3393
    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
  3394
    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
  3395
  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
  3396
    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
  3397
    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
  3398
    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
  3399
    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
  3400
    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
  3401
    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
  3402
    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
  3403
    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
  3404
    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
  3405
    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
  3406
    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
  3407
    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
  3408
  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
  3409
    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
  3410
    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
  3411
    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
  3412
    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
  3413
    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
  3414
    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
  3415
    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
  3416
    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
  3417
    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
  3418
    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
  3419
    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
  3420
    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
  3421
  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
  3422
    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
  3423
    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
  3424
    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
  3425
    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
  3426
    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
  3427
    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
  3428
    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
  3429
    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
  3430
    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
  3431
    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
  3432
    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
  3433
    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
  3434
  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
  3435
    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
  3436
    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
  3437
    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
  3438
    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
  3439
    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
  3440
    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
  3441
    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
  3442
    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
  3443
    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
  3444
    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
  3445
    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
  3446
    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
  3447
  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
  3448
    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
  3449
    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
  3450
    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
  3451
    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
  3452
    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
  3453
    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
  3454
    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
  3455
    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
  3456
    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
  3457
    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
  3458
    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
  3459
    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
  3460
  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
  3461
    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
  3462
    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
  3463
    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
  3464
    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
  3465
    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
  3466
    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
  3467
    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
  3468
    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
  3469
    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
  3470
    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
  3471
    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
  3472
    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
  3473
  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
  3474
    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
  3475
    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
  3476
    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
  3477
    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
  3478
    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
  3479
    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
  3480
    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
  3481
    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
  3482
    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
  3483
    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
  3484
    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
  3485
    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
  3486
  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
  3487
    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
  3488
    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
  3489
    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
  3490
    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
  3491
    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
  3492
    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
  3493
    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
  3494
    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
  3495
    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
  3496
    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
  3497
    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
  3498
    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
  3499
  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
  3500
    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
  3501
    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
  3502
    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
  3503
    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
  3504
    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
  3505
    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
  3506
    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
  3507
    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
  3508
    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
  3509
    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
  3510
    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
  3511
    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
  3512
  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
  3513
    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
  3514
    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
  3515
    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
  3516
    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
  3517
    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
  3518
    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
  3519
    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
  3520
    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
  3521
    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
  3522
    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
  3523
    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
  3524
    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
  3525
  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
  3526
    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
  3527
    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
  3528
    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
  3529
    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
  3530
    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
  3531
    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
  3532
    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
  3533
    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
  3534
    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
  3535
    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
  3536
    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
  3537
    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
  3538
  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
  3539
    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
  3540
    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
  3541
    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
  3542
    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
  3543
    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
  3544
    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
  3545
    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
  3546
    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
  3547
    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
  3548
    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
  3549
    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
  3550
    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
  3551
  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
  3552
    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
  3553
    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
  3554
    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
  3555
    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
  3556
    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
  3557
    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
  3558
    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
  3559
    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
  3560
    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
  3561
    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
  3562
    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
  3563
    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
  3564
  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
  3565
    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
  3566
    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
  3567
    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
  3568
    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
  3569
    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
  3570
    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
  3571
    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
  3572
    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
  3573
    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
  3574
    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
  3575
    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
  3576
    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
  3577
  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
  3578
    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
  3579
    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
  3580
    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
  3581
    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
  3582
    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
  3583
    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
  3584
    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
  3585
    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
  3586
    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
  3587
    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
  3588
    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
  3589
    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
  3590
  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
  3591
    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
  3592
    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
  3593
    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
  3594
    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
  3595
    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
  3596
    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
  3597
    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
  3598
    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
  3599
    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
  3600
    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
  3601
    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
  3602
    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
  3603
  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
  3604
    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
  3605
    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
  3606
    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
  3607
    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
  3608
    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
  3609
    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
  3610
    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
  3611
    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
  3612
    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
  3613
    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
  3614
    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
  3615
    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
  3616
  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
  3617
    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
  3618
    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
  3619
    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
  3620
    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
  3621
    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
  3622
    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
  3623
    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
  3624
    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
  3625
    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
  3626
    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
  3627
    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
  3628
    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
  3629
  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
  3630
    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
  3631
    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
  3632
    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
  3633
    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
  3634
    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
  3635
    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
  3636
    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
  3637
    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
  3638
    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
  3639
    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
  3640
    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
  3641
    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
  3642
  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
  3643
    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
  3644
    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
  3645
    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
  3646
    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
  3647
    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
  3648
    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
  3649
    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
  3650
    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
  3651
    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
  3652
    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
  3653
    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
  3654
    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
  3655
  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
  3656
    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
  3657
    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
  3658
    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
  3659
    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
  3660
    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
  3661
    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
  3662
    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
  3663
    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
  3664
    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
  3665
    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
  3666
    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
  3667
    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
  3668
  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
  3669
    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
  3670
    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
  3671
    GetCargoType():     3
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3672
    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
  3673
    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
  3674
    GetReliability():   98
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  3675
    GetMaxSpeed():      24
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3676
    GetPrice():         30465
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3677
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3678
    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
  3679
    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
  3680
    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
  3681
  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
  3682
    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
  3683
    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
  3684
    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
  3685
    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
  3686
    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
  3687
    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
  3688
    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
  3689
    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
  3690
    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
  3691
    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
  3692
    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
  3693
    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
  3694
  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
  3695
    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
  3696
    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
  3697
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3698
    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
  3699
    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
  3700
    GetReliability():   87
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  3701
    GetMaxSpeed():      32
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3702
    GetPrice():         18279
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3703
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3704
    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
  3705
    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
  3706
    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
  3707
  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
  3708
    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
  3709
    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
  3710
    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
  3711
    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
  3712
    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
  3713
    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
  3714
    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
  3715
    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
  3716
    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
  3717
    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
  3718
    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
  3719
    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
  3720
  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
  3721
    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
  3722
    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
  3723
    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
  3724
    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
  3725
    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
  3726
    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
  3727
    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
  3728
    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
  3729
    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
  3730
    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
  3731
    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
  3732
    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
  3733
  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
  3734
    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
  3735
    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
  3736
    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
  3737
    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
  3738
    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
  3739
    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
  3740
    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
  3741
    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
  3742
    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
  3743
    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
  3744
    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
  3745
    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
  3746
  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
  3747
    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
  3748
    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
  3749
    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
  3750
    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
  3751
    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
  3752
    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
  3753
    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
  3754
    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
  3755
    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
  3756
    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
  3757
    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
  3758
    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
  3759
  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
  3760
    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
  3761
    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
  3762
    GetCargoType():     5
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3763
    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
  3764
    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
  3765
    GetReliability():   81
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  3766
    GetMaxSpeed():      24
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3767
    GetPrice():         24372
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3768
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3769
    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
  3770
    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
  3771
    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
  3772
  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
  3773
    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
  3774
    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
  3775
    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
  3776
    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
  3777
    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
  3778
    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
  3779
    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
  3780
    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
  3781
    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
  3782
    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
  3783
    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
  3784
    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
  3785
  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
  3786
    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
  3787
    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
  3788
    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
  3789
    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
  3790
    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
  3791
    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
  3792
    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
  3793
    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
  3794
    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
  3795
    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
  3796
    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
  3797
    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
  3798
  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
  3799
    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
  3800
    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
  3801
    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
  3802
    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
  3803
    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
  3804
    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
  3805
    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
  3806
    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
  3807
    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
  3808
    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
  3809
    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
  3810
    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
  3811
  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
  3812
    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
  3813
    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
  3814
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3815
    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
  3816
    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
  3817
    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
  3818
    GetMaxSpeed():      238
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3819
    GetPrice():         28710
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3820
    GetMaxAge():        7320
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3821
    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
  3822
    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
  3823
    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
  3824
  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
  3825
    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
  3826
    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
  3827
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3828
    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
  3829
    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
  3830
    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
  3831
    GetMaxSpeed():      238
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3832
    GetPrice():         30761
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3833
    GetMaxAge():        8784
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3834
    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
  3835
    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
  3836
    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
  3837
  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
  3838
    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
  3839
    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
  3840
    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
  3841
    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
  3842
    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
  3843
    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
  3844
    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
  3845
    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
  3846
    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
  3847
    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
  3848
    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
  3849
    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
  3850
  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
  3851
    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
  3852
    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
  3853
    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
  3854
    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
  3855
    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
  3856
    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
  3857
    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
  3858
    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
  3859
    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
  3860
    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
  3861
    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
  3862
    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
  3863
  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
  3864
    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
  3865
    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
  3866
    GetCargoType():     0
9809
9b21c21052fa (svn r12325) [NoAI] -Add: added AIEngine:CanRefitCargo()
truebrain
parents: 9808
diff changeset
  3867
    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
  3868
    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
  3869
    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
  3870
    GetMaxSpeed():      238
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  3871
    GetPrice():         30761
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3872
    GetMaxAge():        10980
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  3873
    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
  3874
    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
  3875
    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
  3876
  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
  3877
    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
  3878
    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
  3879
    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
  3880
    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
  3881
    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
  3882
    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
  3883
    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
  3884
    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
  3885
    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
  3886
    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
  3887
    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
  3888
    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
  3889
  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
  3890
    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
  3891
    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
  3892
    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
  3893
    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
  3894
    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
  3895
    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
  3896
    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
  3897
    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
  3898
    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
  3899
    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
  3900
    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
  3901
    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
  3902
  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
  3903
    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
  3904
    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
  3905
    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
  3906
    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
  3907
    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
  3908
    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
  3909
    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
  3910
    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
  3911
    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
  3912
    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
  3913
    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
  3914
    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
  3915
  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
  3916
    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
  3917
    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
  3918
    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
  3919
    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
  3920
    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
  3921
    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
  3922
    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
  3923
    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
  3924
    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
  3925
    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
  3926
    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
  3927
    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
  3928
  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
  3929
    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
  3930
    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
  3931
    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
  3932
    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
  3933
    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
  3934
    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
  3935
    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
  3936
    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
  3937
    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
  3938
    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
  3939
    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
  3940
    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
  3941
  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
  3942
    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
  3943
    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
  3944
    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
  3945
    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
  3946
    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
  3947
    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
  3948
    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
  3949
    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
  3950
    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
  3951
    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
  3952
    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
  3953
    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
  3954
  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
  3955
    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
  3956
    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
  3957
    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
  3958
    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
  3959
    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
  3960
    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
  3961
    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
  3962
    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
  3963
    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
  3964
    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
  3965
    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
  3966
    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
  3967
  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
  3968
    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
  3969
    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
  3970
    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
  3971
    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
  3972
    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
  3973
    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
  3974
    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
  3975
    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
  3976
    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
  3977
    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
  3978
    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
  3979
    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
  3980
  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
  3981
    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
  3982
    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
  3983
    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
  3984
    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
  3985
    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
  3986
    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
  3987
    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
  3988
    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
  3989
    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
  3990
    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
  3991
    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
  3992
    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
  3993
  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
  3994
    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
  3995
    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
  3996
    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
  3997
    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
  3998
    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
  3999
    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
  4000
    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
  4001
    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
  4002
    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
  4003
    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
  4004
    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
  4005
    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
  4006
  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
  4007
    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
  4008
    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
  4009
    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
  4010
    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
  4011
    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
  4012
    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
  4013
    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
  4014
    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
  4015
    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
  4016
    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
  4017
    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
  4018
    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
  4019
  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
  4020
    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
  4021
    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
  4022
    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
  4023
    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
  4024
    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
  4025
    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
  4026
    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
  4027
    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
  4028
    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
  4029
    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
  4030
    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
  4031
    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
  4032
  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
  4033
    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
  4034
    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
  4035
    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
  4036
    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
  4037
    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
  4038
    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
  4039
    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
  4040
    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
  4041
    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
  4042
    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
  4043
    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
  4044
    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
  4045
  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
  4046
    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
  4047
    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
  4048
    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
  4049
    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
  4050
    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
  4051
    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
  4052
    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
  4053
    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
  4054
    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
  4055
    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
  4056
    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
  4057
    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
  4058
  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
  4059
    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
  4060
    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
  4061
    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
  4062
    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
  4063
    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
  4064
    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
  4065
    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
  4066
    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
  4067
    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
  4068
    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
  4069
    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
  4070
    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
  4071
  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
  4072
    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
  4073
    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
  4074
    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
  4075
    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
  4076
    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
  4077
    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
  4078
    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
  4079
    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
  4080
    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
  4081
    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
  4082
    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
  4083
    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
  4084
  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
  4085
    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
  4086
    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
  4087
    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
  4088
    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
  4089
    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
  4090
    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
  4091
    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
  4092
    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
  4093
    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
  4094
    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
  4095
    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
  4096
    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
  4097
  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
  4098
    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
  4099
    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
  4100
    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
  4101
    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
  4102
    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
  4103
    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
  4104
    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
  4105
    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
  4106
    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
  4107
    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
  4108
    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
  4109
    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
  4110
  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
  4111
    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
  4112
    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
  4113
    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
  4114
    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
  4115
    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
  4116
    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
  4117
    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
  4118
    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
  4119
    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
  4120
    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
  4121
    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
  4122
    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
  4123
  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
  4124
    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
  4125
    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
  4126
    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
  4127
    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
  4128
    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
  4129
    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
  4130
    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
  4131
    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
  4132
    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
  4133
    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
  4134
    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
  4135
    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
  4136
  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
  4137
    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
  4138
    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
  4139
    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
  4140
    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
  4141
    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
  4142
    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
  4143
    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
  4144
    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
  4145
    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
  4146
    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
  4147
    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
  4148
    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
  4149
  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
  4150
    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
  4151
    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
  4152
    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
  4153
    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
  4154
    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
  4155
    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
  4156
    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
  4157
    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
  4158
    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
  4159
    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
  4160
    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
  4161
    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
  4162
  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
  4163
    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
  4164
    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
  4165
    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
  4166
    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
  4167
    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
  4168
    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
  4169
    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
  4170
    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
  4171
    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
  4172
    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
  4173
    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
  4174
    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
  4175
  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
  4176
    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
  4177
    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
  4178
    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
  4179
    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
  4180
    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
  4181
    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
  4182
    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
  4183
    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
  4184
    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
  4185
    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
  4186
    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
  4187
    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
  4188
  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
  4189
    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
  4190
    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
  4191
    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
  4192
    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
  4193
    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
  4194
    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
  4195
    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
  4196
    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
  4197
    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
  4198
    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
  4199
    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
  4200
    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
  4201
  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
  4202
    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
  4203
    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
  4204
    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
  4205
    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
  4206
    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
  4207
    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
  4208
    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
  4209
    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
  4210
    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
  4211
    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
  4212
    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
  4213
    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
  4214
  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
  4215
    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
  4216
    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
  4217
    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
  4218
    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
  4219
    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
  4220
    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
  4221
    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
  4222
    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
  4223
    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
  4224
    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
  4225
    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
  4226
    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
  4227
  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
  4228
    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
  4229
    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
  4230
    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
  4231
    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
  4232
    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
  4233
    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
  4234
    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
  4235
    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
  4236
    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
  4237
    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
  4238
    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
  4239
    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
  4240
  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
  4241
    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
  4242
    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
  4243
    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
  4244
    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
  4245
    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
  4246
    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
  4247
    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
  4248
    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
  4249
    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
  4250
    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
  4251
    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
  4252
    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
  4253
  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
  4254
    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
  4255
    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
  4256
    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
  4257
    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
  4258
    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
  4259
    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
  4260
    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
  4261
    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
  4262
    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
  4263
    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
  4264
    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
  4265
    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
  4266
  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
  4267
    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
  4268
    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
  4269
    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
  4270
    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
  4271
    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
  4272
    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
  4273
    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
  4274
    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
  4275
    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
  4276
    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
  4277
    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
  4278
    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
  4279
  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
  4280
    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
  4281
    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
  4282
    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
  4283
    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
  4284
    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
  4285
    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
  4286
    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
  4287
    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
  4288
    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
  4289
    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
  4290
    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
  4291
    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
  4292
  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
  4293
    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
  4294
    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
  4295
    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
  4296
    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
  4297
    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
  4298
    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
  4299
    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
  4300
    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
  4301
    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
  4302
    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
  4303
    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
  4304
    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
  4305
  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
  4306
    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
  4307
    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
  4308
    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
  4309
    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
  4310
    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
  4311
    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
  4312
    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
  4313
    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
  4314
    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
  4315
    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
  4316
    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
  4317
    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
  4318
  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
  4319
    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
  4320
    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
  4321
    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
  4322
    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
  4323
    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
  4324
    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
  4325
    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
  4326
    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
  4327
    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
  4328
    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
  4329
    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
  4330
    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
  4331
  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
  4332
    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
  4333
    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
  4334
    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
  4335
    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
  4336
    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
  4337
    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
  4338
    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
  4339
    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
  4340
    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
  4341
    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
  4342
    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
  4343
    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
  4344
  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
  4345
    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
  4346
    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
  4347
    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
  4348
    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
  4349
    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
  4350
    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
  4351
    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
  4352
    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
  4353
    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
  4354
    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
  4355
    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
  4356
    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
  4357
  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
  4358
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
  4359
--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
  4360
  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
  4361
  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
  4362
    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
  4363
    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
  4364
    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
  4365
    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
  4366
    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
  4367
    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
  4368
    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
  4369
    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
  4370
    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
  4371
    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
  4372
    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
  4373
    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
  4374
    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
  4375
    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
  4376
    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
  4377
    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
  4378
    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
  4379
    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
  4380
    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
  4381
    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
  4382
    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
  4383
    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
  4384
    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
  4385
    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
  4386
    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
  4387
    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
  4388
    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
  4389
    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
  4390
    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
  4391
    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
  4392
    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
  4393
    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
  4394
    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
  4395
    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
  4396
    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
  4397
    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
  4398
    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
  4399
    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
  4400
    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
  4401
    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
  4402
    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
  4403
    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
  4404
    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
  4405
    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
  4406
    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
  4407
    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
  4408
    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
  4409
    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
  4410
    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
  4411
    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
  4412
    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
  4413
    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
  4414
    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
  4415
    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
  4416
    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
  4417
    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
  4418
    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
  4419
    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
  4420
    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
  4421
    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
  4422
    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
  4423
    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
  4424
    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
  4425
    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
  4426
    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
  4427
    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
  4428
    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
  4429
    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
  4430
    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
  4431
    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
  4432
    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
  4433
    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
  4434
    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
  4435
    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
  4436
    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
  4437
    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
  4438
    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
  4439
    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
  4440
    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
  4441
    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
  4442
    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
  4443
    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
  4444
    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
  4445
    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
  4446
    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
  4447
    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
  4448
    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
  4449
    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
  4450
  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
  4451
    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
  4452
    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
  4453
    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
  4454
    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
  4455
    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
  4456
    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
  4457
    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
  4458
    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
  4459
    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
  4460
    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
  4461
    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
  4462
    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
  4463
    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
  4464
    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
  4465
    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
  4466
    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
  4467
    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
  4468
    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
  4469
    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
  4470
    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
  4471
    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
  4472
    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
  4473
    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
  4474
    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
  4475
    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
  4476
    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
  4477
    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
  4478
    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
  4479
    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
  4480
    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
  4481
    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
  4482
    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
  4483
    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
  4484
    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
  4485
    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
  4486
    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
  4487
    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
  4488
    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
  4489
    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
  4490
    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
  4491
    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
  4492
    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
  4493
    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
  4494
    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
  4495
    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
  4496
    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
  4497
    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
  4498
    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
  4499
    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
  4500
    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
  4501
    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
  4502
    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
  4503
    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
  4504
    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
  4505
    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
  4506
    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
  4507
    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
  4508
    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
  4509
    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
  4510
    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
  4511
    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
  4512
    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
  4513
    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
  4514
    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
  4515
    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
  4516
    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
  4517
    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
  4518
    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
  4519
    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
  4520
    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
  4521
    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
  4522
    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
  4523
    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
  4524
    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
  4525
    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
  4526
    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
  4527
    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
  4528
    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
  4529
    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
  4530
    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
  4531
    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
  4532
    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
  4533
    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
  4534
    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
  4535
    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
  4536
    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
  4537
    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
  4538
    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
  4539
  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
  4540
    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
  4541
    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
  4542
    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
  4543
    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
  4544
    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
  4545
    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
  4546
    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
  4547
    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
  4548
    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
  4549
    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
  4550
    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
  4551
    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
  4552
    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
  4553
    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
  4554
    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
  4555
    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
  4556
    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
  4557
    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
  4558
    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
  4559
    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
  4560
    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
  4561
    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
  4562
    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
  4563
    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
  4564
    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
  4565
    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
  4566
    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
  4567
    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
  4568
    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
  4569
    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
  4570
    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
  4571
    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
  4572
    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
  4573
    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
  4574
    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
  4575
    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
  4576
    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
  4577
    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
  4578
    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
  4579
    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
  4580
    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
  4581
    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
  4582
    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
  4583
    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
  4584
    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
  4585
    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
  4586
    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
  4587
    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
  4588
    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
  4589
    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
  4590
    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
  4591
    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
  4592
    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
  4593
    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
  4594
    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
  4595
    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
  4596
    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
  4597
    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
  4598
    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
  4599
    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
  4600
    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
  4601
    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
  4602
    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
  4603
    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
  4604
    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
  4605
    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
  4606
    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
  4607
    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
  4608
    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
  4609
    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
  4610
    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
  4611
    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
  4612
    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
  4613
    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
  4614
    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
  4615
    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
  4616
    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
  4617
    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
  4618
    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
  4619
    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
  4620
    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
  4621
    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
  4622
    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
  4623
    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
  4624
    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
  4625
    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
  4626
    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
  4627
    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
  4628
  MaxSpeed ListDump:
9734
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4629
    116 => 56
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4630
    153 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4631
    150 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4632
    147 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4633
    144 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4634
    141 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4635
    138 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4636
    135 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4637
    132 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4638
    126 => 48
52d385b38d63 (svn r12213) [NoAI] -Fix: internal speeds for RoadVehicles and Ships are multiplied with 2 (Morloth)
truebrain
parents: 9733
diff changeset
  4639
    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
  4640
    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
  4641
    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
  4642
    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
  4643
    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
  4644
    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
  4645
    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
  4646
    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
  4647
    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
  4648
    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
  4649
    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
  4650
    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
  4651
    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
  4652
    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
  4653
    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
  4654
    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
  4655
    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
  4656
    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
  4657
    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
  4658
    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
  4659
    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
  4660
    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
  4661
    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
  4662
    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
  4663
    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
  4664
    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
  4665
    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
  4666
    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
  4667
    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
  4668
    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
  4669
    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
  4670
    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
  4671
    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
  4672
    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
  4673
    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
  4674
    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
  4675
    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
  4676
    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
  4677
    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
  4678
    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
  4679
    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
  4680
    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
  4681
    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
  4682
    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
  4683
    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
  4684
    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
  4685
    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
  4686
    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
  4687
    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
  4688
    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
  4689
    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
  4690
    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
  4691
    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
  4692
    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
  4693
    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
  4694
    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
  4695
    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
  4696
    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
  4697
    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
  4698
    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
  4699
    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
  4700
    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
  4701
    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
  4702
    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
  4703
    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
  4704
    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
  4705
    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
  4706
    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
  4707
    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
  4708
    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
  4709
    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
  4710
    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
  4711
    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
  4712
    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
  4713
    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
  4714
    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
  4715
    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
  4716
    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
  4717
  Price ListDump:
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4718
    153 => 5945
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4719
    147 => 4961
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4720
    116 => 4920
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4721
    144 => 4838
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4722
    126 => 4715
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4723
    141 => 4674
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4724
    150 => 4592
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4725
    132 => 4510
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4726
    123 => 4428
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4727
    138 => 4387
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  4728
    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
  4729
    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
  4730
    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
  4731
    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
  4732
    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
  4733
    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
  4734
    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
  4735
    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
  4736
    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
  4737
    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
  4738
    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
  4739
    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
  4740
    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
  4741
    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
  4742
    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
  4743
    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
  4744
    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
  4745
    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
  4746
    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
  4747
    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
  4748
    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
  4749
    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
  4750
    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
  4751
    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
  4752
    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
  4753
    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
  4754
    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
  4755
    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
  4756
    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
  4757
    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
  4758
    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
  4759
    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
  4760
    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
  4761
    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
  4762
    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
  4763
    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
  4764
    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
  4765
    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
  4766
    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
  4767
    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
  4768
    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
  4769
    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
  4770
    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
  4771
    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
  4772
    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
  4773
    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
  4774
    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
  4775
    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
  4776
    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
  4777
    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
  4778
    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
  4779
    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
  4780
    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
  4781
    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
  4782
    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
  4783
    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
  4784
    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
  4785
    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
  4786
    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
  4787
    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
  4788
    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
  4789
    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
  4790
    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
  4791
    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
  4792
    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
  4793
    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
  4794
    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
  4795
    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
  4796
    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
  4797
    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
  4798
    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
  4799
    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
  4800
    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
  4801
    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
  4802
    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
  4803
    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
  4804
    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
  4805
    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
  4806
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
  4807
--Event--
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4808
  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
  4809
    GetEventType:    1
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4810
    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
  4811
      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
  4812
  DisableEvent(1):   done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4813
  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
  4814
  EnableEvent(1):    done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4815
  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
  4816
  DisableAllEvents():done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4817
  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
  4818
  EnableEvent(1):    done
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4819
  GetNextEvent:      instance
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  4820
  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
  4821
--AyStar--
85f71706f496 (svn r13461) [NoAI] -Fix: add A* to regression, so we test it a bit (very basic test ;))
truebrain
parents: 10908
diff changeset
  4822
  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
  4823
    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
  4824
    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
  4825
    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
  4826
    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
  4827
    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
  4828
    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
  4829
    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
  4830
    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
  4831
    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
  4832
    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
  4833
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
  4834
--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
  4835
  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
  4836
  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
  4837
  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
  4838
    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
  4839
    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
  4840
    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
  4841
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4842
    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
  4843
  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
  4844
    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
  4845
    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
  4846
    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
  4847
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4848
    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
  4849
  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
  4850
    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
  4851
    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
  4852
    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
  4853
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4854
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4855
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4856
	   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
  4857
  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
  4858
    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
  4859
    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
  4860
    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
  4861
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4862
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4863
	   GetLastMonthProduction(): 56
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4864
	   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
  4865
  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
  4866
    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
  4867
    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
  4868
    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
  4869
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4870
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4871
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4872
	   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
  4873
  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
  4874
    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
  4875
    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
  4876
    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
  4877
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4878
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4879
	   GetLastMonthProduction(): 120
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4880
	   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
  4881
  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
  4882
    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
  4883
    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
  4884
    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
  4885
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4886
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4887
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4888
	   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
  4889
  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
  4890
    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
  4891
    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
  4892
    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
  4893
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4894
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4895
	   GetLastMonthProduction(): 72
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4896
	   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
  4897
  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
  4898
    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
  4899
    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
  4900
    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
  4901
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4902
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4903
	   GetLastMonthProduction(): 152
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4904
	   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
  4905
  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
  4906
    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
  4907
    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
  4908
    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
  4909
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4910
    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
  4911
  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
  4912
    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
  4913
    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
  4914
    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
  4915
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4916
    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
  4917
  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
  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():         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
  4920
    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
  4921
    GetProduction():   -1
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
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
  4923
  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
  4924
    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
  4925
    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
  4926
    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
  4927
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4928
    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
  4929
  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
  4930
    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
  4931
    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
  4932
    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
  4933
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4934
    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
  4935
  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
  4936
    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
  4937
    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
  4938
    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
  4939
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4940
    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
  4941
  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
  4942
    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
  4943
    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
  4944
    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
  4945
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  4946
    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
  4947
  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
  4948
    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
  4949
    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
  4950
    GetLocation():     51854
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4951
    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
  4952
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4953
	   GetLastMonthProduction(): 144
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4954
	   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
  4955
  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
  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():         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
  4958
    GetLocation():     11734
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4959
    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
  4960
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4961
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4962
	   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
  4963
  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
  4964
    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
  4965
    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
  4966
    GetLocation():     13947
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4967
    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
  4968
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4969
	   GetLastMonthProduction(): 160
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4970
	   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
  4971
  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
  4972
    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
  4973
    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
  4974
    GetLocation():     23682
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4975
    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
  4976
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4977
	   GetLastMonthProduction(): 136
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4978
	   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
  4979
  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
  4980
    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
  4981
    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
  4982
    GetLocation():     57429
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4983
    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
  4984
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4985
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4986
	   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
  4987
  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
  4988
    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
  4989
    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
  4990
    GetLocation():     8562
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4991
    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
  4992
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4993
	   GetLastMonthProduction(): 136
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  4994
	   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
  4995
  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
  4996
    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
  4997
    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
  4998
    GetLocation():     29147
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  4999
    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
  5000
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5001
	   GetLastMonthProduction(): 104
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5002
	   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
  5003
  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
  5004
    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
  5005
    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
  5006
    GetLocation():     27822
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5007
    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
  5008
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5009
	   GetLastMonthProduction(): 152
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5010
	   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
  5011
  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
  5012
    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
  5013
    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
  5014
    GetLocation():     43035
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5015
    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
  5016
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5017
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5018
	   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
  5019
  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
  5020
    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
  5021
    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
  5022
    GetLocation():     17943
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5023
    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
  5024
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5025
	   GetLastMonthProduction(): 72
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5026
	   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
  5027
  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
  5028
    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
  5029
    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
  5030
    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
  5031
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5032
    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
  5033
  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
  5034
    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
  5035
    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
  5036
    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
  5037
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5038
    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
  5039
  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
  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():         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
  5042
    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
  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(): 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
  5045
  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
  5046
    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
  5047
    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
  5048
    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
  5049
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5050
    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
  5051
  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
  5052
    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
  5053
    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
  5054
    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
  5055
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5056
    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
  5057
  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
  5058
    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
  5059
    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
  5060
    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
  5061
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5062
    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
  5063
  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
  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():         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
  5066
    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
  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(): 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
  5069
  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
  5070
    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
  5071
    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
  5072
    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
  5073
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5074
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5075
	   GetLastMonthProduction(): 120
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5076
	   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
  5077
  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
  5078
    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
  5079
    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
  5080
    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
  5081
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5082
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5083
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5084
	   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
  5085
  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
  5086
    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
  5087
    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
  5088
    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
  5089
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5090
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5091
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5092
	   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
  5093
  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
  5094
    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
  5095
    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
  5096
    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
  5097
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5098
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5099
	   GetLastMonthProduction(): 96
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 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
  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():         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
  5104
    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
  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(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5108
	   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
  5109
  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
  5110
    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
  5111
    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
  5112
    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
  5113
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5114
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5115
	   GetLastMonthProduction(): 128
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5116
	   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
  5117
  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
  5118
    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
  5119
    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
  5120
    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
  5121
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5122
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5123
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5124
	   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
  5125
  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
  5126
    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
  5127
    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
  5128
    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
  5129
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5130
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5131
	   GetLastMonthProduction(): 40
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5132
	   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
  5133
  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
  5134
    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
  5135
    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
  5136
    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
  5137
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5138
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5139
	   GetLastMonthProduction(): 72
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 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
  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 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
  5144
    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
  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(): 56
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5148
	   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
  5149
  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
  5150
    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
  5151
    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
  5152
    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
  5153
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5154
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5155
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5156
	   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
  5157
  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
  5158
    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
  5159
    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
  5160
    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
  5161
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5162
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5163
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5164
	   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
  5165
  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
  5166
    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
  5167
    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
  5168
    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
  5169
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5170
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5171
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5172
	   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
  5173
  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
  5174
    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
  5175
    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
  5176
    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
  5177
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5178
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5179
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5180
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5181
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5182
	   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
  5183
  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
  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():         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
  5186
    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
  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
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5189
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5190
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5191
	   GetLastMonthProduction(): 56
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5192
	   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
  5193
  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
  5194
    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
  5195
    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
  5196
    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
  5197
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5198
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5199
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5200
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5201
	   GetLastMonthProduction(): 48
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5202
	   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
  5203
  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
  5204
    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
  5205
    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
  5206
    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
  5207
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5208
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5209
	   GetLastMonthProduction(): 88
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5210
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5211
	   GetLastMonthProduction(): 104
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5212
	   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
  5213
  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
  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():         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
  5216
    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
  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
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5219
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5220
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5221
	   GetLastMonthProduction(): 40
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5222
	   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
  5223
  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
  5224
    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
  5225
    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
  5226
    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
  5227
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5228
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5229
	   GetLastMonthProduction(): 112
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5230
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5231
	   GetLastMonthProduction(): 88
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5232
	   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
  5233
  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
  5234
    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
  5235
    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
  5236
    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
  5237
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5238
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5239
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5240
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5241
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5242
	   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
  5243
  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
  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():         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
  5246
    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
  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
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5249
	   GetLastMonthProduction(): 104
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5250
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5251
	   GetLastMonthProduction(): 72
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5252
	   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
  5253
  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
  5254
    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
  5255
    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
  5256
    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
  5257
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5258
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5259
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5260
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5261
	   GetLastMonthProduction(): 64
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5262
	   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
  5263
  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
  5264
    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
  5265
    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
  5266
    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
  5267
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5268
    IsCargoAccepted(): false
9810
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5269
	   GetLastMonthProduction(): 80
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5270
	   GetLastMonthTransported(): 0
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5271
	   GetLastMonthProduction(): 96
a84fc1be9e3b (svn r12327) [NoAI] -Add: GetLastMonth(Production|Transported) (Morloth)
truebrain
parents: 9809
diff changeset
  5272
	   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
  5273
  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
  5274
    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
  5275
    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
  5276
    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
  5277
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5278
    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
  5279
  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
  5280
    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
  5281
    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
  5282
    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
  5283
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5284
    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
  5285
  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
  5286
    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
  5287
    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
  5288
    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
  5289
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5290
    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
  5291
  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
  5292
    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
  5293
    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
  5294
    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
  5295
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5296
    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
  5297
  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
  5298
    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
  5299
    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
  5300
    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
  5301
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5302
    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
  5303
  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
  5304
    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
  5305
    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
  5306
    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
  5307
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5308
    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
  5309
  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
  5310
    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
  5311
    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
  5312
    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
  5313
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5314
    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
  5315
  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
  5316
    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
  5317
    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
  5318
    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
  5319
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5320
    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
  5321
  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
  5322
    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
  5323
    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
  5324
    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
  5325
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5326
    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
  5327
  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
  5328
    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
  5329
    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
  5330
    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
  5331
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5332
    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
  5333
  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
  5334
    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
  5335
    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
  5336
    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
  5337
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5338
    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
  5339
  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
  5340
    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
  5341
    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
  5342
    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
  5343
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5344
    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
  5345
  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
  5346
    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
  5347
    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
  5348
    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
  5349
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5350
    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
  5351
  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
  5352
    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
  5353
    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
  5354
    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
  5355
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5356
    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
  5357
  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
  5358
    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
  5359
    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
  5360
    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
  5361
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5362
    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
  5363
  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
  5364
    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
  5365
    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
  5366
    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
  5367
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5368
    IsCargoAccepted(): false
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5369
  Industry 71
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5370
    IsValidIndustry(): false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5371
    GetName():         (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  5372
    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
  5373
    GetProduction():   -1
2c27f9be3fb9 (svn r11307) [NoAI] -Fix: AIIndustry::GetProduction should give the production_rate, not the this_month_production
truelight
parents: 9716
diff changeset
  5374
    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
  5375
  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
  5376
  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
  5377
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5378
--IndustryList--
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5379
  Count():             69
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5380
  Location ListDump:
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5381
    42 => 60866
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5382
    9 => 60050
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5383
    59 => 59867
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5384
    46 => 59604
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5385
    50 => 57432
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5386
    19 => 57429
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5387
    5 => 55429
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5388
    60 => 55360
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5389
    10 => 54184
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5390
    65 => 53096
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5391
    61 => 52953
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5392
    45 => 52931
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5393
    15 => 51854
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5394
    12 => 51419
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5395
    11 => 48499
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5396
    53 => 48206
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5397
    25 => 48182
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5398
    40 => 47838
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5399
    64 => 46278
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5400
    1 => 45122
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5401
    3 => 44640
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5402
    68 => 44181
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5403
    31 => 44160
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5404
    23 => 43035
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5405
    2 => 41929
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5406
    57 => 41813
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5407
    43 => 41155
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5408
    36 => 36908
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5409
    48 => 36847
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5410
    34 => 36728
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5411
    67 => 34375
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5412
    37 => 34237
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5413
    26 => 33934
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5414
    21 => 29147
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5415
    30 => 29022
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5416
    49 => 28287
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5417
    22 => 27822
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5418
    7 => 27609
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5419
    39 => 25545
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5420
    62 => 24893
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5421
    47 => 24366
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5422
    54 => 24005
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5423
    56 => 23727
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5424
    27 => 23714
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5425
    18 => 23682
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5426
    51 => 23519
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5427
    55 => 21107
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5428
    63 => 20819
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5429
    28 => 20170
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5430
    14 => 20001
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5431
    0 => 19695
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5432
    44 => 19529
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5433
    24 => 17943
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5434
    38 => 17742
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5435
    8 => 17318
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5436
    13 => 15950
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5437
    66 => 14818
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5438
    32 => 14701
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5439
    35 => 14361
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5440
    17 => 13947
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5441
    16 => 11734
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5442
    52 => 10773
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5443
    58 => 8852
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5444
    4 => 8793
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5445
    41 => 8763
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5446
    20 => 8562
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5447
    29 => 6685
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5448
    6 => 6533
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5449
    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
  5450
  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
  5451
    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
  5452
    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
  5453
    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
  5454
    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
  5455
    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
  5456
    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
  5457
    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
  5458
    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
  5459
    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
  5460
    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
  5461
    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
  5462
    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
  5463
    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
  5464
    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
  5465
    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
  5466
    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
  5467
    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
  5468
    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
  5469
    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
  5470
    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
  5471
    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
  5472
    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
  5473
    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
  5474
    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
  5475
    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
  5476
    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
  5477
    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
  5478
    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
  5479
    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
  5480
    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
  5481
    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
  5482
    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
  5483
    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
  5484
    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
  5485
    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
  5486
    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
  5487
    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
  5488
    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
  5489
    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
  5490
    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
  5491
    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
  5492
    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
  5493
    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
  5494
    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
  5495
    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
  5496
    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
  5497
    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
  5498
    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
  5499
    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
  5500
    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
  5501
    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
  5502
    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
  5503
    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
  5504
    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
  5505
    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
  5506
    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
  5507
    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
  5508
    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
  5509
    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
  5510
    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
  5511
    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
  5512
    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
  5513
    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
  5514
    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
  5515
    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
  5516
    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
  5517
    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
  5518
    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
  5519
    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
  5520
  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
  5521
    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
  5522
    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
  5523
    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
  5524
    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
  5525
    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
  5526
    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
  5527
    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
  5528
    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
  5529
    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
  5530
    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
  5531
    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
  5532
    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
  5533
    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
  5534
    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
  5535
    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
  5536
    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
  5537
    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
  5538
    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
  5539
    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
  5540
    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
  5541
    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
  5542
    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
  5543
    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
  5544
    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
  5545
    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
  5546
    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
  5547
    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
  5548
    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
  5549
    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
  5550
    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
  5551
    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
  5552
    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
  5553
    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
  5554
    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
  5555
    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
  5556
    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
  5557
    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
  5558
    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
  5559
    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
  5560
    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
  5561
    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
  5562
    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
  5563
    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
  5564
    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
  5565
    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
  5566
    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
  5567
    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
  5568
    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
  5569
    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
  5570
    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
  5571
    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
  5572
    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
  5573
    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
  5574
    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
  5575
    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
  5576
    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
  5577
    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
  5578
    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
  5579
    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
  5580
    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
  5581
    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
  5582
    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
  5583
    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
  5584
    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
  5585
    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
  5586
    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
  5587
    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
  5588
    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
  5589
    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
  5590
  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
  5591
    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
  5592
    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
  5593
    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
  5594
    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
  5595
    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
  5596
    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
  5597
    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
  5598
    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
  5599
    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
  5600
    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
  5601
    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
  5602
    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
  5603
    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
  5604
    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
  5605
    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
  5606
    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
  5607
    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
  5608
    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
  5609
    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
  5610
    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
  5611
    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
  5612
    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
  5613
    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
  5614
    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
  5615
    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
  5616
    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
  5617
    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
  5618
    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
  5619
    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
  5620
    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
  5621
    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
  5622
    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
  5623
    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
  5624
    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
  5625
    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
  5626
    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
  5627
    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
  5628
    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
  5629
    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
  5630
    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
  5631
    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
  5632
    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
  5633
    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
  5634
    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
  5635
    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
  5636
    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
  5637
    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
  5638
    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
  5639
    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
  5640
    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
  5641
    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
  5642
    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
  5643
    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
  5644
    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
  5645
    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
  5646
    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
  5647
    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
  5648
    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
  5649
    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
  5650
    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
  5651
    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
  5652
    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
  5653
    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
  5654
    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
  5655
    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
  5656
    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
  5657
    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
  5658
    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
  5659
    0 => 0
9710
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5660
  CargoAccepted(1) ListDump:
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5661
    31 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5662
    30 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5663
    29 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5664
    28 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5665
    27 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5666
    26 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5667
    25 => 1
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5668
    68 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5669
    67 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5670
    66 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5671
    65 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5672
    64 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5673
    63 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5674
    62 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5675
    61 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5676
    60 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5677
    59 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5678
    58 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5679
    57 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5680
    56 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5681
    55 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5682
    54 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5683
    53 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5684
    52 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5685
    51 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5686
    50 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5687
    49 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5688
    48 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5689
    47 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5690
    46 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5691
    45 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5692
    44 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5693
    43 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5694
    42 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5695
    41 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5696
    40 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5697
    39 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5698
    38 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5699
    37 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5700
    36 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5701
    35 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5702
    34 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5703
    33 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5704
    32 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5705
    24 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5706
    23 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5707
    22 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5708
    21 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5709
    20 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5710
    19 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5711
    18 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5712
    17 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5713
    16 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5714
    15 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5715
    14 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5716
    13 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5717
    12 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5718
    11 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5719
    10 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5720
    9 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5721
    8 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5722
    7 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5723
    6 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5724
    5 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5725
    4 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5726
    3 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5727
    2 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5728
    1 => 0
ba44f8c1fd52 (svn r11294) [NoAI] -Add: added AIIndustry::IsCargoAccepted + Valuator (on request by Kilinich)
truelight
parents: 9709
diff changeset
  5729
    0 => 0
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5730
  KeepAboveValue(50): done
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5731
  Count():             10
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5732
  Production ListDump:
9799
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5733
    17 => 160
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5734
    22 => 152
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5735
    15 => 144
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5736
    20 => 136
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5737
    18 => 136
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5738
    19 => 112
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5739
    16 => 112
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5740
    21 => 104
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5741
    23 => 96
4f217587c047 (svn r12305) [NoAI] -Fix r12302: forgot to update the regression (again and again)
truebrain
parents: 9796
diff changeset
  5742
    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
  5743
--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
  5744
  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
  5745
  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
  5746
    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
  5747
    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
  5748
    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
  5749
    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
  5750
    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
  5751
    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
  5752
    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
  5753
--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
  5754
  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
  5755
  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
  5756
    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
  5757
    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
  5758
    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
  5759
    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
  5760
    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
  5761
    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
  5762
    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
  5763
    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
  5764
    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
  5765
    20 => 8562
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  5766
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
  5767
--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
  5768
  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
  5769
  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
  5770
  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
  5771
  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
  5772
  GetTileY(123):    0
9554
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5773
  GetTileIndex():   123
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5774
  GetTileIndex():   31488
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5775
  GetTileIndex():   0
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5776
  GetTileIndex():   -257
82a97665cabc (svn r9492) [NoAI] -Fix r9491: forgot to update regression.txt (oops :))
truelight
parents: 9546
diff changeset
  5777
  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
  5778
  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
  5779
  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
  5780
  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
  5781
  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
  5782
  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
  5783
  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
  5784
  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
  5785
  IsValidTile():    true
9492
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5786
  DemolishTile():   false
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5787
  DemolishTile():   true
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5788
  Distance
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5789
    DistanceManhattan(): 54
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5790
    DistanceMax():       39
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5791
    DistanceSquare():    1746
1aeee24046d8 (svn r9362) [NoAI] -Add: added the new AIMap() functions to regression-test
truelight
parents: 9487
diff changeset
  5792
    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
  5793
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5794
--AIMarine--
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5795
  IsWaterDepotTile():   false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5796
  IsDockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5797
  IsBuoyTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5798
  IsLockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5799
  IsCanalTile():        false
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
  5800
  GetBankBalance():     282086
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5801
  BuildWaterDepot():    true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5802
  BuildDock():          true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5803
  BuildBuoy():          true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5804
  BuildLock():          true
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  5805
  HasTransportType():   false
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5806
  BuildCanal():         true
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  5807
  HasTransportType():   true
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5808
  IsWaterDepotTile():   true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5809
  IsDockTile():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5810
  IsBuoyTile():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5811
  IsLockTile():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5812
  IsCanalTile():        true
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
  5813
  GetBankBalance():     252537
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5814
  RemoveWaterDepot():   true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5815
  RemoveDock():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5816
  RemoveBuoy():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5817
  RemoveLock():         true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5818
  RemoveCanal():        true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5819
  IsWaterDepotTile():   false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5820
  IsDockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5821
  IsBuoyTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5822
  IsLockTile():         false
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5823
  IsCanalTile():        false
9808
0b40f556e051 (svn r12318) [NoAI] -Add: added AICompany::(Build|Get)CompanyHQ (college of Morloth)
truebrain
parents: 9807
diff changeset
  5824
  GetBankBalance():     229892
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5825
  BuildWaterDepot():    true
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  5826
  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
  5827
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5828
--PathFinder--
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5829
  Road Between Towns:
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5830
    Tile 46751
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5831
    Tile 46495
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5832
    Tile 46239
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5833
    Tile 45983
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5834
    Tile 45727
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5835
    Tile 45471
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5836
    Tile 45470
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5837
    Tile 45469
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5838
    Tile 45468
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5839
    Tile 45467
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5840
    Tile 45211
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5841
    Tile 44955
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5842
    Tile 44699
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5843
    Tile 44443
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5844
    Tile 44187
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5845
    Tile 43931
10946
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5846
    Tile 43930
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5847
    Tile 43929
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5848
    Tile 43928
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5849
    Tile 43927
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5850
    Tile 43926
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  5851
    Tile 43925
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5852
    Tile 43669
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5853
    Tile 43413
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5854
    Tile 43157
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5855
    Tile 42901
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5856
    Tile 42645
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5857
    Tile 42389
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5858
    Tile 42133
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5859
    Tile 41877
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5860
    Tile 41621
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5861
    Tile 41365
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5862
    Tile 41109
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5863
    Tile 40853
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5864
    Tile 40597
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5865
    Tile 40341
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5866
    Tile 40085
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5867
    Tile 39829
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5868
    Tile 39573
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5869
    Tile 39317
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5870
    Tile 39061
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5871
    Tile 38805
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5872
    Tile 38549
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5873
    Tile 38293
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5874
    Tile 38037
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5875
    Tile 37781
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5876
    Tile 37525
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5877
    Tile 37269
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5878
    Tile 37013
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5879
    Tile 36757
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5880
    Tile 36501
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5881
    Tile 36245
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5882
    Tile 35989
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5883
    Tile 35733
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5884
    Tile 35477
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5885
    Tile 35221
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5886
    Tile 34965
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5887
    Tile 34709
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5888
    Tile 34453
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5889
    Tile 34197
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5890
    Tile 33941
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5891
    Tile 33685
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5892
    Tile 33429
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5893
    Tile 33173
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5894
    Tile 32917
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5895
    Tile 32661
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5896
    Tile 32405
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5897
    Tile 32149
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5898
    Tile 31893
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5899
    Tile 31637
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5900
    Tile 31381
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5901
    Tile 31125
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5902
    Tile 30869
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5903
    Tile 30613
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5904
    Tile 30357
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5905
    Tile 30101
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5906
    Tile 29845
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5907
    Tile 29589
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5908
    Tile 29333
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5909
    Tile 29077
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5910
    Tile 28821
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5911
    Tile 28565
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5912
    Tile 28309
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5913
    Tile 28053
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5914
    Tile 27797
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5915
    Tile 27541
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5916
    Tile 27285
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5917
    Tile 27029
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5918
    Tile 26773
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5919
    Tile 26517
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5920
    Tile 26261
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5921
    Tile 26005
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5922
    Tile 25749
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5923
    Tile 25493
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5924
    Tile 25237
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5925
    Tile 24981
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5926
    Tile 24725
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5927
    Tile 24469
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5928
    Tile 24213
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5929
    Tile 23957
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5930
    Tile 23701
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5931
    Tile 23445
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5932
    Tile 23189
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5933
    Tile 22933
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5934
    Tile 22677
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5935
    Tile 22421
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5936
    Tile 22165
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5937
    Tile 21909
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5938
    Tile 21653
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5939
    Tile 21397
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5940
    Tile 21141
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5941
    Tile 20885
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5942
    Tile 20629
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5943
    Tile 20373
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5944
    Tile 20117
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5945
    Tile 19861
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5946
    Tile 19605
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5947
    Tile 19349
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5948
    Tile 19093
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5949
    Tile 18837
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5950
    Tile 18581
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5951
    Tile 18325
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5952
    Tile 18069
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5953
    Tile 17813
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5954
    Tile 17557
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5955
    Tile 17301
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5956
    Tile 17045
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5957
    Tile 16789
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5958
    Tile 16533
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5959
    Tile 16277
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5960
    Tile 16021
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5961
    Tile 15765
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5962
    Tile 15509
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5963
    Tile 15508
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  5964
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5965
--PriorityQueue--
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5966
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5967
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5968
  Pop():   (null : 0x00000000)
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5969
  Count(): 9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5970
  Peek():  1
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5971
  Pop():   1
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5972
  Pop():   4
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5973
  Pop():   3
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5974
  Pop():   2
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5975
  Pop():   1
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5976
  Pop():   5
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5977
  Pop():   6
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5978
  Pop():   7
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5979
  Pop():   8
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5980
  Pop():   9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5981
  Pop():   10
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5982
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5983
  Pop():   (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5984
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5985
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5986
--BinaryHeap--
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5987
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5988
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5989
  Pop():   (null : 0x00000000)
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5990
  Count(): 9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5991
  Peek():  1
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5992
  Pop():   1
10908
429195fd03f2 (svn r13459) [NoAI] -Fix: final fixes in binary_heap
truebrain
parents: 10907
diff changeset
  5993
  Pop():   3
10907
6e0aecaf6e4c (svn r13458) [NoAI] -Fix r13457: fix the regression Luke...
truebrain
parents: 10904
diff changeset
  5994
  Pop():   4
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5995
  Pop():   2
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5996
  Pop():   1
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  5997
  Pop():   5
10904
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5998
  Pop():   6
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  5999
  Pop():   7
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  6000
  Pop():   8
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  6001
  Pop():   9
3070af6d1d25 (svn r13455) [NoAI] -Fix: extend the regression to test the queues a bit more
truebrain
parents: 10896
diff changeset
  6002
  Pop():   10
10896
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  6003
  Peek():  (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  6004
  Pop():   (null : 0x00000000)
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  6005
  Count(): 0
6bb839ed0002 (svn r13447) [NoAI] -Add [Library]: Binary Heap ( O(ln n) insert/pop )
truebrain
parents: 10889
diff changeset
  6006
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6007
--Road--
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6008
  Road
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6009
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6010
    BuildRoad():                   false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6011
    BuildRoad():                   false
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  6012
    HasTransportType():            false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6013
    BuildRoad():                   true
10933
57aa2e01942c (svn r13486) [NoAI] -Add: function to determine what TransportTypes a tile holds.
rubidium
parents: 10931
diff changeset
  6014
    HasTransportType():            true
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6015
    AreRoadTilesConnected():       true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6016
    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
  6017
    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
  6018
    HasRoadType(Tram):             false
9618
a370e3f3bd70 (svn r9787) [NoAI] -Fix r9786: and again, forgot to update regression.txt..... (tnx glx)
truelight
parents: 9617
diff changeset
  6019
    GetNeighbourRoadCount():       2
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6020
    RemoveRoad():                  true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6021
    RemoveRoad():                  true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6022
    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
  6023
    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
  6024
    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
  6025
    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
  6026
    GetCurrentRoadType():          0
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6027
  Depot
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6028
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6029
    BuildRoadDepot():              false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6030
    BuildRoadDepot():              false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6031
    BuildRoadDepot():              true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6032
    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
  6033
    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
  6034
    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
  6035
    GetLastError():                260
738b8f69675f (svn r12510) [NoAI] -Add: added AIError, which allows you to catch errors triggered by commands (Morloth)
truebrain
parents: 9831
diff changeset
  6036
    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
  6037
    GetErrorCategory():            1
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6038
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6039
    GetRoadDepotFrontTile():       33412
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6040
    IsRoadDepotTile():             true
9769
015b6674c8ad (svn r12259) [NoAI] -Fix: depots were considered buildable (tnx Progman)
truebrain
parents: 9767
diff changeset
  6041
    IsBuildable():                 false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6042
    RemoveRoadDepot():             true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6043
    RemoveRoadDepot():             false
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6044
  Station
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6045
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6046
    BuildRoadStation():            false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6047
    BuildRoadStation():            false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6048
    BuildRoadStation():            true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6049
    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
  6050
    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
  6051
    HasRoadType(Tram):             false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6052
    IsRoadTile():                  false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6053
    GetDriveThroughBackTile():     -1
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6054
    GetRoadStationFrontTile():     33412
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6055
    IsRoadStationTile():           true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6056
    IsDriveThroughRoadStationTile: false
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6057
    RemoveRoadStation():           true
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6058
    RemoveRoadStation():           false
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6059
  Station Types
9634
e359d82f0652 (svn r10525) [NoAI] -Fix: the build-truck-param of BuildRoadStation was flipped
truelight
parents: 9630
diff changeset
  6060
    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
  6061
    BuildRoadStation(truck):       true
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6062
    BuildRoadStation(truck):       true
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6063
    BuildRoadStation(bus):         true
9634
e359d82f0652 (svn r10525) [NoAI] -Fix: the build-truck-param of BuildRoadStation was flipped
truelight
parents: 9630
diff changeset
  6064
    BuildRoadStation(truck):       true
e359d82f0652 (svn r10525) [NoAI] -Fix: the build-truck-param of BuildRoadStation was flipped
truelight
parents: 9630
diff changeset
  6065
    BuildRoadStation(bus-drive):   true
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6066
    BuildRoadStation(truck-drive): true
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6067
    BuildRoadStation(bus-drive):   true
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6068
    BuildRoadStation(truck-drive): true
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6069
    BuildRoadDepot():              true
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6070
    GetRoadStationFrontTile():     33411
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6071
    GetRoadStationFrontTile():     33924
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6072
    IsDriveThroughRoadStationTile: true
9769
015b6674c8ad (svn r12259) [NoAI] -Fix: depots were considered buildable (tnx Progman)
truebrain
parents: 9767
diff changeset
  6073
    IsBuildable():                 false
9555
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6074
    GetDriveThroughBackTile():     33416
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6075
    GetRoadStationFrontTile():     33414
00ccc64d342c (svn r9493) [NoAI] -Add: added the missing AIRoad() functions to regression-test
truelight
parents: 9554
diff changeset
  6076
    IsRoadTile():                  true
9485
df09b849ca60 (svn r9335) [NoAI] -Update: added AIRoad() regression test
truelight
parents: 9478
diff changeset
  6077
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6078
--Sign--
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6079
  BuildSign(33410, 'Some Sign'):       0
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6080
  BuildSign(33409, 'Some other Sign'): 1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6081
  RemoveSign(1):                       true
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6082
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6083
  GetMaxSignID():    3
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6084
  Sign -1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6085
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6086
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6087
    GetLocation():   -1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6088
  Sign 0
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6089
    IsValidSign():   true
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6090
    GetText():       Some Sign
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6091
    GetLocation():   33410
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6092
  Sign 1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6093
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6094
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6095
    GetLocation():   -1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6096
  Sign 2
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6097
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6098
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6099
    GetLocation():   -1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6100
  Sign 3
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6101
    IsValidSign():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6102
    GetText():       (null : 0x00000000)
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6103
    GetLocation():   -1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6104
  Valid Signs:       1
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6105
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6106
--Station--
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6107
  IsValidStation(0):        true
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6108
  IsValidStation(1000):     false
9697
a6a9379988f6 (svn r10938) [NoAI] -Fix r10937: regression update
truelight
parents: 9694
diff changeset
  6109
  GetName(0):               Benville Airport
10381
4ad8b98acd82 (svn r12922) [NoAI] -Add: added AIStation::SetName() (Yexo)
truebrain
parents: 10370
diff changeset
  6110
  SetName(0):               true
4ad8b98acd82 (svn r12922) [NoAI] -Add: added AIStation::SetName() (Yexo)
truebrain
parents: 10370
diff changeset
  6111
  GetName(0):               Look, a station
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  6112
  GetLocation(1):           29253
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6113
  GetLocation(1000):        -1
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6114
  GetStationID(33411):      3
9666
5765eb70736d (svn r10580) [NoAI] -Add: added GetStationID to get the StationID based on a tile
truelight
parents: 9665
diff changeset
  6115
  GetStationID(34411):      65535
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6116
  GetCargoWaiting(0, 0):    0
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6117
  GetCargoWaiting(1000, 0): -1
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6118
  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
  6119
  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
  6120
  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
  6121
  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
  6122
  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
  6123
  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
  6124
  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
  6125
  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
  6126
  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
  6127
  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
  6128
  GetCoverageRadius(TRAIN): 4
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6129
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6130
--StationList--
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6131
  Count():             2
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6132
  Location ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6133
    4 => 33421
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6134
    3 => 33411
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6135
  CargoWaiting(0) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6136
    4 => 0
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  6137
    3 => 0
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6138
  CargoWaiting(1) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  6139
    4 => 0
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  6140
    3 => 0
9640
494df85104a3 (svn r10531) [NoAI] -Fix r10529: forgot to update regression output
truelight
parents: 9636
diff changeset
  6141
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6142
--TileList--
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6143
  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
  6144
  Count():             9
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6145
  Slope():             done
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6146
  Count():             9
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6147
  ListDump:
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6148
    27631 => 29
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6149
    27631 => 255
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6150
    27631 => true
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6151
    27631 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6152
    27888 => 13
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6153
    27888 => 2
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6154
    27888 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6155
    27888 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6156
    27376 => 12
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6157
    27376 => 3
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6158
    27376 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6159
    27376 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6160
    27375 => 12
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6161
    27375 => 3
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6162
    27375 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6163
    27375 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6164
    27889 => 9
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6165
    27889 => 6
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6166
    27889 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6167
    27889 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6168
    27887 => 8
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6169
    27887 => 7
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6170
    27887 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6171
    27887 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6172
    27632 => 8
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6173
    27632 => 7
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6174
    27632 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6175
    27632 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6176
    27633 => 0
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6177
    27633 => 15
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6178
    27633 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6179
    27633 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6180
    27377 => 0
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6181
    27377 => 15
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6182
    27377 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6183
    27377 => false
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6184
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6185
--TileList--
da75d1460a4b (svn r12722) [NoAI] -Add (or -Feature for yorick): added AITile::IsSteepSlope(), AITile::IsHalftileSlope() and AITile::GetComplementSlope()
truebrain
parents: 10187
diff changeset
  6186
  Count():             0
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6187
  Count():             45
9700
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6188
  Height():            done
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6189
  Count():             45
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6190
  ListDump:
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6191
    42411 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6192
    42410 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6193
    42409 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6194
    42408 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6195
    42407 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6196
    42154 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6197
    42153 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6198
    42152 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6199
    42151 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6200
    41898 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6201
    41897 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6202
    41896 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6203
    41895 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6204
    41642 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6205
    41641 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6206
    41640 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6207
    41639 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6208
    41386 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6209
    41385 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6210
    41384 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6211
    41383 => 2
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6212
    42415 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6213
    42414 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6214
    42413 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6215
    42412 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6216
    42159 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6217
    42158 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6218
    42157 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6219
    42156 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6220
    42155 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6221
    41903 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6222
    41902 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6223
    41901 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6224
    41900 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6225
    41899 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6226
    41647 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6227
    41646 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6228
    41645 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6229
    41644 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6230
    41643 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6231
    41391 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6232
    41390 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6233
    41389 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6234
    41388 => 1
e442ce398e83 (svn r10941) [NoAI] -Add: added AITile::GetHeight and AITileList valuator Height
truelight
parents: 9699
diff changeset
  6235
    41387 => 1
9613
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6236
  Slope():             done
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6237
  KeepValue(0):        done
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6238
  Count():             38
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6239
  ListDump:
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6240
    42415 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6241
    42414 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6242
    42413 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6243
    42410 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6244
    42409 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6245
    42408 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6246
    42407 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6247
    42159 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6248
    42158 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6249
    42157 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6250
    42156 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6251
    42153 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6252
    42152 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6253
    42151 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6254
    41903 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6255
    41902 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6256
    41901 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6257
    41900 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6258
    41899 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6259
    41897 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6260
    41896 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6261
    41895 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6262
    41647 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6263
    41646 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6264
    41645 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6265
    41644 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6266
    41643 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6267
    41641 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6268
    41640 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6269
    41639 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6270
    41391 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6271
    41390 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6272
    41389 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6273
    41388 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6274
    41387 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6275
    41385 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6276
    41384 => 0
5dedb2fa1ab0 (svn r9778) [NoAI] -Fix r9776: forgot to update regression output (tnx glx)
truelight
parents: 9609
diff changeset
  6277
    41383 => 0
9605
2c2348827b52 (svn r9749) [NoAI] -Add: added regression-test for new AITileList valuators
truelight
parents: 9592
diff changeset
  6278
  Buildable():         done
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6279
  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
  6280
  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
  6281
  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
  6282
    42415 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6283
    42414 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6284
    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
  6285
    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
  6286
    42159 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6287
    42158 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6288
    42157 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6289
    42156 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6290
    41903 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6291
    41902 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6292
    41901 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6293
    41900 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6294
    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
  6295
    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
  6296
    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
  6297
    41645 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6298
    41644 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6299
    41643 => 1
8e2c924c7077 (svn r13483) [NoAI] -Fix: oops... IsBuildable thought trees were not buildable, silly of course (tnx Yexo)
truebrain
parents: 10910
diff changeset
  6300
    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
  6301
    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
  6302
    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
  6303
    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
  6304
    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
  6305
    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
  6306
    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
  6307
    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
  6308
  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
  6309
    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
  6310
    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
  6311
    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
  6312
    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
  6313
    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
  6314
    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
  6315
    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
  6316
    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
  6317
    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
  6318
    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
  6319
    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
  6320
    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
  6321
    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
  6322
    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
  6323
    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
  6324
    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
  6325
    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
  6326
    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
  6327
    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
  6328
    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
  6329
    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
  6330
    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
  6331
    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
  6332
    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
  6333
    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
  6334
    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
  6335
  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
  6336
    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
  6337
    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
  6338
    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
  6339
    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
  6340
    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
  6341
    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
  6342
    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
  6343
    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
  6344
    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
  6345
    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
  6346
    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
  6347
    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
  6348
    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
  6349
    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
  6350
    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
  6351
    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
  6352
    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
  6353
    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
  6354
    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
  6355
    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
  6356
    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
  6357
    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
  6358
    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
  6359
    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
  6360
    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
  6361
    41641 => 16666
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6362
  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
  6363
    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
  6364
    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
  6365
    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
  6366
    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
  6367
    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
  6368
    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
  6369
    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
  6370
    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
  6371
    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
  6372
    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
  6373
    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
  6374
    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
  6375
    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
  6376
    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
  6377
    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
  6378
    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
  6379
    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
  6380
    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
  6381
    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
  6382
    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
  6383
    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
  6384
    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
  6385
    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
  6386
    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
  6387
    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
  6388
    41387 => -1
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6389
  CargoAcceptance():   done
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6390
  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
  6391
  Count():             7
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6392
  ListDump:
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6393
    41897 => 41
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6394
    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
  6395
    42153 => 33
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6396
    41899 => 29
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6397
    41387 => 29
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6398
    41643 => 26
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6399
    42410 => 13
9605
2c2348827b52 (svn r9749) [NoAI] -Add: added regression-test for new AITileList valuators
truelight
parents: 9592
diff changeset
  6400
  RoadTile():          done
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6401
  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
  6402
  Count():             0
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6403
  ListDump:
9618
a370e3f3bd70 (svn r9787) [NoAI] -Fix r9786: and again, forgot to update regression.txt..... (tnx glx)
truelight
parents: 9617
diff changeset
  6404
  NeighbourRoadCount():done
9609
f0dbf5850145 (svn r9767) [NoAI] -Add: add support for params in the constructor (via C++ templates)
truelight
parents: 9605
diff changeset
  6405
  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
  6406
  Count():             0
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6407
  ListDump:
9698
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6408
  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
  6409
  Count():             45
9698
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6410
  ListDump:
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6411
    54941 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6412
    54940 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6413
    54939 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6414
    54938 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6415
    54937 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6416
    54936 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6417
    54935 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6418
    54934 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6419
    54933 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6420
    54685 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6421
    54684 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6422
    54683 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6423
    54682 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6424
    54681 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6425
    54680 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6426
    54679 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6427
    54678 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6428
    54677 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6429
    54429 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6430
    54428 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6431
    54427 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6432
    54426 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6433
    54425 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6434
    54424 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6435
    54423 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6436
    54422 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6437
    54421 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6438
    54173 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6439
    54172 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6440
    54171 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6441
    54170 => 1
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6442
    54169 => 1
10931
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6443
    54168 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6444
    54167 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6445
    54166 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6446
    54165 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6447
    53917 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6448
    53916 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6449
    53915 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6450
    53914 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6451
    53913 => 0
df70e29d4c23 (svn r13484) [NoAI] -Fix [API CHANGE]: AITile::IsBuildable() now returns 'true' on coast tiles
truebrain
parents: 10930
diff changeset
  6452
    53912 => 0
9698
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6453
    53911 => 0
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6454
    53910 => 0
1d50fe99b7e9 (svn r10939) [NoAI] -Add: added AITileList valuator Water
truelight
parents: 9697
diff changeset
  6455
    53909 => 0
9592
c5c09cfde63a (svn r9625) [NoAI] -Add: added AITileList() and one valuator for now: AITileListBuildable()
truelight
parents: 9589
diff changeset
  6456
9759
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6457
--TileList_IndustryAccepting--
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6458
  Count():             47
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6459
  Location ListDump:
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6460
    21234 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6461
    21233 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6462
    21232 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6463
    21231 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6464
    21230 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6465
    21229 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6466
    20978 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6467
    20977 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6468
    20976 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6469
    20975 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6470
    20974 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6471
    20973 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6472
    20722 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6473
    20718 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6474
    20717 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6475
    20466 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6476
    20462 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6477
    20461 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6478
    20210 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6479
    20206 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6480
    20205 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6481
    19954 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6482
    19950 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6483
    19949 => 16
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6484
    21490 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6485
    21489 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6486
    21488 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6487
    21487 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6488
    21486 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6489
    21485 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6490
    21484 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6491
    21235 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6492
    21228 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6493
    20979 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6494
    20972 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6495
    20723 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6496
    20716 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6497
    20467 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6498
    20460 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6499
    20211 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6500
    20204 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6501
    19955 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6502
    19948 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6503
    19699 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6504
    19698 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6505
    19694 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6506
    19693 => 8
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6507
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6508
--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
  6509
  Count():             90
9759
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6510
  Location ListDump:
9771
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6511
    46149 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6512
    46146 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6513
    45894 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6514
    45889 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6515
    45638 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6516
    45633 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6517
    45382 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6518
    45377 => 14
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6519
    45126 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6520
    45121 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6521
    44869 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6522
    44868 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6523
    44867 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6524
    44866 => 12
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6525
    46150 => 11
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6526
    46145 => 11
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6527
    46405 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6528
    46404 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6529
    46403 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6530
    46402 => 10
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6531
    45895 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6532
    45888 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6533
    45639 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6534
    45632 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6535
    45383 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6536
    45376 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6537
    44870 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6538
    44865 => 9
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6539
    46406 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6540
    46401 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6541
    45127 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6542
    45120 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6543
    44613 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6544
    44612 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6545
    44611 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6546
    44610 => 8
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6547
    46151 => 7
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6548
    46144 => 7
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6549
    46661 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6550
    46660 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6551
    46659 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6552
    46658 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6553
    44871 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6554
    44864 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6555
    44614 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6556
    44609 => 6
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6557
    46662 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6558
    46657 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6559
    46407 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6560
    46400 => 5
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6561
    45896 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6562
    45887 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6563
    45640 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6564
    45631 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6565
    45384 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6566
    45375 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6567
    45128 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6568
    45119 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6569
    44615 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6570
    44608 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6571
    44357 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6572
    44356 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6573
    44355 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6574
    44354 => 4
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6575
    46663 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6576
    46656 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6577
    46152 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6578
    46143 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6579
    44872 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6580
    44863 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6581
    44358 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6582
    44353 => 3
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6583
    46918 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6584
    46917 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6585
    46916 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6586
    46915 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6587
    46914 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6588
    46913 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6589
    46408 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6590
    46399 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6591
    44616 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6592
    44607 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6593
    44359 => 2
769496a7b02e (svn r12264) [NoAI] -Add: added AITileList_vCargoProduction (yorick)
truebrain
parents: 9769
diff changeset
  6594
    44352 => 2
9759
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6595
    46919 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6596
    46912 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6597
    46664 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6598
    46655 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6599
    44360 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6600
    44351 => 1
e6c07e89b89f (svn r12245) [NoAI] -Fix r12243: regression.txt wasn't updated (glx)
truebrain
parents: 9757
diff changeset
  6601
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
  6602
--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
  6603
  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
  6604
  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
  6605
    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
  6606
    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
  6607
    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
  6608
    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
  6609
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
  6610
--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
  6611
  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
  6612
  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
  6613
  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
  6614
    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
  6615
    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
  6616
    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
  6617
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6618
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6619
    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
  6620
  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
  6621
    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
  6622
    GetName():       Planfield
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6623
    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
  6624
    GetLocation():   15508
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6625
    GetHouseCount(): 29
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6626
    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
  6627
  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
  6628
    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
  6629
    GetName():       Trenningville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6630
    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
  6631
    GetLocation():   46751
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6632
    GetHouseCount(): 16
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6633
    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
  6634
  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
  6635
    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
  6636
    GetName():       Tondston
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6637
    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
  6638
    GetLocation():   28365
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6639
    GetHouseCount(): 18
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6640
    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
  6641
  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
  6642
    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
  6643
    GetName():       Tunford
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6644
    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
  6645
    GetLocation():   41895
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6646
    GetHouseCount(): 11
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6647
    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
  6648
  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
  6649
    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
  6650
    GetName():       Wrundtown
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6651
    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
  6652
    GetLocation():   41450
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6653
    GetHouseCount(): 18
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6654
    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
  6655
  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
  6656
    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
  6657
    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
  6658
    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
  6659
    GetLocation():   55007
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6660
    GetHouseCount(): 11
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6661
    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
  6662
  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
  6663
    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
  6664
    GetName():       Muningville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6665
    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
  6666
    GetLocation():   38200
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6667
    GetHouseCount(): 28
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6668
    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
  6669
  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
  6670
    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
  6671
    GetName():       Hutfingford
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6672
    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
  6673
    GetLocation():   59234
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6674
    GetHouseCount(): 32
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6675
    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
  6676
  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
  6677
    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
  6678
    GetName():       Sadtown
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6679
    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
  6680
    GetLocation():   51267
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6681
    GetHouseCount(): 20
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6682
    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
  6683
  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
  6684
    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
  6685
    GetName():       Frindinghattan
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6686
    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
  6687
    GetLocation():   5825
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6688
    GetHouseCount(): 18
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6689
    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
  6690
  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
  6691
    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
  6692
    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
  6693
    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
  6694
    GetLocation():   6446
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6695
    GetHouseCount(): 26
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6696
    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
  6697
  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
  6698
    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
  6699
    GetName():       Fort Frindston
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6700
    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
  6701
    GetLocation():   14935
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6702
    GetHouseCount(): 13
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6703
    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
  6704
  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
  6705
    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
  6706
    GetName():       Ginborough
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6707
    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
  6708
    GetLocation():   32740
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6709
    GetHouseCount(): 27
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6710
    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
  6711
  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
  6712
    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
  6713
    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
  6714
    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
  6715
    GetLocation():   9595
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6716
    GetHouseCount(): 14
10946
7ccfbff5698d (svn r13500) [NoAI] -Fix r13497: minor glitch in slope-check (Yexo)
truebrain
parents: 10944
diff changeset
  6717
    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
  6718
  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
  6719
    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
  6720
    GetName():       Prundinghall
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6721
    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
  6722
    GetLocation():   51298
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6723
    GetHouseCount(): 17
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6724
    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
  6725
  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
  6726
    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
  6727
    GetName():       Benville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6728
    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
  6729
    GetLocation():   42338
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6730
    GetHouseCount(): 32
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6731
    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
  6732
  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
  6733
    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
  6734
    GetName():       Kennville
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6735
    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
  6736
    GetLocation():   17345
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6737
    GetHouseCount(): 32
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6738
    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
  6739
  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
  6740
    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
  6741
    GetName():       Quartfingfield
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6742
    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
  6743
    GetLocation():   24252
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6744
    GetHouseCount(): 13
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6745
    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
  6746
  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
  6747
    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
  6748
    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
  6749
    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
  6750
    GetLocation():   10574
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6751
    GetHouseCount(): 12
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6752
    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
  6753
  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
  6754
    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
  6755
    GetName():       Mendingston
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6756
    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
  6757
    GetLocation():   6511
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6758
    GetHouseCount(): 14
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6759
    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
  6760
  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
  6761
    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
  6762
    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
  6763
    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
  6764
    GetLocation():   22585
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6765
    GetHouseCount(): 14
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6766
    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
  6767
  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
  6768
    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
  6769
    GetName():       Franinghead
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6770
    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
  6771
    GetLocation():   9634
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6772
    GetHouseCount(): 27
10944
588393239ac6 (svn r13498) [NoAI] -Add: added 'pathfinder.road' to the regression
truebrain
parents: 10938
diff changeset
  6773
    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
  6774
  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
  6775
    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
  6776
    GetName():       Naborough
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6777
    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
  6778
    GetLocation():   51891
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6779
    GetHouseCount(): 12
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6780
    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
  6781
  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
  6782
    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
  6783
    GetName():       Lardborough
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6784
    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
  6785
    GetLocation():   59622
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6786
    GetHouseCount(): 27
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6787
    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
  6788
  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
  6789
    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
  6790
    GetName():       Little Fruford
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6791
    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
  6792
    GetLocation():   19596
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6793
    GetHouseCount(): 33
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6794
    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
  6795
  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
  6796
    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
  6797
    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
  6798
    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
  6799
    GetLocation():   16433
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6800
    GetHouseCount(): 15
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6801
    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
  6802
  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
  6803
    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
  6804
    GetName():       Bedburg
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6805
    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
  6806
    GetLocation():   39505
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6807
    GetHouseCount(): 17
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6808
    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
  6809
  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
  6810
    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
  6811
    GetName():       Fudinghattan
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6812
    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
  6813
    GetLocation():   45525
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6814
    GetHouseCount(): 19
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6815
    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
  6816
  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
  6817
    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
  6818
    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
  6819
    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
  6820
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6821
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6822
    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
  6823
  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
  6824
    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
  6825
    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
  6826
    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
  6827
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6828
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6829
    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
  6830
  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
  6831
    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
  6832
    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
  6833
    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
  6834
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6835
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6836
    GetRating():     -1
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6837
  Town 31
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6838
    IsValidTown():   false
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6839
    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
  6840
    GetPopulation(): -1
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6841
    GetLocation():   -1
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  6842
    GetHouseCount(): -1
10869
4fdb11e1b599 (svn r13420) [NoAI] -Add: function to get the town rating.
rubidium
parents: 10864
diff changeset
  6843
    GetRating():     -1
9511
f767ad06e86b (svn r9407) [NoAI] -Add: placing of signs.
rubidium
parents: 9504
diff changeset
  6844
  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
  6845
  GetTownCount():    28
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  6846
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6847
--TownList--
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6848
  Count():             28
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6849
  Location ListDump:
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6850
    23 => 59622
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6851
    7 => 59234
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6852
    5 => 55007
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6853
    22 => 51891
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6854
    14 => 51298
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6855
    8 => 51267
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6856
    1 => 46751
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6857
    27 => 45525
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6858
    15 => 42338
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6859
    3 => 41895
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6860
    4 => 41450
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6861
    26 => 39505
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6862
    6 => 38200
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6863
    12 => 32740
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6864
    2 => 28365
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6865
    17 => 24252
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6866
    20 => 22585
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6867
    24 => 19596
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6868
    16 => 17345
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6869
    25 => 16433
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6870
    0 => 15508
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6871
    11 => 14935
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6872
    18 => 10574
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6873
    21 => 9634
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6874
    13 => 9595
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6875
    19 => 6511
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6876
    10 => 6446
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6877
    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
  6878
  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
  6879
    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
  6880
    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
  6881
    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
  6882
    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
  6883
    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
  6884
    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
  6885
    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
  6886
    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
  6887
    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
  6888
    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
  6889
    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
  6890
    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
  6891
    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
  6892
    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
  6893
    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
  6894
    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
  6895
    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
  6896
    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
  6897
    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
  6898
    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
  6899
    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
  6900
    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
  6901
    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
  6902
    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
  6903
    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
  6904
    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
  6905
    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
  6906
    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
  6907
  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
  6908
    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
  6909
    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
  6910
    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
  6911
    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
  6912
    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
  6913
    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
  6914
    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
  6915
    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
  6916
    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
  6917
    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
  6918
    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
  6919
    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
  6920
    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
  6921
    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
  6922
    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
  6923
    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
  6924
    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
  6925
    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
  6926
    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
  6927
    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
  6928
    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
  6929
    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
  6930
    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
  6931
    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
  6932
    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
  6933
    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
  6934
    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
  6935
    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
  6936
  IsWithinTownInfluence(15508) ListDump:
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6937
    0 => 1
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6938
    27 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6939
    26 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6940
    25 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6941
    24 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6942
    23 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6943
    22 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6944
    21 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6945
    20 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6946
    19 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6947
    18 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6948
    17 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6949
    16 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6950
    15 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6951
    14 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6952
    13 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6953
    12 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6954
    11 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6955
    10 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6956
    9 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6957
    8 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6958
    7 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6959
    6 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6960
    5 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6961
    4 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6962
    3 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6963
    2 => 0
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  6964
    1 => 0
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6965
  KeepAboveValue(500): done
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6966
  Count():             11
9649
bc8c06513f5b (svn r10544) [NoAI] -Add: added AIIndustryList to list industries
truelight
parents: 9648
diff changeset
  6967
  Population ListDump:
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6968
    12 => 766
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6969
    10 => 702
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6970
    15 => 699
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6971
    16 => 659
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6972
    23 => 657
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6973
    7 => 652
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6974
    24 => 624
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6975
    21 => 598
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6976
    6 => 566
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  6977
    25 => 548
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  6978
    0 => 538
10859
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6979
  HasStatue():                     false
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6980
  GetRoadReworkDuration():         0
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6981
  GetExclusiveRightsPlayer():      -1
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6982
  GetExclusiveRightsDuration():    0
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6983
  IsActionAvailable(BUILD_STATUE): true
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6984
  PerformTownAction(BUILD_STATUE): true
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6985
  IsActionAvailable(BUILD_STATUE): false
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6986
  HasStatue():                     true
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6987
4c14a8041c0a (svn r13410) [NoAI] -Add: functions to perform town actions (advertising, bribing, building statues, etc).
rubidium
parents: 10856
diff changeset
  6988
--Tunnel--
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6989
  IsTunnelTile():       false
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6990
  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
  6991
  GetOtherTunnelEnd():  28026
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6992
  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
  6993
  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
  6994
  IsTunnelTile():       true
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6995
  IsTunnelTile():       true
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6996
  RemoveTunnel():       true
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  6997
  IsTunnelTile():       false
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6998
  --Errors--
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  6999
  BuildTunnel():        true
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  7000
  BuildTunnel():        false
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  7001
  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
  7002
  RemoveTunnel():       true
9589
2fbda08db406 (svn r9622) [NoAI] -Add: added AITownList, which lists all towns (and which you can iterate)
truelight
parents: 9579
diff changeset
  7003
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  7004
--Vehicle--
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  7005
  IsValidVehicle(-1):   false
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  7006
  IsValidVehicle(0):    false
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7007
  IsValidVehicle(11):   false
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  7008
  ISValidVehicle(9999): false
9560
ff2dde050a4c (svn r9498) [NoAI] -Add: added regression for AITransactionMode()
truelight
parents: 9558
diff changeset
  7009
  BuildVehicle():       0
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7010
  IsValidVehicle(11):   false
9560
ff2dde050a4c (svn r9498) [NoAI] -Add: added regression for AITransactionMode()
truelight
parents: 9558
diff changeset
  7011
  --Transaction--
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  7012
    GetCosts():         5945
9560
ff2dde050a4c (svn r9498) [NoAI] -Add: added regression for AITransactionMode()
truelight
parents: 9558
diff changeset
  7013
    Execute():          true
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7014
  IsValidVehicle(11):   true
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7015
  CloneVehicle():       12
9557
a3e1a25cf3d3 (svn r9495) [NoAI] -Add: add regression for AIAccounting() in AIVehicle() regression
truelight
parents: 9555
diff changeset
  7016
  --Accounting--
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  7017
    GetCosts():         11890
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  7018
    Should be:          11890
9557
a3e1a25cf3d3 (svn r9495) [NoAI] -Add: add regression for AIAccounting() in AIVehicle() regression
truelight
parents: 9555
diff changeset
  7019
    ResetCosts():       (null : 0x00000000)
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7020
  SellVehicle(12):      true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7021
  IsInDepot():          true
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7022
  IsStoppedInDepot():   true
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  7023
  StartStopVehicle():   true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7024
  IsInDepot():          false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7025
  IsStoppedInDepot():   false
9519
0b7c2f4e54fb (svn r9433) [NoAI] -Fix r9432: forgot to update regression.txt
truelight
parents: 9511
diff changeset
  7026
  SendVehicleToDepot(): true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7027
  IsInDepot():          false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7028
  IsStoppedInDepot():   false
9557
a3e1a25cf3d3 (svn r9495) [NoAI] -Add: add regression for AIAccounting() in AIVehicle() regression
truelight
parents: 9555
diff changeset
  7029
  --Accounting--
9718
f82a4facea8b (svn r11309) [NoAI] -Sync: with trunk r11145:11308.
truelight
parents: 9717
diff changeset
  7030
    GetCosts():         -5945
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  7031
    Should be:          -5945
9699
e1b5f29cc6f9 (svn r10940) [NoAI] -Add: added AIVehicle::GetName and AIVehicle::SetName to set vehicle names
truelight
parents: 9698
diff changeset
  7032
  GetName():            Road Vehicle 1
e1b5f29cc6f9 (svn r10940) [NoAI] -Add: added AIVehicle::GetName and AIVehicle::SetName to set vehicle names
truelight
parents: 9698
diff changeset
  7033
  SetName():            true
e1b5f29cc6f9 (svn r10940) [NoAI] -Add: added AIVehicle::GetName and AIVehicle::SetName to set vehicle names
truelight
parents: 9698
diff changeset
  7034
  GetName():            MyVehicleName
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7035
  CloneVehicle():       12
9615
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  7036
  --VehicleData--
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  7037
    GetLocation():       33417
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  7038
    GetEngineType():     153
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  7039
    GetUnitNumber():     1
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  7040
    GetAge():            0
9615
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  7041
    GetMaxAge():         5490
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  7042
    GetAgeLeft():        5490
10187
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7043
    GetCurrentSpeed():   4
9733
49e424cd4edd (svn r12212) [NoAI] -Add: added AIEngine::GetMaxAge, AIEngine::GetRunningCost and AIVehicle::GetRunningCost (Morloth)
truebrain
parents: 9724
diff changeset
  7044
    GetRunningCost():    421
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  7045
    GetProfitThisYear(): 0
9615
f809cdc8e360 (svn r9782) [NoAI] -Add: add information functions to AIVehicle, like the valuators of AIVehicleList
truelight
parents: 9614
diff changeset
  7046
    GetProfitLastYear(): 0
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  7047
    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
  7048
    GetRoadType():       0
10193
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7049
    GetCapacity():       12
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7050
    GetCargoLoad():      0
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7051
    IsInDepot():         false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7052
    IsStoppedInDepot():  false
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  7053
  GetOwner():           1
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7054
  BuildVehicle():       13
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7055
  IsValidVehicle(13):   true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7056
  IsInDepot(13):        true
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7057
  IsStoppedInDepot(13): true
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7058
  IsValidVehicle(14):   false
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7059
  IsInDepot(14):        false
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7060
  IsStoppedInDepot(14): false
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7061
  BuildVehicle():       15
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7062
  IsValidVehicle(15):   true
9709
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7063
  IsInDepot(15):        true
196a08fbfeb6 (svn r11289) [NoAI] -Add [FS#1346]: added AIVehicle::Is(Stopped)InDepot() (dihedral)
truelight
parents: 9704
diff changeset
  7064
  IsStoppedInDepot(15): true
9874
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  7065
  --Errors--
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  7066
    RefitVehicle():        false
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  7067
    GetLastErrorString():  ERR_VEHICLE_NOT_IN_DEPOT
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  7068
    SellVehicle():         false
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  7069
    GetLastErrorString():  ERR_VEHICLE_NOT_IN_DEPOT
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  7070
    SendVehicleToDepot():  false
4ecef0dadf01 (svn r12607) [NoAI] -Add: SetLastError support for AIVehicle (Morloth)
truebrain
parents: 9869
diff changeset
  7071
    GetLastErrorString():  ERR_UNKNOWN
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7072
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7073
--VehicleList--
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  7074
  Count():             4
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7075
  Location ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7076
    12 => 33417
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7077
    11 => 33417
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7078
    13 => 32119
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7079
    15 => 28479
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7080
  EngineType ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7081
    13 => 219
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7082
    15 => 204
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7083
    12 => 153
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7084
    11 => 153
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7085
  UnitNumber ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7086
    12 => 2
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7087
    15 => 1
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7088
    13 => 1
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7089
    11 => 1
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7090
  Age ListDump:
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  7091
    15 => 0
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  7092
    13 => 0
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  7093
    12 => 0
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  7094
    11 => 0
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7095
  MaxAge ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7096
    15 => 10980
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7097
    13 => 10980
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7098
    12 => 5490
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7099
    11 => 5490
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7100
  AgeLeft ListDump:
9793
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  7101
    15 => 10980
c5fb53240401 (svn r12297) [NoAI] -Add: added AIBridge.BuildBridge and friends
truebrain
parents: 9792
diff changeset
  7102
    13 => 10980
9794
5d866d7cb991 (svn r12298) [NoAI] -Add: added AITunnel (Morloth)
truebrain
parents: 9793
diff changeset
  7103
    12 => 5490
10291
11cb78922367 (svn r12823) [NoAI] -Add: added AICompany::(G|S)etAutoRenew(Status|Months|Money)
glx
parents: 10279
diff changeset
  7104
    11 => 5490
10187
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7105
  CurrentSpeed ListDump:
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7106
    11 => 7
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7107
    15 => 0
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7108
    13 => 0
d5a6eba5af45 (svn r12718) [NoAI] -Add: added AIVehicle::GetCurrentSpeed
truebrain
parents: 10088
diff changeset
  7109
    12 => 0
9806
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7110
  RunningCost ListDump:
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7111
    13 => 2756
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7112
    15 => 2296
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7113
    12 => 421
d65cc2bcb0de (svn r12312) [NoAI] -Fix: AIVehicle_vRunningCost didn't exist
truebrain
parents: 9804
diff changeset
  7114
    11 => 421
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7115
  ProfitThisYear ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7116
    15 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7117
    13 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7118
    12 => 0
10088
922c6e6a8d3e (svn r12612) [NoAI] -Add: support for GetLastError for AITunnel. Patch by Morloth.
rubidium
parents: 10086
diff changeset
  7119
    11 => 0
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7120
  ProfitLastYear ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7121
    15 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7122
    13 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7123
    12 => 0
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7124
    11 => 0
9684
623970482fb2 (svn r10633) [NoAI] -Add: added GetVehicleType and AIVehicle::VehicleType
truelight
parents: 9682
diff changeset
  7125
  VehicleType ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7126
    13 => 3
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7127
    15 => 2
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7128
    12 => 1
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7129
    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
  7130
  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
  7131
    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
  7132
    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
  7133
    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
  7134
    13 => -1
10193
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7135
  VehicleType ListDump:
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7136
    12 => 12
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7137
    11 => 12
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7138
    15 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7139
    13 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7140
  VehicleType ListDump:
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7141
    15 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7142
    13 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7143
    12 => 0
9f73edc0c57a (svn r12724) [NoAI] -Fix r12720: also add regression test for new functions
truebrain
parents: 10191
diff changeset
  7144
    11 => 0
9614
814c3bbf8ecc (svn r9781) [NoAI] -Add: added AIVehicleListProfit[This|Last]Year as valuator
truelight
parents: 9613
diff changeset
  7145
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7146
--Order--
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  7147
  GetOrderCount():       0
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7148
  GetOrderDestination(): -1
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7149
  AreOrderFlagsValid():  true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7150
  IsValidVehicleOrder(): false
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7151
  GetOrderFlags():       65535
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7152
  AppendOrder():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7153
  InsertOrder():         true
10844
affb2821fb9f (svn r13395) [NoAI] -Fix [API CHANGE]: Rename AIOrder::GetNumberOfORders to AIOrder::GetOrderCount
truebrain
parents: 10831
diff changeset
  7154
  GetOrderCount():       2
9546
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7155
  IsValidVehicleOrder(): true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7156
  RemoveOrder():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7157
  ChangeOrder():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7158
  GetOrderDestination(): 33411
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7159
  CopyOrders():          false
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7160
  CopyOrders():          true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7161
  ShareOrders():         false
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7162
  ShareOrders():         true
fde20f518285 (svn r9477) [NoAI] -Add: added regression-test for AIOrder()
truelight
parents: 9519
diff changeset
  7163
  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
  7164
  AppendOrder():         true
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7165
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
  7166
--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
  7167
  Count():             2
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7168
  Location ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7169
    4 => 33421
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7170
    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
  7171
  CargoWaiting(0) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7172
    4 => 0
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  7173
    3 => 0
10355
ee4b5f7a5bf2 (svn r12896) [NoAI] -Sync: with trunk r12824:r12895.
rubidium
parents: 10344
diff changeset
  7174
  CargoWaiting(1) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7175
    4 => 0
10355
ee4b5f7a5bf2 (svn r12896) [NoAI] -Sync: with trunk r12824:r12895.
rubidium
parents: 10344
diff changeset
  7176
    3 => 0
9648
760b7b504e37 (svn r10543) [NoAI] -Add: added AIStationListCargoRating as valuator for a station list
truelight
parents: 9647
diff changeset
  7177
  CargoRating(1) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7178
    4 => 69
9691
1231d4e5f5aa (svn r10679) [NoAI] -Add: added AIMarine, which takes care of Ships, Docks, ...
truelight
parents: 9684
diff changeset
  7179
    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
  7180
  DistanceManhattanToTile(30000) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7181
    4 => 106
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7182
    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
  7183
  DistanceSquareToTile(30000) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7184
    4 => 8818
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7185
    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
  7186
  IsWithinTownInfluence(0) ListDump:
10455
22c441f5adf9 (svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents: 10384
diff changeset
  7187
    4 => 0
10360
3234cb59de55 (svn r12901) [NoAI] -Add: added AITown.IsWithinTownRadius, AIStation.IsWithinTownRadius and AITile.GetOwner (Yexo)
truebrain
parents: 10355
diff changeset
  7188
    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
  7189
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
  7190
--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
  7191
  Count():             1
c17046b1b8a2 (svn r10540) [NoAI] -Add: added AIStationVehicleList, which lists all vehicles that go to a given station
truelight
parents: 9642
diff changeset
  7192
  Location ListDump:
9694
e72987579514 (svn r10775) [NoAI] -Sync: with trunk r10535:r10774.
rubidium
parents: 9691
diff changeset
  7193
    11 => 33417
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7194
      --Subsidy (0) --
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7195
        IsValidSubsidy():     false
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7196
        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
  7197
        GetAwardedTo():       -1
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7198
        GetExpireDate():      -1
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7199
        SourceIsTown():       false
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7200
        GetSource():          65535
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7201
        DestionationIsTown(): false
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7202
        GetDestionation():    65535
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7203
        GetCargoType():       255
9823
0b7f816cf46f (svn r12431) [NoAI] -Add: added AIEventSubsidiaryOffer, which keeps you informed about new Subsidiaries
truebrain
parents: 9814
diff changeset
  7204
  GetNextEvent:          instance
10370
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7205
    GetEventType:        13
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7206
      EventName:         VehicleWaitingInDepot
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7207
      VehicleID:         11
fa4f88090694 (svn r12911) [NoAI] -Add: added AIEventVehicle(List|WaitingInDepot|Unprofitable) (Yexo)
truebrain
parents: 10361
diff changeset
  7208
  GetNextEvent:          instance
9823
0b7f816cf46f (svn r12431) [NoAI] -Add: added AIEventSubsidiaryOffer, which keeps you informed about new Subsidiaries
truebrain
parents: 9814
diff changeset
  7209
    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
  7210
      EventName:         SubsidyOffer
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7211
      --Subsidy (0) --
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7212
        IsValidSubsidy():     true
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7213
        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
  7214
        GetAwardedTo():       -1
10381
4ad8b98acd82 (svn r12922) [NoAI] -Add: added AIStation::SetName() (Yexo)
truebrain
parents: 10370
diff changeset
  7215
        GetExpireDate():      712800
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7216
        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
  7217
        GetSource():          7
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7218
        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
  7219
        GetDestionation():    15
10344
b7e9f5c65e30 (svn r12885) [NoAI] -Add: added AISubsidy and AIEventSubsidyNNN (Yexo)
truebrain
parents: 10291
diff changeset
  7220
        GetCargoType():       0
9823
0b7f816cf46f (svn r12431) [NoAI] -Add: added AIEventSubsidiaryOffer, which keeps you informed about new Subsidiaries
truebrain
parents: 9814
diff changeset
  7221
  IsEventWaiting:        false
9851
a5f5a7cf2b61 (svn r12519) [NoAI] -Add: added AILog with Info(), Warning(), and Error()
truebrain
parents: 9844
diff changeset
  7222
ERROR: We've got a suicidal AI for player 1