X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fserver%2Fmap.h;h=1ca12d69c8e56d8b80371f5d7498d7ea1f4061dd;hb=cf0d81ea863df7adb1bdd862708571b0e40a73cb;hp=d704bc27ba81c15144d4ac31e382aa5171c5dbcc;hpb=f6615d3be438bbca4997c38c546c0d8724da80d4;p=plomrogue diff --git a/src/server/map.h b/src/server/map.h index d704bc2..1ca12d6 100644 --- a/src/server/map.h +++ b/src/server/map.h @@ -21,10 +21,21 @@ struct yx_uint8; */ extern void remake_map(); -/* Wrapper to mv_yx_in_dir_wrap(), returns 1 if the wrapped function moved "yx" - * within the wrap borders and the map size, else 0. +/* Move "yx" into hex direction "dir". Available hex directions are: 'e' + * (north-east), 'd' (east), 'c' (south-east), 'x' (south-west), 's' (west), 'w' + * (north-west). Returns 1 if the move was legal, else 0. + * + * A move is legal if "yx" ends up in the confines of the map and the original + * wrap space. The latter is left to a neighbor wrap space if "yx" moves beyond + * the minimal (0) or maximal (UINT8_MAX) column or row of possible map space – + * in which case "yx".y or "yx".x will snap to the respective opposite side. The + * current wrapping state is kept between successive calls until a "yx" of NULL + * is passed, in which case the function does nothing but zero the wrap state. + * Successive wrapping may move "yx" several wrap spaces into either direction, + * or return it into the original wrap space. */ extern uint8_t mv_yx_in_dir_legal(char dir, struct yx_uint8 * yx); + #endif