Industry: Determine which tiles in industry layouts are not animated

Do not set these as animated tiles for new industries
This commit is contained in:
Jonathan G Rennison
2022-06-01 00:30:21 +01:00
parent 220390ed3e
commit 42e20d3d99
12 changed files with 208 additions and 3 deletions

View File

@@ -54,8 +54,11 @@ enum AnalyseCallbackOperationMode {
ACOM_CB36_PROP,
ACOM_FIND_CB_RESULT,
ACOM_CB36_SPEED,
ACOM_INDUSTRY_TILE,
};
struct AnalyseCallbackOperationIndustryTileData;
struct AnalyseCallbackOperation {
struct FindCBResultData {
uint16 callback;
@@ -70,6 +73,7 @@ struct AnalyseCallbackOperation {
bool cb_result_found = false;
union {
FindCBResultData cb_result;
AnalyseCallbackOperationIndustryTileData *indtile;
} data;
};