Difference between revisions of "LuaAPI/wesnoth/schedule"
(Categorize) |
(Add context specifiers to each entry) |
||
Line 4: | Line 4: | ||
=== wesnoth.schedule.get_time_of_day === | === wesnoth.schedule.get_time_of_day === | ||
− | * '''wesnoth.schedule.get_time_of_day'''(''reference'', [''for turn'']) → ''time of day info'' | + | * {{LuaGameOnly}} '''wesnoth.schedule.get_time_of_day'''(''reference'', [''for turn'']) → ''time of day info'' |
Returns the schedule information. The ''reference'' can be any of the following: | Returns the schedule information. The ''reference'' can be any of the following: | ||
Line 40: | Line 40: | ||
=== wesnoth.schedule.get_illumination === | === wesnoth.schedule.get_illumination === | ||
− | * '''wesnoth.schedule.get_illumination'''(''location'', [''for turn'']) → ''time of day info'' | + | * {{LuaGameOnly}} '''wesnoth.schedule.get_illumination'''(''location'', [''for turn'']) → ''time of day info'' |
Like '''get_time_of_day''', but also accounts for modifiers from unit illumination or terrain lighting on the passed hex. The parameters accepted are the same, but if passed nil or a time area ID, it will return the exact same information that '''get_time_of_day''' returns. | Like '''get_time_of_day''', but also accounts for modifiers from unit illumination or terrain lighting on the passed hex. The parameters accepted are the same, but if passed nil or a time area ID, it will return the exact same information that '''get_time_of_day''' returns. | ||
Line 48: | Line 48: | ||
=== wesnoth.schedule.replace === | === wesnoth.schedule.replace === | ||
− | * '''wesnoth.schedule.replace'''(''new schedule'') | + | * {{LuaGameOnly}} '''wesnoth.schedule.replace'''(''new schedule'') |
Replaces the global scenario schedule with a new schedule. | Replaces the global scenario schedule with a new schedule. | ||
[[Category:Lua Reference]] | [[Category:Lua Reference]] |
Revision as of 23:35, 4 July 2021
The schedule module contains functions to query and manipulate the time of day schedule. In addition to the functions in this module, the wesnoth.current.schedule object represents the active schedule itself.
wesnoth.schedule.get_time_of_day
- ♟ wesnoth.schedule.get_time_of_day(reference, [for turn]) → time of day info
Returns the schedule information. The reference can be any of the following:
- a location - returns the information for that hex, accounting for any time areas
- a time area ID - returns the information for that time area
- nil - returns the information for the global scenario schedule
The second parameter is the turn number for which to return the information, which defaults to the current turn. This function does not account for any illumination type effects (either unit abilities or terrain lighting) that might alter the effective time of day - use get_illumination instead if you need that.
The function returns a table with these named fields:
- time_of_day.id → ID
The ID of the [time] tag.
- time_of_day.lawful_bonus → bonus
The lawful bonus on this hex.
- time_of_day.bonus_modified → bonus
The difference between lawful_bonus and the base lawful bonus from the [time] tag. For get_time_of_day, this is always 0, but for get_illumination, it may be non-zero.
- time_of_day.red → integer
- time_of_day.green → integer
- time_of_day.blue → integer
- time_of_day.image → image path
- time_of_day.mask → image path
- time_of_day.sound → sound path
- time_of_day.name → visible name
All the information on how the time of day is shown to the player.
wesnoth.schedule.get_illumination
- ♟ wesnoth.schedule.get_illumination(location, [for turn]) → time of day info
Like get_time_of_day, but also accounts for modifiers from unit illumination or terrain lighting on the passed hex. The parameters accepted are the same, but if passed nil or a time area ID, it will return the exact same information that get_time_of_day returns.
This only considers modifiers based on the current state of the map. If you wanted to perform a "what if" check to determine what the illumination would become after a unit moves, you would need to move the unit, call this function, and then move it back where it started. Similarly, if you wanted to consider the illumination after a hypothetical terrain change, you would need to change the terrain, call the function, and then change it back.
wesnoth.schedule.replace
- ♟ wesnoth.schedule.replace(new schedule)
Replaces the global scenario schedule with a new schedule.