RouteType (Civ5 Type)

From Civilization Modding Wiki
Revision as of 14:54, 19 September 2012 by DonQuich (talk | contribs) (Bot update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This page is a part of the Lua and UI Reference (Civ5).


ID.png The RouteType pseudo-type is actually a regular integer. Pseudo-types do not exist in Lua, they only serve a documentation purpose on the wiki!
  • DB.png Integers labeled as RouteType corresponds to the ID column of the Routes XML table.


XML: the Routes table

Here are the ID and Type columns found in this table.

ID Type
0 ROUTE_ROAD
1 ROUTE_RAILROAD


Examples

Here are different ways to query the database to retrieve the ID from the type. Those examples will return and assign the integer value 0. See also GameInfo.

local id = GameInfo.Routes.ROUTE_ROAD.ID
local id = GameInfo["Routes"].["ROUTE_ROAD"].ID
local id = GameInfo.Routes{Type="ROUTE_ROAD"}().ID

Alternatively you could use the ID or the type to retrieve the value of the Description column. Those examples will return and assign the value TXT_KEY_ROUTE_ROAD.

local description = GameInfo.Routes[0].Description
local description = GameInfo["Routes"][0]["Description"]
local description = GameInfo.Routes{ID=0}().Description


Used by

int Player:GetAdvancedStartRouteCost(RouteType route, bool add, Plot plot)
int Plot:CalculateImprovementYieldChange(ImprovementType improvement, YieldType yield, PlayerID player, bool optimal, RouteType assumeThisRoute)
RouteType Plot:GetRevealedRouteType(TeamID team, bool debug)
RouteType Plot:GetRouteType()
Team:ChangeRouteChange(RouteType index, int change)
int Team:GetRouteChange(RouteType index)



The initial version of this page was created by the Civ5 API Bot, see the Civ5 API Reference FAQ. Some of the texts come from the 2kgames' wiki and most of code samples are copyrighted to Firaxis.
Functions' signatures were either copied from the 2kgames' wiki, or infered from the Lua source files and the binaries. Errors are possible.
Contributors may find help in the Contributors guide to the Civ5 API.