fixed code to compile with current gcc and 64-bit systems 0.9-compilable
authorHolger Schemel <info@artsoft.org>
Fri, 16 Dec 2016 15:13:15 +0000 (16:13 +0100)
committerHolger Schemel <info@artsoft.org>
Fri, 16 Dec 2016 15:24:53 +0000 (16:24 +0100)
15 files changed:
src/editor.c
src/editor.h
src/events.c
src/game.c
src/game.h
src/init.c
src/main.c
src/main.h
src/misc.c
src/misc.h
src/screens.c
src/sound.c
src/sound.h
src/tools.c
src/tools.h

index ee7fe4e58942403d9a98ae51274dee45b79c515f..8aa1971f8e93be9a577cf6708555ba63af3b96cc 100644 (file)
@@ -727,7 +727,7 @@ void LevelEd(int mx, int my, int button)
     }
     else                       /********** KONTROLL-FENSTER **********/
     {
-      static long choice_delay = 0;
+      static int choice_delay = 0;
       int choice = CheckCountButtons(mx,my,button);
       int step = (button==1 ? 1 : button==2 ? 5 : button==3 ? 10 : 0);
 
@@ -1085,7 +1085,7 @@ void LevelNameTyping(KeySym key)
   }
 }
 
-void DrawEditButton(unsigned long state)
+void DrawEditButton(unsigned int state)
 {
   int i;
   int xpos = 0, ypos = 1, xsize = 2, ysize = 3;
@@ -1129,7 +1129,7 @@ void DrawEditButton(unsigned long state)
   redraw_mask |= REDRAW_DOOR_2;
 }
 
-void DrawCtrlButton(unsigned long state)
+void DrawCtrlButton(unsigned int state)
 {
   int i;
   int xpos = 0, ypos = 1, xsize = 2, ysize = 3;
index d01f813653cf0931d2875e1f4f098580701cf69a..b929fbd99f04f9fa99f9216323aeebd30a347b62 100644 (file)
@@ -300,8 +300,8 @@ void DrawLevelEd(void);
 void ScrollMiniLevel(int, int, int);
 void LevelEd(int, int, int);
 void LevelNameTyping(KeySym);
-void DrawEditButton(unsigned long state);
-void DrawCtrlButton(unsigned long state);
+void DrawEditButton(unsigned int state);
+void DrawCtrlButton(unsigned int state);
 void DrawElemButton(int, int);
 void DrawCountButton(int, int);
 int CheckEditButtons(int, int, int);
index 1e8fcd1c37fc53a57a5c5553c3aea5d4ba118e8c..788cca8479145d1e024a75b620e7a8eaf03a7476 100644 (file)
@@ -604,7 +604,7 @@ void HandleJoystick()
     case SETUP:
     {
       int dx = 0, dy = 0;
-      static long joystickmove_delay = 0;
+      static int joystickmove_delay = 0;
 
       if (DelayReached(&joystickmove_delay,15) || button)
       {
index 6d5ca5bc30f068ad08f84f09564a5fb1947a9dd8..9af32646b4161d64904a9dfeaaefeaa2945ef773 100644 (file)
@@ -82,6 +82,7 @@ void LoadLevelInfo()
   char filename[MAX_FILENAME];
   char cookie[MAX_FILENAME];
   FILE *file;
+  int ignored;
 
   sprintf(filename,"%s/%s",LEVEL_PATH,LEVDIR_FILENAME);
 
@@ -91,7 +92,7 @@ void LoadLevelInfo()
     CloseAll();
   }
 
-  fscanf(file,"%s\n",cookie);
+  ignored = fscanf(file,"%s\n",cookie);
   if (strcmp(cookie,LEVELDIR_COOKIE))  /* ungültiges Format? */
   {
     fprintf(stderr,"%s: wrong format of level info file!\n",progname);
@@ -103,10 +104,10 @@ void LoadLevelInfo()
   leveldir_nr = 0;
   for(i=0;i<MAX_LEVDIR_ENTRIES;i++)
   {
-    fscanf(file,"%s",leveldir[i].filename);
-    fscanf(file,"%s",leveldir[i].name);
-    fscanf(file,"%d",&leveldir[i].num_ready);
-    fscanf(file,"%d",&leveldir[i].num_free);
+    ignored = fscanf(file,"%s",leveldir[i].filename);
+    ignored = fscanf(file,"%s",leveldir[i].name);
+    ignored = fscanf(file,"%d",&leveldir[i].num_ready);
+    ignored = fscanf(file,"%d",&leveldir[i].num_free);
     if (feof(file))
       break;
 
@@ -126,6 +127,7 @@ void LoadLevel(int level_nr)
   char filename[MAX_FILENAME];
   char cookie[MAX_FILENAME];
   FILE *file;
+  char *ignored;
 
   sprintf(filename,"%s/%s/%d",
          LEVEL_PATH,leveldir[leveldir_nr].filename,level_nr);
@@ -138,7 +140,7 @@ void LoadLevel(int level_nr)
   }
   else
   {
-    fgets(cookie,LEVEL_COOKIE_LEN,file);
+    ignored = fgets(cookie,LEVEL_COOKIE_LEN,file);
     fgetc(file);
     if (strcmp(cookie,LEVEL_COOKIE))   /* ungültiges Format? */
     {
@@ -213,13 +215,14 @@ void LoadLevelTape(int level_nr)
   char filename[MAX_FILENAME];
   char cookie[MAX_FILENAME];
   FILE *file;
+  char *ignored;
 
   sprintf(filename,"%s/%s/%d.tape",
          LEVEL_PATH,leveldir[leveldir_nr].filename,level_nr);
 
   if ((file=fopen(filename,"r")))
   {
-    fgets(cookie,LEVELREC_COOKIE_LEN,file);
+    ignored = fgets(cookie,LEVELREC_COOKIE_LEN,file);
     fgetc(file);
     if (strcmp(cookie,LEVELREC_COOKIE))        /* ungültiges Format? */
     {
@@ -271,6 +274,7 @@ void LoadScore(int level_nr)
   char filename[MAX_FILENAME];
   char cookie[MAX_FILENAME];
   FILE *file;
+  char *ignored;
 
   sprintf(filename,"%s/%s/%s",
          SCORE_PATH,leveldir[leveldir_nr].filename,SCORE_FILENAME);
@@ -291,7 +295,7 @@ void LoadScore(int level_nr)
 
   if (file)
   {
-    fgets(cookie,SCORE_COOKIE_LEN,file);
+    ignored = fgets(cookie,SCORE_COOKIE_LEN,file);
     if (strcmp(cookie,SCORE_COOKIE))   /* ungültiges Format? */
     {
       fprintf(stderr,"%s: wrong format of score file!\n",progname);
@@ -331,6 +335,7 @@ void LoadPlayerInfo(int mode)
   FILE *file;
   char *login_name = GetLoginName();
   struct PlayerInfo default_player, new_player;
+  char *ignored;
 
   if (mode==PLAYER_LEVEL)
     sprintf(filename,"%s/%s/%s",
@@ -364,7 +369,7 @@ void LoadPlayerInfo(int mode)
 
   if (file)
   {
-    fgets(cookie,NAMES_COOKIE_LEN,file);
+    ignored = fgets(cookie,NAMES_COOKIE_LEN,file);
     if (strcmp(cookie,NAMES_COOKIE))   /* ungültiges Format? */
     {
       fprintf(stderr,"%s: wrong format of names file '%s'!\n",
@@ -580,6 +585,7 @@ void SavePlayerInfo(int mode)
   char cookie[MAX_FILENAME];
   FILE *file;
   struct PlayerInfo default_player;
+  char *ignored;
 
   if (mode==PLAYER_LEVEL)
     sprintf(filename,"%s/%s/%s",
@@ -594,7 +600,7 @@ void SavePlayerInfo(int mode)
     return;
   }
 
-  fgets(cookie,NAMES_COOKIE_LEN,file);
+  ignored = fgets(cookie,NAMES_COOKIE_LEN,file);
   if (strcmp(cookie,NAMES_COOKIE))     /* ungültiges Format? */
   {
     fprintf(stderr,"%s: wrong format of names file '%s'!\n",
@@ -953,7 +959,7 @@ BOOL NewHiScore()
 #ifdef ONE_PER_NAME
       put_into_list:
 #endif
-      sprintf(highscore[k].Name,player.alias_name);
+      sprintf(highscore[k].Name,"%s",player.alias_name);
       highscore[k].Score = Score; 
       position = k;
       break;
@@ -1818,7 +1824,7 @@ void ContinueMoving(int x, int y)
 
 void AmoebeWaechst(int x, int y)
 {
-  static long sound_delay = 0;
+  static int sound_delay = 0;
   static int sound_delay_value = 0;
 
   CheckExploding=TRUE;
@@ -2170,7 +2176,7 @@ void AusgangstuerOeffnen(int x, int y)
 
 int GameActions(int mx, int my, int button)
 {
-  static long time_delay=0, action_delay=0;
+  static int time_delay=0, action_delay=0;
   int Action;
 
   if (TimeLeft>0 && DelayReached(&time_delay,100) && !tape.pausing)
@@ -2343,7 +2349,7 @@ BOOL MoveFigureOneStep(int dx, int dy)
 
 BOOL MoveFigure(int dx, int dy)
 {
-  static long move_delay = 0;
+  static int move_delay = 0;
   int moved = MF_NO_ACTION;
 
   if (GameOver || (!dx && !dy))
@@ -2490,7 +2496,7 @@ int DigField(int x, int y, int mode)
 {
   int dx=x-JX, dy=y-JY;
   int element;
-  static long push_delay = 0;
+  static int push_delay = 0;
   static int push_delay_value = 20;
 
   if (mode==DF_NO_PUSH)
@@ -2898,7 +2904,7 @@ void TapeErase()
   tape.length = 0;
 }
 
-void DrawVideoDisplay(unsigned long state, unsigned long value)
+void DrawVideoDisplay(unsigned int state, unsigned int value)
 {
   int i;
   int part1 = 0, part2 = 1;
@@ -3024,7 +3030,7 @@ void DrawVideoDisplay(unsigned long state, unsigned long value)
     redraw_mask |= REDRAW_VIDEO_3;
 }
 
-void DrawSoundDisplay(unsigned long state)
+void DrawSoundDisplay(unsigned int state)
 {
   int pos, cx = DOOR_GFX_PAGEX4, cy = 0;
 
@@ -3046,7 +3052,7 @@ void DrawSoundDisplay(unsigned long state)
   redraw_mask |= REDRAW_DOOR_1;
 }
 
-void DrawGameButton(unsigned long state)
+void DrawGameButton(unsigned int state)
 {
   int pos, cx = DOOR_GFX_PAGEX4, cy = -GAME_BUTTON_YSIZE;
 
@@ -3065,7 +3071,7 @@ void DrawGameButton(unsigned long state)
   redraw_mask |= REDRAW_DOOR_1;
 }
 
-void DrawChooseButton(unsigned long state)
+void DrawChooseButton(unsigned int state)
 {
   int pos, cx = DOOR_GFX_PAGEX4, cy = 0;
 
@@ -3082,7 +3088,7 @@ void DrawChooseButton(unsigned long state)
   redraw_mask |= REDRAW_DOOR_1;
 }
 
-void DrawConfirmButton(unsigned long state)
+void DrawConfirmButton(unsigned int state)
 {
   int cx = DOOR_GFX_PAGEX4, cy = 0;
 
index 422343d8484b29cd064a2322e5cd5d0e531f4ac8..a4ca2e8567f00bfda2e649f87a162657acdd6584 100644 (file)
@@ -94,10 +94,10 @@ int TapePlayAction(void);
 BOOL TapePlayDelay(void);
 void TapeStop(void);
 void TapeErase(void);
-void DrawVideoDisplay(unsigned long, unsigned long);
-void DrawSoundDisplay(unsigned long);
-void DrawGameButton(unsigned long);
-void DrawChooseButton(unsigned long);
-void DrawConfirmButton(unsigned long);
+void DrawVideoDisplay(unsigned int, unsigned int);
+void DrawSoundDisplay(unsigned int);
+void DrawGameButton(unsigned int);
+void DrawChooseButton(unsigned int);
+void DrawConfirmButton(unsigned int);
 
 #endif
index ec0a1c74a26369bf9e7361bc3b3c063552ce73a8..ca18297207c32fbce2a1610102a2b8ee5fe779f6 100644 (file)
@@ -187,10 +187,10 @@ void InitWindow(int argc, char *argv[])
   XClassHint class_hints;
   XTextProperty windowName, iconName;
   XGCValues gc_values;
-  unsigned long gc_valuemask;
+  unsigned int gc_valuemask;
   char *window_name = "Rocks'n'Diamonds";
   char *icon_name = "Rocks'n'Diamonds";
-  long window_event_mask;
+  int window_event_mask;
 
   width = WIN_XSIZE;
   height = WIN_YSIZE;
@@ -276,9 +276,9 @@ void InitGfx()
   unsigned int width,height;
   int hot_x,hot_y;
   XGCValues gc_values;
-  unsigned long gc_valuemask;
+  unsigned int gc_valuemask;
   XGCValues clip_gc_values;
-  unsigned long clip_gc_valuemask;
+  unsigned int clip_gc_valuemask;
   char filename[256];
   Pixmap shapemask;
 
index 2c237ce3d200a38ec360e103e51feb0d0a87ea57..b15d193a7001fe9e9b040fcd28d18c5e9705d6c9 100644 (file)
@@ -36,7 +36,7 @@ char         *sound_device_name = SOUND_DEVICE;
 int            joystick_device = 0;
 char          *joystick_device_name[2] = { DEV_JOYSTICK_0, DEV_JOYSTICK_1 };
 int            width, height;
-unsigned long  pen_fg, pen_bg;
+unsigned int   pen_fg, pen_bg;
 
 int            game_status = MAINMENU;
 int            button_status = MB_NOT_PRESSED, motion_status = FALSE;
index 761bc9f5fa2dda6209b90ce9ace18526b1d01cc1..07509387a6d1cd6849b7371a55705088c292ecd7 100644 (file)
@@ -187,9 +187,9 @@ struct RecordingInfo
 {
   int level_nr;
   unsigned int random_seed;
-  unsigned long date;
-  unsigned long counter;
-  unsigned long length;
+  unsigned int date;
+  unsigned int counter;
+  unsigned int length;
   BOOL recording, playing, pausing;
   struct
   {
@@ -204,6 +204,46 @@ struct JoystickInfo
   int yupper, ylower, ymiddle;
 };
 
+struct SoundHeader_SUN
+{
+  unsigned int magic;
+  unsigned int hdr_size;
+  unsigned int data_size;
+  unsigned int encoding;
+  unsigned int sample_rate;
+  unsigned int channels;
+};
+
+struct SoundHeader_8SVX
+{
+  char magic_FORM[4];
+  unsigned int chunk_size;
+  char magic_8SVX[4];
+};
+
+struct SoundInfo
+{ 
+  char *name;
+  char *file_ptr, *data_ptr;
+  int file_len, data_len;
+};
+
+struct SoundControl
+{
+  int nr;
+  int volume;
+  int stereo;
+  BOOL active;
+  BOOL loop;
+  BOOL fade_sound;
+  BOOL stop_sound;
+  BOOL stop_all_sounds;
+  int playingtime;
+  int playingpos;
+  int data_len;
+  char *data_ptr;
+};
+
 extern Display        *display;
 extern int             screen;
 extern Window                  window;
@@ -222,7 +262,7 @@ extern char        *sound_device_name;
 extern int             joystick_device;
 extern char           *joystick_device_name[2];
 extern int                     width, height;
-extern unsigned long   pen_fg, pen_bg;
+extern unsigned int    pen_fg, pen_bg;
 
 extern int             game_status;
 extern int             button_status, motion_status;
index a066cff5dcfa5cbdc26c0db36158551e3463b3bd..23fc73a13e045deda400f2ffa32241bd8f618626 100644 (file)
@@ -24,7 +24,7 @@
 #include <sys/param.h>
 #include <sys/types.h>
 
-void microsleep(unsigned long usec)
+void microsleep(unsigned int usec)
 {
   struct timeval delay;
 
@@ -36,7 +36,7 @@ void microsleep(unsigned long usec)
            progname);
 }
 
-unsigned long be2long(unsigned long *be)       /* big-endian -> longword */
+unsigned int be2int(unsigned int *be)  /* big-endian -> longword */
 {
   unsigned char *ptr = (unsigned char *)be;
 
@@ -56,7 +56,7 @@ unsigned int RND(unsigned int max)
   return(rand() % max);
 }
 
-unsigned int InitRND(long seed)
+unsigned int InitRND(int seed)
 {
   struct timeval current_time;
 
@@ -157,8 +157,8 @@ void DoAnimation()
 
 void HandleAnimation(int mode)
 {
-  static long animstart_delay = -1;
-  static long animstart_delay_value = 0;
+  static int animstart_delay = -1;
+  static int animstart_delay_value = 0;
   static BOOL anim_restart = TRUE;
   static BOOL reset_delay = TRUE;
   static int toon_nr = 0;
@@ -208,7 +208,7 @@ BOOL AnimateToon(int toon_nr, BOOL restart)
   static delta_x = 0, delta_y = 0;
   static int frame = 0, frame_step = 1;
   static BOOL horiz_move, vert_move;
-  static long anim_delay = 0;
+  static int anim_delay = 0;
   static int anim_delay_value = 0;
   struct AnimInfo *anim = &toon[toon_nr];
   static int width,height;
index c4cba8de7145ab664c899cdf506adb4ceef6bcb8..f0eac7f1125a6e0377cab68434c9e12681033dce 100644 (file)
@@ -84,11 +84,11 @@ struct AnimInfo
 
 #define NEW_RANDOMIZE  -1
 
-void microsleep(unsigned long);
-unsigned long be2long(unsigned long *);
+void microsleep(unsigned int);
+unsigned int be2int(unsigned int *);
 char *int2str(int, int);
 unsigned int RND(unsigned int);
-unsigned int InitRND(long);
+unsigned int InitRND(int);
 char *GetLoginName(void);
 
 void InitAnimation(void);
index 2d5d17c10b9fe84b7f367bb67e1544e783189d52..a519c1f83b21b30daf04c204520666b286923b31 100644 (file)
@@ -116,7 +116,7 @@ void HandleMainMenu(int mx, int my, int dx, int dy, int button)
               (x==15 && level_nr<LEVELDIR_SIZE(leveldir[leveldir_nr]))) &&
       button)
   {
-    static long level_delay = 0;
+    static int level_delay = 0;
     int step = (button==1 ? 1 : button==2 ? 5 : 10);
 
     if (!DelayReached(&level_delay,20))
@@ -227,7 +227,7 @@ void HandleMainMenu(int mx, int my, int dx, int dy, int button)
 #define HA_NEXT                        -999
 #define HA_END                 -1000
 
-static long helpscreen_state;
+static int helpscreen_state;
 static int helpscreen_step[MAX_HELPSCREEN_ELS];
 static int helpscreen_frame[MAX_HELPSCREEN_ELS];
 static int helpscreen_delay[MAX_HELPSCREEN_ELS];
@@ -496,7 +496,7 @@ void DrawHelpScreen()
 
 void HandleHelpScreen(int button)
 {
-  static long hs_delay = 0;
+  static int hs_delay = 0;
   int num_helpscreen_els_pages =
     (num_helpscreen_els + MAX_HELPSCREEN_ELS-1) / MAX_HELPSCREEN_ELS;
   int button_released = !button;
index b234a89069f001bf31ea19869248d10b88ffc386..2c4c5e778b494cad4b319e151470c15595945da1 100644 (file)
@@ -108,9 +108,10 @@ void SoundServer()
     {
       struct timeval delay = { 0, 0 };
       char *sample_ptr;
-      long sample_size, max_sample_size;
-      long fragment_size;
+      int sample_size, max_sample_size;
+      int fragment_size;
       BOOL stereo;
+      ssize_t ignored;
 
       if (playing_sounds || (sound_device=open(sound_device_name,O_WRONLY))>=0)
       {
@@ -231,7 +232,7 @@ void SoundServer()
          }
 
          /* finally play the sound fragment */
-         write(sound_device,playing_buffer,fragment_size);
+         ignored = write(sound_device,playing_buffer,fragment_size);
        }
 
        /* if no sounds playing, free device for other sound programs */
@@ -246,8 +247,8 @@ void SoundServer()
     {
       struct timeval delay = { 0, 0 };
       char *sample_ptr;
-      long sample_size, max_sample_size = SND_BLOCKSIZE;
-      long sample_rate = 8000; /* standard "/dev/audio" sampling rate */
+      int sample_size, max_sample_size = SND_BLOCKSIZE;
+      int sample_rate = 8000;  /* standard "/dev/audio" sampling rate */
       int wait_percent = 90;   /* wait 90% of the real playing time */
       int i;
 
@@ -614,7 +615,7 @@ BOOL LoadSound(struct SoundInfo *snd_info)
   snd_hdr = (struct SoundHeader_8SVX *)snd_info->file_ptr;
 
   if (strncmp(snd_hdr->magic_FORM,"FORM",4) ||
-      snd_info->file_len!=be2long(&snd_hdr->chunk_size)+8 ||
+      snd_info->file_len!=be2int(&snd_hdr->chunk_size)+8 ||
       strncmp(snd_hdr->magic_8SVX,"8SVX",4))
   {
     fprintf(stderr,"%s: '%s' is not an IFF/8SVX file or broken- no sounds\n",
@@ -628,20 +629,20 @@ BOOL LoadSound(struct SoundInfo *snd_info)
   {
     if (!strncmp(ptr,"VHDR",4))
     {
-      ptr+=be2long((unsigned long *)(ptr+4));
+      ptr+=be2int((unsigned int *)(ptr+4));
     }
     if (!strncmp(ptr,"ANNO",4))
     {
-      ptr+=be2long((unsigned long *)(ptr+4));
+      ptr+=be2int((unsigned int *)(ptr+4));
     }
     if (!strncmp(ptr,"CHAN",4))
     {
-      ptr+=be2long((unsigned long *)(ptr+4));
+      ptr+=be2int((unsigned int *)(ptr+4));
     }
     if (!strncmp(ptr,"BODY",4))
     {
       snd_info->data_ptr = ptr+8;
-      snd_info->data_len = be2long((unsigned long *)(ptr+4));
+      snd_info->data_len = be2int((unsigned int *)(ptr+4));
       return(TRUE);
     }
     ptr++;
index be853f8c2723e356a8b56ab39235d97206b01c3e..bc6b883e7e8dede4de70fdc9852aa752cab29fe1 100644 (file)
@@ -26,7 +26,7 @@
 #define VOXWARE
 #endif
 /* where is the right declaration for 'ioctl'? */
-extern void ioctl(long, long, void *);
+extern void ioctl(int, int, void *);
 #endif
 
 #define SND_BLOCKSIZE 4096
@@ -89,48 +89,8 @@ extern void ioctl(long, long, void *);
 #define SOUND_STATUS   SOUND_AVAILABLE
 #endif
 
-struct SoundHeader_SUN
-{
-  unsigned long magic;
-  unsigned long hdr_size;
-  unsigned long data_size;
-  unsigned long encoding;
-  unsigned long sample_rate;
-  unsigned long channels;
-};
-
-struct SoundHeader_8SVX
-{
-  char magic_FORM[4];
-  unsigned long chunk_size;
-  char magic_8SVX[4];
-};
-
-struct SoundInfo
-{ 
-  char *name;
-  char *file_ptr, *data_ptr;
-  long file_len, data_len;
-};
-
-struct SoundControl
-{
-  int nr;
-  int volume;
-  int stereo;
-  BOOL active;
-  BOOL loop;
-  BOOL fade_sound;
-  BOOL stop_sound;
-  BOOL stop_all_sounds;
-  int playingtime;
-  long playingpos;
-  long data_len;
-  char *data_ptr;
-};
-
 /* function from "misc.c" */
-unsigned long be2long(unsigned long *);
+unsigned int be2int(unsigned int *);
 
 /* sound server functions */
 void SoundServer(void);
index f1d2e259dcef0db190018ebd09d7c329a69c9b98..32e63091f3793e522919edeb3b9bb504968955f9 100644 (file)
@@ -112,7 +112,7 @@ void BackToFront()
 
 void FadeToFront()
 {
-  long fading_delay = 300000;
+  int fading_delay = 300000;
 
   if (fading_on && (redraw_mask & REDRAW_FIELD))
   {
@@ -901,7 +901,7 @@ BOOL AreYouSure(char *text, unsigned int ays_state)
       ty--; 
       continue; 
     }
-    sprintf(txt,text); 
+    sprintf(txt,"%s",text); 
     txt[tl]=0;
     DrawTextExt(pix[PIX_DB_DOOR],gc,
                DOOR_GFX_PAGEX1+51-(tl*14)/2,SY+ty*16,txt,FS_SMALL,FC_YELLOW);
@@ -1185,11 +1185,11 @@ void MoveDoor(unsigned int door_state)
     door2 = door_state & DOOR_ACTION_2;
 }
 
-long mainCounter(int mode)
+int mainCounter(int mode)
 {
   static struct timeval base_time = { 0, 0 };
   struct timeval current_time;
-  long counter_ms;
+  int counter_ms;
 
   gettimeofday(&current_time,NULL);
   if (mode==0 || current_time.tv_sec<base_time.tv_sec)
@@ -1209,40 +1209,40 @@ void InitCounter() /* set counter back to zero */
   mainCounter(0);
 }
 
-long Counter() /* returns 1/100 secs since last call of InitCounter() */
+int Counter()  /* returns 1/100 secs since last call of InitCounter() */
 {
   return(mainCounter(1));
 }
 
-long Counter2()        /* returns 1/1000 secs since last call of InitCounter() */
+int Counter2() /* returns 1/1000 secs since last call of InitCounter() */
 {
   return(mainCounter(2));
 }
 
-void WaitCounter(long value)   /* wait for counter to reach value */
+void WaitCounter(int value)    /* wait for counter to reach value */
 {
-  long wait;
+  int wait;
 
   while((wait=value-Counter())>0)
     microsleep(wait*10000);
 }
 
-void WaitCounter2(long value)  /* wait for counter to reach value */
+void WaitCounter2(int value)   /* wait for counter to reach value */
 {
-  long wait;
+  int wait;
 
   while((wait=value-Counter2())>0)
     microsleep(wait*1000);
 }
 
-void Delay(long value)
+void Delay(int value)
 {
   microsleep(value);
 }
 
-BOOL DelayReached(long *counter_var, int delay)
+BOOL DelayReached(int *counter_var, int delay)
 {
-  long actual_counter = Counter();
+  int actual_counter = Counter();
 
   if (actual_counter>*counter_var+delay || actual_counter<*counter_var)
   {
@@ -1275,6 +1275,7 @@ void LoadJoystickData()
   int i;
   char cookie[256];
   FILE *file;
+  int ignored;
 
   if (joystick_status==JOYSTICK_OFF)
     return;
@@ -1282,7 +1283,7 @@ void LoadJoystickData()
   if (!(file=fopen(JOYDAT_FILE,"r")))
     return;
 
-  fscanf(file,"%s",cookie);
+  ignored = fscanf(file,"%s",cookie);
   if (strcmp(cookie,JOYSTICK_COOKIE))  /* ungültiges Format? */
   {
     fprintf(stderr,"%s: wrong format of joystick file!\n",progname);
@@ -1292,11 +1293,13 @@ void LoadJoystickData()
 
   for(i=0;i<2;i++)
   {
-    fscanf(file,"%s",cookie);
-    fscanf(file, "%d %d %d \n",
-          &joystick[i].xleft, &joystick[i].xmiddle, &joystick[i].xright);
-    fscanf(file, "%d %d %d \n",
-          &joystick[i].yupper, &joystick[i].ymiddle, &joystick[i].ylower);
+    ignored = fscanf(file,"%s",cookie);
+    ignored =
+      fscanf(file, "%d %d %d \n",
+            &joystick[i].xleft, &joystick[i].xmiddle, &joystick[i].xright);
+    ignored =
+      fscanf(file, "%d %d %d \n",
+            &joystick[i].yupper, &joystick[i].ymiddle, &joystick[i].ylower);
   }
   fclose(file);
 
@@ -1359,7 +1362,7 @@ void CheckJoystickData()
 
 int JoystickPosition(int middle, int margin, int actual)
 {
-  long range, pos;
+  int range, pos;
   int percentage;
 
   if (margin<middle && actual>middle)
index b3fa84e444a4c4f37ff8929ba6748a8a24f8a793..9bb11c587a9b08a61688e7382791ad29de405d18 100644 (file)
@@ -80,14 +80,14 @@ BOOL AreYouSure(char *, unsigned int);
 void OpenDoor(unsigned int);
 void CloseDoor(unsigned int);
 void MoveDoor(unsigned int);
-long mainCounter(int);
+int mainCounter(int);
 void InitCounter(void);
-long Counter(void);
-long Counter2(void);
-void WaitCounter(long);
-void WaitCounter2(long);
-void Delay(long);
-BOOL DelayReached(long *, int);
+int Counter(void);
+int Counter2(void);
+void WaitCounter(int);
+void WaitCounter2(int);
+void Delay(int);
+BOOL DelayReached(int *, int);
 int ReadPixel(Drawable, int, int);
 int el2gfx(int);
 void LoadJoystickData(void);