Methods to extract
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//these should probably all move | |
bool isActivityZone(df::building * building); | |
bool isPenPasture(df::building * building); | |
bool isPitPond(df::building * building); | |
bool isActive(df::building * building); | |
int32_t findBuildingIndexById(int32_t id); | |
int32_t findPenPitAtCursor(); | |
int32_t findCageAtCursor(); | |
int32_t findChainAtCursor(); | |
//what about these? | |
bool unassignUnitFromBuilding(df::unit* unit); | |
command_result assignUnitToZone(color_ostream& out, df::unit* unit, df::building* building, bool verbose); | |
void unitInfo(color_ostream & out, df::unit* creature, bool verbose); | |
void zoneInfo(color_ostream & out, df::building* building, bool verbose); | |
void cageInfo(color_ostream & out, df::building* building, bool verbose); | |
void chainInfo(color_ostream & out, df::building* building, bool verbose); | |
bool isBuiltCageAtPos(df::coord pos); | |
bool isInBuiltCageRoom(df::unit*); | |
bool isNaked(df::unit *); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment