http://ftp.x.org/contrib/applications/xscreensaver-3.18.tar.gz
[xscreensaver] / hacks / bumps.h
1 /* Bumps, Copyright (c) 1999 Shane Smit <blackend@inconnect.com>
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.cpp"
16  *
17  * Modification History:
18  *  [10/01/99] - Shane Smit: Creation
19  *  [10/08/99] - Shane Smit: Port to C. (Ick)
20  */
21
22
23 #ifndef _BUMPS_H
24 #define _BUMPS_H
25
26
27 #include <math.h>
28 #include "screenhack.h"
29 #include <X11/Xutil.h>
30
31
32 /* Defines: */
33 /* #define VERBOSE */
34 #define PI              3.141592654
35 #define RANDOM() ((int) (random() & 0X7FFFFFFFL))
36
37 typedef char                    int8_;
38 typedef unsigned char   uint8_;
39 typedef short                   int16_;
40 typedef unsigned short  uint16_;
41 typedef long                    int32_;
42 typedef unsigned long   uint32_;
43 typedef unsigned char   BOOL;
44
45
46 // Globals:
47 char *progclass = "Bumps";
48
49 char *defaults [] = {
50   "*degrees:    360",
51   "*color:              random",
52   "*colorcount: 64",
53   "*delay:              50000",
54   "*soften:             1",
55   "*invert:             FALSE",
56   0
57 };
58
59 XrmOptionDescRec options [] = {
60   { "-degrees",         ".degrees",             XrmoptionSepArg, 0 },
61   { "-color",           ".color",               XrmoptionSepArg, 0 },
62   { "-colorcount",      ".colorcount",  XrmoptionSepArg, 0 },
63   { "-delay",           ".delay",               XrmoptionSepArg, 0 },
64   { "-soften",          ".soften",              XrmoptionSepArg, 0 },
65   { "-invert",          ".invert",              XrmoptionNoArg, "TRUE" },
66   { 0, 0, 0, 0 }
67 };
68
69
70 /* This structure handles everything to do with the spotlight, and is designed to be
71  * a member of TBumps. */
72 typedef struct
73 {
74         uint16_ nDegreeCount;
75         double *aSinTable;
76
77         uint8_ *aLightMap;
78         uint16_ nDiameter, nRadius;
79         float nAngleX, nAngleY;         /* Spotlight's movement direction. */
80         float nVelocityX, nVelocityY;
81         uint16_ iWinXCenter, iWinYCenter;
82 } SSpotLight;
83
84 void CreateSpotLight( SSpotLight *, uint16_, uint16_ );
85 void CreateTables( SSpotLight * );
86 void CalcLightPos( SSpotLight *, uint16_ *, uint16_ * );
87 void DestroySpotLight( SSpotLight *pSpotLight ) { free( pSpotLight->aLightMap ); free( pSpotLight->aSinTable ); }
88
89
90 /* The entire program's operation is contained within this structure. */
91 typedef struct
92 {
93         /* XWindows specific variables. */
94         Display *pDisplay;
95         Window Win;
96         GC GraphicsContext;
97         XColor *aXColors;
98         XImage *pXImage;
99
100         uint8_ nColorCount;                             /* Number of colors used. */
101         uint16_ iWinWidth, iWinHeight;
102         uint16_ *aBumpMap;                              /* The actual bump map. */
103
104         SSpotLight SpotLight;
105 } SBumps;
106
107 void CreateBumps( SBumps *, Display *, Window );
108 void Execute( SBumps * );
109 void DestroyBumps( SBumps * );
110
111 void SetPalette( SBumps *, XWindowAttributes * );
112 void InitBumpMap( SBumps *, XWindowAttributes * );
113 void SoftenBumpMap( SBumps * );
114
115
116 #endif /* _BUMPS_H */
117
118
119 /*
120  * End of Module: "Bumps.h"
121  */
122
123 /* vim: ts=4
124  */