1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
/* -*- Mode: C; tab-width: 4 -*- */
/* image --- image bouncer */
#if !defined( lint ) && !defined( SABER )
static const char sccsid[] = "@(#)image.c 4.07 97/11/24 xlockmore";
#endif
/*-
* Copyright (c) 1991 by Patrick J. Naughton.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation.
*
* This file is provided AS IS with no warranties of any kind. The author
* shall have no liability with respect to the infringement of copyrights,
* trade secrets or any patents by this file or any part thereof. In no
* event will the author be liable for any lost revenue or profits or
* other special, indirect and consequential damages.
*
* Revision History:
* 10-May-97: Compatible with xscreensaver
* 03-Nov-95: Patched to add an arbitrary xpm file.
* 21-Sep-95: Patch if xpm fails to load <Markus.Zellner@anu.edu.au>.
* 17-Jun-95: Pixmap stuff of Skip_Burrell@sterling.com added.
* 07-Dec-94: Icons are now better centered if do not exactly fill an area.
* 29-Jul-90: Written.
*/
#ifdef STANDALONE
#define PROGCLASS "Image"
#define HACK_INIT init_image
#define HACK_DRAW draw_image
#define image_opts xlockmore_opts
#define DEFAULTS "*delay: 2000000 \n" \
"*count: -10 \n" \
"*ncolors: 200 \n"
#include "xlockmore.h" /* in xscreensaver distribution */
#else /* STANDALONE */
#include "xlock.h" /* in xlockmore distribution */
#endif /* STANDALONE */
ModeSpecOpt image_opts =
{0, NULL, 0, NULL, NULL};
#ifdef USE_MODULES
ModStruct image_description =
{"image", "init_image", "draw_image", "release_image",
"refresh_image", "init_image", NULL, &image_opts,
2000000, -10, 1, 1, 64, 1.0, "",
"Shows randomly appearing logos", 0, NULL};
#endif
/* aliases for vars defined in the bitmap file */
#define IMAGE_WIDTH image_width
#define IMAGE_HEIGHT image_height
#define IMAGE_BITS image_bits
#include "image.xbm"
#if defined( USE_XPM ) || defined( USE_XPMINC )
#define IMAGE_NAME image_name
#include "image.xpm"
#define DEFAULT_XPM 1
#endif
#define MINICONS 1
typedef struct {
int x, y;
int color;
} imagetype;
typedef struct {
int width, height;
int nrows, ncols;
XPoint image_offset;
int iconcount;
imagetype *icons;
int graphics_format;
GC backGC;
XImage *logo;
Colormap cmap;
unsigned long black;
} imagestruct;
static imagestruct *ims = NULL;
static void
init_stuff(ModeInfo * mi)
{
Display *display = MI_DISPLAY(mi);
Window window = MI_WINDOW(mi);
imagestruct *ip = &ims[MI_SCREEN(mi)];
if (!ip->logo)
getImage(mi, &ip->logo, IMAGE_WIDTH, IMAGE_HEIGHT, IMAGE_BITS,
#if defined( USE_XPM ) || defined( USE_XPMINC )
DEFAULT_XPM, IMAGE_NAME,
#endif
&ip->graphics_format, &ip->cmap, &ip->black);
if (ip->cmap != None) {
setColormap(display, window, ip->cmap, MI_WIN_IS_INWINDOW(mi));
if (ip->backGC == None) {
XGCValues xgcv;
xgcv.background = ip->black;
ip->backGC = XCreateGC(display, window, GCBackground, &xgcv);
}
} else {
ip->black = MI_BLACK_PIXEL(mi);
ip->backGC = MI_GC(mi);
}
}
static void
free_stuff(Display * display, imagestruct * ip)
{
if (ip->cmap != None) {
XFreeColormap(display, ip->cmap);
if (ip->backGC != None) {
XFreeGC(display, ip->backGC);
ip->backGC = None;
}
ip->cmap = None;
} else
ip->backGC = None;
destroyImage(&ip->logo, &ip->graphics_format);
}
void
refresh_image(ModeInfo * mi)
{
Display *display = MI_DISPLAY(mi);
Window window = MI_WINDOW(mi);
imagestruct *ip = &ims[MI_SCREEN(mi)];
int i;
if (MI_NPIXELS(mi) <= 2)
XSetForeground(display, ip->backGC, MI_WHITE_PIXEL(mi));
for (i = 0; i < ip->iconcount; i++) {
if (ip->logo != NULL && ip->icons[i].x >= 0) {
if (MI_NPIXELS(mi) > 2 && ip->graphics_format < IS_XPM)
XSetForeground(display, ip->backGC, MI_PIXEL(mi, ip->icons[i].color));
(void) XPutImage(display, window, ip->backGC, ip->logo, 0, 0,
ip->logo->width * ip->icons[i].x + ip->image_offset.x,
ip->logo->height * ip->icons[i].y + ip->image_offset.y,
ip->logo->width, ip->logo->height);
}
}
}
void
init_image(ModeInfo * mi)
{
imagestruct *ip;
int i;
if (ims == NULL) {
if ((ims = (imagestruct *) calloc(MI_NUM_SCREENS(mi),
sizeof (imagestruct))) == NULL)
return;
}
ip = &ims[MI_SCREEN(mi)];
init_stuff(mi);
ip->width = MI_WIN_WIDTH(mi);
ip->height = MI_WIN_HEIGHT(mi);
if (ip->width > ip->logo->width)
ip->ncols = ip->width / ip->logo->width;
else
ip->ncols = 1;
if (ip->height > ip->logo->height)
ip->nrows = ip->height / ip->logo->height;
else
ip->nrows = 1;
ip->image_offset.x = (ip->width - ip->ncols * ip->logo->width) / 2;
ip->image_offset.y = (ip->height - ip->nrows * ip->logo->height) / 2;
ip->iconcount = MI_BATCHCOUNT(mi);
if (ip->iconcount < -MINICONS)
ip->iconcount = NRAND(-ip->iconcount - MINICONS + 1) + MINICONS;
else if (ip->iconcount < MINICONS)
ip->iconcount = MINICONS;
if (ip->iconcount > ip->ncols * ip->nrows)
ip->iconcount = ip->ncols * ip->nrows;
if (ip->icons != NULL)
(void) free((void *) ip->icons);
ip->icons = (imagetype *) malloc(ip->iconcount * sizeof (imagetype));
for (i = 0; i < ip->iconcount; i++)
ip->icons[i].x = -1;
MI_CLEARWINDOWCOLORMAP(mi, ip->backGC, ip->black);
}
void
draw_image(ModeInfo * mi)
{
Display *display = MI_DISPLAY(mi);
Window window = MI_WINDOW(mi);
imagestruct *ip = &ims[MI_SCREEN(mi)];
int i;
XSetForeground(display, ip->backGC, ip->black);
for (i = 0; i < ip->iconcount; i++) {
if ((ip->ncols * ip->nrows > ip->iconcount) && ip->icons[i].x >= 0)
XFillRectangle(display, window, ip->backGC,
ip->logo->width * ip->icons[i].x + ip->image_offset.x,
ip->logo->height * ip->icons[i].y + ip->image_offset.y,
ip->logo->width, ip->logo->height);
ip->icons[i].x = NRAND(ip->ncols);
ip->icons[i].y = NRAND(ip->nrows);
ip->icons[i].color = NRAND(MI_NPIXELS(mi));
}
refresh_image(mi);
}
void
release_image(ModeInfo * mi)
{
if (ims != NULL) {
int screen;
for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) {
imagestruct *ip = &ims[screen];
Display *display = MI_DISPLAY(mi);
if (ip->icons != NULL)
(void) free((void *) ip->icons);
free_stuff(display, ip);
}
(void) free((void *) ims);
ims = NULL;
}
}
|