home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / PROGRAM / CBGRX100.ZIP / CONTRIB / LIBGRX / SRC / MAKEPAT.C < prev    next >
Text File  |  1992-04-10  |  5KB  |  175 lines

  1. /** 
  2.  ** MAKEPAT.C 
  3.  **
  4.  **  Copyright (C) 1992, Csaba Biegl
  5.  **    820 Stirrup Dr, Nashville, TN, 37221
  6.  **    csaba@vuse.vanderbilt.edu
  7.  **
  8.  **  This file is distributed under the terms listed in the document
  9.  **  "copying.cb", available from the author at the address above.
  10.  **  A copy of "copying.cb" should accompany this file; if not, a copy
  11.  **  should be available from where this file was obtained.  This file
  12.  **  may not be distributed without a verbatim copy of "copying.cb".
  13.  **  You should also have received a copy of the GNU General Public
  14.  **  License along with this program (it is in the file "copying");
  15.  **  if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  16.  **  Cambridge, MA 02139, USA.
  17.  **
  18.  **  This program is distributed in the hope that it will be useful,
  19.  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  **  GNU General Public License for more details.
  22.  **/
  23.  
  24. #include "grx.h"
  25. #include "libgrx.h"
  26. #include "gmalloc.h"
  27.  
  28. #define  BEST_MAX_LINE           128
  29. #define  BEST_MAX_CONTEXT      2048L
  30.  
  31. /*
  32.  * try to replicate a pixmap for faster bitblt-s
  33.  * in bitplane modes it is especially desirable to replicate until
  34.  * the width is a multiple of 8
  35.  */
  36. int _GrBestPixmapWidth(int wdt,int hgt)
  37. {
  38.     long total   = GrContextSize(wdt,hgt);
  39.     int  linelen = GrLineOffset(wdt);
  40.     int  factor  = 1;
  41.     int  test;
  42.  
  43.     if(total == 0L) return(0);
  44. #ifdef _MAXMEMPLANESIZE
  45.     if(total > _MAXMEMPLANESIZE) return(0);
  46. #endif
  47.     if((test = (int)(BEST_MAX_CONTEXT / total)) > factor)
  48.         factor = test;
  49.     if((test = (BEST_MAX_LINE / linelen)) < factor)
  50.         factor = test;
  51.     while((factor >>= 1) != 0)
  52.         wdt <<= 1;
  53.     return(wdt);
  54. }
  55.  
  56. GrPattern *GrBuildPixmap(char *pixels,int w,int h,GrColorTableP ct)
  57. {
  58.     GrContext csave,cwork;
  59.     GrPixmap  *result;
  60.     unsigned  char *src;
  61.     char far  *data;
  62.     int  wdt,wdt2,fullw;
  63.     int  hgt,color;
  64.     long addr;
  65.  
  66.     if((fullw = _GrBestPixmapWidth(w,h)) <= 0) return(NULL);
  67.     data   = _GrFarMalloc(GrContextSize(fullw,h));
  68.     result = _GrMalloc(sizeof(GrPixmap));
  69.     if((result == NULL) || (data == (char far *)NULL)) {
  70.         if(result != NULL) _GrFree(result);
  71.         if(data != (char far *)NULL) _GrFarFree(data);
  72.         return(NULL);
  73.     }
  74.     GrCreateContext(fullw,h,data,&cwork);
  75.     csave = *CURC;
  76.     *CURC = cwork;
  77.     for(hgt = 0; hgt < h; hgt++) {
  78.         addr = PIXEL_ADDR(0,hgt);
  79.         for(wdt2 = fullw; (wdt2 -= w) >= 0; ) {
  80.         src = (unsigned char *)pixels;
  81.         for(wdt = w; --wdt >= 0; ) {
  82.             color = *src++;
  83.             if(ct != NULL) color = GR_CTABLE_COLOR(ct,color);
  84.             _GrSetPixel(addr,(color & C_COLOR));
  85.             addr += PIXEL_SIZE;
  86.         }
  87.         }
  88.         pixels = (char *)src;
  89.     }
  90.     *CURC = csave;
  91.     result->pxp_source = *((GrVidRAM *)&cwork);
  92.     result->pxp_source.gc_memflags = (GCM_MYCONTEXT | GCM_MYMEMORY);
  93.     result->pxp_ispixmap = TRUE;
  94.     result->pxp_width  = fullw;
  95.     result->pxp_height = h;
  96.     result->pxp_oper   = 0;
  97.     return((GrPattern *)result);
  98. }
  99.  
  100. GrPattern *GrBuildPixmapFromBits(char *bits,int w,int h,int fgc,int bgc)
  101. {
  102.     GrContext csave,cwork;
  103.     GrPixmap  *result;
  104.     unsigned  char *src;
  105.     char far  *data;
  106.     int  wdt,wdt2,fullw;
  107.     int  hgt,mask,byte;
  108.     long addr;
  109.  
  110.     if((fullw = _GrBestPixmapWidth(w,h)) <= 0) return(NULL);
  111.     data   = _GrFarMalloc(GrContextSize(fullw,h));
  112.     result = _GrMalloc(sizeof(GrPixmap));
  113.     if((result == NULL) || (data == (char far *)NULL)) {
  114.         if(result != NULL) _GrFree(result);
  115.         if(data != (char far *)NULL) _GrFarFree(data);
  116.         return(NULL);
  117.     }
  118.     GrCreateContext(fullw,h,data,&cwork);
  119.     csave = *CURC;
  120.     *CURC = cwork;
  121.     fgc &= C_COLOR;
  122.     bgc &= C_COLOR;
  123.     for(hgt = 0; hgt < h; hgt++) {
  124.         addr = PIXEL_ADDR(0,hgt);
  125.         for(wdt2 = fullw; (wdt2 -= w) >= 0; ) {
  126.         src  = (unsigned char *)bits;
  127.         mask = 0;
  128.         for(wdt = w; --wdt >= 0; ) {
  129.             if((mask >>= 1) == 0) { mask = 0x80; byte = *src++; }
  130.             _GrSetPixel(addr,((byte & mask) ? fgc : bgc));
  131.             addr += PIXEL_SIZE;
  132.         }
  133.         }
  134.         bits = (char *)src;
  135.     }
  136.     *CURC = csave;
  137.     result->pxp_source = *((GrVidRAM *)&cwork);
  138.     result->pxp_source.gc_memflags = (GCM_MYCONTEXT | GCM_MYMEMORY);
  139.     result->pxp_ispixmap = TRUE;
  140.     result->pxp_width  = fullw;
  141.     result->pxp_height = h;
  142.     result->pxp_oper   = 0;
  143.     return((GrPattern *)result);
  144. }
  145.  
  146. GrPattern *GrConvertToPixmap(GrContext *src)
  147. {
  148.     GrPixmap *result;
  149.  
  150.     if(src->gc_onscreen) return(NULL);
  151.     result = _GrMalloc(sizeof(GrPixmap));
  152.     if(result == NULL) return(NULL);
  153.     result->pxp_source = *((GrVidRAM *)src);
  154.     result->pxp_source.gc_memflags = GCM_MYCONTEXT;
  155.     result->pxp_ispixmap = TRUE;
  156.     result->pxp_width  = src->gc_xmax + 1;
  157.     result->pxp_height = src->gc_ymax + 1;
  158.     result->pxp_oper   = 0;
  159.     return((GrPattern *)result);
  160. }
  161.  
  162.  
  163. void GrDestroyPattern(GrPattern *p)
  164. {
  165.     if(p->gp_ispixmap) {
  166.         if(p->gp_pxp_source.gc_memflags & GCM_MYMEMORY)
  167.         _GrFarFree(p->gp_pxp_source.gc_baseaddr);
  168.         if(p->gp_pxp_source.gc_memflags & GCM_MYCONTEXT)
  169.         _GrFree(p);
  170.         return;
  171.     }
  172.     if(p->gp_bitmap.bmp_memflags) _GrFree(p);
  173. }
  174.  
  175.