Difference between revisions of "Modding:generator API"
From DoomRL Wiki
Shark20061 (Talk | contribs) (Created page with "''This page is currently under construction.'' The generator holds all of the ever-present functions used to create the random maps in DoomRL. It also contains a variety of help...") |
Shark20061 (Talk | contribs) (Adding more functions. Still under construction.) |
||
Line 13: | Line 13: | ||
The argument type "Flags" expects a list of [[Modding:Constants|flag constants]] of the indicated type. | The argument type "Flags" expects a list of [[Modding:Constants|flag constants]] of the indicated type. | ||
− | === | + | An argument name in [square brackets] is an optional one. The function description will indicate how the function operates if it is omitted. |
+ | |||
+ | === Generator API Function List === | ||
− | |||
{|class="wikitable" style="border: 2px solid darkred; border-spacing: 0; font-size: 90%; margin: 0.25em 0.5em;" | {|class="wikitable" style="border: 2px solid darkred; border-spacing: 0; font-size: 90%; margin: 0.25em 0.5em;" | ||
− | ! colspan="2" style="background: darkred; color: yellow; font-size: 120%; text-align: center"|'''Generator Interface - | + | ! colspan="2" style="background: darkred; color: yellow; font-size: 120%; text-align: center"|'''Generator Interface - Functions''' |
{{Table2Col | {{Table2Col | ||
|es=background: #333; | |es=background: #333; | ||
Line 33: | Line 34: | ||
|{{modarg|boolean}}|{{moddef|list|is_empty|dot||Coord|where|Flags|reqs}} | |{{modarg|boolean}}|{{moddef|list|is_empty|dot||Coord|where|Flags|reqs}} | ||
|{{modarg|boolean}}|{{moddef|list|is_empty_area|dot||Area|where|Flags|reqs}} | |{{modarg|boolean}}|{{moddef|list|is_empty_area|dot||Area|where|Flags|reqs}} | ||
+ | |{{modarg|boolean}}|{{moddef|list|scan|dot||Area|where|CellID|good}} | ||
||'''[[#Map Searching Functions|Map Searching Functions]]''' | ||'''[[#Map Searching Functions|Map Searching Functions]]''' | ||
− | |{{modarg|Coord}}|{{moddef|list|find_coord|dot||CellSet|what}} | + | |{{modarg|Coord}}|{{moddef|list|find_coord|dot||CellSet|what|Area|[where]}} |
+ | |{{modarg|Coord}}|{{moddef|list|random_coord|dot||Area|[where]}} | ||
+ | |{{modarg|Coord}}|{{moddef|list|find_random_coord|dot||CellSet|what|Area|[where]}} | ||
+ | |{{modarg|Coord}}|{{moddef|list|find_empty_coord|dot||CellSet|what|Flags|reqs|Area|[where]}} | ||
+ | |{{modarg|Coord}}|{{moddef|list|random_empty_coord|dot||Flags|reqs|Area|[where]}} | ||
+ | |{{modarg|Coord}}|{{moddef|list|find_random_empty_coord|dot||CellSet|what|Flags|reqs|Area|[where]}} | ||
+ | |{{modarg|Coord}}|{{moddef|list|safe_empty_coord|dot||Area|[where]}} | ||
+ | |{{modarg|Coord}}|{{moddef|list|standard_empty_coord|dot}} | ||
|}} | |}} | ||
|} | |} | ||
− | + | === Basic Cell Handling Functions === | |
;{{moddef|desc|get_cell|dot||Coord|loc}} | ;{{moddef|desc|get_cell|dot||Coord|loc}} | ||
− | + | Gets the Numeric ID (NID) of the [[Modding:Cell|cell]] at a given map position. | |
:''loc'': The coordinates of the cell to get. | :''loc'': The coordinates of the cell to get. | ||
:'''Returns''': The NID of the cell. | :'''Returns''': The NID of the cell. | ||
---- | ---- | ||
;{{moddef|desc|get_cell_id|dot||Coord|loc}} | ;{{moddef|desc|get_cell_id|dot||Coord|loc}} | ||
− | + | Gets the ID of the [[Modding:Cell|cell]] at a given map position. | |
:''loc'': The coordinates of the cell to get. | :''loc'': The coordinates of the cell to get. | ||
:'''Returns''': The string ID of the cell. | :'''Returns''': The string ID of the cell. | ||
---- | ---- | ||
;{{moddef|desc|fast_get_cell|dot||integer|x|integer|y}} | ;{{moddef|desc|fast_get_cell|dot||integer|x|integer|y}} | ||
− | + | Gets the Numeric ID (NID) of the [[Modding:Cell|cell]] at a given map position. | |
:''x'': The X position of the cell to get. | :''x'': The X position of the cell to get. | ||
:''y'': The Y position of the cell to get. | :''y'': The Y position of the cell to get. | ||
Line 56: | Line 65: | ||
---- | ---- | ||
;{{moddef|desc|set_cell|dot||Coord|loc|CellID|what}} | ;{{moddef|desc|set_cell|dot||Coord|loc|CellID|what}} | ||
− | + | Assigns a new [[Modding:Cell|cell]] to a map position. | |
:''loc'': The coordinates of the position to set. | :''loc'': The coordinates of the position to set. | ||
:''what'': The ID of the cell to assign to the position. | :''what'': The ID of the cell to assign to the position. | ||
---- | ---- | ||
;{{moddef|desc|fast_set_cell|dot||integer|x|integer|y|integer|what}} | ;{{moddef|desc|fast_set_cell|dot||integer|x|integer|y|integer|what}} | ||
− | + | Assigns a now [[Modding:Cell|cell]] to a map position. | |
:''x'': The X position of the cell to set. | :''x'': The X position of the cell to set. | ||
:''y'': The Y position of the cell to set. | :''y'': The Y position of the cell to set. | ||
:''what'': The NID (string IDs not allowed) of the cell to assign to the position. | :''what'': The NID (string IDs not allowed) of the cell to assign to the position. | ||
− | + | === Map Checking Functions === | |
;{{moddef|desc|around|dot||Coord|where|CellSet|what}} | ;{{moddef|desc|around|dot||Coord|where|CellSet|what}} | ||
− | + | Checks the positions adjacent to a location (including diagonally adjacent) and returns the number of cells that match one of the indicated cell IDs. | |
:''where'': The coordinate to check around. The coordinate sent in this way is not checked, only adjacent cells are. | :''where'': The coordinate to check around. The coordinate sent in this way is not checked, only adjacent cells are. | ||
:''what'': The cell(s) to check for. | :''what'': The cell(s) to check for. | ||
Line 73: | Line 82: | ||
---- | ---- | ||
;{{moddef|desc|cross_around|dot||Coord|where|CellSet|what}} | ;{{moddef|desc|cross_around|dot||Coord|where|CellSet|what}} | ||
− | + | Checks the positions adjacent to a location (but not diagonally adjacent) and returns the number of cells that match one of the indicated cell IDs. | |
:''where'': The coordinates to check around. The coordinate sent in this way is not checked, only adjacent cells are. | :''where'': The coordinates to check around. The coordinate sent in this way is not checked, only adjacent cells are. | ||
:''what'': The cell(s) to check for. | :''what'': The cell(s) to check for. | ||
Line 79: | Line 88: | ||
---- | ---- | ||
;{{moddef|desc|is_empty|dot||Coord|where|Flags|reqs}} | ;{{moddef|desc|is_empty|dot||Coord|where|Flags|reqs}} | ||
− | + | Checks to see if the indicated cell is "empty", defining "empty" based on a list of criteria. | |
:''where'': The position to check. | :''where'': The position to check. | ||
− | :''reqs'': A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the position cannot have. For example, EF_NOBEINGS only returns true if the map position does not contain a [[Modding:Being|being]]. See [[Modding:Constants#Empty_Flags]] for more information. | + | :''reqs'': A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the position cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the map position does not contain a [[Modding:Being|being]]. See [[Modding:Constants#Empty_Flags]] for more information. |
:'''Returns''': ''True'' if the cell satisfies all of the conditions indicated in ''reqs'', ''False'' otherwise. | :'''Returns''': ''True'' if the cell satisfies all of the conditions indicated in ''reqs'', ''False'' otherwise. | ||
---- | ---- | ||
;{{moddef|desc|is_empty_area|dot||Area|where|Flags|reqs}} | ;{{moddef|desc|is_empty_area|dot||Area|where|Flags|reqs}} | ||
− | + | Checks to see if the indicated area is "empty", defining "empty" based on a list of criteria. | |
:''where'': The area to check. | :''where'': The area to check. | ||
− | :''reqs'': A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the area cannot have. For example, EF_NOBEINGS only returns true if the area does not contain a [[Modding:Being|being]]. See [[Modding:Constants#Empty_Flags]] for more information. | + | :''reqs'': A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the area cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the area does not contain a [[Modding:Being|being]]. See [[Modding:Constants#Empty_Flags]] for more information. |
:'''Returns''': ''True'' if every cell in the area satisfies all of the conditions indicated in ''reqs'', ''False'' otherwise. | :'''Returns''': ''True'' if every cell in the area satisfies all of the conditions indicated in ''reqs'', ''False'' otherwise. | ||
− | + | ---- | |
− | ;{{moddef|desc|find_coord|dot||CellSet|what}} | + | ;{{moddef|desc|scan|dot||Area|where|CellID|good}} |
− | + | Checks to see if the entire area is filled with a certain cell. | |
+ | :''where'': The area to check. | ||
+ | :''good'': The cell to look for. | ||
+ | :'''Returns''': ''True'' if all cells in the area are ''good'', ''False'' otherwise. | ||
+ | === Map Searching Functions === | ||
+ | ;{{moddef|desc|find_coord|dot||CellSet|what|Area|[where]}} | ||
+ | Searches the map for the first coordinate containing one of the indicated cell IDs. | ||
:''what'': The cell(s) to search for. | :''what'': The cell(s) to search for. | ||
+ | :''where'': ''Optional.'' The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map. | ||
:'''Returns''': The coordinates of the first position that contains one of the ''what'' cell IDs. The map is checked row by row starting from the top, going from left to right across each row. | :'''Returns''': The coordinates of the first position that contains one of the ''what'' cell IDs. The map is checked row by row starting from the top, going from left to right across each row. | ||
+ | ---- | ||
+ | ;{{moddef|desc|random_coord|dot||Area|[where]}} | ||
+ | Searches for a random coordinate within the specified area. | ||
+ | :''where'': ''Optional.'' The area to restrict the coordinate to. If omitted, the coordinate can be picked from anywhere on the map. | ||
+ | :'''Returns''': A random coordinate. | ||
+ | ---- | ||
+ | ;{{moddef|desc|find_random_coord|dot||CellSet|what|Area|[where]}} | ||
+ | Searches for a random coordinate within the specified area that contains one of the specified cell IDs. | ||
+ | :''what'': The cell(s) to search for. | ||
+ | :''where'' : ''Optional.'' The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map. | ||
+ | :'''Returns''': A random coordinate that meets the supplied criteria. | ||
+ | ---- | ||
+ | ;{{moddef|desc|find_empty_coord|dot||CellSet|what|Flags|reqs|Area|[where]}} | ||
+ | Searches the map for the first "empty" coordinate containing one of the indicated cell IDs, defining "empty" based on a list of criteria. | ||
+ | :''what'': The cell(s) to search for. | ||
+ | :''reqs'': A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the coordinate cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the coordinate does not contain a [[Modding:Being|being]]. See [[Modding:Constants#Empty_Flags]] for more information. | ||
+ | :''where'': ''Optional.'' The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map. | ||
+ | :'''Returns''': The coordinates of the first position that meets the supplied criteria. The map is checked row by row starting from the top, going from left to right across each row. | ||
+ | ---- | ||
+ | ;{{moddef|desc|random_empty_coord|dot||Flags|reqs|Area|[where]}} | ||
+ | Searches the map for a random coordinate that is "empty", defining "empty" based on a list of criteria. | ||
+ | :''reqs'': A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the random coordinate cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the coordinate does not contain a [[Modding:Being|being]]. See [[Modding:Constants#Empty_Flags]] for more information. | ||
+ | :''where'': ''Optional.'' The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map. | ||
+ | :'''Returns''': A random coordinate that meets the supplied criteria. | ||
+ | ---- | ||
+ | ;{{moddef|desc|find_random_empty_coord|dot||CellSet|what|Flags|reqs|Area|[where]}} | ||
+ | Searches the map for a random "empty" coordinate containing one of the indicated cell IDs, defining "empty" based on a list of criteria. | ||
+ | :''what'': The cell(s) to search for. | ||
+ | :''reqs'': A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the random coordinate cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the coordinate does not contain a [[Modding:Being|being]]. See [[Modding:Constants#Empty_Flags]] for more information. | ||
+ | :''where'': ''Optional.'' The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map. | ||
+ | :'''Returns''': A random coordinate that meets the supplied criteria. | ||
+ | ---- | ||
+ | ;{{moddef|desc|random_square|dot||CellSet|what}} | ||
+ | Searches for a random 3x3 area containing only specified cells. | ||
+ | :''what'': The cell(s) to search for. | ||
+ | :'''Returns''': The center coordinate of the random 3x3 area. | ||
+ | ---- | ||
+ | ;{{moddef|desc|safe_empty_coord|dot||Area|[where]}} | ||
+ | Searches for a random coordinate that meets certain predetermined criteria. | ||
+ | |||
+ | The function will try to find a coordinate that does not contain a being, item, staircase, wall, harmful terrain, spawning restrictions (cells marked with LF_NOSPAWN), and is more than 5 spaces from the player (EF_NOBEINGS, EF_NOITEMS, EF_NOSTAIRS, EF_NOBLOCK, EF_NOHARM, EF_NOSPAWN, and EF_NOSAFE). If a valid space isn't found, the function will ignore distance from the player (EF_NOSAFE). If a valid space still can't be found, the function will ignore stairs and harmful terrain (EF_NOSTAIRS and EF_NOHARM). | ||
+ | :''where'': ''Optional.'' The area to restrict the inital pass to. If a valid coordinate is not found within the area after ignoring stairs and harmful terrain, the search is restarted and expanded automatically to the entire map. If omitted, the entire map will be searched. | ||
+ | :'''Returns''': A random coordinate that meets the criteria. | ||
+ | ---- | ||
+ | ;{{moddef|desc|standard_empty_coord|dot}} | ||
+ | Searches for a random coordinate that meets certain predetermined criteria. | ||
+ | |||
+ | The function will search for a coordinate that does not contain a being, item, staircase, wall, harmful terrain, or spawning restrictions (EF_NOBEINGS, EF_NOITEMS, EF_NOSTAIRS, EF_NOBLOCK, EF_NOHARM, and EF_NOSPAWN). | ||
+ | :'''Returns''': A random coordinate that meets the criteria. | ||
---- | ---- |
Revision as of 23:44, 20 April 2013
This page is currently under construction.
The generator holds all of the ever-present functions used to create the random maps in DoomRL. It also contains a variety of helper functions, many of them useful if not vital to the creation of intricate and meticulous game design.
Contents |
API
Please note that the type "integer" indicates an numeric value without a decimal part. It does not indicate the range of acceptable values.
The argument type "CellID" may be the numeric or string ID of a cell.
The argument type "CellSet" may be the numeric ID, string ID, or a list of numeric and/or string IDs.
The argument type "Flags" expects a list of flag constants of the indicated type.
An argument name in [square brackets] is an optional one. The function description will indicate how the function operates if it is omitted.
Generator API Function List
Generator Interface - Functions | |
---|---|
Basic Cell Handling Functions | |
integer | generator.get_cell(Coord loc) |
string | generator.get_cell_id(Coord loc) |
integer | generator.fast_get_cell(integer x, integer y) |
void | generator.set_cell(Coord loc, CellID what) |
void | generator.fast_set_cell(integer x, integer y, integer what) |
Map Checking Functions | |
integer | generator.around(Coord where, CellSet what) |
integer | generator.cross_around(Coord where, CellSet what) |
boolean | generator.is_empty(Coord where, Flags reqs) |
boolean | generator.is_empty_area(Area where, Flags reqs) |
boolean | generator.scan(Area where, CellID good) |
Map Searching Functions | |
Coord | generator.find_coord(CellSet what, Area [where]) |
Coord | generator.random_coord(Area [where]) |
Coord | generator.find_random_coord(CellSet what, Area [where]) |
Coord | generator.find_empty_coord(CellSet what, Flags reqs, Area [where]) |
Coord | generator.random_empty_coord(Flags reqs, Area [where]) |
Coord | generator.find_random_empty_coord(CellSet what, Flags reqs, Area [where]) |
Coord | generator.safe_empty_coord(Area [where]) |
Coord | generator.standard_empty_coord() |
Basic Cell Handling Functions
- generator.get_cell(Coord loc)
Gets the Numeric ID (NID) of the cell at a given map position.
- loc: The coordinates of the cell to get.
- Returns: The NID of the cell.
- generator.get_cell_id(Coord loc)
Gets the ID of the cell at a given map position.
- loc: The coordinates of the cell to get.
- Returns: The string ID of the cell.
- generator.fast_get_cell(integer x, integer y)
Gets the Numeric ID (NID) of the cell at a given map position.
- x: The X position of the cell to get.
- y: The Y position of the cell to get.
- Returns: The NID of the cell.
Assigns a new cell to a map position.
- loc: The coordinates of the position to set.
- what: The ID of the cell to assign to the position.
- generator.fast_set_cell(integer x, integer y, integer what)
Assigns a now cell to a map position.
- x: The X position of the cell to set.
- y: The Y position of the cell to set.
- what: The NID (string IDs not allowed) of the cell to assign to the position.
Map Checking Functions
Checks the positions adjacent to a location (including diagonally adjacent) and returns the number of cells that match one of the indicated cell IDs.
- where: The coordinate to check around. The coordinate sent in this way is not checked, only adjacent cells are.
- what: The cell(s) to check for.
- Returns: The number of cells (from 0 to 8) that matched one of the what cell IDs.
Checks the positions adjacent to a location (but not diagonally adjacent) and returns the number of cells that match one of the indicated cell IDs.
- where: The coordinates to check around. The coordinate sent in this way is not checked, only adjacent cells are.
- what: The cell(s) to check for.
- Returns: The number of cells (from 0 to 4) that matched one of the what cell IDs.
Checks to see if the indicated cell is "empty", defining "empty" based on a list of criteria.
- where: The position to check.
- reqs: A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the position cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the map position does not contain a being. See Modding:Constants#Empty_Flags for more information.
- Returns: True if the cell satisfies all of the conditions indicated in reqs, False otherwise.
Checks to see if the indicated area is "empty", defining "empty" based on a list of criteria.
- where: The area to check.
- reqs: A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the area cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the area does not contain a being. See Modding:Constants#Empty_Flags for more information.
- Returns: True if every cell in the area satisfies all of the conditions indicated in reqs, False otherwise.
Checks to see if the entire area is filled with a certain cell.
- where: The area to check.
- good: The cell to look for.
- Returns: True if all cells in the area are good, False otherwise.
Map Searching Functions
Searches the map for the first coordinate containing one of the indicated cell IDs.
- what: The cell(s) to search for.
- where: Optional. The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map.
- Returns: The coordinates of the first position that contains one of the what cell IDs. The map is checked row by row starting from the top, going from left to right across each row.
- generator.random_coord(Area [where])
Searches for a random coordinate within the specified area.
- where: Optional. The area to restrict the coordinate to. If omitted, the coordinate can be picked from anywhere on the map.
- Returns: A random coordinate.
Searches for a random coordinate within the specified area that contains one of the specified cell IDs.
- what: The cell(s) to search for.
- where : Optional. The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map.
- Returns: A random coordinate that meets the supplied criteria.
Searches the map for the first "empty" coordinate containing one of the indicated cell IDs, defining "empty" based on a list of criteria.
- what: The cell(s) to search for.
- reqs: A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the coordinate cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the coordinate does not contain a being. See Modding:Constants#Empty_Flags for more information.
- where: Optional. The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map.
- Returns: The coordinates of the first position that meets the supplied criteria. The map is checked row by row starting from the top, going from left to right across each row.
Searches the map for a random coordinate that is "empty", defining "empty" based on a list of criteria.
- reqs: A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the random coordinate cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the coordinate does not contain a being. See Modding:Constants#Empty_Flags for more information.
- where: Optional. The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map.
- Returns: A random coordinate that meets the supplied criteria.
Searches the map for a random "empty" coordinate containing one of the indicated cell IDs, defining "empty" based on a list of criteria.
- what: The cell(s) to search for.
- reqs: A list of EmptyFlags (named numeric constants that start with EF_) indicating which types of objects or properties the random coordinate cannot have. For example, if the flag EF_NOBEINGS is sent, the function only returns true if the coordinate does not contain a being. See Modding:Constants#Empty_Flags for more information.
- where: Optional. The area to restrict the search to. If omitted, the coordinate can be picked from anywhere on the map.
- Returns: A random coordinate that meets the supplied criteria.
- generator.random_square(CellSet what)
Searches for a random 3x3 area containing only specified cells.
- what: The cell(s) to search for.
- Returns: The center coordinate of the random 3x3 area.
- generator.safe_empty_coord(Area [where])
Searches for a random coordinate that meets certain predetermined criteria.
The function will try to find a coordinate that does not contain a being, item, staircase, wall, harmful terrain, spawning restrictions (cells marked with LF_NOSPAWN), and is more than 5 spaces from the player (EF_NOBEINGS, EF_NOITEMS, EF_NOSTAIRS, EF_NOBLOCK, EF_NOHARM, EF_NOSPAWN, and EF_NOSAFE). If a valid space isn't found, the function will ignore distance from the player (EF_NOSAFE). If a valid space still can't be found, the function will ignore stairs and harmful terrain (EF_NOSTAIRS and EF_NOHARM).
- where: Optional. The area to restrict the inital pass to. If a valid coordinate is not found within the area after ignoring stairs and harmful terrain, the search is restarted and expanded automatically to the entire map. If omitted, the entire map will be searched.
- Returns: A random coordinate that meets the criteria.
- generator.standard_empty_coord()
Searches for a random coordinate that meets certain predetermined criteria.
The function will search for a coordinate that does not contain a being, item, staircase, wall, harmful terrain, or spawning restrictions (EF_NOBEINGS, EF_NOITEMS, EF_NOSTAIRS, EF_NOBLOCK, EF_NOHARM, and EF_NOSPAWN).
- Returns: A random coordinate that meets the criteria.