d5601ec789564f551b7b40dfc0ae3b8dc5d01e17
[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 signed 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 #ifdef __sgi    /* really, HAVE_READ_DISPLAY_EXTENSION */
57    "*visualID:          Best",
58 #endif
59   0
60 };
61
62 XrmOptionDescRec options [] = {
63   { "-degrees",         ".degrees",             XrmoptionSepArg, 0 },
64   { "-color",           ".color",               XrmoptionSepArg, 0 },
65   { "-colorcount",      ".colorcount",  XrmoptionSepArg, 0 },
66   { "-delay",           ".delay",               XrmoptionSepArg, 0 },
67   { "-soften",          ".soften",              XrmoptionSepArg, 0 },
68   { "-invert",          ".invert",              XrmoptionNoArg, "TRUE" },
69   { 0, 0, 0, 0 }
70 };
71
72
73 /* This structure handles everything to do with the spotlight, and is designed to be
74  * a member of TBumps. */
75 typedef struct
76 {
77         uint16_ nDegreeCount;
78         double *aSinTable;
79
80         uint8_ *aLightMap;
81         uint16_ nDiameter, nRadius;
82         float nAngleX, nAngleY;         /* Spotlight's movement direction. */
83         float nVelocityX, nVelocityY;
84         uint16_ iWinXCenter, iWinYCenter;
85 } SSpotLight;
86
87 void CreateSpotLight( SSpotLight *, uint16_, uint16_ );
88 void CreateTables( SSpotLight * );
89 void CalcLightPos( SSpotLight *, uint16_ *, uint16_ * );
90 void DestroySpotLight( SSpotLight *pSpotLight ) { free( pSpotLight->aLightMap ); free( pSpotLight->aSinTable ); }
91
92
93 /* The entire program's operation is contained within this structure. */
94 typedef struct
95 {
96         /* XWindows specific variables. */
97         Display *pDisplay;
98         Window Win;
99         GC GraphicsContext;
100         XColor *aXColors;
101         XImage *pXImage;
102
103         uint8_ nColorCount;                             /* Number of colors used. */
104         uint16_ iWinWidth, iWinHeight;
105         uint16_ *aBumpMap;                              /* The actual bump map. */
106
107         SSpotLight SpotLight;
108 } SBumps;
109
110 void CreateBumps( SBumps *, Display *, Window );
111 void Execute( SBumps * );
112 void DestroyBumps( SBumps * );
113
114 void SetPalette( SBumps *, XWindowAttributes * );
115 void InitBumpMap( SBumps *, XWindowAttributes * );
116 void SoftenBumpMap( SBumps * );
117
118
119 #endif /* _BUMPS_H */
120
121
122 /*
123  * End of Module: "Bumps.h"
124  */
125
126 /* vim: ts=4
127  */