HowTo/Search for objects in the world
Scripted asset may sometimes wish to search for other objects within the world, either in bulk lists, or for a specific single object. This page is intended to provide an overview of how this is achieved in the latest versions of Trainz. Details about certain legacy search methods and how to update them to modern techniques are also provided, once the initial concepts are introduced.
Contents |
Object Identification
TBD
Named Object Searches
TBD
Script Library Lookups
Script library assets are unique within script in that they exist without any visual presence to the end player, and are shared across all scripts that access them. i.e. It is not possible to instantiate multiple instances of the same library asset within a single script context. This makes them extremely useful for managing, organising or communicating between other scripted asset types. For more information about library assets, see the KIND_Library page.
As libraries are added to the world by script, and the not the player or session creator, they require a script accessible function to create and load them. This function is TrainzScriptBase.GetLibrary(). When this function is called the library asset will be immediately loaded and returned by Trainz native code. Once loaded, the library will remain loaded in script, and any future calls to GetLibrary() will return the same instance.
Example usage:
public void Init(Asset asset) { inherited(asset); // Load our shared library asset KUID libraryKuid = asset.LookupKUIDTable("shared-library"); m_sharedLibrary = World.GetLibrary(libraryKuid); // Add any library specific init, registration, etc code here }
Storing and Searching for Specific Objects
TBD
Legacy Search Functions
TBD