X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_em%2Fexport.h;h=c5373fdb8a0af92ed48f1995b8d0d804fe40a384;hb=1006b2dbfc57cf28d482faa99be6de5a75adeeb3;hp=7379479f29c5a26f6b5d46c62bd3a9bef08d559c;hpb=275b9308b91358f688add8aa1c47cc46d499043b;p=rocksndiamonds.git diff --git a/src/game_em/export.h b/src/game_em/export.h index 7379479f..c5373fdb 100644 --- a/src/game_em/export.h +++ b/src/game_em/export.h @@ -6,6 +6,7 @@ // ============================================================================ #include "emerald.h" +#include "cave.h" // ---------------------------------------------------------------------------- @@ -27,29 +28,36 @@ struct GlobalInfo_EM struct GameInfo_EM { + unsigned int random; + boolean level_solved; boolean game_over; boolean any_player_moving; boolean any_player_snapping; - boolean use_single_button; - boolean use_snap_key_bug; - int last_moving_player; int last_player_direction[MAX_PLAYERS]; - struct LEVEL *lev; + struct LOGIC *lev; struct PLAYER *ply[MAX_PLAYERS]; + + // flags to handle bugs in and changes between different engine versions + boolean use_single_button; + boolean use_snap_key_bug; + boolean use_random_bug; + boolean use_old_explosions; + boolean use_old_android; + boolean use_old_push_elements; + boolean use_old_push_into_acid; + boolean use_wrap_around; }; struct LevelInfo_EM { int file_version; - short cave[CAVE_WIDTH][CAVE_HEIGHT]; - - struct LEVEL *cav; + struct CAVE *cav; }; struct GraphicInfo_EM @@ -74,12 +82,12 @@ struct GraphicInfo_EM struct EngineSnapshotInfo_EM { struct GameInfo_EM game_em; - unsigned int RandomEM; - struct LEVEL lev; + struct LOGIC lev; struct PLAYER ply[MAX_PLAYERS]; + + int frame; int screen_x; int screen_y; - int frame; }; @@ -90,7 +98,7 @@ struct EngineSnapshotInfo_EM extern struct GlobalInfo_EM global_em_info; extern struct GameInfo_EM game_em; extern struct LevelInfo_EM native_em_level; -extern struct GraphicInfo_EM graphic_info_em_object[TILE_MAX][8]; +extern struct GraphicInfo_EM graphic_info_em_object[GAME_TILE_MAX][8]; extern struct GraphicInfo_EM graphic_info_em_player[MAX_PLAYERS][PLY_MAX][8]; extern struct EngineSnapshotInfo_EM engine_snapshot_em; @@ -118,4 +126,7 @@ void SaveEngineSnapshotValues_EM(void); boolean checkIfAllPlayersFitToScreen(void); +int map_em_element_C_to_X(int); +int map_em_element_X_to_C(int); + #endif // EXPORT_H