glut_cmap.c
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:12k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /* Copyright (c) Mark J. Kilgard, 1994, 1996, 1997.  */
  2. /* This program is freely distributable without licensing fees
  3.    and is provided without guarantee or warrantee expressed or
  4.    implied. This program is -not- in the public domain. */
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include <stdio.h>  /* SunOS multithreaded assert() needs <stdio.h>.  Lame. */
  8. #include <assert.h>
  9. #if !defined(_WIN32)
  10. #include <X11/Xlib.h>
  11. #include <X11/Xutil.h>
  12. #include <X11/Xatom.h>  /* for XA_RGB_DEFAULT_MAP atom */
  13. #if defined(__vms)
  14. #include <Xmu/StdCmap.h>  /* for XmuLookupStandardColormap */
  15. #else
  16. #include <X11/Xmu/StdCmap.h>  /* for XmuLookupStandardColormap */
  17. #endif
  18. #endif
  19. /* SGI optimization introduced in IRIX 6.3 to avoid X server
  20.    round trips for interning common X atoms. */
  21. #if defined(_SGI_EXTRA_PREDEFINES) && !defined(NO_FAST_ATOMS)
  22. #include <X11/SGIFastAtom.h>
  23. #else
  24. #define XSGIFastInternAtom(dpy,string,fast_name,how) XInternAtom(dpy,string,how)
  25. #endif
  26. #include "glutint.h"
  27. #include "layerutil.h"
  28. GLUTcolormap *__glutColormapList = NULL;
  29. GLUTcolormap *
  30. __glutAssociateNewColormap(XVisualInfo * vis)
  31. {
  32.   GLUTcolormap *cmap;
  33.   int transparentPixel, i;
  34.   unsigned long pixels[255];
  35.   cmap = (GLUTcolormap *) malloc(sizeof(GLUTcolormap));
  36.   if (!cmap)
  37.     __glutFatalError("out of memory.");
  38. #if defined(_WIN32)
  39.   pixels[0] = 0;        /* avoid compilation warnings on win32 */
  40.   cmap->visual = 0;
  41.   cmap->size = 256;     /* always assume 256 on Win32 */
  42. #else
  43.   cmap->visual = vis->visual;
  44.   cmap->size = vis->visual->map_entries;
  45. #endif
  46.   cmap->refcnt = 1;
  47.   cmap->cells = (GLUTcolorcell *)
  48.     malloc(sizeof(GLUTcolorcell) * cmap->size);
  49.   if (!cmap->cells)
  50.     __glutFatalError("out of memory.");
  51.   /* make all color cell entries be invalid */
  52.   for (i = cmap->size - 1; i >= 0; i--) {
  53.     cmap->cells[i].component[GLUT_RED] = -1.0;
  54.     cmap->cells[i].component[GLUT_GREEN] = -1.0;
  55.     cmap->cells[i].component[GLUT_BLUE] = -1.0;
  56.   }
  57.   transparentPixel = __glutGetTransparentPixel(__glutDisplay, vis);
  58.   if (transparentPixel == -1 || transparentPixel >= cmap->size) {
  59.     /* If there is no transparent pixel or if the transparent
  60.        pixel is outside the range of valid colormap cells (HP
  61.        can implement their overlays this smart way since their
  62.        transparent pixel is 255), we can AllocAll the colormap.
  63.        See note below.  */
  64.     cmap->cmap = XCreateColormap(__glutDisplay,
  65.       __glutRoot, cmap->visual, AllocAll);
  66.   } else {
  67.     /* On machines where zero (or some other value in the range
  68.        of 0 through map_entries-1), BadAlloc may be generated
  69.        when an AllocAll overlay colormap is allocated since the
  70.        transparent pixel precludes all the cells in the colormap
  71.        being allocated (the transparent pixel is pre-allocated).
  72.        So in this case, use XAllocColorCells to allocate
  73.        map_entries-1 pixels (that is, all but the transparent
  74.        pixel.  */
  75. #if defined(_WIN32)
  76.     cmap->cmap = XCreateColormap(__glutDisplay,
  77.       __glutRoot, 0, AllocNone);
  78. #else
  79.     cmap->cmap = XCreateColormap(__glutDisplay,
  80.       __glutRoot, vis->visual, AllocNone);
  81.     XAllocColorCells(__glutDisplay, cmap->cmap, False, 0, 0,
  82.       pixels, cmap->size - 1);
  83. #endif
  84.   }
  85.   cmap->next = __glutColormapList;
  86.   __glutColormapList = cmap;
  87.   return cmap;
  88. }
  89. static GLUTcolormap *
  90. associateColormap(XVisualInfo * vis)
  91. {
  92. #if !defined(_WIN32)
  93.   GLUTcolormap *cmap = __glutColormapList;
  94.   while (cmap != NULL) {
  95.     /* Play safe: compare visual IDs, not Visual*'s. */
  96.     if (cmap->visual->visualid == vis->visual->visualid) {
  97.       /* Already have created colormap for the visual. */
  98.       cmap->refcnt++;
  99.       return cmap;
  100.     }
  101.     cmap = cmap->next;
  102.   }
  103. #endif
  104.   return __glutAssociateNewColormap(vis);
  105. }
  106. void
  107. __glutSetupColormap(XVisualInfo * vi, GLUTcolormap ** colormap, Colormap * cmap)
  108. {
  109. #if defined(_WIN32)
  110.   if (vi->dwFlags & PFD_NEED_PALETTE || vi->iPixelType == PFD_TYPE_COLORINDEX) {
  111.     *colormap = associateColormap(vi);
  112.     *cmap = (*colormap)->cmap;
  113.   } else {
  114.     *colormap = NULL;
  115.     *cmap = 0;
  116.   }
  117. #else
  118.   Status status;
  119.   XStandardColormap *standardCmaps;
  120.   int i, numCmaps;
  121.   static Atom hpColorRecoveryAtom = -1;
  122.   int isRGB, visualClass, rc;
  123. #if defined(__cplusplus) || defined(c_plusplus)
  124.   visualClass = vi->c_class;
  125. #else
  126.   visualClass = vi->class;
  127. #endif
  128.   switch (visualClass) {
  129.   case PseudoColor:
  130.     /* Mesa might return a PseudoColor visual for RGB mode. */
  131.     rc = glXGetConfig(__glutDisplay, vi, GLX_RGBA, &isRGB);
  132.     if (rc == 0 && isRGB) {
  133.       /* Must be Mesa. */
  134.       *colormap = NULL;
  135.       if (MaxCmapsOfScreen(DefaultScreenOfDisplay(__glutDisplay)) == 1
  136.         && vi->visual == DefaultVisual(__glutDisplay, __glutScreen)) {
  137.         char *privateCmap = getenv("MESA_PRIVATE_CMAP");
  138.         if (privateCmap) {
  139.           /* User doesn't want to share colormaps. */
  140.           *cmap = XCreateColormap(__glutDisplay, __glutRoot,
  141.             vi->visual, AllocNone);
  142.         } else {
  143.           /* Share the root colormap. */
  144.           *cmap = DefaultColormap(__glutDisplay, __glutScreen);
  145.         }
  146.       } else {
  147.         /* Get our own PseudoColor colormap. */
  148.         *cmap = XCreateColormap(__glutDisplay, __glutRoot,
  149.           vi->visual, AllocNone);
  150.       }
  151.     } else {
  152.       /* CI mode, real GLX never returns a PseudoColor visual
  153.          for RGB mode. */
  154.       *colormap = associateColormap(vi);
  155.       *cmap = (*colormap)->cmap;
  156.     }
  157.     break;
  158.   case TrueColor:
  159.   case DirectColor:
  160.     *colormap = NULL;   /* NULL if RGBA */
  161.     /* Hewlett-Packard supports a feature called "HP Color
  162.        Recovery". Mesa has code to use HP Color Recovery.  For
  163.        Mesa to use this feature, the atom
  164.        _HP_RGB_SMOOTH_MAP_LIST must be defined on the root
  165.        window AND the colormap obtainable by XGetRGBColormaps
  166.        for that atom must be set on the window.  If that
  167.        colormap is not set, the output will look stripy. */
  168.     if (hpColorRecoveryAtom == -1) {
  169.       char *xvendor;
  170. #define VENDOR_HP "Hewlett-Packard"
  171.       /* Only makes sense to make XInternAtom round-trip if we
  172.          know that we are connected to an HP X server. */
  173.       xvendor = ServerVendor(__glutDisplay);
  174.       if (!strncmp(xvendor, VENDOR_HP, sizeof(VENDOR_HP) - 1)) {
  175.         hpColorRecoveryAtom = XInternAtom(__glutDisplay, "_HP_RGB_SMOOTH_MAP_LIST", True);
  176.       } else {
  177.         hpColorRecoveryAtom = None;
  178.       }
  179.     }
  180.     if (hpColorRecoveryAtom != None) {
  181.       status = XGetRGBColormaps(__glutDisplay, __glutRoot,
  182.         &standardCmaps, &numCmaps, hpColorRecoveryAtom);
  183.       if (status == 1) {
  184.         for (i = 0; i < numCmaps; i++) {
  185.           if (standardCmaps[i].visualid == vi->visualid) {
  186.             *cmap = standardCmaps[i].colormap;
  187.             XFree(standardCmaps);
  188.             return;
  189.           }
  190.         }
  191.         XFree(standardCmaps);
  192.       }
  193.     }
  194. #ifndef SOLARIS_2_4_BUG
  195.     /* Solaris 2.4 and 2.5 have a bug in their
  196.        XmuLookupStandardColormap implementations.  Please
  197.        compile your Solaris 2.4 or 2.5 version of GLUT with
  198.        -DSOLARIS_2_4_BUG to work around this bug. The symptom
  199.        of the bug is that programs will get a BadMatch error
  200.        from X_CreateWindow when creating a GLUT window because
  201.        Solaris 2.4 and 2.5 create a  corrupted RGB_DEFAULT_MAP
  202.        property.  Note that this workaround prevents Colormap
  203.        sharing between applications, perhaps leading
  204.        unnecessary colormap installations or colormap flashing.
  205.        Sun fixed this bug in Solaris 2.6. */
  206.     status = XmuLookupStandardColormap(__glutDisplay,
  207.       vi->screen, vi->visualid, vi->depth, XA_RGB_DEFAULT_MAP,
  208.       /* replace */ False, /* retain */ True);
  209.     if (status == 1) {
  210.       status = XGetRGBColormaps(__glutDisplay, __glutRoot,
  211.         &standardCmaps, &numCmaps, XA_RGB_DEFAULT_MAP);
  212.       if (status == 1) {
  213.         for (i = 0; i < numCmaps; i++) {
  214.           if (standardCmaps[i].visualid == vi->visualid) {
  215.             *cmap = standardCmaps[i].colormap;
  216.             XFree(standardCmaps);
  217.             return;
  218.           }
  219.         }
  220.         XFree(standardCmaps);
  221.       }
  222.     }
  223. #endif
  224.     /* If no standard colormap but TrueColor, just make a
  225.        private one. */
  226.     /* XXX Should do a better job of internal sharing for
  227.        privately allocated TrueColor colormaps. */
  228.     /* XXX DirectColor probably needs ramps hand initialized! */
  229.     *cmap = XCreateColormap(__glutDisplay, __glutRoot,
  230.       vi->visual, AllocNone);
  231.     break;
  232.   case StaticColor:
  233.   case StaticGray:
  234.   case GrayScale:
  235.     /* Mesa supports these visuals */
  236.     *colormap = NULL;
  237.     *cmap = XCreateColormap(__glutDisplay, __glutRoot,
  238.       vi->visual, AllocNone);
  239.     break;
  240.   default:
  241.     __glutFatalError(
  242.       "could not allocate colormap for visual type: %d.",
  243.       visualClass);
  244.   }
  245.   return;
  246. #endif
  247. }
  248. #if !defined(_WIN32)
  249. static int
  250. findColormaps(GLUTwindow * window,
  251.   Window * winlist, Colormap * cmaplist, int num, int max)
  252. {
  253.   GLUTwindow *child;
  254.   int i;
  255.   /* Do not allow more entries that maximum number of
  256.      colormaps! */
  257.   if (num >= max)
  258.     return num;
  259.   /* Is cmap for this window already on the list? */
  260.   for (i = 0; i < num; i++) {
  261.     if (cmaplist[i] == window->cmap)
  262.       goto normalColormapAlreadyListed;
  263.   }
  264.   /* Not found on the list; add colormap and window. */
  265.   winlist[num] = window->win;
  266.   cmaplist[num] = window->cmap;
  267.   num++;
  268. normalColormapAlreadyListed:
  269.   /* Repeat above but for the overlay colormap if there one. */
  270.   if (window->overlay) {
  271.     if (num >= max)
  272.       return num;
  273.     for (i = 0; i < num; i++) {
  274.       if (cmaplist[i] == window->overlay->cmap)
  275.         goto overlayColormapAlreadyListed;
  276.     }
  277.     winlist[num] = window->overlay->win;
  278.     cmaplist[num] = window->overlay->cmap;
  279.     num++;
  280.   }
  281. overlayColormapAlreadyListed:
  282.   /* Recursively search children. */
  283.   child = window->children;
  284.   while (child) {
  285.     num = findColormaps(child, winlist, cmaplist, num, max);
  286.     child = child->siblings;
  287.   }
  288.   return num;
  289. }
  290. void
  291. __glutEstablishColormapsProperty(GLUTwindow * window)
  292. {
  293.   /* this routine is strictly X.  Win32 doesn't need to do
  294.      anything of this sort (but has to do other wacky stuff
  295.      later). */
  296.   static Atom wmColormapWindows = None;
  297.   Window *winlist;
  298.   Colormap *cmaplist;
  299.   Status status;
  300.   int maxcmaps, num;
  301.   assert(!window->parent);
  302.   maxcmaps = MaxCmapsOfScreen(ScreenOfDisplay(__glutDisplay,
  303.       __glutScreen));
  304.   /* For portability reasons we don't use alloca for winlist
  305.      and cmaplist, but we could. */
  306.   winlist = (Window *) malloc(maxcmaps * sizeof(Window));
  307.   cmaplist = (Colormap *) malloc(maxcmaps * sizeof(Colormap));
  308.   num = findColormaps(window, winlist, cmaplist, 0, maxcmaps);
  309.   if (num < 2) {
  310.     /* Property no longer needed; remove it. */
  311.     wmColormapWindows = XSGIFastInternAtom(__glutDisplay,
  312.       "WM_COLORMAP_WINDOWS", SGI_XA_WM_COLORMAP_WINDOWS, False);
  313.     if (wmColormapWindows == None) {
  314.       __glutWarning("Could not intern X atom for WM_COLORMAP_WINDOWS.");
  315.       return;
  316.     }
  317.     XDeleteProperty(__glutDisplay, window->win, wmColormapWindows);
  318.   } else {
  319.     status = XSetWMColormapWindows(__glutDisplay, window->win,
  320.       winlist, num);
  321.     /* XSetWMColormapWindows should always work unless the
  322.        WM_COLORMAP_WINDOWS property cannot be intern'ed.  We
  323.        check to be safe. */
  324.     if (status == False)
  325.       __glutFatalError("XSetWMColormapWindows returned False.");
  326.   }
  327.   /* For portability reasons we don't use alloca for winlist
  328.      and cmaplist, but we could. */
  329.   free(winlist);
  330.   free(cmaplist);
  331. }
  332. GLUTwindow *
  333. __glutToplevelOf(GLUTwindow * window)
  334. {
  335.   while (window->parent) {
  336.     window = window->parent;
  337.   }
  338.   return window;
  339. }
  340. #endif
  341. void
  342. __glutFreeColormap(GLUTcolormap * cmap)
  343. {
  344.   GLUTcolormap *cur, **prev;
  345.   cmap->refcnt--;
  346.   if (cmap->refcnt == 0) {
  347.     /* remove from colormap list */
  348.     cur = __glutColormapList;
  349.     prev = &__glutColormapList;
  350.     while (cur) {
  351.       if (cur == cmap) {
  352.         *prev = cmap->next;
  353.         break;
  354.       }
  355.       prev = &(cur->next);
  356.       cur = cur->next;
  357.     }
  358.     /* actually free colormap */
  359.     XFreeColormap(__glutDisplay, cmap->cmap);
  360.     free(cmap->cells);
  361.     free(cmap);
  362.   }
  363. }