rpng2-x.c
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:82k
源码类别:

界面编程

开发平台:

Visual C++

  1. /*---------------------------------------------------------------------------
  2.    rpng2 - progressive-model PNG display program                  rpng2-x.c
  3.    This program decodes and displays PNG files progressively, as if it were
  4.    a web browser (though the front end is only set up to read from files).
  5.    It supports gamma correction, user-specified background colors, and user-
  6.    specified background patterns (for transparent images).  This version is
  7.    for the X Window System (tested by the author under Unix and by Martin
  8.    Zinser under OpenVMS; may work under OS/2 with a little tweaking).
  9.    Thanks to Adam Costello and Pieter S. van der Meulen for the "diamond"
  10.    and "radial waves" patterns, respectively.
  11.    to do (someday, maybe):
  12.     - fix expose/redraw code:  don't draw entire row if only part exposed
  13.     - 8-bit (colormapped) X support
  14.     - finish resizable checkerboard-gradient (sizes 4-128?)
  15.     - use %.1023s to simplify truncation of title-bar string?
  16.   ---------------------------------------------------------------------------
  17.    Changelog:
  18.     - 1.01:  initial public release
  19.     - 1.02:  modified to allow abbreviated options; fixed char/uchar mismatch
  20.     - 1.10:  added support for non-default visuals; fixed X pixel-conversion
  21.     - 1.11:  added -usleep option for demos; fixed command-line parsing bug
  22.     - 1.12:  added -pause option for demos and testing
  23.     - 1.20:  added runtime MMX-enabling/disabling and new -mmx* options
  24.     - 1.21:  fixed some small X memory leaks (thanks to Fran鏾is Petitjean)
  25.     - 1.22:  fixed XFreeGC() crash bug (thanks to Patrick Welche)
  26.     - 1.23:  added -bgpat 0 mode (std white/gray checkerboard, 8x8 squares)
  27.     - 1.30:  added -loop option for -bgpat (ifdef FEATURE_LOOP); fixed bpp =
  28.               24; added support for X resources (thanks to Gerhard Niklasch)
  29.     - 1.31:  added code to skip unused chunks (thanks to Glenn Randers-Pehrson)
  30.     - 1.32:  added AMD64/EM64T support (__x86_64__); added basic expose/redraw
  31.               handling
  32.     - 2.00:  dual-licensed (added GNU GPL)
  33.     - 2.01:  fixed 64-bit typo in readpng2.c; fixed -pause usage description
  34.     - 2.02:  fixed improper display of usage screen on PNG error(s); fixed
  35.               unexpected-EOF and file-read-error cases; fixed Trace() cut-and-
  36.               paste bugs
  37.   ---------------------------------------------------------------------------
  38.       Copyright (c) 1998-2008 Greg Roelofs.  All rights reserved.
  39.       This software is provided "as is," without warranty of any kind,
  40.       express or implied.  In no event shall the author or contributors
  41.       be held liable for any damages arising in any way from the use of
  42.       this software.
  43.       The contents of this file are DUAL-LICENSED.  You may modify and/or
  44.       redistribute this software according to the terms of one of the
  45.       following two licenses (at your option):
  46.       LICENSE 1 ("BSD-like with advertising clause"):
  47.       Permission is granted to anyone to use this software for any purpose,
  48.       including commercial applications, and to alter it and redistribute
  49.       it freely, subject to the following restrictions:
  50.       1. Redistributions of source code must retain the above copyright
  51.          notice, disclaimer, and this list of conditions.
  52.       2. Redistributions in binary form must reproduce the above copyright
  53.          notice, disclaimer, and this list of conditions in the documenta-
  54.          tion and/or other materials provided with the distribution.
  55.       3. All advertising materials mentioning features or use of this
  56.          software must display the following acknowledgment:
  57.             This product includes software developed by Greg Roelofs
  58.             and contributors for the book, "PNG: The Definitive Guide,"
  59.             published by O'Reilly and Associates.
  60.       LICENSE 2 (GNU GPL v2 or later):
  61.       This program is free software; you can redistribute it and/or modify
  62.       it under the terms of the GNU General Public License as published by
  63.       the Free Software Foundation; either version 2 of the License, or
  64.       (at your option) any later version.
  65.       This program is distributed in the hope that it will be useful,
  66.       but WITHOUT ANY WARRANTY; without even the implied warranty of
  67.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  68.       GNU General Public License for more details.
  69.       You should have received a copy of the GNU General Public License
  70.       along with this program; if not, write to the Free Software Foundation,
  71.       Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  72.   ---------------------------------------------------------------------------*/
  73. #define PROGNAME  "rpng2-x"
  74. #define LONGNAME  "Progressive PNG Viewer for X"
  75. #define VERSION   "2.02 of 16 March 2008"
  76. #define RESNAME   "rpng2" /* our X resource application name */
  77. #define RESCLASS  "Rpng" /* our X resource class name */
  78. #include <stdio.h>
  79. #include <stdlib.h>
  80. #include <ctype.h>
  81. #include <string.h>
  82. #include <setjmp.h>       /* for jmpbuf declaration in readpng2.h */
  83. #include <time.h>
  84. #include <math.h>         /* only for PvdM background code */
  85. #include <X11/Xlib.h>
  86. #include <X11/Xutil.h>
  87. #include <X11/Xos.h>
  88. #include <X11/keysym.h>   /* defines XK_* macros */
  89. #ifdef VMS
  90. #  include <unistd.h>
  91. #endif
  92. /* all for PvdM background code: */
  93. #ifndef PI
  94. #  define PI             3.141592653589793238
  95. #endif
  96. #define PI_2             (PI*0.5)
  97. #define INV_PI_360       (360.0 / PI)
  98. #define MAX(a,b)         (a>b?a:b)
  99. #define MIN(a,b)         (a<b?a:b)
  100. #define CLIP(a,min,max)  MAX(min,MIN((a),max))
  101. #define ABS(a)           ((a)<0?-(a):(a))
  102. #define CLIP8P(c)        MAX(0,(MIN((c),255)))   /* 8-bit pos. integer (uch) */
  103. #define ROUNDF(f)        ((int)(f + 0.5))
  104. #define QUIT(e,k) ((e.type == ButtonPress && e.xbutton.button == Button1) ||  
  105.                   (e.type == KeyPress &&   /*  v--- or 1 for shifted keys */  
  106.                   ((k = XLookupKeysym(&e.xkey, 0)) == XK_q || k == XK_Escape)))
  107. #define NO_24BIT_MASKS /* undef case not fully written--only for redisplay() */
  108. #define rgb1_max   bg_freq
  109. #define rgb1_min   bg_gray
  110. #define rgb2_max   bg_bsat
  111. #define rgb2_min   bg_brot
  112. /* #define DEBUG */     /* this enables the Trace() macros */
  113. #include "readpng2.h"   /* typedefs, common macros, readpng2 prototypes */
  114. /* could just include png.h, but this macro is the only thing we need
  115.  * (name and typedefs changed to local versions); note that side effects
  116.  * only happen with alpha (which could easily be avoided with
  117.  * "ush acopy = (alpha);") */
  118. #define alpha_composite(composite, fg, alpha, bg) {               
  119.     ush temp = ((ush)(fg)*(ush)(alpha) +                          
  120.                 (ush)(bg)*(ush)(255 - (ush)(alpha)) + (ush)128);  
  121.     (composite) = (uch)((temp + (temp >> 8)) >> 8);               
  122. }
  123. #define INBUFSIZE 4096   /* with pseudo-timing on (1 sec delay/block), this
  124.                           *  block size corresponds roughly to a download
  125.                           *  speed 10% faster than theoretical 33.6K maximum
  126.                           *  (assuming 8 data bits, 1 stop bit and no other
  127.                           *  overhead) */
  128. /* local prototypes */
  129. static void rpng2_x_init (void);
  130. static int  rpng2_x_create_window (void);
  131. static int  rpng2_x_load_bg_image (void);
  132. static void rpng2_x_display_row (ulg row);
  133. static void rpng2_x_finish_display (void);
  134. static void rpng2_x_redisplay_image (ulg startcol, ulg startrow,
  135.                                      ulg width, ulg height);
  136. #ifdef FEATURE_LOOP
  137. static void rpng2_x_reload_bg_image (void);
  138. static int  is_number (char *p);
  139. #endif
  140. static void rpng2_x_cleanup (void);
  141. static int  rpng2_x_msb (ulg u32val);
  142. static char titlebar[1024], *window_name = titlebar;
  143. static char *appname = LONGNAME;
  144. static char *icon_name = PROGNAME;
  145. static char *res_name = RESNAME;
  146. static char *res_class = RESCLASS;
  147. static char *filename;
  148. static FILE *infile;
  149. static mainprog_info rpng2_info;
  150. static uch inbuf[INBUFSIZE];
  151. static int incount;
  152. static int pat = 6;        /* must be less than num_bgpat */
  153. static int bg_image = 0;
  154. static int bgscale, bgscale_default = 16;
  155. static ulg bg_rowbytes;
  156. static uch *bg_data;
  157. int pause_after_pass = FALSE;
  158. int demo_timing = FALSE;
  159. ulg usleep_duration = 0L;
  160. static struct rgb_color {
  161.     uch r, g, b;
  162. } rgb[] = {
  163.     {  0,   0,   0},    /*  0:  black */
  164.     {255, 255, 255},    /*  1:  white */
  165.     {173, 132,  57},    /*  2:  tan */
  166.     { 64, 132,   0},    /*  3:  medium green */
  167.     {189, 117,   1},    /*  4:  gold */
  168.     {253, 249,   1},    /*  5:  yellow */
  169.     {  0,   0, 255},    /*  6:  blue */
  170.     {  0,   0, 120},    /*  7:  medium blue */
  171.     {255,   0, 255},    /*  8:  magenta */
  172.     { 64,   0,  64},    /*  9:  dark magenta */
  173.     {255,   0,   0},    /* 10:  red */
  174.     { 64,   0,   0},    /* 11:  dark red */
  175.     {255, 127,   0},    /* 12:  orange */
  176.     {192,  96,   0},    /* 13:  darker orange */
  177.     { 24,  60,   0},    /* 14:  dark green-yellow */
  178.     { 85, 125, 200},    /* 15:  ice blue */
  179.     {192, 192, 192}     /* 16:  Netscape/Mosaic gray */
  180. };
  181. /* not used for now, but should be for error-checking:
  182. static int num_rgb = sizeof(rgb) / sizeof(struct rgb_color);
  183.  */
  184. /*
  185.     This whole struct is a fairly cheesy way to keep the number of
  186.     command-line options to a minimum.  The radial-waves background
  187.     type is a particularly poor fit to the integer elements of the
  188.     struct...but a few macros and a little fixed-point math will do
  189.     wonders for ya.
  190.     type bits:
  191.        F E D C B A 9 8 7 6 5 4 3 2 1 0
  192.                              | | | | |
  193.                              | | +-+-+-- 0 = sharp-edged checkerboard
  194.                              | |         1 = soft diamonds
  195.                              | |         2 = radial waves
  196.                              | |       3-7 = undefined
  197.                              | +-- gradient #2 inverted?
  198.                              +-- alternating columns inverted?
  199.  */
  200. static struct background_pattern {
  201.     ush type;
  202.     int rgb1_max, rgb1_min;     /* or bg_freq, bg_gray */
  203.     int rgb2_max, rgb2_min;     /* or bg_bsat, bg_brot (both scaled by 10)*/
  204. } bg[] = {
  205.     {0,     1,1, 16,16},        /* checkered:  white vs. light gray (basic) */
  206.     {0+8,   2,0,  1,15},        /* checkered:  tan/black vs. white/ice blue */
  207.     {0+24,  2,0,  1,0},         /* checkered:  tan/black vs. white/black */
  208.     {0+8,   4,5,  0,2},         /* checkered:  gold/yellow vs. black/tan */
  209.     {0+8,   4,5,  0,6},         /* checkered:  gold/yellow vs. black/blue */
  210.     {0,     7,0,  8,9},         /* checkered:  deep blue/black vs. magenta */
  211.     {0+8,  13,0,  5,14},        /* checkered:  orange/black vs. yellow */
  212.     {0+8,  12,0, 10,11},        /* checkered:  orange/black vs. red */
  213.     {1,     7,0,  8,0},         /* diamonds:  deep blue/black vs. magenta */
  214.     {1,    12,0, 11,0},         /* diamonds:  orange vs. dark red */
  215.     {1,    10,0,  7,0},         /* diamonds:  red vs. medium blue */
  216.     {1,     4,0,  5,0},         /* diamonds:  gold vs. yellow */
  217.     {1,     3,0,  0,0},         /* diamonds:  medium green vs. black */
  218.     {2,    16, 100,  20,   0},  /* radial:  ~hard radial color-beams */
  219.     {2,    18, 100,  10,   2},  /* radial:  soft, curved radial color-beams */
  220.     {2,    16, 256, 100, 250},  /* radial:  very tight spiral */
  221.     {2, 10000, 256,  11,   0}   /* radial:  dipole-moire' (almost fractal) */
  222. };
  223. static int num_bgpat = sizeof(bg) / sizeof(struct background_pattern);
  224. /* X-specific variables */
  225. static char *displayname;
  226. static XImage *ximage;
  227. static Display *display;
  228. static int depth;
  229. static Visual *visual;
  230. static XVisualInfo *visual_list;
  231. static int RShift, GShift, BShift;
  232. static ulg RMask, GMask, BMask;
  233. static Window window;
  234. static GC gc;
  235. static Colormap colormap;
  236. static int have_nondefault_visual = FALSE;
  237. static int have_colormap = FALSE;
  238. static int have_window = FALSE;
  239. static int have_gc = FALSE;
  240. int main(int argc, char **argv)
  241. {
  242. #ifdef sgi
  243.     char tmpline[80];
  244. #endif
  245.     char *p, *bgstr = NULL;
  246.     int rc, alen, flen;
  247.     int error = 0;
  248.     int timing = FALSE;
  249.     int have_bg = FALSE;
  250. #ifdef FEATURE_LOOP
  251.     int loop = FALSE;
  252.     long loop_interval = -1; /* seconds (100,000 max) */
  253. #endif
  254.     double LUT_exponent;                /* just the lookup table */
  255.     double CRT_exponent = 2.2;          /* just the monitor */
  256.     double default_display_exponent;    /* whole display system */
  257.     XEvent e;
  258.     KeySym k;
  259.     /* First initialize a few things, just to be sure--memset takes care of
  260.      * default background color (black), booleans (FALSE), pointers (NULL),
  261.      * etc. */
  262.     displayname = (char *)NULL;
  263.     filename = (char *)NULL;
  264.     memset(&rpng2_info, 0, sizeof(mainprog_info));
  265.     /* Set the default value for our display-system exponent, i.e., the
  266.      * product of the CRT exponent and the exponent corresponding to
  267.      * the frame-buffer's lookup table (LUT), if any.  This is not an
  268.      * exhaustive list of LUT values (e.g., OpenStep has a lot of weird
  269.      * ones), but it should cover 99% of the current possibilities. */
  270. #if defined(NeXT)
  271.     /* third-party utilities can modify the default LUT exponent */
  272.     LUT_exponent = 1.0 / 2.2;
  273.     /*
  274.     if (some_next_function_that_returns_gamma(&next_gamma))
  275.         LUT_exponent = 1.0 / next_gamma;
  276.      */
  277. #elif defined(sgi)
  278.     LUT_exponent = 1.0 / 1.7;
  279.     /* there doesn't seem to be any documented function to
  280.      * get the "gamma" value, so we do it the hard way */
  281.     infile = fopen("/etc/config/system.glGammaVal", "r");
  282.     if (infile) {
  283.         double sgi_gamma;
  284.         fgets(tmpline, 80, infile);
  285.         fclose(infile);
  286.         sgi_gamma = atof(tmpline);
  287.         if (sgi_gamma > 0.0)
  288.             LUT_exponent = 1.0 / sgi_gamma;
  289.     }
  290. #elif defined(Macintosh)
  291.     LUT_exponent = 1.8 / 2.61;
  292.     /*
  293.     if (some_mac_function_that_returns_gamma(&mac_gamma))
  294.         LUT_exponent = mac_gamma / 2.61;
  295.      */
  296. #else
  297.     LUT_exponent = 1.0;   /* assume no LUT:  most PCs */
  298. #endif
  299.     /* the defaults above give 1.0, 1.3, 1.5 and 2.2, respectively: */
  300.     default_display_exponent = LUT_exponent * CRT_exponent;
  301.     /* If the user has set the SCREEN_GAMMA environment variable as suggested
  302.      * (somewhat imprecisely) in the libpng documentation, use that; otherwise
  303.      * use the default value we just calculated.  Either way, the user may
  304.      * override this via a command-line option. */
  305.     if ((p = getenv("SCREEN_GAMMA")) != NULL)
  306.         rpng2_info.display_exponent = atof(p);
  307.     else
  308.         rpng2_info.display_exponent = default_display_exponent;
  309.     /* Now parse the command line for options and the PNG filename. */
  310.     while (*++argv && !error) {
  311.         if (!strncmp(*argv, "-display", 2)) {
  312.             if (!*++argv)
  313.                 ++error;
  314.             else
  315.                 displayname = *argv;
  316.         } else if (!strncmp(*argv, "-gamma", 2)) {
  317.             if (!*++argv)
  318.                 ++error;
  319.             else {
  320.                 rpng2_info.display_exponent = atof(*argv);
  321.                 if (rpng2_info.display_exponent <= 0.0)
  322.                     ++error;
  323.             }
  324.         } else if (!strncmp(*argv, "-bgcolor", 4)) {
  325.             if (!*++argv)
  326.                 ++error;
  327.             else {
  328.                 bgstr = *argv;
  329.                 if (strlen(bgstr) != 7 || bgstr[0] != '#')
  330.                     ++error;
  331.                 else {
  332.                     have_bg = TRUE;
  333.                     bg_image = FALSE;
  334.                 }
  335.             }
  336.         } else if (!strncmp(*argv, "-bgpat", 4)) {
  337.             if (!*++argv)
  338.                 ++error;
  339.             else {
  340.                 pat = atoi(*argv);
  341.                 if (pat >= 0 && pat < num_bgpat) {
  342.                     bg_image = TRUE;
  343.                     have_bg = FALSE;
  344.                 } else
  345.                     ++error;
  346.             }
  347.         } else if (!strncmp(*argv, "-usleep", 2)) {
  348.             if (!*++argv)
  349.                 ++error;
  350.             else {
  351.                 usleep_duration = (ulg)atol(*argv);
  352.                 demo_timing = TRUE;
  353.             }
  354.         } else if (!strncmp(*argv, "-pause", 2)) {
  355.             pause_after_pass = TRUE;
  356.         } else if (!strncmp(*argv, "-timing", 2)) {
  357.             timing = TRUE;
  358. #ifdef FEATURE_LOOP
  359.         } else if (!strncmp(*argv, "-loop", 2)) {
  360.             loop = TRUE;
  361.             if (!argv[1] || !is_number(argv[1]))
  362.                 loop_interval = 2;
  363.             else {
  364.                 ++argv;
  365.                 loop_interval = atol(*argv);
  366.                 if (loop_interval < 0)
  367.                     loop_interval = 2;
  368.                 else if (loop_interval > 100000)   /* bit more than one day */
  369.                     loop_interval = 100000;
  370.             }
  371. #endif
  372. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  373.         } else if (!strncmp(*argv, "-nommxfilters", 7)) {
  374.             rpng2_info.nommxfilters = TRUE;
  375.         } else if (!strncmp(*argv, "-nommxcombine", 7)) {
  376.             rpng2_info.nommxcombine = TRUE;
  377.         } else if (!strncmp(*argv, "-nommxinterlace", 7)) {
  378.             rpng2_info.nommxinterlace = TRUE;
  379.         } else if (!strcmp(*argv, "-nommx")) {
  380.             rpng2_info.nommxfilters = TRUE;
  381.             rpng2_info.nommxcombine = TRUE;
  382.             rpng2_info.nommxinterlace = TRUE;
  383. #endif
  384.         } else {
  385.             if (**argv != '-') {
  386.                 filename = *argv;
  387.                 if (argv[1])   /* shouldn't be any more args after filename */
  388.                     ++error;
  389.             } else
  390.                 ++error;   /* not expecting any other options */
  391.         }
  392.     }
  393.     if (!filename)
  394.         ++error;
  395.     /* print usage screen if any errors up to this point */
  396.     if (error) {
  397.         fprintf(stderr, "n%s %s:  %snn", PROGNAME, VERSION, appname);
  398.         readpng2_version_info();
  399.         fprintf(stderr, "n"
  400.           "Usage:  %s [-display xdpy] [-gamma exp] [-bgcolor bg | -bgpat pat]n"
  401. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  402.           "        %*s [[-nommxfilters] [-nommxcombine] [-nommxinterlace] | -nommx]n"
  403. #endif
  404. #ifdef FEATURE_LOOP
  405.           "        %*s [-usleep dur | -timing] [-pause] [-loop [sec]] file.pngnn"
  406. #else
  407.           "        %*s [-usleep dur | -timing] [-pause] file.pngnn"
  408. #endif
  409.           "    xdpytname of the target X display (e.g., ``hostname:0'')n"
  410.           "    exp ttransfer-function exponent (``gamma'') of the displayn"
  411.           "tt  system in floating-point format (e.g., ``%.1f''); equaln"
  412.           "tt  to the product of the lookup-table exponent (varies)n"
  413.           "tt  and the CRT exponent (usually 2.2); must be positiven"
  414.           "    bg  tdesired background color in 7-character hex RGB formatn"
  415.           "tt  (e.g., ``#ff7700'' for orange:  same as HTML colors);n"
  416.           "tt  used with transparent images; overrides -bgpatn"
  417.           "    pat tdesired background pattern number (0-%d); used withn"
  418.           "tt  transparent images; overrides -bgcolorn"
  419. #ifdef FEATURE_LOOP
  420.           "    -looptloops through background images after initial displayn"
  421.           "tt  is complete (depends on -bgpat)n"
  422.           "    sec tseconds to display each background image (default = 2)n"
  423. #endif
  424. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  425.           "    -nommx*tdisable optimized MMX routines for decoding row filters,n"
  426.           "tt  combining rows, and expanding interlacing, respectivelyn"
  427. #endif
  428.           "    dur tduration in microseconds to wait after displaying eachn"
  429.           "tt  row (for demo purposes)n"
  430.           "    -timingtenables delay for every block read, to simulate modemn"
  431.           "tt  download of image (~36 Kbps)n"
  432.           "    -pausetpauses after displaying each pass until mouse clickedn"
  433.           "nPress Q, Esc or mouse button 1 (within image window, after imagen"
  434.           "is displayed) to quit.n"
  435.           "n", PROGNAME,
  436. #if (defined(__i386__) || defined(_M_IX86) || defined(__x86_64__))
  437.           (int)strlen(PROGNAME), " ",
  438. #endif
  439.           (int)strlen(PROGNAME), " ", default_display_exponent, num_bgpat-1);
  440.         exit(1);
  441.     }
  442.     if (!(infile = fopen(filename, "rb"))) {
  443.         fprintf(stderr, PROGNAME ":  can't open PNG file [%s]n", filename);
  444.         ++error;
  445.     } else {
  446.         incount = fread(inbuf, 1, INBUFSIZE, infile);
  447.         if (incount < 8 || !readpng2_check_sig(inbuf, 8)) {
  448.             fprintf(stderr, PROGNAME
  449.               ":  [%s] is not a PNG file: incorrect signaturen",
  450.               filename);
  451.             ++error;
  452.         } else if ((rc = readpng2_init(&rpng2_info)) != 0) {
  453.             switch (rc) {
  454.                 case 2:
  455.                     fprintf(stderr, PROGNAME
  456.                       ":  [%s] has bad IHDR (libpng longjmp)n", filename);
  457.                     break;
  458.                 case 4:
  459.                     fprintf(stderr, PROGNAME ":  insufficient memoryn");
  460.                     break;
  461.                 default:
  462.                     fprintf(stderr, PROGNAME
  463.                       ":  unknown readpng2_init() errorn");
  464.                     break;
  465.             }
  466.             ++error;
  467.         } else {
  468.             Trace((stderr, "about to call XOpenDisplay()n"))
  469.             display = XOpenDisplay(displayname);
  470.             if (!display) {
  471.                 readpng2_cleanup(&rpng2_info);
  472.                 fprintf(stderr, PROGNAME ":  can't open X display [%s]n",
  473.                   displayname? displayname : "default");
  474.                 ++error;
  475.             }
  476.         }
  477.         if (error)
  478.             fclose(infile);
  479.     }
  480.     if (error) {
  481.         fprintf(stderr, PROGNAME ":  aborting.n");
  482.         exit(2);
  483.     }
  484.     /* set the title-bar string, but make sure buffer doesn't overflow */
  485.     alen = strlen(appname);
  486.     flen = strlen(filename);
  487.     if (alen + flen + 3 > 1023)
  488.         sprintf(titlebar, "%s:  ...%s", appname, filename+(alen+flen+6-1023));
  489.     else
  490.         sprintf(titlebar, "%s:  %s", appname, filename);
  491.     /* set some final rpng2_info variables before entering main data loop */
  492.     if (have_bg) {
  493.         unsigned r, g, b;   /* this approach quiets compiler warnings */
  494.         sscanf(bgstr+1, "%2x%2x%2x", &r, &g, &b);
  495.         rpng2_info.bg_red   = (uch)r;
  496.         rpng2_info.bg_green = (uch)g;
  497.         rpng2_info.bg_blue  = (uch)b;
  498.     } else
  499.         rpng2_info.need_bgcolor = TRUE;
  500.     rpng2_info.state = kPreInit;
  501.     rpng2_info.mainprog_init = rpng2_x_init;
  502.     rpng2_info.mainprog_display_row = rpng2_x_display_row;
  503.     rpng2_info.mainprog_finish_display = rpng2_x_finish_display;
  504.     /* OK, this is the fun part:  call readpng2_decode_data() at the start of
  505.      * the loop to deal with our first buffer of data (read in above to verify
  506.      * that the file is a PNG image), then loop through the file and continue
  507.      * calling the same routine to handle each chunk of data.  It in turn
  508.      * passes the data to libpng, which will invoke one or more of our call-
  509.      * backs as decoded data become available.  We optionally call sleep() for
  510.      * one second per iteration to simulate downloading the image via an analog
  511.      * modem. */
  512.     for (;;) {
  513.         Trace((stderr, "about to call readpng2_decode_data()n"))
  514.         if (readpng2_decode_data(&rpng2_info, inbuf, incount))
  515.             ++error;
  516.         Trace((stderr, "done with readpng2_decode_data()n"))
  517.         if (error || incount != INBUFSIZE || rpng2_info.state == kDone) {
  518.             if (rpng2_info.state == kDone) {
  519.                 Trace((stderr, "done decoding PNG imagen"))
  520.             } else if (ferror(infile)) {
  521.                 fprintf(stderr, PROGNAME
  522.                   ":  error while reading PNG image filen");
  523.                 exit(3);
  524.             } else if (feof(infile)) {
  525.                 fprintf(stderr, PROGNAME ":  end of file reached "
  526.                   "(unexpectedly) while reading PNG image filen");
  527.                 exit(3);
  528.             } else /* if (error) */ {
  529.                 // will print error message below
  530.             }
  531.             break;
  532.         }
  533.         if (timing)
  534.             sleep(1);
  535.         incount = fread(inbuf, 1, INBUFSIZE, infile);
  536.     }
  537.     /* clean up PNG stuff and report any decoding errors */
  538.     fclose(infile);
  539.     Trace((stderr, "about to call readpng2_cleanup()n"))
  540.     readpng2_cleanup(&rpng2_info);
  541.     if (error) {
  542.         fprintf(stderr, PROGNAME ":  libpng error while decoding PNG imagen");
  543.         exit(3);
  544.     }
  545. #ifdef FEATURE_LOOP
  546.     if (loop && bg_image) {
  547.         Trace((stderr, "entering -loop loop (FEATURE_LOOP)n"))
  548.         for (;;) {
  549.             int i, use_sleep;
  550.             struct timeval now, then;
  551.             /* get current time and add loop_interval to get target time */
  552.             if (gettimeofday(&then, NULL) == 0) {
  553.                 then.tv_sec += loop_interval;
  554.                 use_sleep = FALSE;
  555.             } else
  556.                 use_sleep = TRUE;
  557.             /* do quick check for a quit event but don't wait for it */
  558.             /* GRR BUG:  should also check for Expose events and redraw... */
  559.             if (XCheckMaskEvent(display, KeyPressMask | ButtonPressMask, &e))
  560.                 if (QUIT(e,k))
  561.                     break;
  562.             /* generate next background image */
  563.             if (++pat >= num_bgpat)
  564.                 pat = 0;
  565.             rpng2_x_reload_bg_image();
  566.             /* wait for timeout, using whatever means are available */
  567.             if (use_sleep || gettimeofday(&now, NULL) != 0) {
  568.                 for (i = loop_interval;  i > 0;  --i) {
  569.                     sleep(1);
  570.                     /* GRR BUG:  also need to check for Expose (and redraw!) */
  571.                     if (XCheckMaskEvent(display, KeyPressMask | ButtonPressMask,
  572.                         &e) && QUIT(e,k))
  573.                         break;
  574.                 }
  575.             } else {
  576.                 /* Y2038 BUG! */
  577.                 if (now.tv_sec < then.tv_sec ||
  578.                     (now.tv_sec == then.tv_sec && now.tv_usec < then.tv_usec))
  579.                 {
  580.                     int quit = FALSE;
  581.                     long seconds_to_go = then.tv_sec - now.tv_sec;
  582.                     long usleep_usec;
  583.                     /* basically chew up most of remaining loop-interval with
  584.                      *  calls to sleep(1) interleaved with checks for quit
  585.                      *  events, but also recalc time-to-go periodically; when
  586.                      *  done, clean up any remaining time with usleep() call
  587.                      *  (could also use SIGALRM, but signals are a pain...) */
  588.                     while (seconds_to_go-- > 1) {
  589.                         int seconds_done = 0;
  590.                         for (i = seconds_to_go;  i > 0 && !quit;  --i) {
  591.                             sleep(1);
  592.                             /* GRR BUG:  need to check for Expose and redraw */
  593.                             if (XCheckMaskEvent(display, KeyPressMask |
  594.                                 ButtonPressMask, &e) && QUIT(e,k))
  595.                                 quit = TRUE;
  596.                             if (++seconds_done > 1000)
  597.                                 break;   /* time to redo seconds_to_go meas. */
  598.                         }
  599.                         if (quit)
  600.                             break;
  601.                         /* OK, more than 1000 seconds since last check:
  602.                          *  correct the time-to-go measurement for drift */
  603.                         if (gettimeofday(&now, NULL) == 0) {
  604.                             if (now.tv_sec >= then.tv_sec)
  605.                                 break;
  606.                             seconds_to_go = then.tv_sec - now.tv_sec;
  607.                         } else
  608.                             ++seconds_to_go;  /* restore what we subtracted */
  609.                     }
  610.                     if (quit)
  611.                         break;   /* breaks outer do-loop, skips redisplay */
  612.                     /* since difference between "now" and "then" is already
  613.                      *  eaten up to within a couple of seconds, don't need to
  614.                      *  worry about overflow--but might have overshot (neg.) */
  615.                     if (gettimeofday(&now, NULL) == 0) {
  616.                         usleep_usec = 1000000L*(then.tv_sec - now.tv_sec) +
  617.                           then.tv_usec - now.tv_usec;
  618.                         if (usleep_usec > 0)
  619.                             usleep((ulg)usleep_usec);
  620.                     }
  621.                 }
  622.             }
  623.             /* composite image against new background and display (note that
  624.              *  we do not take into account the time spent doing this...) */
  625.             rpng2_x_redisplay_image (0, 0, rpng2_info.width, rpng2_info.height);
  626.         }
  627.     } else /* FALL THROUGH and do the normal thing */
  628. #endif /* FEATURE_LOOP */
  629.     /* wait for the user to tell us when to quit */
  630.     if (rpng2_info.state >= kWindowInit) {
  631.         Trace((stderr, "entering final wait-for-quit-event loopn"))
  632.         do {
  633.             XNextEvent(display, &e);
  634.             if (e.type == Expose) {
  635.                 XExposeEvent *ex = (XExposeEvent *)&e;
  636.                 rpng2_x_redisplay_image (ex->x, ex->y, ex->width, ex->height);
  637.             }
  638.         } while (!QUIT(e,k));
  639.     } else {
  640.         fprintf(stderr, PROGNAME ":  init callback never called:  probable "
  641.           "libpng error while decoding PNG metadatan");
  642.         exit(4);
  643.     }
  644.     /* we're done:  clean up all image and X resources and go away */
  645.     Trace((stderr, "about to call rpng2_x_cleanup()n"))
  646.     rpng2_x_cleanup();
  647.     return 0;
  648. }
  649. /* this function is called by readpng2_info_callback() in readpng2.c, which
  650.  * in turn is called by libpng after all of the pre-IDAT chunks have been
  651.  * read and processed--i.e., we now have enough info to finish initializing */
  652. static void rpng2_x_init(void)
  653. {
  654.     ulg i;
  655.     ulg rowbytes = rpng2_info.rowbytes;
  656.     Trace((stderr, "beginning rpng2_x_init()n"))
  657.     Trace((stderr, "  rowbytes = %dn", rpng2_info.rowbytes))
  658.     Trace((stderr, "  width  = %ldn", rpng2_info.width))
  659.     Trace((stderr, "  height = %ldn", rpng2_info.height))
  660.     rpng2_info.image_data = (uch *)malloc(rowbytes * rpng2_info.height);
  661.     if (!rpng2_info.image_data) {
  662.         readpng2_cleanup(&rpng2_info);
  663.         return;
  664.     }
  665.     rpng2_info.row_pointers = (uch **)malloc(rpng2_info.height * sizeof(uch *));
  666.     if (!rpng2_info.row_pointers) {
  667.         free(rpng2_info.image_data);
  668.         rpng2_info.image_data = NULL;
  669.         readpng2_cleanup(&rpng2_info);
  670.         return;
  671.     }
  672.     for (i = 0;  i < rpng2_info.height;  ++i)
  673.         rpng2_info.row_pointers[i] = rpng2_info.image_data + i*rowbytes;
  674.     /* do the basic X initialization stuff, make the window, and fill it with
  675.      * the user-specified, file-specified or default background color or
  676.      * pattern */
  677.     if (rpng2_x_create_window()) {
  678.         /* GRR TEMPORARY HACK:  this is fundamentally no different from cases
  679.          * above; libpng should longjmp() back to us when png_ptr goes away.
  680.          * If we/it segfault instead, seems like a libpng bug... */
  681.         /* we're here via libpng callback, so if window fails, clean and bail */
  682.         readpng2_cleanup(&rpng2_info);
  683.         rpng2_x_cleanup();
  684.         exit(2);
  685.     }
  686.     rpng2_info.state = kWindowInit;
  687. }
  688. static int rpng2_x_create_window(void)
  689. {
  690.     ulg bg_red   = rpng2_info.bg_red;
  691.     ulg bg_green = rpng2_info.bg_green;
  692.     ulg bg_blue  = rpng2_info.bg_blue;
  693.     ulg bg_pixel = 0L;
  694.     ulg attrmask;
  695.     int need_colormap = FALSE;
  696.     int screen, pad;
  697.     uch *xdata;
  698.     Window root;
  699.     XEvent e;
  700.     XGCValues gcvalues;
  701.     XSetWindowAttributes attr;
  702.     XTextProperty windowName, *pWindowName = &windowName;
  703.     XTextProperty iconName, *pIconName = &iconName;
  704.     XVisualInfo visual_info;
  705.     XSizeHints *size_hints;
  706.     XWMHints *wm_hints;
  707.     XClassHint *class_hints;
  708.     Trace((stderr, "beginning rpng2_x_create_window()n"))
  709.     screen = DefaultScreen(display);
  710.     depth = DisplayPlanes(display, screen);
  711.     root = RootWindow(display, screen);
  712. #ifdef DEBUG
  713.     XSynchronize(display, True);
  714. #endif
  715.     if (depth != 16 && depth != 24 && depth != 32) {
  716.         int visuals_matched = 0;
  717.         Trace((stderr, "default depth is %d:  checking other visualsn",
  718.           depth))
  719.         /* 24-bit first */
  720.         visual_info.screen = screen;
  721.         visual_info.depth = 24;
  722.         visual_list = XGetVisualInfo(display,
  723.           VisualScreenMask | VisualDepthMask, &visual_info, &visuals_matched);
  724.         if (visuals_matched == 0) {
  725. /* GRR:  add 15-, 16- and 32-bit TrueColor visuals (also DirectColor?) */
  726.             fprintf(stderr, "default screen depth %d not supported, and no"
  727.               " 24-bit visuals foundn", depth);
  728.             return 2;
  729.         }
  730.         Trace((stderr, "XGetVisualInfo() returned %d 24-bit visualsn",
  731.           visuals_matched))
  732.         visual = visual_list[0].visual;
  733.         depth = visual_list[0].depth;
  734. /*
  735.         colormap_size = visual_list[0].colormap_size;
  736.         visual_class = visual->class;
  737.         visualID = XVisualIDFromVisual(visual);
  738.  */
  739.         have_nondefault_visual = TRUE;
  740.         need_colormap = TRUE;
  741.     } else {
  742.         XMatchVisualInfo(display, screen, depth, TrueColor, &visual_info);
  743.         visual = visual_info.visual;
  744.     }
  745.     RMask = visual->red_mask;
  746.     GMask = visual->green_mask;
  747.     BMask = visual->blue_mask;
  748. /* GRR:  add/check 8-bit support */
  749.     if (depth == 8 || need_colormap) {
  750.         colormap = XCreateColormap(display, root, visual, AllocNone);
  751.         if (!colormap) {
  752.             fprintf(stderr, "XCreateColormap() failedn");
  753.             return 2;
  754.         }
  755.         have_colormap = TRUE;
  756.         if (depth == 8)
  757.             bg_image = FALSE;   /* gradient just wastes palette entries */
  758.     }
  759.     if (depth == 15 || depth == 16) {
  760.         RShift = 15 - rpng2_x_msb(RMask);    /* these are right-shifts */
  761.         GShift = 15 - rpng2_x_msb(GMask);
  762.         BShift = 15 - rpng2_x_msb(BMask);
  763.     } else if (depth > 16) {
  764.         RShift = rpng2_x_msb(RMask) - 7;     /* these are left-shifts */
  765.         GShift = rpng2_x_msb(GMask) - 7;
  766.         BShift = rpng2_x_msb(BMask) - 7;
  767.     }
  768.     if (depth >= 15 && (RShift < 0 || GShift < 0 || BShift < 0)) {
  769.         fprintf(stderr, "rpng2 internal logic error:  negative X shift(s)!n");
  770.         return 2;
  771.     }
  772. /*---------------------------------------------------------------------------
  773.     Finally, create the window.
  774.   ---------------------------------------------------------------------------*/
  775.     attr.backing_store = Always;
  776.     attr.event_mask = ExposureMask | KeyPressMask | ButtonPressMask;
  777.     attrmask = CWBackingStore | CWEventMask;
  778.     if (have_nondefault_visual) {
  779.         attr.colormap = colormap;
  780.         attr.background_pixel = 0;
  781.         attr.border_pixel = 1;
  782.         attrmask |= CWColormap | CWBackPixel | CWBorderPixel;
  783.     }
  784.     window = XCreateWindow(display, root, 0, 0, rpng2_info.width,
  785.       rpng2_info.height, 0, depth, InputOutput, visual, attrmask, &attr);
  786.     if (window == None) {
  787.         fprintf(stderr, "XCreateWindow() failedn");
  788.         return 2;
  789.     } else
  790.         have_window = TRUE;
  791.     if (depth == 8)
  792.         XSetWindowColormap(display, window, colormap);
  793.     if (!XStringListToTextProperty(&window_name, 1, pWindowName))
  794.         pWindowName = NULL;
  795.     if (!XStringListToTextProperty(&icon_name, 1, pIconName))
  796.         pIconName = NULL;
  797.     /* OK if either hints allocation fails; XSetWMProperties() allows NULLs */
  798.     if ((size_hints = XAllocSizeHints()) != NULL) {
  799.         /* window will not be resizable */
  800.         size_hints->flags = PMinSize | PMaxSize;
  801.         size_hints->min_width = size_hints->max_width = (int)rpng2_info.width;
  802.         size_hints->min_height = size_hints->max_height =
  803.           (int)rpng2_info.height;
  804.     }
  805.     if ((wm_hints = XAllocWMHints()) != NULL) {
  806.         wm_hints->initial_state = NormalState;
  807.         wm_hints->input = True;
  808.      /* wm_hints->icon_pixmap = icon_pixmap; */
  809.         wm_hints->flags = StateHint | InputHint  /* | IconPixmapHint */ ;
  810.     }
  811.     if ((class_hints = XAllocClassHint()) != NULL) {
  812.         class_hints->res_name = res_name;
  813.         class_hints->res_class = res_class;
  814.     }
  815.     XSetWMProperties(display, window, pWindowName, pIconName, NULL, 0,
  816.       size_hints, wm_hints, class_hints);
  817.     /* various properties and hints no longer needed; free memory */
  818.     if (pWindowName)
  819.        XFree(pWindowName->value);
  820.     if (pIconName)
  821.        XFree(pIconName->value);
  822.     if (size_hints)
  823.         XFree(size_hints);
  824.     if (wm_hints)
  825.        XFree(wm_hints);
  826.     if (class_hints)
  827.        XFree(class_hints);
  828.     XMapWindow(display, window);
  829.     gc = XCreateGC(display, window, 0, &gcvalues);
  830.     have_gc = TRUE;
  831. /*---------------------------------------------------------------------------
  832.     Allocate memory for the X- and display-specific version of the image.
  833.   ---------------------------------------------------------------------------*/
  834.     if (depth == 24 || depth == 32) {
  835.         xdata = (uch *)malloc(4*rpng2_info.width*rpng2_info.height);
  836.         pad = 32;
  837.     } else if (depth == 16) {
  838.         xdata = (uch *)malloc(2*rpng2_info.width*rpng2_info.height);
  839.         pad = 16;
  840.     } else /* depth == 8 */ {
  841.         xdata = (uch *)malloc(rpng2_info.width*rpng2_info.height);
  842.         pad = 8;
  843.     }
  844.     if (!xdata) {
  845.         fprintf(stderr, PROGNAME ":  unable to allocate image memoryn");
  846.         return 4;
  847.     }
  848.     ximage = XCreateImage(display, visual, depth, ZPixmap, 0,
  849.       (char *)xdata, rpng2_info.width, rpng2_info.height, pad, 0);
  850.     if (!ximage) {
  851.         fprintf(stderr, PROGNAME ":  XCreateImage() failedn");
  852.         free(xdata);
  853.         return 3;
  854.     }
  855.     /* to avoid testing the byte order every pixel (or doubling the size of
  856.      * the drawing routine with a giant if-test), we arbitrarily set the byte
  857.      * order to MSBFirst and let Xlib worry about inverting things on little-
  858.      * endian machines (e.g., Linux/x86, old VAXen, etc.)--this is not the
  859.      * most efficient approach (the giant if-test would be better), but in
  860.      * the interest of clarity, we'll take the easy way out... */
  861.     ximage->byte_order = MSBFirst;
  862. /*---------------------------------------------------------------------------
  863.     Fill window with the specified background color (default is black) or
  864.     faked "background image" (but latter is disabled if 8-bit; gradients
  865.     just waste palette entries).
  866.   ---------------------------------------------------------------------------*/
  867.     if (bg_image)
  868.         rpng2_x_load_bg_image();    /* resets bg_image if fails */
  869.     if (!bg_image) {
  870.         if (depth == 24 || depth == 32) {
  871.             bg_pixel = (bg_red   << RShift) |
  872.                        (bg_green << GShift) |
  873.                        (bg_blue  << BShift);
  874.         } else if (depth == 16) {
  875.             bg_pixel = (((bg_red   << 8) >> RShift) & RMask) |
  876.                        (((bg_green << 8) >> GShift) & GMask) |
  877.                        (((bg_blue  << 8) >> BShift) & BMask);
  878.         } else /* depth == 8 */ {
  879.             /* GRR:  add 8-bit support */
  880.         }
  881.         XSetForeground(display, gc, bg_pixel);
  882.         XFillRectangle(display, window, gc, 0, 0, rpng2_info.width,
  883.           rpng2_info.height);
  884.     }
  885. /*---------------------------------------------------------------------------
  886.     Wait for first Expose event to do any drawing, then flush and return.
  887.   ---------------------------------------------------------------------------*/
  888.     do
  889.         XNextEvent(display, &e);
  890.     while (e.type != Expose || e.xexpose.count);
  891.     XFlush(display);
  892.     return 0;
  893. } /* end function rpng2_x_create_window() */
  894. static int rpng2_x_load_bg_image(void)
  895. {
  896.     uch *src;
  897.     char *dest;
  898.     uch r1, r2, g1, g2, b1, b2;
  899.     uch r1_inv, r2_inv, g1_inv, g2_inv, b1_inv, b2_inv;
  900.     int k, hmax, max;
  901.     int xidx, yidx, yidx_max;
  902.     int even_odd_vert, even_odd_horiz, even_odd;
  903.     int invert_gradient2 = (bg[pat].type & 0x08);
  904.     int invert_column;
  905.     int ximage_rowbytes = ximage->bytes_per_line;
  906.     ulg i, row;
  907.     ulg pixel;
  908. /*---------------------------------------------------------------------------
  909.     Allocate buffer for fake background image to be used with transparent
  910.     images; if this fails, revert to plain background color.
  911.   ---------------------------------------------------------------------------*/
  912.     bg_rowbytes = 3 * rpng2_info.width;
  913.     bg_data = (uch *)malloc(bg_rowbytes * rpng2_info.height);
  914.     if (!bg_data) {
  915.         fprintf(stderr, PROGNAME
  916.           ":  unable to allocate memory for background imagen");
  917.         bg_image = 0;
  918.         return 1;
  919.     }
  920.     bgscale = (pat == 0)? 8 : bgscale_default;
  921.     yidx_max = bgscale - 1;
  922. /*---------------------------------------------------------------------------
  923.     Vertical gradients (ramps) in NxN squares, alternating direction and
  924.     colors (N == bgscale).
  925.   ---------------------------------------------------------------------------*/
  926.     if ((bg[pat].type & 0x07) == 0) {
  927.         uch r1_min  = rgb[bg[pat].rgb1_min].r;
  928.         uch g1_min  = rgb[bg[pat].rgb1_min].g;
  929.         uch b1_min  = rgb[bg[pat].rgb1_min].b;
  930.         uch r2_min  = rgb[bg[pat].rgb2_min].r;
  931.         uch g2_min  = rgb[bg[pat].rgb2_min].g;
  932.         uch b2_min  = rgb[bg[pat].rgb2_min].b;
  933.         int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min;
  934.         int g1_diff = rgb[bg[pat].rgb1_max].g - g1_min;
  935.         int b1_diff = rgb[bg[pat].rgb1_max].b - b1_min;
  936.         int r2_diff = rgb[bg[pat].rgb2_max].r - r2_min;
  937.         int g2_diff = rgb[bg[pat].rgb2_max].g - g2_min;
  938.         int b2_diff = rgb[bg[pat].rgb2_max].b - b2_min;
  939.         for (row = 0;  row < rpng2_info.height;  ++row) {
  940.             yidx = (int)(row % bgscale);
  941.             even_odd_vert = (int)((row / bgscale) & 1);
  942.             r1 = r1_min + (r1_diff * yidx) / yidx_max;
  943.             g1 = g1_min + (g1_diff * yidx) / yidx_max;
  944.             b1 = b1_min + (b1_diff * yidx) / yidx_max;
  945.             r1_inv = r1_min + (r1_diff * (yidx_max-yidx)) / yidx_max;
  946.             g1_inv = g1_min + (g1_diff * (yidx_max-yidx)) / yidx_max;
  947.             b1_inv = b1_min + (b1_diff * (yidx_max-yidx)) / yidx_max;
  948.             r2 = r2_min + (r2_diff * yidx) / yidx_max;
  949.             g2 = g2_min + (g2_diff * yidx) / yidx_max;
  950.             b2 = b2_min + (b2_diff * yidx) / yidx_max;
  951.             r2_inv = r2_min + (r2_diff * (yidx_max-yidx)) / yidx_max;
  952.             g2_inv = g2_min + (g2_diff * (yidx_max-yidx)) / yidx_max;
  953.             b2_inv = b2_min + (b2_diff * (yidx_max-yidx)) / yidx_max;
  954.             dest = (char *)bg_data + row*bg_rowbytes;
  955.             for (i = 0;  i < rpng2_info.width;  ++i) {
  956.                 even_odd_horiz = (int)((i / bgscale) & 1);
  957.                 even_odd = even_odd_vert ^ even_odd_horiz;
  958.                 invert_column =
  959.                   (even_odd_horiz && (bg[pat].type & 0x10));
  960.                 if (even_odd == 0) {        /* gradient #1 */
  961.                     if (invert_column) {
  962.                         *dest++ = r1_inv;
  963.                         *dest++ = g1_inv;
  964.                         *dest++ = b1_inv;
  965.                     } else {
  966.                         *dest++ = r1;
  967.                         *dest++ = g1;
  968.                         *dest++ = b1;
  969.                     }
  970.                 } else {                    /* gradient #2 */
  971.                     if ((invert_column && invert_gradient2) ||
  972.                         (!invert_column && !invert_gradient2))
  973.                     {
  974.                         *dest++ = r2;       /* not inverted or */
  975.                         *dest++ = g2;       /*  doubly inverted */
  976.                         *dest++ = b2;
  977.                     } else {
  978.                         *dest++ = r2_inv;
  979.                         *dest++ = g2_inv;   /* singly inverted */
  980.                         *dest++ = b2_inv;
  981.                     }
  982.                 }
  983.             }
  984.         }
  985. /*---------------------------------------------------------------------------
  986.     Soft gradient-diamonds with scale = bgscale.  Code contributed by Adam
  987.     M. Costello.
  988.   ---------------------------------------------------------------------------*/
  989.     } else if ((bg[pat].type & 0x07) == 1) {
  990.         hmax = (bgscale-1)/2;   /* half the max weight of a color */
  991.         max = 2*hmax;           /* the max weight of a color */
  992.         r1 = rgb[bg[pat].rgb1_max].r;
  993.         g1 = rgb[bg[pat].rgb1_max].g;
  994.         b1 = rgb[bg[pat].rgb1_max].b;
  995.         r2 = rgb[bg[pat].rgb2_max].r;
  996.         g2 = rgb[bg[pat].rgb2_max].g;
  997.         b2 = rgb[bg[pat].rgb2_max].b;
  998.         for (row = 0;  row < rpng2_info.height;  ++row) {
  999.             yidx = (int)(row % bgscale);
  1000.             if (yidx > hmax)
  1001.                 yidx = bgscale-1 - yidx;
  1002.             dest = (char *)bg_data + row*bg_rowbytes;
  1003.             for (i = 0;  i < rpng2_info.width;  ++i) {
  1004.                 xidx = (int)(i % bgscale);
  1005.                 if (xidx > hmax)
  1006.                     xidx = bgscale-1 - xidx;
  1007.                 k = xidx + yidx;
  1008.                 *dest++ = (k*r1 + (max-k)*r2) / max;
  1009.                 *dest++ = (k*g1 + (max-k)*g2) / max;
  1010.                 *dest++ = (k*b1 + (max-k)*b2) / max;
  1011.             }
  1012.         }
  1013. /*---------------------------------------------------------------------------
  1014.     Radial "starburst" with azimuthal sinusoids; [eventually number of sinu-
  1015.     soids will equal bgscale?].  This one is slow but very cool.  Code con-
  1016.     tributed by Pieter S. van der Meulen (originally in Smalltalk).
  1017.   ---------------------------------------------------------------------------*/
  1018.     } else if ((bg[pat].type & 0x07) == 2) {
  1019.         uch ch;
  1020.         int ii, x, y, hw, hh, grayspot;
  1021.         double freq, rotate, saturate, gray, intensity;
  1022.         double angle=0.0, aoffset=0.0, maxDist, dist;
  1023.         double red=0.0, green=0.0, blue=0.0, hue, s, v, f, p, q, t;
  1024.         fprintf(stderr, "%s:  computing radial background...",
  1025.           PROGNAME);
  1026.         fflush(stderr);
  1027.         hh = (int)(rpng2_info.height / 2);
  1028.         hw = (int)(rpng2_info.width / 2);
  1029.         /* variables for radial waves:
  1030.          *   aoffset:  number of degrees to rotate hue [CURRENTLY NOT USED]
  1031.          *   freq:  number of color beams originating from the center
  1032.          *   grayspot:  size of the graying center area (anti-alias)
  1033.          *   rotate:  rotation of the beams as a function of radius
  1034.          *   saturate:  saturation of beams' shape azimuthally
  1035.          */
  1036.         angle = CLIP(angle, 0.0, 360.0);
  1037.         grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw));
  1038.         freq = MAX((double)bg[pat].bg_freq, 0.0);
  1039.         saturate = (double)bg[pat].bg_bsat * 0.1;
  1040.         rotate = (double)bg[pat].bg_brot * 0.1;
  1041.         gray = 0.0;
  1042.         intensity = 0.0;
  1043.         maxDist = (double)((hw*hw) + (hh*hh));
  1044.         for (row = 0;  row < rpng2_info.height;  ++row) {
  1045.             y = (int)(row - hh);
  1046.             dest = (char *)bg_data + row*bg_rowbytes;
  1047.             for (i = 0;  i < rpng2_info.width;  ++i) {
  1048.                 x = (int)(i - hw);
  1049.                 angle = (x == 0)? PI_2 : atan((double)y / (double)x);
  1050.                 gray = (double)MAX(ABS(y), ABS(x)) / grayspot;
  1051.                 gray = MIN(1.0, gray);
  1052.                 dist = (double)((x*x) + (y*y)) / maxDist;
  1053.                 intensity = cos((angle+(rotate*dist*PI)) * freq) *
  1054.                   gray * saturate;
  1055.                 intensity = (MAX(MIN(intensity,1.0),-1.0) + 1.0) * 0.5;
  1056.                 hue = (angle + PI) * INV_PI_360 + aoffset;
  1057.                 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
  1058.                 s = MIN(MAX(s,0.0), 1.0);
  1059.                 v = MIN(MAX(intensity,0.0), 1.0);
  1060.                 if (s == 0.0) {
  1061.                     ch = (uch)(v * 255.0);
  1062.                     *dest++ = ch;
  1063.                     *dest++ = ch;
  1064.                     *dest++ = ch;
  1065.                 } else {
  1066.                     if ((hue < 0.0) || (hue >= 360.0))
  1067.                         hue -= (((int)(hue / 360.0)) * 360.0);
  1068.                     hue /= 60.0;
  1069.                     ii = (int)hue;
  1070.                     f = hue - (double)ii;
  1071.                     p = (1.0 - s) * v;
  1072.                     q = (1.0 - (s * f)) * v;
  1073.                     t = (1.0 - (s * (1.0 - f))) * v;
  1074.                     if      (ii == 0) { red = v; green = t; blue = p; }
  1075.                     else if (ii == 1) { red = q; green = v; blue = p; }
  1076.                     else if (ii == 2) { red = p; green = v; blue = t; }
  1077.                     else if (ii == 3) { red = p; green = q; blue = v; }
  1078.                     else if (ii == 4) { red = t; green = p; blue = v; }
  1079.                     else if (ii == 5) { red = v; green = p; blue = q; }
  1080.                     *dest++ = (uch)(red * 255.0);
  1081.                     *dest++ = (uch)(green * 255.0);
  1082.                     *dest++ = (uch)(blue * 255.0);
  1083.                 }
  1084.             }
  1085.         }
  1086.         fprintf(stderr, "done.n");
  1087.         fflush(stderr);
  1088.     }
  1089. /*---------------------------------------------------------------------------
  1090.     Blast background image to display buffer before beginning PNG decode.
  1091.   ---------------------------------------------------------------------------*/
  1092.     if (depth == 24 || depth == 32) {
  1093.         ulg red, green, blue;
  1094.         int bpp = ximage->bits_per_pixel;
  1095.         for (row = 0;  row < rpng2_info.height;  ++row) {
  1096.             src = bg_data + row*bg_rowbytes;
  1097.             dest = ximage->data + row*ximage_rowbytes;
  1098.             if (bpp == 32) { /* slightly optimized version */
  1099.                 for (i = rpng2_info.width;  i > 0;  --i) {
  1100.                     red   = *src++;
  1101.                     green = *src++;
  1102.                     blue  = *src++;
  1103.                     pixel = (red   << RShift) |
  1104.                             (green << GShift) |
  1105.                             (blue  << BShift);
  1106.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1107.                     *dest++ = (char)((pixel >> 24) & 0xff);
  1108.                     *dest++ = (char)((pixel >> 16) & 0xff);
  1109.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1110.                     *dest++ = (char)( pixel        & 0xff);
  1111.                 }
  1112.             } else {
  1113.                 for (i = rpng2_info.width;  i > 0;  --i) {
  1114.                     red   = *src++;
  1115.                     green = *src++;
  1116.                     blue  = *src++;
  1117.                     pixel = (red   << RShift) |
  1118.                             (green << GShift) |
  1119.                             (blue  << BShift);
  1120.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1121.                     /* GRR BUG?  this assumes bpp == 24 & bits are packed low */
  1122.                     /*           (probably need to use RShift, RMask, etc.) */
  1123.                     *dest++ = (char)((pixel >> 16) & 0xff);
  1124.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1125.                     *dest++ = (char)( pixel        & 0xff);
  1126.                 }
  1127.             }
  1128.         }
  1129.     } else if (depth == 16) {
  1130.         ush red, green, blue;
  1131.         for (row = 0;  row < rpng2_info.height;  ++row) {
  1132.             src = bg_data + row*bg_rowbytes;
  1133.             dest = ximage->data + row*ximage_rowbytes;
  1134.             for (i = rpng2_info.width;  i > 0;  --i) {
  1135.                 red   = ((ush)(*src) << 8);  ++src;
  1136.                 green = ((ush)(*src) << 8);  ++src;
  1137.                 blue  = ((ush)(*src) << 8);  ++src;
  1138.                 pixel = ((red   >> RShift) & RMask) |
  1139.                         ((green >> GShift) & GMask) |
  1140.                         ((blue  >> BShift) & BMask);
  1141.                 /* recall that we set ximage->byte_order = MSBFirst above */
  1142.                 *dest++ = (char)((pixel >>  8) & 0xff);
  1143.                 *dest++ = (char)( pixel        & 0xff);
  1144.             }
  1145.         }
  1146.     } else /* depth == 8 */ {
  1147.         /* GRR:  add 8-bit support */
  1148.     }
  1149.     XPutImage(display, window, gc, ximage, 0, 0, 0, 0, rpng2_info.width,
  1150.       rpng2_info.height);
  1151.     return 0;
  1152. } /* end function rpng2_x_load_bg_image() */
  1153. static void rpng2_x_display_row(ulg row)
  1154. {
  1155.     uch bg_red   = rpng2_info.bg_red;
  1156.     uch bg_green = rpng2_info.bg_green;
  1157.     uch bg_blue  = rpng2_info.bg_blue;
  1158.     uch *src, *src2=NULL;
  1159.     char *dest;
  1160.     uch r, g, b, a;
  1161.     int ximage_rowbytes = ximage->bytes_per_line;
  1162.     ulg i, pixel;
  1163.     static int rows=0, prevpass=(-1);
  1164.     static ulg firstrow;
  1165. /*---------------------------------------------------------------------------
  1166.     rows and firstrow simply track how many rows (and which ones) have not
  1167.     yet been displayed; alternatively, we could call XPutImage() for every
  1168.     row and not bother with the records-keeping.
  1169.   ---------------------------------------------------------------------------*/
  1170.     Trace((stderr, "beginning rpng2_x_display_row()n"))
  1171.     if (rpng2_info.pass != prevpass) {
  1172.         if (pause_after_pass && rpng2_info.pass > 0) {
  1173.             XEvent e;
  1174.             KeySym k;
  1175.             fprintf(stderr,
  1176.               "%s:  end of pass %d of 7; click in image window to continuen",
  1177.               PROGNAME, prevpass + 1);
  1178.             do
  1179.                 XNextEvent(display, &e);
  1180.             while (!QUIT(e,k));
  1181.         }
  1182.         fprintf(stderr, "%s:  pass %d of 7r", PROGNAME, rpng2_info.pass + 1);
  1183.         fflush(stderr);
  1184.         prevpass = rpng2_info.pass;
  1185.     }
  1186.     if (rows == 0)
  1187.         firstrow = row;   /* first row that is not yet displayed */
  1188.     ++rows;   /* count of rows received but not yet displayed */
  1189. /*---------------------------------------------------------------------------
  1190.     Aside from the use of the rpng2_info struct, the lack of an outer loop
  1191.     (over rows) and moving the XPutImage() call outside the "if (depth)"
  1192.     tests, this routine is identical to rpng_x_display_image() in the non-
  1193.     progressive version of the program.
  1194.   ---------------------------------------------------------------------------*/
  1195.     if (depth == 24 || depth == 32) {
  1196.         ulg red, green, blue;
  1197.         int bpp = ximage->bits_per_pixel;
  1198.         src = rpng2_info.image_data + row*rpng2_info.rowbytes;
  1199.         if (bg_image)
  1200.             src2 = bg_data + row*bg_rowbytes;
  1201.         dest = ximage->data + row*ximage_rowbytes;
  1202.         if (rpng2_info.channels == 3) {
  1203.             for (i = rpng2_info.width;  i > 0;  --i) {
  1204.                 red   = *src++;
  1205.                 green = *src++;
  1206.                 blue  = *src++;
  1207.                 pixel = (red   << RShift) |
  1208.                         (green << GShift) |
  1209.                         (blue  << BShift);
  1210.                 /* recall that we set ximage->byte_order = MSBFirst above */
  1211.                 if (bpp == 32) {
  1212.                     *dest++ = (char)((pixel >> 24) & 0xff);
  1213.                     *dest++ = (char)((pixel >> 16) & 0xff);
  1214.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1215.                     *dest++ = (char)( pixel        & 0xff);
  1216.                 } else {
  1217.                     /* GRR BUG?  this assumes bpp == 24 & bits are packed low */
  1218.                     /*           (probably need to use RShift, RMask, etc.) */
  1219.                     *dest++ = (char)((pixel >> 16) & 0xff);
  1220.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1221.                     *dest++ = (char)( pixel        & 0xff);
  1222.                 }
  1223.             }
  1224.         } else /* if (rpng2_info.channels == 4) */ {
  1225.             for (i = rpng2_info.width;  i > 0;  --i) {
  1226.                 r = *src++;
  1227.                 g = *src++;
  1228.                 b = *src++;
  1229.                 a = *src++;
  1230.                 if (bg_image) {
  1231.                     bg_red   = *src2++;
  1232.                     bg_green = *src2++;
  1233.                     bg_blue  = *src2++;
  1234.                 }
  1235.                 if (a == 255) {
  1236.                     red   = r;
  1237.                     green = g;
  1238.                     blue  = b;
  1239.                 } else if (a == 0) {
  1240.                     red   = bg_red;
  1241.                     green = bg_green;
  1242.                     blue  = bg_blue;
  1243.                 } else {
  1244.                     /* this macro (from png.h) composites the foreground
  1245.                      * and background values and puts the result into the
  1246.                      * first argument */
  1247.                     alpha_composite(red,   r, a, bg_red);
  1248.                     alpha_composite(green, g, a, bg_green);
  1249.                     alpha_composite(blue,  b, a, bg_blue);
  1250.                 }
  1251.                 pixel = (red   << RShift) |
  1252.                         (green << GShift) |
  1253.                         (blue  << BShift);
  1254.                 /* recall that we set ximage->byte_order = MSBFirst above */
  1255.                 if (bpp == 32) {
  1256.                     *dest++ = (char)((pixel >> 24) & 0xff);
  1257.                     *dest++ = (char)((pixel >> 16) & 0xff);
  1258.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1259.                     *dest++ = (char)( pixel        & 0xff);
  1260.                 } else {
  1261.                     /* GRR BUG?  this assumes bpp == 24 & bits are packed low */
  1262.                     /*           (probably need to use RShift, RMask, etc.) */
  1263.                     *dest++ = (char)((pixel >> 16) & 0xff);
  1264.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1265.                     *dest++ = (char)( pixel        & 0xff);
  1266.                 }
  1267.             }
  1268.         }
  1269.     } else if (depth == 16) {
  1270.         ush red, green, blue;
  1271.         src = rpng2_info.row_pointers[row];
  1272.         if (bg_image)
  1273.             src2 = bg_data + row*bg_rowbytes;
  1274.         dest = ximage->data + row*ximage_rowbytes;
  1275.         if (rpng2_info.channels == 3) {
  1276.             for (i = rpng2_info.width;  i > 0;  --i) {
  1277.                 red   = ((ush)(*src) << 8);
  1278.                 ++src;
  1279.                 green = ((ush)(*src) << 8);
  1280.                 ++src;
  1281.                 blue  = ((ush)(*src) << 8);
  1282.                 ++src;
  1283.                 pixel = ((red   >> RShift) & RMask) |
  1284.                         ((green >> GShift) & GMask) |
  1285.                         ((blue  >> BShift) & BMask);
  1286.                 /* recall that we set ximage->byte_order = MSBFirst above */
  1287.                 *dest++ = (char)((pixel >>  8) & 0xff);
  1288.                 *dest++ = (char)( pixel        & 0xff);
  1289.             }
  1290.         } else /* if (rpng2_info.channels == 4) */ {
  1291.             for (i = rpng2_info.width;  i > 0;  --i) {
  1292.                 r = *src++;
  1293.                 g = *src++;
  1294.                 b = *src++;
  1295.                 a = *src++;
  1296.                 if (bg_image) {
  1297.                     bg_red   = *src2++;
  1298.                     bg_green = *src2++;
  1299.                     bg_blue  = *src2++;
  1300.                 }
  1301.                 if (a == 255) {
  1302.                     red   = ((ush)r << 8);
  1303.                     green = ((ush)g << 8);
  1304.                     blue  = ((ush)b << 8);
  1305.                 } else if (a == 0) {
  1306.                     red   = ((ush)bg_red   << 8);
  1307.                     green = ((ush)bg_green << 8);
  1308.                     blue  = ((ush)bg_blue  << 8);
  1309.                 } else {
  1310.                     /* this macro (from png.h) composites the foreground
  1311.                      * and background values and puts the result back into
  1312.                      * the first argument (== fg byte here:  safe) */
  1313.                     alpha_composite(r, r, a, bg_red);
  1314.                     alpha_composite(g, g, a, bg_green);
  1315.                     alpha_composite(b, b, a, bg_blue);
  1316.                     red   = ((ush)r << 8);
  1317.                     green = ((ush)g << 8);
  1318.                     blue  = ((ush)b << 8);
  1319.                 }
  1320.                 pixel = ((red   >> RShift) & RMask) |
  1321.                         ((green >> GShift) & GMask) |
  1322.                         ((blue  >> BShift) & BMask);
  1323.                 /* recall that we set ximage->byte_order = MSBFirst above */
  1324.                 *dest++ = (char)((pixel >>  8) & 0xff);
  1325.                 *dest++ = (char)( pixel        & 0xff);
  1326.             }
  1327.         }
  1328.     } else /* depth == 8 */ {
  1329.         /* GRR:  add 8-bit support */
  1330.     }
  1331. /*---------------------------------------------------------------------------
  1332.     Display after every 16 rows or when on one of last two rows.  (Region
  1333.     may include previously displayed lines due to interlacing--i.e., not
  1334.     contiguous.  Also, second-to-last row is final one in interlaced images
  1335.     with odd number of rows.)  For demos, flush (and delay) after every 16th
  1336.     row so "sparse" passes don't go twice as fast.
  1337.   ---------------------------------------------------------------------------*/
  1338.     if (demo_timing && (row - firstrow >= 16 || row >= rpng2_info.height-2)) {
  1339.         XPutImage(display, window, gc, ximage, 0, (int)firstrow, 0,
  1340.           (int)firstrow, rpng2_info.width, row - firstrow + 1);
  1341.         XFlush(display);
  1342.         rows = 0;
  1343.         usleep(usleep_duration);
  1344.     } else
  1345.     if (!demo_timing && ((rows & 0xf) == 0 || row >= rpng2_info.height-2)) {
  1346.         XPutImage(display, window, gc, ximage, 0, (int)firstrow, 0,
  1347.           (int)firstrow, rpng2_info.width, row - firstrow + 1);
  1348.         XFlush(display);
  1349.         rows = 0;
  1350.     }
  1351. }
  1352. static void rpng2_x_finish_display(void)
  1353. {
  1354.     Trace((stderr, "beginning rpng2_x_finish_display()n"))
  1355.     /* last row has already been displayed by rpng2_x_display_row(), so we
  1356.      * have nothing to do here except set a flag and let the user know that
  1357.      * the image is done */
  1358.     rpng2_info.state = kDone;
  1359.     printf(
  1360.       "Done.  Press Q, Esc or mouse button 1 (within image window) to quit.n");
  1361.     fflush(stdout);
  1362. }
  1363. static void rpng2_x_redisplay_image(ulg startcol, ulg startrow,
  1364.                                     ulg width, ulg height)
  1365. {
  1366.     uch bg_red   = rpng2_info.bg_red;
  1367.     uch bg_green = rpng2_info.bg_green;
  1368.     uch bg_blue  = rpng2_info.bg_blue;
  1369.     uch *src, *src2=NULL;
  1370.     char *dest;
  1371.     uch r, g, b, a;
  1372.     ulg i, row, lastrow = 0;
  1373.     ulg pixel;
  1374.     int ximage_rowbytes = ximage->bytes_per_line;
  1375.     Trace((stderr, "beginning display loop (image_channels == %d)n",
  1376.       rpng2_info.channels))
  1377.     Trace((stderr, "   (width = %ld, rowbytes = %d, ximage_rowbytes = %d)n",
  1378.       rpng2_info.width, rpng2_info.rowbytes, ximage_rowbytes))
  1379.     Trace((stderr, "   (bpp = %d)n", ximage->bits_per_pixel))
  1380.     Trace((stderr, "   (byte_order = %s)n", ximage->byte_order == MSBFirst?
  1381.       "MSBFirst" : (ximage->byte_order == LSBFirst? "LSBFirst" : "unknown")))
  1382. /*---------------------------------------------------------------------------
  1383.     Aside from the use of the rpng2_info struct and of src2 (for background
  1384.     image), this routine is identical to rpng_x_display_image() in the non-
  1385.     progressive version of the program--for the simple reason that redisplay
  1386.     of the image against a new background happens after the image is fully
  1387.     decoded and therefore is, by definition, non-progressive.
  1388.   ---------------------------------------------------------------------------*/
  1389.     if (depth == 24 || depth == 32) {
  1390.         ulg red, green, blue;
  1391.         int bpp = ximage->bits_per_pixel;
  1392.         for (lastrow = row = startrow;  row < startrow+height;  ++row) {
  1393.             src = rpng2_info.image_data + row*rpng2_info.rowbytes;
  1394.             if (bg_image)
  1395.                 src2 = bg_data + row*bg_rowbytes;
  1396.             dest = ximage->data + row*ximage_rowbytes;
  1397.             if (rpng2_info.channels == 3) {
  1398.                 for (i = rpng2_info.width;  i > 0;  --i) {
  1399.                     red   = *src++;
  1400.                     green = *src++;
  1401.                     blue  = *src++;
  1402. #ifdef NO_24BIT_MASKS
  1403.                     pixel = (red   << RShift) |
  1404.                             (green << GShift) |
  1405.                             (blue  << BShift);
  1406.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1407.                     if (bpp == 32) {
  1408.                         *dest++ = (char)((pixel >> 24) & 0xff);
  1409.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1410.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1411.                         *dest++ = (char)( pixel        & 0xff);
  1412.                     } else {
  1413.                         /* this assumes bpp == 24 & bits are packed low */
  1414.                         /* (probably need to use RShift, RMask, etc.) */
  1415.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1416.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1417.                         *dest++ = (char)( pixel        & 0xff);
  1418.                     }
  1419. #else
  1420.                     red   = (RShift < 0)? red   << (-RShift) : red   >> RShift;
  1421.                     green = (GShift < 0)? green << (-GShift) : green >> GShift;
  1422.                     blue  = (BShift < 0)? blue  << (-BShift) : blue  >> BShift;
  1423.                     pixel = (red & RMask) | (green & GMask) | (blue & BMask);
  1424.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1425.                     if (bpp == 32) {
  1426.                         *dest++ = (char)((pixel >> 24) & 0xff);
  1427.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1428.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1429.                         *dest++ = (char)( pixel        & 0xff);
  1430.                     } else {
  1431.                         /* GRR BUG */
  1432.                         /* this assumes bpp == 24 & bits are packed low */
  1433.                         /* (probably need to use RShift/RMask/etc. here, too) */
  1434.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1435.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1436.                         *dest++ = (char)( pixel        & 0xff);
  1437.                     }
  1438. #endif
  1439.                 }
  1440.             } else /* if (rpng2_info.channels == 4) */ {
  1441.                 for (i = rpng2_info.width;  i > 0;  --i) {
  1442.                     r = *src++;
  1443.                     g = *src++;
  1444.                     b = *src++;
  1445.                     a = *src++;
  1446.                     if (bg_image) {
  1447.                         bg_red   = *src2++;
  1448.                         bg_green = *src2++;
  1449.                         bg_blue  = *src2++;
  1450.                     }
  1451.                     if (a == 255) {
  1452.                         red   = r;
  1453.                         green = g;
  1454.                         blue  = b;
  1455.                     } else if (a == 0) {
  1456.                         red   = bg_red;
  1457.                         green = bg_green;
  1458.                         blue  = bg_blue;
  1459.                     } else {
  1460.                         /* this macro (from png.h) composites the foreground
  1461.                          * and background values and puts the result into the
  1462.                          * first argument */
  1463.                         alpha_composite(red,   r, a, bg_red);
  1464.                         alpha_composite(green, g, a, bg_green);
  1465.                         alpha_composite(blue,  b, a, bg_blue);
  1466.                     }
  1467. #ifdef NO_24BIT_MASKS
  1468.                     pixel = (red   << RShift) |
  1469.                             (green << GShift) |
  1470.                             (blue  << BShift);
  1471.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1472.                     if (bpp == 32) {
  1473.                         *dest++ = (char)((pixel >> 24) & 0xff);
  1474.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1475.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1476.                         *dest++ = (char)( pixel        & 0xff);
  1477.                     } else {
  1478.                         /* this assumes bpp == 24 & bits are packed low */
  1479.                         /* (probably need to use RShift, RMask, etc.) */
  1480.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1481.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1482.                         *dest++ = (char)( pixel        & 0xff);
  1483.                     }
  1484. #else
  1485.                     red   = (RShift < 0)? red   << (-RShift) : red   >> RShift;
  1486.                     green = (GShift < 0)? green << (-GShift) : green >> GShift;
  1487.                     blue  = (BShift < 0)? blue  << (-BShift) : blue  >> BShift;
  1488.                     pixel = (red & RMask) | (green & GMask) | (blue & BMask);
  1489.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1490.                     if (bpp == 32) {
  1491.                         *dest++ = (char)((pixel >> 24) & 0xff);
  1492.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1493.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1494.                         *dest++ = (char)( pixel        & 0xff);
  1495.                     } else {
  1496.                         /* GRR BUG */
  1497.                         /* this assumes bpp == 24 & bits are packed low */
  1498.                         /* (probably need to use RShift/RMask/etc. here, too) */
  1499.                         *dest++ = (char)((pixel >> 16) & 0xff);
  1500.                         *dest++ = (char)((pixel >>  8) & 0xff);
  1501.                         *dest++ = (char)( pixel        & 0xff);
  1502.                     }
  1503. #endif
  1504.                 }
  1505.             }
  1506.             /* display after every 16 lines */
  1507.             if (((row+1) & 0xf) == 0) {
  1508.                 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
  1509.                   (int)lastrow, rpng2_info.width, 16);
  1510.                 XFlush(display);
  1511.                 lastrow = row + 1;
  1512.             }
  1513.         }
  1514.     } else if (depth == 16) {
  1515.         ush red, green, blue;
  1516.         for (lastrow = row = startrow;  row < startrow+height;  ++row) {
  1517.             src = rpng2_info.row_pointers[row];
  1518.             if (bg_image)
  1519.                 src2 = bg_data + row*bg_rowbytes;
  1520.             dest = ximage->data + row*ximage_rowbytes;
  1521.             if (rpng2_info.channels == 3) {
  1522.                 for (i = rpng2_info.width;  i > 0;  --i) {
  1523.                     red   = ((ush)(*src) << 8);
  1524.                     ++src;
  1525.                     green = ((ush)(*src) << 8);
  1526.                     ++src;
  1527.                     blue  = ((ush)(*src) << 8);
  1528.                     ++src;
  1529.                     pixel = ((red   >> RShift) & RMask) |
  1530.                             ((green >> GShift) & GMask) |
  1531.                             ((blue  >> BShift) & BMask);
  1532.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1533.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1534.                     *dest++ = (char)( pixel        & 0xff);
  1535.                 }
  1536.             } else /* if (rpng2_info.channels == 4) */ {
  1537.                 for (i = rpng2_info.width;  i > 0;  --i) {
  1538.                     r = *src++;
  1539.                     g = *src++;
  1540.                     b = *src++;
  1541.                     a = *src++;
  1542.                     if (bg_image) {
  1543.                         bg_red   = *src2++;
  1544.                         bg_green = *src2++;
  1545.                         bg_blue  = *src2++;
  1546.                     }
  1547.                     if (a == 255) {
  1548.                         red   = ((ush)r << 8);
  1549.                         green = ((ush)g << 8);
  1550.                         blue  = ((ush)b << 8);
  1551.                     } else if (a == 0) {
  1552.                         red   = ((ush)bg_red   << 8);
  1553.                         green = ((ush)bg_green << 8);
  1554.                         blue  = ((ush)bg_blue  << 8);
  1555.                     } else {
  1556.                         /* this macro (from png.h) composites the foreground
  1557.                          * and background values and puts the result back into
  1558.                          * the first argument (== fg byte here:  safe) */
  1559.                         alpha_composite(r, r, a, bg_red);
  1560.                         alpha_composite(g, g, a, bg_green);
  1561.                         alpha_composite(b, b, a, bg_blue);
  1562.                         red   = ((ush)r << 8);
  1563.                         green = ((ush)g << 8);
  1564.                         blue  = ((ush)b << 8);
  1565.                     }
  1566.                     pixel = ((red   >> RShift) & RMask) |
  1567.                             ((green >> GShift) & GMask) |
  1568.                             ((blue  >> BShift) & BMask);
  1569.                     /* recall that we set ximage->byte_order = MSBFirst above */
  1570.                     *dest++ = (char)((pixel >>  8) & 0xff);
  1571.                     *dest++ = (char)( pixel        & 0xff);
  1572.                 }
  1573.             }
  1574.             /* display after every 16 lines */
  1575.             if (((row+1) & 0xf) == 0) {
  1576.                 XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
  1577.                   (int)lastrow, rpng2_info.width, 16);
  1578.                 XFlush(display);
  1579.                 lastrow = row + 1;
  1580.             }
  1581.         }
  1582.     } else /* depth == 8 */ {
  1583.         /* GRR:  add 8-bit support */
  1584.     }
  1585.     Trace((stderr, "calling final XPutImage()n"))
  1586.     if (lastrow < startrow+height) {
  1587.         XPutImage(display, window, gc, ximage, 0, (int)lastrow, 0,
  1588.           (int)lastrow, rpng2_info.width, rpng2_info.height-lastrow);
  1589.         XFlush(display);
  1590.     }
  1591. } /* end function rpng2_x_redisplay_image() */
  1592. #ifdef FEATURE_LOOP
  1593. static void rpng2_x_reload_bg_image(void)
  1594. {
  1595.     char *dest;
  1596.     uch r1, r2, g1, g2, b1, b2;
  1597.     uch r1_inv, r2_inv, g1_inv, g2_inv, b1_inv, b2_inv;
  1598.     int k, hmax, max;
  1599.     int xidx, yidx, yidx_max;
  1600.     int even_odd_vert, even_odd_horiz, even_odd;
  1601.     int invert_gradient2 = (bg[pat].type & 0x08);
  1602.     int invert_column;
  1603.     ulg i, row;
  1604.     bgscale = (pat == 0)? 8 : bgscale_default;
  1605.     yidx_max = bgscale - 1;
  1606. /*---------------------------------------------------------------------------
  1607.     Vertical gradients (ramps) in NxN squares, alternating direction and
  1608.     colors (N == bgscale).
  1609.   ---------------------------------------------------------------------------*/
  1610.     if ((bg[pat].type & 0x07) == 0) {
  1611.         uch r1_min  = rgb[bg[pat].rgb1_min].r;
  1612.         uch g1_min  = rgb[bg[pat].rgb1_min].g;
  1613.         uch b1_min  = rgb[bg[pat].rgb1_min].b;
  1614.         uch r2_min  = rgb[bg[pat].rgb2_min].r;
  1615.         uch g2_min  = rgb[bg[pat].rgb2_min].g;
  1616.         uch b2_min  = rgb[bg[pat].rgb2_min].b;
  1617.         int r1_diff = rgb[bg[pat].rgb1_max].r - r1_min;
  1618.         int g1_diff = rgb[bg[pat].rgb1_max].g - g1_min;
  1619.         int b1_diff = rgb[bg[pat].rgb1_max].b - b1_min;
  1620.         int r2_diff = rgb[bg[pat].rgb2_max].r - r2_min;
  1621.         int g2_diff = rgb[bg[pat].rgb2_max].g - g2_min;
  1622.         int b2_diff = rgb[bg[pat].rgb2_max].b - b2_min;
  1623.         for (row = 0;  row < rpng2_info.height;  ++row) {
  1624.             yidx = (int)(row % bgscale);
  1625.             even_odd_vert = (int)((row / bgscale) & 1);
  1626.             r1 = r1_min + (r1_diff * yidx) / yidx_max;
  1627.             g1 = g1_min + (g1_diff * yidx) / yidx_max;
  1628.             b1 = b1_min + (b1_diff * yidx) / yidx_max;
  1629.             r1_inv = r1_min + (r1_diff * (yidx_max-yidx)) / yidx_max;
  1630.             g1_inv = g1_min + (g1_diff * (yidx_max-yidx)) / yidx_max;
  1631.             b1_inv = b1_min + (b1_diff * (yidx_max-yidx)) / yidx_max;
  1632.             r2 = r2_min + (r2_diff * yidx) / yidx_max;
  1633.             g2 = g2_min + (g2_diff * yidx) / yidx_max;
  1634.             b2 = b2_min + (b2_diff * yidx) / yidx_max;
  1635.             r2_inv = r2_min + (r2_diff * (yidx_max-yidx)) / yidx_max;
  1636.             g2_inv = g2_min + (g2_diff * (yidx_max-yidx)) / yidx_max;
  1637.             b2_inv = b2_min + (b2_diff * (yidx_max-yidx)) / yidx_max;
  1638.             dest = (char *)bg_data + row*bg_rowbytes;
  1639.             for (i = 0;  i < rpng2_info.width;  ++i) {
  1640.                 even_odd_horiz = (int)((i / bgscale) & 1);
  1641.                 even_odd = even_odd_vert ^ even_odd_horiz;
  1642.                 invert_column =
  1643.                   (even_odd_horiz && (bg[pat].type & 0x10));
  1644.                 if (even_odd == 0) {        /* gradient #1 */
  1645.                     if (invert_column) {
  1646.                         *dest++ = r1_inv;
  1647.                         *dest++ = g1_inv;
  1648.                         *dest++ = b1_inv;
  1649.                     } else {
  1650.                         *dest++ = r1;
  1651.                         *dest++ = g1;
  1652.                         *dest++ = b1;
  1653.                     }
  1654.                 } else {                    /* gradient #2 */
  1655.                     if ((invert_column && invert_gradient2) ||
  1656.                         (!invert_column && !invert_gradient2))
  1657.                     {
  1658.                         *dest++ = r2;       /* not inverted or */
  1659.                         *dest++ = g2;       /*  doubly inverted */
  1660.                         *dest++ = b2;
  1661.                     } else {
  1662.                         *dest++ = r2_inv;
  1663.                         *dest++ = g2_inv;   /* singly inverted */
  1664.                         *dest++ = b2_inv;
  1665.                     }
  1666.                 }
  1667.             }
  1668.         }
  1669. /*---------------------------------------------------------------------------
  1670.     Soft gradient-diamonds with scale = bgscale.  Code contributed by Adam
  1671.     M. Costello.
  1672.   ---------------------------------------------------------------------------*/
  1673.     } else if ((bg[pat].type & 0x07) == 1) {
  1674.         hmax = (bgscale-1)/2;   /* half the max weight of a color */
  1675.         max = 2*hmax;           /* the max weight of a color */
  1676.         r1 = rgb[bg[pat].rgb1_max].r;
  1677.         g1 = rgb[bg[pat].rgb1_max].g;
  1678.         b1 = rgb[bg[pat].rgb1_max].b;
  1679.         r2 = rgb[bg[pat].rgb2_max].r;
  1680.         g2 = rgb[bg[pat].rgb2_max].g;
  1681.         b2 = rgb[bg[pat].rgb2_max].b;
  1682.         for (row = 0;  row < rpng2_info.height;  ++row) {
  1683.             yidx = (int)(row % bgscale);
  1684.             if (yidx > hmax)
  1685.                 yidx = bgscale-1 - yidx;
  1686.             dest = (char *)bg_data + row*bg_rowbytes;
  1687.             for (i = 0;  i < rpng2_info.width;  ++i) {
  1688.                 xidx = (int)(i % bgscale);
  1689.                 if (xidx > hmax)
  1690.                     xidx = bgscale-1 - xidx;
  1691.                 k = xidx + yidx;
  1692.                 *dest++ = (k*r1 + (max-k)*r2) / max;
  1693.                 *dest++ = (k*g1 + (max-k)*g2) / max;
  1694.                 *dest++ = (k*b1 + (max-k)*b2) / max;
  1695.             }
  1696.         }
  1697. /*---------------------------------------------------------------------------
  1698.     Radial "starburst" with azimuthal sinusoids; [eventually number of sinu-
  1699.     soids will equal bgscale?].  This one is slow but very cool.  Code con-
  1700.     tributed by Pieter S. van der Meulen (originally in Smalltalk).
  1701.   ---------------------------------------------------------------------------*/
  1702.     } else if ((bg[pat].type & 0x07) == 2) {
  1703.         uch ch;
  1704.         int ii, x, y, hw, hh, grayspot;
  1705.         double freq, rotate, saturate, gray, intensity;
  1706.         double angle=0.0, aoffset=0.0, maxDist, dist;
  1707.         double red=0.0, green=0.0, blue=0.0, hue, s, v, f, p, q, t;
  1708.         hh = (int)(rpng2_info.height / 2);
  1709.         hw = (int)(rpng2_info.width / 2);
  1710.         /* variables for radial waves:
  1711.          *   aoffset:  number of degrees to rotate hue [CURRENTLY NOT USED]
  1712.          *   freq:  number of color beams originating from the center
  1713.          *   grayspot:  size of the graying center area (anti-alias)
  1714.          *   rotate:  rotation of the beams as a function of radius
  1715.          *   saturate:  saturation of beams' shape azimuthally
  1716.          */
  1717.         angle = CLIP(angle, 0.0, 360.0);
  1718.         grayspot = CLIP(bg[pat].bg_gray, 1, (hh + hw));
  1719.         freq = MAX((double)bg[pat].bg_freq, 0.0);
  1720.         saturate = (double)bg[pat].bg_bsat * 0.1;
  1721.         rotate = (double)bg[pat].bg_brot * 0.1;
  1722.         gray = 0.0;
  1723.         intensity = 0.0;
  1724.         maxDist = (double)((hw*hw) + (hh*hh));
  1725.         for (row = 0;  row < rpng2_info.height;  ++row) {
  1726.             y = (int)(row - hh);
  1727.             dest = (char *)bg_data + row*bg_rowbytes;
  1728.             for (i = 0;  i < rpng2_info.width;  ++i) {
  1729.                 x = (int)(i - hw);
  1730.                 angle = (x == 0)? PI_2 : atan((double)y / (double)x);
  1731.                 gray = (double)MAX(ABS(y), ABS(x)) / grayspot;
  1732.                 gray = MIN(1.0, gray);
  1733.                 dist = (double)((x*x) + (y*y)) / maxDist;
  1734.                 intensity = cos((angle+(rotate*dist*PI)) * freq) *
  1735.                   gray * saturate;
  1736.                 intensity = (MAX(MIN(intensity,1.0),-1.0) + 1.0) * 0.5;
  1737.                 hue = (angle + PI) * INV_PI_360 + aoffset;
  1738.                 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
  1739.                 s = MIN(MAX(s,0.0), 1.0);
  1740.                 v = MIN(MAX(intensity,0.0), 1.0);
  1741.                 if (s == 0.0) {
  1742.                     ch = (uch)(v * 255.0);
  1743.                     *dest++ = ch;
  1744.                     *dest++ = ch;
  1745.                     *dest++ = ch;
  1746.                 } else {
  1747.                     if ((hue < 0.0) || (hue >= 360.0))
  1748.                         hue -= (((int)(hue / 360.0)) * 360.0);
  1749.                     hue /= 60.0;
  1750.                     ii = (int)hue;
  1751.                     f = hue - (double)ii;
  1752.                     p = (1.0 - s) * v;
  1753.                     q = (1.0 - (s * f)) * v;
  1754.                     t = (1.0 - (s * (1.0 - f))) * v;
  1755.                     if      (ii == 0) { red = v; green = t; blue = p; }
  1756.                     else if (ii == 1) { red = q; green = v; blue = p; }
  1757.                     else if (ii == 2) { red = p; green = v; blue = t; }
  1758.                     else if (ii == 3) { red = p; green = q; blue = v; }
  1759.                     else if (ii == 4) { red = t; green = p; blue = v; }
  1760.                     else if (ii == 5) { red = v; green = p; blue = q; }
  1761.                     *dest++ = (uch)(red * 255.0);
  1762.                     *dest++ = (uch)(green * 255.0);
  1763.                     *dest++ = (uch)(blue * 255.0);
  1764.                 }
  1765.             }
  1766.         }
  1767.     }
  1768. } /* end function rpng2_x_reload_bg_image() */
  1769. static int is_number(char *p)
  1770. {
  1771.     while (*p) {
  1772.         if (!isdigit(*p))
  1773.             return FALSE;
  1774.         ++p;
  1775.     }
  1776.     return TRUE;
  1777. }
  1778. #endif /* FEATURE_LOOP */
  1779. static void rpng2_x_cleanup(void)
  1780. {
  1781.     if (bg_image && bg_data) {
  1782.         free(bg_data);
  1783.         bg_data = NULL;
  1784.     }
  1785.     if (rpng2_info.image_data) {
  1786.         free(rpng2_info.image_data);
  1787.         rpng2_info.image_data = NULL;
  1788.     }
  1789.     if (rpng2_info.row_pointers) {
  1790.         free(rpng2_info.row_pointers);
  1791.         rpng2_info.row_pointers = NULL;
  1792.     }
  1793.     if (ximage) {
  1794.         if (ximage->data) {
  1795.             free(ximage->data);           /* we allocated it, so we free it */
  1796.             ximage->data = (char *)NULL;  /*  instead of XDestroyImage() */
  1797.         }
  1798.         XDestroyImage(ximage);
  1799.         ximage = NULL;
  1800.     }
  1801.     if (have_gc)
  1802.         XFreeGC(display, gc);
  1803.     if (have_window)
  1804.         XDestroyWindow(display, window);
  1805.     if (have_colormap)
  1806.         XFreeColormap(display, colormap);
  1807.     if (have_nondefault_visual)
  1808.         XFree(visual_list);
  1809. }
  1810. static int rpng2_x_msb(ulg u32val)
  1811. {
  1812.     int i;
  1813.     for (i = 31;  i >= 0;  --i) {
  1814.         if (u32val & 0x80000000L)
  1815.             break;
  1816.         u32val <<= 1;
  1817.     }
  1818.     return i;
  1819. }