forked from kohler/xwrits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.c
More file actions
152 lines (127 loc) · 3.46 KB
/
clock.c
File metadata and controls
152 lines (127 loc) · 3.46 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#include <config.h>
#include "xwrits.h"
#include <stdlib.h>
#include <math.h>
#define ClockWidth 30
#define ClockHeight 30
#define ClockHour 7
#define ClockMin 11
#define ClockSec 12
#define HandWidth 1.5
#define HandOffset 1.5
struct timeval clock_zero_time;
struct timeval clock_tick;
static void
draw_hand(Port *port, Drawable drawable, int xin, int yin, int hand_length,
int value, int value_cycle, int thin)
{
double sinv = sin(value * 2 * M_PI / value_cycle);
double cosv = cos(value * 2 * M_PI / value_cycle);
GC gc = (thin ? port->clock_hand_gc : port->clock_fore_gc);
XDrawLine(port->display, drawable, gc, xin, yin,
(int)(xin + hand_length * sinv), (int)(yin - hand_length * cosv));
#if 0
double x = xin - HandOffset * sinv + 1;
double y = yin + HandOffset * cosv + 1;
XPoint points[4];
points[0].x = (int)(x + HandWidth * cosv);
points[0].y = (int)(y + HandWidth * sinv);
points[1].x = (int)(x + hand_length * sinv);
points[1].y = (int)(y - hand_length * cosv);
points[2].x = (int)(x - HandWidth * cosv);
points[2].y = (int)(y - HandWidth * sinv);
points[4] = points[0];
XDrawLines(port->display, drawable, port->clock_fore_gc,
points, 3, CoordModeOrigin);
#endif
}
static void
draw_1_clock(Hand *hand, int seconds)
{
Port *port = hand->port;
PictureList *pl;
int x, y;
int hour, min;
if (!hand->slideshow)
return;
pl = (PictureList *)(hand->slideshow->images[hand->slide]->user_data);
x = pl->clock_x_off;
y = pl->clock_y_off;
XFillArc(port->display, hand->w, port->white_gc,
x, y, ClockWidth, ClockHeight, 0, 23040);
XDrawArc(port->display, hand->w, port->clock_fore_gc,
x, y, ClockWidth, ClockHeight, 0, 23040);
x += ClockWidth / 2;
y += ClockHeight / 2;
min = (seconds + 5) / SEC_PER_MIN;
hour = min / MIN_PER_HOUR;
min %= MIN_PER_HOUR;
seconds %= SEC_PER_MIN;
if (hour)
draw_hand(port, hand->w, x, y, ClockHour, hour, HOUR_PER_CYCLE, 0);
draw_hand(port, hand->w, x, y, ClockMin, min, MIN_PER_HOUR, 0);
/* draw_hand(port, hand->w, x, y, ClockSec, seconds, SEC_PER_MIN, 1); */
}
static int
now_to_clock_sec(const struct timeval *now_ptr)
{
struct timeval now;
struct timeval diff;
if (now_ptr)
now = *now_ptr;
else
xwGETTIME(now);
if (xwTIMEGEQ(now, clock_zero_time))
xwSUBTIME(diff, now, clock_zero_time);
else
xwSUBTIME(diff, clock_zero_time, now);
return diff.tv_sec + (diff.tv_usec >= 500000 ? 1 : 0);
}
void
draw_clock(Hand *h, const struct timeval *now)
{
draw_1_clock(h, now_to_clock_sec(now));
h->clock = 1;
}
void
draw_all_clocks(const struct timeval *now)
{
Hand *h;
int i, sec = now_to_clock_sec(now);
for (i = 0; i < nports; i++) {
for (h = ports[i]->hands; h; h = h->next) {
if (h->mapped)
draw_1_clock(h, sec);
h->clock = 1;
}
XFlush(ports[i]->display);
}
}
void
erase_clock(Hand *hand)
{
Port *port = hand->port;
PictureList *pl;
if (!hand->slideshow)
return;
pl = (PictureList *)(hand->slideshow->images[hand->slide]->user_data);
XCopyArea(port->display, pl->frames[port->port_number][hand->slide].pixmap,
hand->w,
port->clock_fore_gc,
pl->clock_x_off - 2, pl->clock_y_off - 2,
ClockWidth + 4, ClockHeight + 4,
pl->clock_x_off - 2, pl->clock_y_off - 2);
hand->clock = 0;
}
void
erase_all_clocks(void)
{
Hand *h;
int i;
for (i = 0; i < nports; i++)
for (h = ports[i]->hands; h; h = h->next) {
if (h->mapped && h->clock)
erase_clock(h);
h->clock = 0;
}
}