MCPcopy Create free account
hub / github.com/DFHack/dfhack / isValidTilePos

Function isValidTilePos

library/include/modules/Maps.h:326–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

324
325extern DFHACK_EXPORT bool isValidTilePos(int32_t x, int32_t y, int32_t z);
326inline bool isValidTilePos(df::coord pos) { return isValidTilePos(pos.x, pos.y, pos.z); }
327
328extern DFHACK_EXPORT bool isTileVisible(int32_t x, int32_t y, int32_t z);
329inline bool isTileVisible(df::coord pos) { return isTileVisible(pos.x, pos.y, pos.z); }

Callers 15

maps_isValidTilePosFunction · 0.85
autoDFAnnouncementMethod · 0.85
revealInDwarfmodeMapMethod · 0.85
pauseRecenterMethod · 0.85
getMousePosMethod · 0.85
getTileBlockMethod · 0.85
ensureTileBlockMethod · 0.85
paint_screenFunction · 0.85
maybeExploreFunction · 0.85
DesignationsMethod · 0.85
paintScreenDesignatedFunction · 0.85
df_probeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected