rnd-20001125-2-src
authorHolger Schemel <info@artsoft.org>
Sat, 25 Nov 2000 02:36:28 +0000 (03:36 +0100)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 08:35:06 +0000 (10:35 +0200)
src/init.c
src/main.c
src/main.h
src/msdos.c
src/msdos.h
src/sdl.c
src/sdl.h
src/system.c
src/system.h
src/x11.c

index 88a5edf097e61bec42c3971f4ee12e83571fdfd8..a8ce6a50bc357ce2dde3cede3b3535b47224973e 100644 (file)
@@ -35,14 +35,6 @@ struct PictureFileInfo
   boolean picture_with_mask;
 };
 
-#if 0
-struct IconFileInfo
-{
-  char *picture_filename;
-  char *picturemask_filename;
-};
-#endif
-
 #ifndef USE_SDL_LIBRARY
 static int sound_process_id = 0;
 #endif
@@ -50,14 +42,8 @@ static int sound_process_id = 0;
 static void InitPlayerInfo(void);
 static void InitLevelInfo(void);
 static void InitNetworkServer(void);
-#if 0
-static void InitDisplay(void);
-#endif
 static void InitSound(void);
 static void InitSoundServer(void);
-#if 0
-static void InitWindow(int, char **);
-#endif
 static void InitGfx(void);
 static void InitGfxBackground(void);
 static void LoadGfx(int, struct PictureFileInfo *);
@@ -93,28 +79,9 @@ void OpenAll(int argc, char *argv[])
   signal(SIGINT, CloseAllAndExit);
   signal(SIGTERM, CloseAllAndExit);
 
-
   InitBufferedDisplay(&backbuffer, &window);
   InitEventFilter(FilterMouseMotionEvents);
 
-
-
-#if 0
-
-  InitDisplay();
-  InitWindow(argc, argv);
-
-#if 0
-#ifndef USE_SDL_LIBRARY
-  XMapWindow(display, window);
-  FlushDisplay();
-#endif
-#endif
-
-#endif
-
-
-
   InitGfx();
   InitElementProperties();     /* initializes IS_CHAR() for el2gfx() */
 
@@ -415,210 +382,6 @@ void InitJoysticks()
 #endif /* !USE_SDL_LIBRARY */
 }
 
-
-
-#if 0
-
-void InitDisplay()
-{
-#ifdef USE_SDL_LIBRARY
-  /* initialize SDL video */
-  if (SDL_Init(SDL_INIT_VIDEO) < 0)
-    Error(ERR_EXIT, "SDL_Init() failed: %s", SDL_GetError());
-
-  /* automatically cleanup SDL stuff after exit() */
-  atexit(SDL_Quit);
-
-#else /* !USE_SDL_LIBRARY */
-
-#ifndef MSDOS
-  XVisualInfo vinfo_template, *vinfo;
-  int num_visuals;
-#endif
-  unsigned int depth;
-
-  /* connect to X server */
-  if (!(display = XOpenDisplay(options.display_name)))
-    Error(ERR_EXIT, "cannot connect to X server %s",
-         XDisplayName(options.display_name));
-
-  screen = DefaultScreen(display);
-  visual = DefaultVisual(display, screen);
-  depth  = DefaultDepth(display, screen);
-  cmap   = DefaultColormap(display, screen);
-
-#ifndef MSDOS
-  /* look for good enough visual */
-  vinfo_template.screen = screen;
-  vinfo_template.class = (depth == 8 ? PseudoColor : TrueColor);
-  vinfo_template.depth = depth;
-  if ((vinfo = XGetVisualInfo(display, VisualScreenMask | VisualClassMask |
-                             VisualDepthMask, &vinfo_template, &num_visuals)))
-  {
-    visual = vinfo->visual;
-    XFree((void *)vinfo);
-  }
-
-  /* got appropriate visual? */
-  if (depth < 8)
-  {
-    printf("Sorry, displays with less than 8 bits per pixel not supported.\n");
-    exit(-1);
-  }
-  else if ((depth ==8 && visual->class != PseudoColor) ||
-          (depth > 8 && visual->class != TrueColor &&
-           visual->class != DirectColor))
-  {
-    printf("Sorry, cannot get appropriate visual.\n");
-    exit(-1);
-  }
-#endif /* !MSDOS */
-#endif /* !USE_SDL_LIBRARY */
-}
-
-void InitWindow(int argc, char *argv[])
-{
-#ifdef USE_SDL_LIBRARY
-  /* open SDL video output device (window or fullscreen mode) */
-#if 0
-  if ((backbuffer = SDL_SetVideoMode(WIN_XSIZE, WIN_YSIZE, WIN_SDL_DEPTH,
-                                SDL_HWSURFACE))
-      == NULL)
-    Error(ERR_EXIT, "SDL_SetVideoMode() failed: %s", SDL_GetError());
-#else
-  if (!SetVideoMode())
-    Error(ERR_EXIT, "setting video mode failed");
-#endif
-
-  /* set window and icon title */
-  SDL_WM_SetCaption(WINDOW_TITLE_STRING, WINDOW_TITLE_STRING);
-
-  /* set event filter to filter out certain mouse motion events */
-  SDL_SetEventFilter(EventFilter);
-
-#else /* !USE_SDL_LIBRARY */
-
-  unsigned int border_width = 4;
-  XGCValues gc_values;
-  unsigned long gc_valuemask;
-#ifndef MSDOS
-  XTextProperty windowName, iconName;
-  Pixmap icon_pixmap, iconmask_pixmap;
-  unsigned int icon_width, icon_height;
-  int icon_hot_x, icon_hot_y;
-  char icon_filename[256];
-  XSizeHints size_hints;
-  XWMHints wm_hints;
-  XClassHint class_hints;
-  char *window_name = WINDOW_TITLE_STRING;
-  char *icon_name = WINDOW_TITLE_STRING;
-  long window_event_mask;
-  Atom proto_atom = None, delete_atom = None;
-#endif
-  int screen_width, screen_height;
-  int win_xpos = WIN_XPOS, win_ypos = WIN_YPOS;
-  unsigned long pen_fg = WhitePixel(display,screen);
-  unsigned long pen_bg = BlackPixel(display,screen);
-  const int width = WIN_XSIZE, height = WIN_YSIZE;
-
-#ifndef MSDOS
-  static struct IconFileInfo icon_pic =
-  {
-    "rocks_icon.xbm",
-    "rocks_iconmask.xbm"
-  };
-#endif
-
-  screen_width = XDisplayWidth(display, screen);
-  screen_height = XDisplayHeight(display, screen);
-
-  win_xpos = (screen_width - width) / 2;
-  win_ypos = (screen_height - height) / 2;
-
-  window = XCreateSimpleWindow(display, RootWindow(display, screen),
-                              win_xpos, win_ypos, width, height, border_width,
-                              pen_fg, pen_bg);
-
-#ifndef MSDOS
-  proto_atom = XInternAtom(display, "WM_PROTOCOLS", FALSE);
-  delete_atom = XInternAtom(display, "WM_DELETE_WINDOW", FALSE);
-  if ((proto_atom != None) && (delete_atom != None))
-    XChangeProperty(display, window, proto_atom, XA_ATOM, 32,
-                   PropModePrepend, (unsigned char *) &delete_atom, 1);
-
-  sprintf(icon_filename, "%s/%s/%s",
-         options.ro_base_directory, GRAPHICS_DIRECTORY,
-         icon_pic.picture_filename);
-  XReadBitmapFile(display,window,icon_filename,
-                 &icon_width,&icon_height,
-                 &icon_pixmap,&icon_hot_x,&icon_hot_y);
-  if (!icon_pixmap)
-    Error(ERR_EXIT, "cannot read icon bitmap file '%s'", icon_filename);
-
-  sprintf(icon_filename, "%s/%s/%s",
-         options.ro_base_directory, GRAPHICS_DIRECTORY,
-         icon_pic.picturemask_filename);
-  XReadBitmapFile(display,window,icon_filename,
-                 &icon_width,&icon_height,
-                 &iconmask_pixmap,&icon_hot_x,&icon_hot_y);
-  if (!iconmask_pixmap)
-    Error(ERR_EXIT, "cannot read icon bitmap file '%s'", icon_filename);
-
-  size_hints.width  = size_hints.min_width  = size_hints.max_width  = width;
-  size_hints.height = size_hints.min_height = size_hints.max_height = height;
-  size_hints.flags = PSize | PMinSize | PMaxSize;
-
-  if (win_xpos || win_ypos)
-  {
-    size_hints.x = win_xpos;
-    size_hints.y = win_ypos;
-    size_hints.flags |= PPosition;
-  }
-
-  if (!XStringListToTextProperty(&window_name, 1, &windowName))
-    Error(ERR_EXIT, "structure allocation for windowName failed");
-
-  if (!XStringListToTextProperty(&icon_name, 1, &iconName))
-    Error(ERR_EXIT, "structure allocation for iconName failed");
-
-  wm_hints.initial_state = NormalState;
-  wm_hints.input = True;
-  wm_hints.icon_pixmap = icon_pixmap;
-  wm_hints.icon_mask = iconmask_pixmap;
-  wm_hints.flags = StateHint | IconPixmapHint | IconMaskHint | InputHint;
-
-  class_hints.res_name = program_name;
-  class_hints.res_class = "Rocks'n'Diamonds";
-
-  XSetWMProperties(display, window, &windowName, &iconName, 
-                  argv, argc, &size_hints, &wm_hints, 
-                  &class_hints);
-
-  XFree(windowName.value);
-  XFree(iconName.value);
-
-  /* Select event types wanted */
-  window_event_mask =
-    ExposureMask | StructureNotifyMask | FocusChangeMask |
-    ButtonPressMask | ButtonReleaseMask | PointerMotionMask |
-    PointerMotionHintMask | KeyPressMask | KeyReleaseMask;
-
-  XSelectInput(display, window, window_event_mask);
-#endif
-
-  /* create GC for drawing with window depth and background color (black) */
-  gc_values.graphics_exposures = False;
-  gc_values.foreground = pen_bg;
-  gc_values.background = pen_bg;
-  gc_valuemask = GCGraphicsExposures | GCForeground | GCBackground;
-  gc = XCreateGC(display, window, gc_valuemask, &gc_values);
-#endif /* !USE_SDL_LIBRARY */
-}
-
-#endif
-
-
-
 void InitGfx()
 {
   int i, j;
@@ -661,21 +424,6 @@ void InitGfx()
   }; 
 #endif
 
-#ifdef DEBUG
-#if 0
-  static struct PictureFileInfo test_pic1 =
-  {
-    "RocksFont2",
-    FALSE
-  };
-  static struct PictureFileInfo test_pic2 =
-  {
-    "mouse",
-    FALSE
-  };
-#endif
-#endif
-
   static struct
   {
     int start;
@@ -730,55 +478,9 @@ void InitGfx()
 
   /* create additional image buffers for double-buffering */
 
-#if 0
-  pix[PIX_DB_BACK] = CreateBitmap(WIN_XSIZE, WIN_YSIZE, DEFAULT_DEPTH);
-#endif
   pix[PIX_DB_DOOR] = CreateBitmap(3 * DXSIZE, DYSIZE + VYSIZE, DEFAULT_DEPTH);
   pix[PIX_DB_FIELD] = CreateBitmap(FXSIZE, FYSIZE, DEFAULT_DEPTH);
 
-
-
-#if 0
-
-#ifdef USE_SDL_LIBRARY
-
-  /* SDL cannot directly draw to the visible video framebuffer like X11,
-     but always uses a backbuffer, which is then blitted to the visible
-     video framebuffer with 'SDL_UpdateRect' (or replaced with the current
-     visible video framebuffer with 'SDL_Flip', if the hardware supports
-     this). Therefore do not use an additional backbuffer for drawing, but
-     use a symbolic buffer (distinguishable from the SDL backbuffer) called
-     'window', which indicates that the SDL backbuffer should be updated to
-     the visible video framebuffer when attempting to blit to it.
-
-     For convenience, it seems to be a good idea to create this symbolic
-     buffer 'window' at the same size as the SDL backbuffer. Although it
-     should never be drawn to directly, it would do no harm nevertheless. */
-
-  window = pix[PIX_DB_BACK];           /* 'window' is only symbolic buffer */
-  pix[PIX_DB_BACK] = backbuffer;       /* 'backbuffer' is SDL screen buffer */
-
-#endif /* !USE_SDL_LIBRARY */
-
-#endif
-
-
-
-#if DEBUG_TIMING
-  debug_print_timestamp(0, NULL);      /* initialize timestamp function */
-#endif
-
-#ifdef DEBUG
-#if 0
-  printf("Test: Loading RocksFont2.pcx ...\n");
-  LoadGfx(PIX_SMALLFONT,&test_pic1);
-  printf("Test: Done.\n");
-  printf("Test: Loading mouse.pcx ...\n");
-  LoadGfx(PIX_SMALLFONT,&test_pic2);
-  printf("Test: Done.\n");
-#endif
-#endif
-
   LoadGfx(PIX_SMALLFONT, &pic[PIX_SMALLFONT]);
   DrawInitText(WINDOW_TITLE_STRING, 20, FC_YELLOW);
   DrawInitText(WINDOW_SUBTITLE_STRING, 50, FC_RED);
@@ -792,10 +494,6 @@ void InitGfx()
     if (i != PIX_SMALLFONT)
       LoadGfx(i,&pic[i]);
 
-#if DEBUG_TIMING
-  debug_print_timestamp(0, "SUMMARY LOADING ALL GRAPHICS:");
-#endif
-
   /* create additional image buffers for masking of graphics */
 
 #ifdef USE_SDL_LIBRARY
@@ -912,15 +610,6 @@ void LoadGfx(int pos, struct PictureFileInfo *pic)
   char basefilename[256];
   char filename[256];
 
-#ifdef USE_XPM_LIBRARY
-  int xpm_err, xbm_err;
-  unsigned int width,height;
-  int hot_x,hot_y;
-  Pixmap shapemask;
-  char *picture_ext = ".xpm";
-  char *picturemask_ext = "Mask.xbm";
-#else
-
 #ifdef USE_SDL_LIBRARY
   SDL_Surface *sdl_image_tmp;
 #else /* !USE_SDL_LIBRARY */
@@ -928,8 +617,6 @@ void LoadGfx(int pos, struct PictureFileInfo *pic)
 #endif /* !USE_SDL_LIBRARY */
   char *picture_ext = ".pcx";
 
-#endif /* !USE_XPM_LIBRARY */
-
   /* Grafik laden */
   if (pic->picture_filename)
   {
@@ -942,10 +629,6 @@ void LoadGfx(int pos, struct PictureFileInfo *pic)
     rest(100);
 #endif /* MSDOS */
 
-#if DEBUG_TIMING
-    debug_print_timestamp(1, NULL);    /* initialize timestamp function */
-#endif
-
 #ifdef USE_SDL_LIBRARY
     /* load image to temporary surface */
     if ((sdl_image_tmp = IMG_Load(filename)) == NULL)
@@ -966,33 +649,6 @@ void LoadGfx(int pos, struct PictureFileInfo *pic)
 
 #else /* !USE_SDL_LIBRARY */
 
-#ifdef USE_XPM_LIBRARY
-
-    xpm_att[pos].valuemask = XpmCloseness;
-    xpm_att[pos].closeness = 20000;
-    xpm_err = XpmReadFileToPixmap(display,window,filename,
-                                 &pix[pos],&shapemask,&xpm_att[pos]);
-    switch(xpm_err)
-    {
-      case XpmOpenFailed:
-       Error(ERR_EXIT, "cannot open XPM file '%s'", filename);
-      case XpmFileInvalid:
-       Error(ERR_EXIT, "invalid XPM file '%s'", filename);
-      case XpmNoMemory:
-       Error(ERR_EXIT, "not enough memory for XPM file '%s'", filename);
-      case XpmColorFailed:
-       Error(ERR_EXIT, "cannot get colors for XPM file '%s'", filename);
-      default:
-       break;
-    }
-
-#if DEBUG_TIMING
-    printf("LOADING XPM FILE %s:", filename);
-    debug_print_timestamp(1, "");
-#endif
-
-#else /* !USE_XPM_LIBRARY */
-
     pcx_err = Read_PCX_to_Pixmap(display, window, gc, filename,
                                 &pix[pos], &clipmask[pos]);
     switch(pcx_err)
@@ -1013,13 +669,6 @@ void LoadGfx(int pos, struct PictureFileInfo *pic)
        break;
     }
 
-#if DEBUG_TIMING
-    printf("SUMMARY LOADING PCX FILE %s:", filename);
-    debug_print_timestamp(1, "");
-#endif
-
-#endif /* !USE_XPM_LIBRARY */
-
     if (!pix[pos])
       Error(ERR_EXIT, "cannot get graphics for '%s'", pic->picture_filename);
 
@@ -1032,46 +681,8 @@ void LoadGfx(int pos, struct PictureFileInfo *pic)
 
 #ifndef USE_SDL_LIBRARY
   /* zugehörige Maske laden (wenn vorhanden) */
-  if (pic->picture_with_mask)
-  {
-#ifdef USE_XPM_LIBRARY
-
-    sprintf(basefilename, "%s%s", pic->picture_filename, picturemask_ext);
-    DrawInitText(basefilename, 150, FC_YELLOW);
-    sprintf(filename, "%s/%s/%s",
-           options.ro_base_directory, GRAPHICS_DIRECTORY, basefilename);
-
-#if DEBUG_TIMING
-    debug_print_timestamp(1, NULL);    /* initialize timestamp function */
-#endif
-
-    xbm_err = XReadBitmapFile(display,window,filename,
-                             &width,&height,&clipmask[pos],&hot_x,&hot_y);
-    switch(xbm_err)
-    {
-      case BitmapSuccess:
-        break;
-      case BitmapOpenFailed:
-       Error(ERR_EXIT, "cannot open XBM file '%s'", filename);
-      case BitmapFileInvalid:
-       Error(ERR_EXIT, "invalid XBM file '%s'", filename);
-      case BitmapNoMemory:
-       Error(ERR_EXIT, "not enough memory for XBM file '%s'", filename);
-       break;
-      default:
-       break;
-    }
-
-#if DEBUG_TIMING
-    printf("LOADING XBM FILE %s:", filename);
-    debug_print_timestamp(1, "");
-#endif
-
-#endif /* USE_XPM_LIBRARY */
-
-    if (!clipmask[pos])
-      Error(ERR_EXIT, "cannot get clipmask for '%s'", pic->picture_filename);
-  }
+  if (pic->picture_with_mask && !clipmask[pos])
+    Error(ERR_EXIT, "cannot get clipmask for '%s'", pic->picture_filename);
 #endif /* !USE_SDL_LIBRARY */
 }
 
@@ -2251,28 +1862,13 @@ void CloseAllAndExit(int exit_value)
   for(i=0; i<NUM_BITMAPS; i++)
   {
     if (pix[i])
-    {
-#ifdef USE_XPM_LIBRARY
-      if (i < NUM_PICTURES)    /* XPM pictures */
-      {
-       XFreeColors(display,DefaultColormap(display,screen),
-                   xpm_att[i].pixels,xpm_att[i].npixels,0);
-       XpmFreeAttributes(&xpm_att[i]);
-      }
-#endif
-
-#ifdef USE_SDL_LIBRARY
-      SDL_FreeSurface(pix[i]);
-#else
-      XFreePixmap(display,pix[i]);
-#endif
-    }
+      FreeBitmap(pix[i]);
 
 #ifdef USE_SDL_LIBRARY
-      SDL_FreeSurface(pix_masked[i]);
+    FreeBitmap(pix_masked[i]);
 #else
     if (clipmask[i])
-      XFreePixmap(display,clipmask[i]);
+      FreeBitmap(clipmask[i]);
     if (clip_gc[i])
       XFreeGC(display, clip_gc[i]);
 #endif
index 38250738b5d1ccbed5c5b61a958effaf4cdeaecf..33b276bb0f74832aef7e19dba45b011f82ed9942 100644 (file)
@@ -32,10 +32,6 @@ Bitmap               pix[NUM_BITMAPS];
 Bitmap         pix_masked[NUM_BITMAPS], tile_masked[NUM_TILES];
 Pixmap         clipmask[NUM_BITMAPS], tile_clipmask[NUM_TILES];
 
-#ifdef USE_XPM_LIBRARY
-XpmAttributes  xpm_att[NUM_PICTURES];
-#endif
-
 DrawBuffer     drawto, drawto_field, backbuffer, fieldbuffer;
 Colormap       cmap;
 
index 9bd13760e2e6bf566828d74e36adf126df600732..24066a739090629778fe83309ff73852a807b84f 100644 (file)
@@ -458,10 +458,6 @@ extern Bitmap              pix[];
 extern Bitmap          pix_masked[], tile_masked[];
 extern Pixmap          clipmask[], tile_clipmask[];
 
-#ifdef USE_XPM_LIBRARY
-extern XpmAttributes   xpm_att[];
-#endif
-
 extern DrawBuffer      drawto, drawto_field, backbuffer, fieldbuffer;
 extern Colormap                cmap;
 
index d9dd5e7921a0cda09b312e4f6b5c7de7856a4086..b0d9d2cb91afc2d8250e0b56ba57bacad44b5edc 100644 (file)
@@ -610,20 +610,6 @@ int Read_PCX_to_Pixmap(Display *display, Window window, GC gc, char *filename,
   return PCX_Success;
 }
 
-int XpmReadFileToPixmap(Display *display, Drawable d, char *filename,
-                       Pixmap *pixmap_return, Pixmap *shapemask_return,
-                       XpmAttributes *attributes)
-{
-  BITMAP *bitmap;
-
-  if ((bitmap = Read_PCX_to_AllegroBitmap(filename)) == NULL)
-    return XpmOpenFailed;
-
-  *pixmap_return = (Pixmap)bitmap;
-
-  return XpmSuccess;
-}
-
 int XReadBitmapFile(Display *display, Drawable d, char *filename,
                    unsigned int *width_return, unsigned int *height_return,
                    Pixmap *bitmap_return,
index ce86234e85e33f83331565e04006008b9a28e1aa..111fabe667805c70a356b551043f65a645d63d03 100644 (file)
 #define XGetImage(a,b,c,d,e,f,g,h)             ((XImage *) NULL)
 #define XDisplayName(a)                                ((char *) NULL)
 #define XFreeColors(a,b,c,d,e)
-#define XpmFreeAttributes(a)
 #define XSelectInput(a,b,c)
 #define XDefaultDepth(a,b)                     (8)
 #define XSetWMProperties(a,b,c,d,e,f,g,h,i)
 #define PMinSize               (1L << 4) /* program specified minimum size */
 #define PMaxSize               (1L << 5) /* program specified maximum size */
 
-#define XpmSuccess              0
-#define XpmOpenFailed          -1
-#define XpmFileInvalid         -2
-#define XpmNoMemory            -3
-#define XpmColorFailed         -4
-
-#define XpmCloseness           (1L << 12)
-
 #define PCX_Success             0
 #define PCX_OpenFailed         -1
 #define PCX_ReadFailed         -2
@@ -631,14 +622,6 @@ typedef struct
   unsigned long value_mask;
 } XGCValues;
 
-typedef struct
-{
-  unsigned long valuemask;     /* specifies which attributes are */
-  unsigned int closeness;      /* allowable RGB deviation */
-  Pixel *pixels;               /* list of used color pixels */
-  unsigned int npixels;                /* number of used pixels */
-} XpmAttributes;
-
 typedef struct
 {
   int type;
@@ -702,8 +685,6 @@ void XSync(Display *, Bool);
 inline void XCopyArea(Display *, Drawable, Drawable, GC, int, int,
                      unsigned int, unsigned int, int, int);
 int Read_PCX_to_Pixmap(Display *, Window, GC, char *, Pixmap *, Pixmap *);
-int XpmReadFileToPixmap(Display *, Drawable, char *, Pixmap *, Pixmap *,
-                       XpmAttributes *);
 int XReadBitmapFile(Display *, Drawable, char *,
                    unsigned int *, unsigned int *, Pixmap *, int *, int *);
 void XFreePixmap(Display *, Pixmap);
index 85a2760be1e96624810a4a8d9bef95f1b3cfc66b..51f125a75e9d21020c8de8bc0ecbc9a09ee0146e 100644 (file)
--- a/src/sdl.c
+++ b/src/sdl.c
@@ -27,14 +27,13 @@ inline void SDLInitBufferedDisplay(DrawBuffer *backbuffer, DrawWindow *window)
   atexit(SDL_Quit);
 
   /* open SDL video output device (window or fullscreen mode) */
-  if (!SDLSetVideoMode(backbuffer, window))
+  if (!SDLSetVideoMode(backbuffer))
     Error(ERR_EXIT, "setting video mode failed");
 
   /* set window and icon title */
   SDL_WM_SetCaption(WINDOW_TITLE_STRING, WINDOW_TITLE_STRING);
 
   /* create additional buffer for double-buffering */
-
   pix[PIX_DB_BACK] = CreateBitmap(WIN_XSIZE, WIN_YSIZE, DEFAULT_DEPTH);
 
   /* SDL cannot directly draw to the visible video framebuffer like X11,
@@ -54,7 +53,7 @@ inline void SDLInitBufferedDisplay(DrawBuffer *backbuffer, DrawWindow *window)
   pix[PIX_DB_BACK] = *backbuffer;      /* 'backbuffer' is SDL screen buffer */
 }
 
-inline boolean SDLSetVideoMode(DrawBuffer *backbuffer, DrawWindow *window)
+inline boolean SDLSetVideoMode(DrawBuffer *backbuffer)
 {
   boolean success = TRUE;
 
index 93382225135207592038ca071adf2becd49fa939..0fe26e037508f54e4642e8b4de757df51be8fbe9 100644 (file)
--- a/src/sdl.h
+++ b/src/sdl.h
@@ -304,7 +304,7 @@ typedef int                 Colormap;
 /* SDL function definitions */
 
 inline void SDLInitBufferedDisplay(DrawBuffer *, DrawWindow *);
-inline boolean SDLSetVideoMode(Bitmap *, DrawWindow *);
+inline boolean SDLSetVideoMode(DrawBuffer *);
 inline void SDLCopyArea(SDL_Surface *, SDL_Surface *,
                         int, int, int, int, int, int);
 inline void SDLFillRectangle(SDL_Surface *, int, int, int, int, unsigned int);
index d0c948a64dd360e59e43c94351715e845144e8d7..c600152f46636180f9964c4fa0f9798f6ff7ee79 100644 (file)
@@ -69,6 +69,15 @@ inline Bitmap CreateBitmap(int width, int height, int depth)
 #endif
 }
 
+inline void FreeBitmap(Bitmap bitmap)
+{
+#ifdef USE_SDL_LIBRARY
+  SDL_FreeSurface(bitmap);
+#else
+  XFreePixmap(display, bitmap);
+#endif
+}
+
 inline void ClearRectangle(Bitmap bitmap, int x, int y, int width, int height)
 {
 #ifdef USE_SDL_LIBRARY
@@ -241,7 +250,7 @@ inline Key GetEventKey(KeyEvent *event, boolean with_modifiers)
 inline boolean SetVideoMode(void)
 {
 #ifdef USE_SDL_LIBRARY
-  return SDLSetVideoMode(&backbuffer, &window);
+  return SDLSetVideoMode(&backbuffer);
 #else
   boolean success = TRUE;
 
index 1037515bc8b43cecfcd91e605cf6318d4b19076e..02bd92cb90a3ca31664772361454442275b0b459 100644 (file)
 #ifndef SYSTEM_H
 #define SYSTEM_H
 
-#if defined(XPM_INCLUDE_FILE) && !defined(MSDOS)
-#define USE_XPM_LIBRARY
-#include XPM_INCLUDE_FILE
-#endif
-
 #if defined(MSDOS)
 #include "msdos.h"
 #endif
@@ -48,8 +43,12 @@ typedef int (*EventFilter)(const Event *);
 
 inline void InitEventFilter(EventFilter);
 inline void InitBufferedDisplay(DrawBuffer *, DrawWindow *);
+
 inline int GetDisplayDepth(void);
+
 inline Bitmap CreateBitmap(int, int, int);
+inline void FreeBitmap(Bitmap);
+
 inline void ClearRectangle(Bitmap, int, int, int, int);
 inline void BlitBitmap(Bitmap, Bitmap, int, int, int, int, int, int);
 inline void SetClipMask(GC, Pixmap);
index 5b97d5ec66fb18faccc4a0974ef799c54fa9b5d5..957443a85c7010fb8cfb150f2e4d4ccda53c4725 100644 (file)
--- a/src/x11.c
+++ b/src/x11.c
@@ -69,8 +69,9 @@ static void X11InitDisplay()
 #endif /* !MSDOS */
 }
 
-static void X11InitWindow()
+static DrawWindow X11InitWindow()
 {
+  Window window;
   unsigned int border_width = 4;
   XGCValues gc_values;
   unsigned long gc_valuemask;
@@ -185,17 +186,21 @@ static void X11InitWindow()
   gc_values.background = pen_bg;
   gc_valuemask = GCGraphicsExposures | GCForeground | GCBackground;
   gc = XCreateGC(display, window, gc_valuemask, &gc_values);
+
+  return window;
 }
 
-inline void X11InitBufferedDisplay(DrawBuffer *unused1, DrawWindow *unused2)
+inline void X11InitBufferedDisplay(DrawBuffer *backbuffer, DrawWindow *window)
 {
   X11InitDisplay();
-  X11InitWindow();
+  *window = X11InitWindow();
 
-  XMapWindow(display, window);
+  XMapWindow(display, *window);
   FlushDisplay();
 
-  pix[PIX_DB_BACK] = CreateBitmap(WIN_XSIZE, WIN_YSIZE, DEFAULT_DEPTH);
+  /* create additional buffer for double-buffering */
+  *backbuffer = CreateBitmap(WIN_XSIZE, WIN_YSIZE, DEFAULT_DEPTH);
+  pix[PIX_DB_BACK] = *backbuffer;      /* 'backbuffer' is off-screen buffer */
 }
 
 #endif /* USE_X11_LIBRARY */