X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=inline;f=src%2Fgame_em%2Finit.c;h=9a3dadb8ebe962e9b65529cc5cf6460f656a5400;hb=86e1890b2d87dd7710b320e2b306c7291d41e2a5;hp=679993a6c24dfede2368fc82626bca38e6220f9c;hpb=f47cd4b09952aaf95d16542f6b53f2d8bf9e1d7d;p=rocksndiamonds.git diff --git a/src/game_em/init.c b/src/game_em/init.c index 679993a6..9a3dadb8 100644 --- a/src/game_em/init.c +++ b/src/game_em/init.c @@ -6,11 +6,12 @@ #include #include -#include "game_em.h" +#include "main_em.h" #include "global.h" #include "display.h" #include "sample.h" +#include "level.h" Bitmap *objBitmap; @@ -121,6 +122,7 @@ char *progname; char *arg_basedir; extern void tab_generate(); +extern void tab_generate_graphics_info_em(); extern void ulaw_generate(); int open_all(void) @@ -243,6 +245,9 @@ void em_open_all() if (open_all() != 0) Error(ERR_EXIT, "em_open_all(): open_all() failed"); + /* after "open_all()", because we need the graphic bitmaps to be defined */ + tab_generate_graphics_info_em(); + game_init_vars(); } @@ -350,3 +355,21 @@ void sound_play(void) memset(play, 0, sizeof(play)); } + +unsigned int InitEngineRND_EM(long seed) +{ + if (seed == NEW_RANDOMIZE) + { + int simple_rnd = SimpleRND(1000); + int i; + + for (i = 0; i < simple_rnd || Random == NEW_RANDOMIZE; i++) + Random = Random * 129 + 1; + + seed = Random; + } + + Random = seed; + + return (unsigned int) seed; +}