Class InterlockingTower
From TrainzOnline
(Difference between revisions)
(Created page with "The InterlockingTower class is the script representation of an in game Interlocking Tower (aka Signal Tower). Interlocking Towers are used to define track "paths" that trains ...") |
|||
Line 24: | Line 24: | ||
Below is a list of some of the basic common functions on the InterlockingTower script class. This list is not intended to be comprehensive, merely provide an overview. | Below is a list of some of the basic common functions on the InterlockingTower script class. This list is not intended to be comprehensive, merely provide an overview. | ||
− | |||
{{MethodHeader|public InterlockingTowerPath CreateNewPath()}} | {{MethodHeader|public InterlockingTowerPath CreateNewPath()}} | ||
;Description | ;Description | ||
Line 30: | Line 29: | ||
;Returns | ;Returns | ||
*A newly created and initialised [[InterlockingTowerPath]] object. | *A newly created and initialised [[InterlockingTowerPath]] object. | ||
+ | |||
+ | {{MethodHeader|public string[] GetLocalisedPathNames()}} | ||
+ | ;Description | ||
+ | Returns a list of the current (localised) path names. | ||
+ | ;Returns | ||
+ | *A string array, containing the localised names of every path. | ||
+ | |||
+ | {{MethodHeader|public InterlockingTowerPath FindPathByName(string pathName)}} | ||
+ | ;Description | ||
+ | ;Parameters | ||
+ | ;Returns | ||
+ | |||
+ | {{MethodHeader|public InterlockingTowerPath[] GetConflictingPaths(InterlockingTowerPath path)}} | ||
+ | ;Description | ||
+ | ;Parameters | ||
+ | ;Returns | ||
+ | |||
+ | {{MethodHeader|public mandatory void SetAIState(int aiState)}} | ||
+ | ;Description | ||
+ | ;Parameters | ||
+ | ;Returns | ||
+ | |||
+ | {{MethodHeader|public void AssignPathToTrain(Train train, string pathName)}} | ||
+ | ;Description | ||
+ | ;Parameters | ||
+ | ;Returns | ||
+ | |||
+ | {{MethodHeader|public void CancelPathForTrain(Train train, string pathName)}} | ||
+ | ;Description | ||
+ | ;Parameters | ||
+ | ;Returns | ||
+ | |||
+ | {{MethodHeader|public void SetPanicStateForPath(string pathName)}} | ||
+ | ;Description | ||
+ | ;Parameters | ||
+ | ;Returns | ||
+ | |||
+ | {{MethodHeader|public void SetTrainAsPassing(Train train, Signal entrySignal)}} | ||
+ | ;Description | ||
+ | ;Parameters | ||
+ | ;Returns |
Revision as of 10:21, 14 October 2015
The InterlockingTower class is the script representation of an in game Interlocking Tower (aka Signal Tower). Interlocking Towers are used to define track "paths" that trains can travel down.
- API Hierarchy
- GSObject *
- GameObject
- TrainzGameObject
- PropertyObject *
- MeshObject
- MapObject
- InterlockingTower
- MapObject
- MeshObject
- GameObject
- GSObject *
Related Classes
Common functions
Below is a list of some of the basic common functions on the InterlockingTower script class. This list is not intended to be comprehensive, merely provide an overview.
public InterlockingTowerPath CreateNewPath()
- Description
Creates a new blank path for use by this tower. Any script which needs to create a path should call this function. Any tower which needs to customise the class can then just override this to create their type.
- Returns
- A newly created and initialised InterlockingTowerPath object.
public string[] GetLocalisedPathNames()
- Description
Returns a list of the current (localised) path names.
- Returns
- A string array, containing the localised names of every path.
public InterlockingTowerPath FindPathByName(string pathName)
- Description
- Parameters
- Returns
public InterlockingTowerPath[] GetConflictingPaths(InterlockingTowerPath path)
- Description
- Parameters
- Returns
public mandatory void SetAIState(int aiState)
- Description
- Parameters
- Returns
public void AssignPathToTrain(Train train, string pathName)
- Description
- Parameters
- Returns
public void CancelPathForTrain(Train train, string pathName)
- Description
- Parameters
- Returns
public void SetPanicStateForPath(string pathName)
- Description
- Parameters
- Returns
public void SetTrainAsPassing(Train train, Signal entrySignal)
- Description
- Parameters
- Returns