This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
crpl:docs:getwall [2013/01/14 19:03] – created chani | crpl:docs:getwall [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | TODO | + | <- [[crpl: |
+ | ===== GetWall | ||
+ | |||
+ | ^Arguments^Result^Notation^ | ||
+ | |X, Y|0 to 1 |'' | ||
+ | |||
+ | |||
+ | === Description === | ||
+ | Pushes to the stack the value of the wall at the cell coordinates. | ||
+ | 0 represents no wall and 1 represents a wall of full health. | ||
+ | Values in between represent varying degrees of health for the wall. | ||
+ | === Examples === | ||
+ | This script will check if there is any single wall piece under the CRPL core this script is attached to. If there is, it will trace 1 (TRUE), if not, it will trace 0 (FALSE). | ||
+ | < | ||
+ | CurrentX ->x | ||
+ | CurrentY ->y | ||
+ | |||
+ | Self CONST_CELLWIDTH GetUnitAttribute -> | ||
+ | Self CONST_CELLHEIGHT GetUnitAttribute -> | ||
+ | |||
+ | < | ||
+ | < | ||
+ | |||
+ | FALSE -> | ||
+ | |||
+ | #iterate over all cells occupied by me | ||
+ | <-y < | ||
+ | <-x < | ||
+ | I J GetWall ->wall | ||
+ | <-wall 0 gt if | ||
+ | TRUE -> | ||
+ | endif | ||
+ | loop | ||
+ | loop | ||
+ | |||
+ | ShowTraceLog | ||
+ | < | ||
+ | </ |