http://www.tienza.es/crux/src/www.jwz.org/xscreensaver/xscreensaver-5.06.tar.gz
[xscreensaver] / hacks / bumps.h
1 /* Bumps, Copyright (c) 2001 Shane Smit <CodeWeaver@DigitalLoom.org>
2  *
3  * Permission to use, copy, modify, distribute, and sell this software and its
4  * documentation for any purpose is hereby granted without fee, provided that
5  * the above copyright notice appear in all copies and that both that
6  * copyright notice and this permission notice appear in supporting
7  * documentation.  No representations are made about the suitability of this
8  * software for any purpose.  It is provided "as is" without express or
9  * implied warranty.
10  *
11  * Module: "Bumps.h"
12  * Tab Size: 4
13  *
14  * Description:
15  *  Header file for module "Bumps.c"
16  *
17  * Modification History:
18  *  [10/01/99] - Shane Smit: Creation
19  *  [10/08/99] - Shane Smit: Port to C. (Ick)
20  *  [03/08/02] - Shane Smit: New movement code.
21  *  [09/12/02] - Shane Smit: MIT-SHM XImages.
22  *                                                       Thanks to Kennett Galbraith <http://www.Alpha-II.com/>
23  *                                                       for code optimization.
24  */
25
26
27 #ifndef _BUMPS_H
28 #define _BUMPS_H
29
30
31 #include <math.h>
32 #include "screenhack.h"
33
34 #ifdef HAVE_XSHM_EXTENSION
35 #include "xshm.h"
36 #endif /* HAVE_XSHM_EXTENSION */
37
38
39 /* Defines: */
40 /* #define VERBOSE */
41 #define RANDOM() ((int) (random() & 0X7FFFFFFFL))
42
43 typedef signed char             int8_;
44 typedef unsigned char   uint8_;
45 typedef short                   int16_;
46 typedef unsigned short  uint16_;
47 typedef long                    int32_;
48 typedef unsigned long   uint32_;
49 typedef unsigned char   BOOL;
50
51
52 /* Globals: */
53
54 static const char *bumps_defaults [] = {
55   ".background: black",
56   ".foreground: white",
57   "*color:              random",
58   "*colorcount: 64",
59   "*delay:              30000",
60   "*duration:   120",
61   "*soften:             1",
62   "*invert:             FALSE",
63 #ifdef __sgi    /* really, HAVE_READ_DISPLAY_EXTENSION */
64   "*visualID:   Best",
65 #endif
66 #ifdef HAVE_XSHM_EXTENSION
67   "*useSHM:             True",
68 #endif /* HAVE_XSHM_EXTENSION */
69   0
70 };
71
72 static XrmOptionDescRec bumps_options [] = {
73   { "-color",           ".color",               XrmoptionSepArg, 0 },
74   { "-colorcount",      ".colorcount",  XrmoptionSepArg, 0 },
75   { "-duration",        ".duration",    XrmoptionSepArg, 0 },
76   { "-delay",           ".delay",               XrmoptionSepArg, 0 },
77   { "-soften",          ".soften",              XrmoptionSepArg, 0 },
78   { "-invert",          ".invert",              XrmoptionNoArg, "TRUE" },
79 #ifdef HAVE_XSHM_EXTENSION
80   { "-shm",                     ".useSHM",              XrmoptionNoArg, "True" },
81   { "-no-shm",          ".useSHM",              XrmoptionNoArg, "False" },
82 #endif /* HAVE_XSHM_EXTENSION */
83
84   { 0, 0, 0, 0 }
85 };
86
87
88 /* This structure handles everything to do with the spotlight, and is designed to be
89  * a member of TBumps. */
90 typedef struct
91 {
92         uint8_ *aLightMap;
93         uint16_ nFalloffDiameter, nFalloffRadius;
94         uint16_ nLightDiameter, nLightRadius;
95         float nAccelX, nAccelY;
96         float nAccelMax;
97         float nVelocityX, nVelocityY;
98         float nVelocityMax;
99         float nXPos, nYPos;
100 } SSpotLight;
101
102 void CreateTables( SSpotLight * );
103
104
105 /* The entire program's operation is contained within this structure. */
106 typedef struct
107 {
108         /* XWindows specific variables. */
109         Display *dpy;
110         Window Win;
111         Screen *screen;
112         Pixmap source;
113         GC GraphicsContext;
114         XColor *xColors;
115         uint32_ *aColors;
116         XImage *pXImage;
117 #ifdef HAVE_XSHM_EXTENSION
118         XShmSegmentInfo XShmInfo;
119         Bool    bUseShm;
120 #endif /* HAVE_XSHM_EXTENSION */
121
122         uint8_ nColorCount;                             /* Number of colors used. */
123         uint8_ bytesPerPixel;
124         uint16_ iWinWidth, iWinHeight;
125         uint16_ *aBumpMap;                              /* The actual bump map. */
126         SSpotLight SpotLight;
127
128         int delay;
129         int duration;
130         time_t start_time;
131
132         async_load_state *img_loader;
133 } SBumps;
134
135
136 #endif /* _BUMPS_H */
137
138
139 /* vim: ts=4
140  */