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
|
/* redshift.c */
/* Copyright (c) 2009, Jon Lund Steffensen <jonlst@gmail.com> */
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <locale.h>
#include "solar.h"
#include "colortemp.h"
#define MIN_LAT -90.0
#define MAX_LAT 90.0
#define MIN_LON -180.0
#define MAX_LON 180.0
#define MIN_TEMP 1000
#define MAX_TEMP 10000
#define USAGE \
"Usage: %s LAT LON DAY-TEMP NIGHT-TEMP [GAMMA]\n"
#define DEG_CHAR 0xb0
static void
printtime(time_t time)
{
char s[64];
strftime(s, 64, "%a, %d %b %Y %H:%M:%S %z", localtime(&time));
printf("%s\n", s);
}
int
main(int argc, char *argv[])
{
/* Check extensions needed for color temperature adjustment. */
int r = colortemp_check_extension();
if (r < 0) {
fprintf(stderr, "Unable to set color temperature.\n");
exit(EXIT_FAILURE);
}
/* Init locale for special symbols */
char *loc = setlocale(LC_CTYPE, "");
if (loc == NULL) {
fprintf(stderr, "Unable to set locale.\n");
exit(EXIT_FAILURE);
}
/* Load arguments */
if (argc < 5) {
printf(USAGE, argv[0]);
exit(EXIT_FAILURE);
}
/* Latitude */
float lat = atof(argv[1]);
if (lat < MIN_LAT || lat > MAX_LAT) {
fprintf(stderr,
"Latitude must be between %.1f%lc and %.1f%lc\n",
MIN_LAT, DEG_CHAR, MAX_LAT, DEG_CHAR);
exit(EXIT_FAILURE);
}
/* Longitude */
float lon = atof(argv[2]);
if (lon < MIN_LON || lon > MAX_LON) {
fprintf(stderr,
"Longitude must be between %.1f%lc and %.1f%lc\n",
MIN_LON, DEG_CHAR, MAX_LON, DEG_CHAR);
exit(EXIT_FAILURE);
}
/* Color temperature at daytime */
int temp_day = atoi(argv[3]);
if (temp_day < MIN_TEMP || temp_day >= MAX_TEMP) {
fprintf(stderr, "Temperature must be between %uK and %uK\n",
MIN_TEMP, MAX_TEMP);
exit(EXIT_FAILURE);
}
/* Color temperature at night */
int temp_night = atoi(argv[4]);
if (temp_night < MIN_TEMP || temp_night >= MAX_TEMP) {
fprintf(stderr, "Temperature must be between %uK and %uK\n",
MIN_TEMP, MAX_TEMP);
exit(EXIT_FAILURE);
}
/* Gamma value */
float gamma = 1.0;
if (argc > 5) gamma = atof(argv[5]);
/* Current angular elevation of the sun */
time_t now = time(NULL);
double elevation = solar_elevation(now, lat, lon);
printf("Solar elevation is %f\n", elevation);
/* Use elevation of sun to set color temperature */
int temp = 0;
if (elevation < SOLAR_CIVIL_TWILIGHT_ELEV) {
temp = temp_night;
printf("Set color temperature to %uK\n", temp_night);
} else if (elevation < SOLAR_DAYTIME_ELEV) {
float a = (SOLAR_DAYTIME_ELEV - elevation) /
(SOLAR_DAYTIME_ELEV - SOLAR_CIVIL_TWILIGHT_ELEV);
temp = (1.0-a)*temp_day + a*temp_night;
printf("Interpolated (%f) temperature is %uK\n", a, temp);
} else {
temp = temp_day;
printf("Set color temperature to %uK\n", temp_day);
}
/* Set color temperature */
r = colortemp_set_temperature(temp, gamma);
if (r < 0) {
fprintf(stderr, "Unable to set color temperature.\n");
exit(EXIT_FAILURE);
}
return EXIT_SUCCESS;
}
|