home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xibm.zip / mpel / mpelCmap.c < prev    next >
C/C++ Source or Header  |  1992-03-24  |  4KB  |  126 lines

  1. /*
  2.  * Copyright IBM Corporation 1987,1988,1989
  3.  *
  4.  * All Rights Reserved
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose and without fee is hereby granted,
  8.  * provided that the above copyright notice appear in all copies and that 
  9.  * both that copyright notice and this permission notice appear in
  10.  * supporting documentation, and that the name of IBM not be
  11.  * used in advertising or publicity pertaining to distribution of the
  12.  * software without specific, written prior permission.
  13.  *
  14.  * IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  15.  * ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  16.  * IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  17.  * ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  18.  * WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  19.  * ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  20.  * SOFTWARE.
  21.  *
  22. */
  23.  
  24. #ifndef lint
  25. static char *rcsid = "$Id: mpelCmap.c,v 5.1 1992/03/24 07:50:38 jfc Exp $";
  26. #endif
  27.  
  28. #include "X.h"
  29. #include "pixmapstr.h"
  30. #include "scrnintstr.h"
  31. #include "colormapst.h"
  32. #include "cursor.h"
  33. #include "resource.h"
  34.  
  35. #include "OScompiler.h"
  36.  
  37. #include "ppc.h"
  38.  
  39. #include "ibmScreen.h"
  40.  
  41. #include "mpelHdwr.h"
  42.  
  43. #include "ibmTrace.h"
  44.  
  45. typedef struct _mpelColorTable
  46.     {
  47.     unsigned short     start ;
  48.     unsigned short     count ;
  49.     unsigned int     rgb[256] ;
  50.     } mpelColorTable, *mpelColorTablePtr ;
  51.  
  52. #if defined(AIXrt)    /* no comment */
  53. static unsigned long tableptr = 0x1008400;
  54. #else
  55. static unsigned long tableptr = mpelAddr(MPEL_COLOR_TABLE);
  56. #endif
  57.  
  58. /***==================================================================***/
  59.  
  60. /*ARGSUSED*/
  61. void
  62. mpelSetColor(number, red, green, blue, pVisual)
  63.     register unsigned long int number;
  64.     register unsigned short int red, green, blue;
  65.     VisualPtr pVisual;
  66. {
  67.     register mpelColorTable *pmap ;
  68.  
  69.     TRACE(("mpelSetColor(%d,%d,%d,%d,0x%x)\n",number,red,green,blue,pVisual));
  70.  
  71.     pmap = (mpelColorTable *) (MPEL_COLOR_TABLE);
  72.     pmap->start = number;
  73.     pmap->count = 1;    /* was 0 */
  74.     pmap->rgb[0] = ((red & 0xff00) << 8) | (green & 0xff00) | ((blue & 0xff00) >> 8 );
  75.     /* It appears to be necessary to call mpelicmd2 instead of mpelicmd.
  76.        mpelicmd2() waits for the adapater to finish processing the request
  77.        before returning.  It is not clear why this is necessary.  */
  78.     mpelicmd2(MPELCMD_LOAD_CMAP, &tableptr, 2);
  79.     return;
  80. }
  81.  
  82. /***==================================================================***/
  83.  
  84. /* MegaPel Colormap Installation
  85.    Does not use PPC because SetColor is so slow.
  86.    For an entire map, should do it this way.  Duplicates PPC function,
  87.    but better keep up to date with PPC if InstallColormap responsibilities
  88.    change   - paquin 10/12/87
  89.  */
  90.  
  91. void
  92. mpelInstallColormap(pColormap)
  93.     register ColormapPtr pColormap;
  94. {
  95.     register int i;
  96.     register mpelColorTablePtr pmap;
  97.     ScreenPtr pScreen = pColormap->pScreen;
  98.  
  99.     ppcScrnPrivPtr devPriv = (ppcScrnPriv *) pScreen->devPrivate;
  100.  
  101.     TRACE(("mpelInstallColormap(pColormap=0x%x)\n",pColormap));
  102.  
  103.     if (ibmScreenState(pScreen->myNum) == SCREEN_ACTIVE) {
  104.     pmap = (mpelColorTable *) (MPEL_COLOR_TABLE);
  105.     pmap->start = 0;
  106.     pmap->count = pColormap->pVisual->ColormapEntries;
  107.  
  108.         for (i = 0; i < pColormap->pVisual->ColormapEntries; i++) {
  109.         pmap->rgb[i] =
  110.           (((pColormap->red[i].co.local.red & 0xFFFF) << 8)
  111.            | ((pColormap->red[i].co.local.green & 0xFFFF))
  112.            | ((pColormap->red[i].co.local.blue & 0xFFFF) >> 8));
  113.         }
  114.     mpelicmd2(MPELCMD_LOAD_CMAP, &tableptr, 2);
  115.     }
  116.  
  117.     devPriv->InstalledColormap = pColormap;
  118.  
  119.     WalkTree(pScreen,TellGainedMap,&(pColormap->mid));
  120.  
  121.     (*devPriv->RecolorCursor)(pColormap);
  122.  
  123.     TRACE(("\tdone\n"));
  124.     return;
  125. }
  126.