1 /* xscreensaver, Copyright (c) 1992 Jamie Zawinski <jwz@netscape.com>
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
12 /* This file contains some utility routines for randomly picking the colors
13 to hack the screen with.
20 hsv_to_rgb (int h, double s, double v,
21 unsigned short *r, unsigned short *g, unsigned short *b)
23 hsv_to_rgb (h,s,v, r,g,b)
25 double s, v; /* 0.0 - 1.0 */
26 unsigned short *r, *g, *b; /* 0 - 65535 */
29 double H, S, V, R, G, B;
38 p2 = V * (1 - (S * f));
39 p3 = V * (1 - (S * (1 - f)));
40 if (i == 0) { R = V; G = p3; B = p1; }
41 else if (i == 1) { R = p2; G = V; B = p1; }
42 else if (i == 2) { R = p1; G = V; B = p3; }
43 else if (i == 3) { R = p1; G = p2; B = V; }
44 else if (i == 4) { R = p3; G = p1; B = V; }
45 else { R = V; G = p1; B = p2; }
53 rgb_to_hsv (unsigned short r, unsigned short g, unsigned short b,
54 int *h, double *s, double *v)
56 rgb_to_hsv (r,g,b, h,s,v)
57 unsigned short r, g, b; /* 0 - 65535 */
59 double *s, *v; /* 0.0 - 1.0 */
62 double R, G, B, H, S, V;
66 R = ((double) r) / 65535.0;
67 G = ((double) g) / 65535.0;
68 B = ((double) b) / 65535.0;
69 cmax = R; cmin = G; imax = 1;
70 if ( cmax < G ) { cmax = G; cmin = R; imax = 2; }
71 if ( cmax < B ) { cmax = B; imax = 3; }
72 if ( cmin > B ) { cmin = B; }
80 if (imax == 1) H = (G - B) / cmm;
81 else if (imax == 2) H = 2.0 + (B - R) / cmm;
82 else if (imax == 3) H = 4.0 + (R - G) / cmm;
92 make_color_ramp (h1, s1, v1, h2, s2, v2,
94 int h1, h2; /* 0 - 360 */
95 double s1, s2, v1, v2; /* 0.0 - 1.0 */
99 int dh = (h2 - h1) / npixels;
100 double ds = (s2 - s1) / npixels;
101 double dv = (v2 - v1) / npixels;
103 for (i = 0; i < npixels; i++)
104 hsv_to_rgb ((h1 += dh), (s1 += ds), (v1 += dv),
105 &pixels [i].red, &pixels [i].green, &pixels [i].blue);
110 cycle_hue (color, degrees)
116 rgb_to_hsv (color->red, color->green, color->blue,
118 h = (h + degrees) % 360;
119 hsv_to_rgb (h, s, v, &color->red, &color->green, &color->blue);