X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Finit.c;h=d466c7e5a215b132c128eaf448bb10478d08626f;hb=e557b2b5d9951a4e692fd4e32a5cf45c84252c64;hp=726f78560b8f25eae13d3a5cd26c8c0337879221;hpb=1256664ceac31f448a0139edd3bd0dc8fa5a8697;p=rocksndiamonds.git diff --git a/src/init.c b/src/init.c index 726f7856..d466c7e5 100644 --- a/src/init.c +++ b/src/init.c @@ -1,17 +1,18 @@ /*********************************************************** * Rocks'n'Diamonds -- McDuffin Strikes Back! * *----------------------------------------------------------* -* ©1995 Artsoft Development * -* Holger Schemel * -* 33659 Bielefeld-Senne * -* Telefon: (0521) 493245 * -* eMail: aeglos@valinor.owl.de * -* aeglos@uni-paderborn.de * -* q99492@pbhrzx.uni-paderborn.de * +* (c) 1995-98 Artsoft Entertainment * +* Holger Schemel * +* Oststrasse 11a * +* 33604 Bielefeld * +* phone: ++49 +521 290471 * +* email: aeglos@valinor.owl.de * *----------------------------------------------------------* * init.c * ***********************************************************/ +#include + #include "init.h" #include "misc.h" #include "sound.h" @@ -21,8 +22,7 @@ #include "joystick.h" #include "gfxload.h" #include "gifload.h" - -#include +#include "network.h" #ifdef DEBUG /* @@ -44,8 +44,9 @@ struct IconFileInfo static int sound_process_id = 0; +static void InitServer(void); static void InitLevelAndPlayerInfo(void); -static void InitDisplay(int, char **); +static void InitDisplay(void); static void InitSound(void); static void InitSoundProcess(void); static void InitWindow(int, char **); @@ -56,6 +57,7 @@ static void InitElementProperties(void); void OpenAll(int argc, char *argv[]) { InitLevelAndPlayerInfo(); + InitServer(); InitCounter(); InitSound(); @@ -63,10 +65,10 @@ void OpenAll(int argc, char *argv[]) InitJoystick(); InitRND(NEW_RANDOMIZE); - signal(SIGINT, CloseAll); - signal(SIGTERM, CloseAll); + signal(SIGINT, CloseAllAndExit); + signal(SIGTERM, CloseAllAndExit); - InitDisplay(argc, argv); + InitDisplay(); InitWindow(argc, argv); XMapWindow(display, window); @@ -80,13 +82,29 @@ void OpenAll(int argc, char *argv[]) void InitLevelAndPlayerInfo() { + local_player = &stored_player[0]; + if (!LoadLevelInfo()) /* global level info */ - CloseAll(); + Error(ERR_EXIT, NULL); LoadPlayerInfo(PLAYER_SETUP); /* global setup info */ LoadPlayerInfo(PLAYER_LEVEL); /* level specific info */ } +void InitServer() +{ + standalone = FALSE + TRUE; + + if (standalone) + return; + + if (!ConnectToServer(server_host, server_port)) + Error(ERR_EXIT, "cannot connect to multiplayer server"); + + SendNicknameToServer(local_player->alias_name); + SendProtocolVersionToServer(); +} + void InitSound() { int i; @@ -97,15 +115,15 @@ void InitSound() #ifndef MSDOS if (access(sound_device_name,W_OK)<0) { - fprintf(stderr,"%s: cannot access sound device - no sounds\n",progname); - sound_status=SOUND_OFF; + Error(ERR_RETURN, "cannot access sound device - no sounds"); + sound_status = SOUND_OFF; return; } if ((sound_device=open(sound_device_name,O_WRONLY))<0) { - fprintf(stderr,"%s: cannot open sound device - no sounds\n",progname); - sound_status=SOUND_OFF; + Error(ERR_RETURN, "cannot open sound device - no sounds"); + sound_status = SOUND_OFF; return; } @@ -143,14 +161,14 @@ void InitSoundProcess() #ifndef MSDOS if (pipe(sound_pipe)<0) { - fprintf(stderr,"%s: cannot create pipe - no sounds\n",progname); + Error(ERR_RETURN, "cannot create pipe - no sounds"); sound_status=SOUND_OFF; return; } if ((sound_process_id=fork())<0) { - fprintf(stderr,"%s: cannot create child process - no sounds\n",progname); + Error(ERR_RETURN, "cannot create child process - no sounds"); sound_status=SOUND_OFF; return; } @@ -172,16 +190,16 @@ void InitJoystick() #ifndef MSDOS if (access(joystick_device_name[joystick_nr],R_OK)<0) { - fprintf(stderr,"%s: cannot access joystick device '%s'\n", - progname,joystick_device_name[joystick_nr]); + Error(ERR_RETURN, "cannot access joystick device '%s'", + joystick_device_name[joystick_nr]); joystick_status = JOYSTICK_OFF; return; } if ((joystick_device=open(joystick_device_name[joystick_nr],O_RDONLY))<0) { - fprintf(stderr,"%s: cannot open joystick device '%s'\n", - progname,joystick_device_name[joystick_nr]); + Error(ERR_RETURN, "cannot open joystick device '%s'", + joystick_device_name[joystick_nr]); joystick_status = JOYSTICK_OFF; return; } @@ -193,37 +211,16 @@ void InitJoystick() #endif } -void InitDisplay(int argc, char *argv[]) +void InitDisplay() { - char *display_name = NULL; XVisualInfo vinfo_template, *vinfo; int num_visuals; unsigned int depth; - int i; - - /* get X server to connect to, if given as an argument */ - for (i=1;i= GFX_START_ROCKSSCREEN && - graphic <= GFX_END_ROCKSSCREEN) + if (graphic >= GFX_START_ROCKSSCREEN && + graphic <= GFX_END_ROCKSSCREEN) { src_pixmap = clipmask[PIX_BACK]; graphic -= GFX_START_ROCKSSCREEN; @@ -545,11 +539,7 @@ void InitGfx() } if (!pix[PIX_DB_BACK] || !pix[PIX_DB_DOOR]) - { - fprintf(stderr, "%s: cannot create additional Pixmaps!\n",progname); - CloseAll(); - exit(-1); - } + Error(ERR_EXIT, "cannot create additional pixmaps"); for(i=0;ipicture_filename); - CloseAll(); - exit(-1); - } + Error(ERR_EXIT, "cannot get graphics for '%s'", pic->picture_filename); } /* zugehörige Maske laden (wenn vorhanden) */ @@ -723,19 +690,11 @@ void LoadGfx(int pos, struct PictureFileInfo *pic) case BitmapSuccess: break; case BitmapOpenFailed: - fprintf(stderr,"Bitmap file open failed on '%s' !\n",filename); - CloseAll(); - exit(-1); - break; + Error(ERR_EXIT, "cannot open XBM file '%s'", filename); case BitmapFileInvalid: - fprintf(stderr,"Bitmap file invalid: '%s' !\n",filename); - CloseAll(); - exit(-1); - break; + Error(ERR_EXIT, "invalid XBM file '%s'", filename); case BitmapNoMemory: - fprintf(stderr,"No memory for file '%s' !\n",filename); - CloseAll(); - exit(-1); + Error(ERR_EXIT, "not enough memory for XBM file '%s'", filename); break; default: break; @@ -750,12 +709,7 @@ void LoadGfx(int pos, struct PictureFileInfo *pic) #endif if (!clipmask[pos]) - { - fprintf(stderr, "%s: cannot get clipmask for '%s'.\n", - progname, pic->picture_filename); - CloseAll(); - exit(-1); - } + Error(ERR_EXIT, "cannot get clipmask for '%s'", pic->picture_filename); } } @@ -809,6 +763,9 @@ void InitElementProperties() EL_BETON, EL_MAUERWERK, EL_MAUER_LEBT, + EL_MAUER_X, + EL_MAUER_Y, + EL_MAUER_XY, EL_FELSBODEN, EL_AUSGANG_ZU, EL_AUSGANG_ACT, @@ -910,6 +867,9 @@ void InitElementProperties() EL_MAUERWERK, EL_FELSBODEN, EL_MAUER_LEBT, + EL_MAUER_X, + EL_MAUER_Y, + EL_MAUER_XY, EL_MAUERND }; static int ep_mauer_num = sizeof(ep_mauer)/sizeof(int); @@ -1201,6 +1161,16 @@ void InitElementProperties() }; static int ep_pushable_num = sizeof(ep_pushable)/sizeof(int); + static int ep_player[] = + { + EL_SPIELFIGUR, + EL_SPIELER1, + EL_SPIELER2, + EL_SPIELER3, + EL_SPIELER4 + }; + static int ep_player_num = sizeof(ep_player)/sizeof(int); + static long ep_bit[] = { EP_BIT_AMOEBALIVE, @@ -1226,7 +1196,8 @@ void InitElementProperties() EP_BIT_INACTIVE, EP_BIT_EXPLOSIVE, EP_BIT_MAMPF3, - EP_BIT_PUSHABLE + EP_BIT_PUSHABLE, + EP_BIT_PLAYER }; static int *ep_array[] = { @@ -1253,7 +1224,8 @@ void InitElementProperties() ep_inactive, ep_explosive, ep_mampf3, - ep_pushable + ep_pushable, + ep_player }; static int *ep_num[] = { @@ -1280,7 +1252,8 @@ void InitElementProperties() &ep_inactive_num, &ep_explosive_num, &ep_mampf3_num, - &ep_pushable_num + &ep_pushable_num, + &ep_player_num }; static int num_properties = sizeof(ep_num)/sizeof(int *); @@ -1294,7 +1267,7 @@ void InitElementProperties() Elementeigenschaften[i] |= (EP_BIT_CHAR | EP_BIT_INACTIVE); } -void CloseAll() +void CloseAllAndExit(int exit_value) { int i; @@ -1334,5 +1307,5 @@ void CloseAll() XCloseDisplay(display); } - exit(0); + exit(exit_value); }