The Battle for Wesnoth  1.19.5+dev
Functions
lua_map_location Namespace Reference

Functions

int intf_get_direction (lua_State *L)
 Expose map_location::get_direction function to lua Arg 1: a location Arg 2: a direction Arg 3: (optional) number of steps. More...
 
int intf_vector_sum (lua_State *L)
 Expose map_location::vector_sum to lua. More...
 
int intf_vector_diff (lua_State *L)
 Expose map_location::vector_difference to lua. More...
 
int intf_vector_negation (lua_State *L)
 Expose map_location::vector_negation to lua. More...
 
int intf_rotate_right_around_center (lua_State *L)
 Expose map_location::rotate_right_around_center to lua. More...
 
int intf_tiles_adjacent (lua_State *L)
 Expose map_location tiles_adjacent. More...
 
int intf_get_adjacent_tiles (lua_State *L)
 Expose map_location get_adjacent_tiles. More...
 
int intf_get_tile_ring (lua_State *L)
 Expose map_location get_tile_ring. More...
 
int intf_get_tiles_in_radius (lua_State *L)
 Expose map_location get_tiles_in_radius. More...
 
int intf_distance_between (lua_State *L)
 Expose map_location distance_between. More...
 
int intf_get_in_cubic (lua_State *L)
 Expose map_location to_cubic. More...
 
int intf_get_from_cubic (lua_State *L)
 Expose map_location from_cubic. More...
 
int intf_get_relative_dir (lua_State *L)
 Expose map_location get_relative_dir. More...
 

Function Documentation

◆ intf_distance_between()

int lua_map_location::intf_distance_between ( lua_State *  L)

Expose map_location distance_between.

  • Args 1, 2: Two locations
  • Ret: The distance between the two locations

Definition at line 255 of file lua_map_location_ops.cpp.

References distance_between(), and luaW_tolocation().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_get_adjacent_tiles()

int lua_map_location::intf_get_adjacent_tiles ( lua_State *  L)

Expose map_location get_adjacent_tiles.

  • Arg 1: A location
  • Ret 1 - 6: The adjacent locations

Definition at line 194 of file lua_map_location_ops.cpp.

References get_adjacent_tiles(), luaW_pushlocation(), and luaW_tolocation().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_get_direction()

int lua_map_location::intf_get_direction ( lua_State *  L)

Expose map_location::get_direction function to lua Arg 1: a location Arg 2: a direction Arg 3: (optional) number of steps.

Definition at line 76 of file lua_map_location_ops.cpp.

References d, map_location::get_direction(), luaW_pushlocation(), luaW_tolocation(), wfl::msg(), n, and map_location::parse_direction().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_get_from_cubic()

int lua_map_location::intf_get_from_cubic ( lua_State *  L)

Expose map_location from_cubic.

  • Arg: Location in cubic coordinates
  • Ret: Location

Definition at line 292 of file lua_map_location_ops.cpp.

References map_location::from_cubic(), h, luaW_checkcubeloc(), and luaW_pushlocation().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_get_in_cubic()

int lua_map_location::intf_get_in_cubic ( lua_State *  L)

Expose map_location to_cubic.

  • Arg: Location
  • Ret: Location in cubic coordinates

Definition at line 272 of file lua_map_location_ops.cpp.

References h, luaW_pushcubeloc(), luaW_tolocation(), and map_location::to_cubic().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_get_relative_dir()

int lua_map_location::intf_get_relative_dir ( lua_State *  L)

Expose map_location get_relative_dir.

  • Args 1, 2: Two locations
  • Ret: The direction of location 2 from location 1

Definition at line 308 of file lua_map_location_ops.cpp.

References map_location::get_relative_dir(), luaW_tolocation(), and map_location::write_direction().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_get_tile_ring()

int lua_map_location::intf_get_tile_ring ( lua_State *  L)

Expose map_location get_tile_ring.

  • Arg 1: A location
  • Arg 2: A radius
  • Ret: The locations

Definition at line 214 of file lua_map_location_ops.cpp.

References get_tile_ring(), lua_push(), and luaW_tolocation().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_get_tiles_in_radius()

int lua_map_location::intf_get_tiles_in_radius ( lua_State *  L)

Expose map_location get_tiles_in_radius.

  • Arg 1: A location
  • Arg 2: A radius
  • Ret: The locations

Definition at line 235 of file lua_map_location_ops.cpp.

References get_tiles_in_radius(), lua_push(), and luaW_tolocation().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_rotate_right_around_center()

int lua_map_location::intf_rotate_right_around_center ( lua_State *  L)

◆ intf_tiles_adjacent()

int lua_map_location::intf_tiles_adjacent ( lua_State *  L)

Expose map_location tiles_adjacent.

  • Args 1, 2: Two locations
  • Ret: True if the locations are adjacent

Definition at line 177 of file lua_map_location_ops.cpp.

References luaW_tolocation(), and tiles_adjacent().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_vector_diff()

int lua_map_location::intf_vector_diff ( lua_State *  L)

Expose map_location::vector_difference to lua.

Definition at line 127 of file lua_map_location_ops.cpp.

References luaW_pushlocation(), luaW_tolocation(), and map_location::vector_difference_assign().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_vector_negation()

int lua_map_location::intf_vector_negation ( lua_State *  L)

Expose map_location::vector_negation to lua.

  • Arg 1: Location
  • Ret: Negated vector

Definition at line 144 of file lua_map_location_ops.cpp.

References luaW_pushlocation(), luaW_tolocation(), and map_location::vector_negation().

Referenced by lua_kernel_base::lua_kernel_base().

◆ intf_vector_sum()

int lua_map_location::intf_vector_sum ( lua_State *  L)