| 198 | } |
| 199 | |
| 200 | static bool getDepotAccessibleByAnimals(color_ostream &out) { |
| 201 | unordered_set<df::coord> depot_coords; |
| 202 | if (!get_depot_coords(out, &depot_coords)) |
| 203 | return false; |
| 204 | unordered_set<uint16_t> depot_pathability_groups; |
| 205 | if (!get_pathability_groups(out, &depot_pathability_groups, depot_coords)) |
| 206 | return false; |
| 207 | return get_entry_tiles(NULL, depot_pathability_groups); |
| 208 | } |
| 209 | |
| 210 | struct FloodCtx { |
| 211 | uint16_t wgroup; |
nothing calls this directly
no test coverage detected