| 1869 | |
| 1870 | |
| 1871 | DFhackCExport command_result plugin_onstatechange(color_ostream &out, state_change_event event) |
| 1872 | { |
| 1873 | switch (event) { |
| 1874 | case SC_MAP_LOADED: |
| 1875 | cleanup_state(); |
| 1876 | init_state(); |
| 1877 | break; |
| 1878 | case SC_MAP_UNLOADED: |
| 1879 | cleanup_state(); |
| 1880 | break; |
| 1881 | default: |
| 1882 | break; |
| 1883 | } |
| 1884 | |
| 1885 | return CR_OK; |
| 1886 | } |
| 1887 | |
| 1888 | DFhackCExport command_result plugin_onupdate(color_ostream &out) |
| 1889 | { |
nothing calls this directly
no test coverage detected