X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_em%2Flevel.h;h=46ba9e4038825e8d5a49750a74bbf92fbf7b881b;hb=d4b0925a000fb490f5ade0feecdd4781fc8d0bd5;hp=b2e4b3c127f6f8b6d807c7cfd8efc209949f4141;hpb=da8f8eaa9d466f33d94ff884230a613b3f239700;p=rocksndiamonds.git diff --git a/src/game_em/level.h b/src/game_em/level.h index b2e4b3c1..46ba9e40 100644 --- a/src/game_em/level.h +++ b/src/game_em/level.h @@ -22,7 +22,7 @@ struct LEVEL /* fill in all below /every/ time you read a level */ unsigned int alien_score; /* alien popped by stone/spring score */ - unsigned int ameuba_time; /* ameuba speed */ + unsigned int amoeba_time; /* amoeba speed */ unsigned int android_move_cnt; /* android move time counter */ unsigned int android_move_time; /* android move reset time */ unsigned int android_clone_cnt; /* android clone time counter */ @@ -76,24 +76,28 @@ struct PLAYER unsigned int y; unsigned int oldx; unsigned int oldy; + unsigned joy_n:1; unsigned joy_e:1; unsigned joy_s:1; unsigned joy_w:1; - unsigned joy_fire:1; + unsigned joy_snap:1; + unsigned joy_drop:1; unsigned joy_stick:1; unsigned joy_spin:1; }; #endif -extern unsigned long Random; +extern unsigned long RandomEM; extern struct PLAYER ply1; extern struct PLAYER ply2; extern struct LEVEL lev; 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_player[2][SPR_MAX][8]; extern unsigned short **Boom; extern unsigned short **Cave;