-
Notifications
You must be signed in to change notification settings - Fork 6
/
sky-color-clock.el
337 lines (289 loc) · 13.6 KB
/
sky-color-clock.el
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
;;; -*- lexical-binding: t -*-
;;; sky-color-clock.el --- A clock widget for modelines with real-time sky color and moonphase/weather icon
;; Copyright (C) 2018- zk_phi
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the Free Software
;; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
;; Version: 1.0.2
;; Author: zk_phi
;; URL: https://github.com/zk-phi/sky-color-clock
;;; Commentary:
;; Put sky-color-clock.el in a "load-path"ed directory, require this
;; script
;;
;; (require 'sky-color-clock)
;;
;; and initialize sky-color-clock with your location's latitude
;;
;; (sky-color-clock-initialize 35) ; Tokyo, Japan
;;
;; Then function `sky-color-clock' returns a propertized string,
;; which you may add to your `mode-line-format'.
;;
;; (push '(:eval (sky-color-clock)) (default-value 'mode-line-format))
;;
;; You also may give sky-color-clock a Openweathermap API key
;;
;; (sky-color-clock-initialize-openweathermap-client "API-Key" 1850144) ; Tokyo's City ID
;;
;; to enable weather icon (rain or snow), tmperature indicator and
;; reflect cloudiness to the sky color.
;;; Change Log:
;; 1.0.0 Initial release
;; 1.0.1 Add option sky-color-clock-enable-daytime-emoji
;; 1.0.2 Use json-parse-string on Emacs >=27.1 for performance
;;; Code:
(require 'cl-lib)
(require 'color)
(require 'url)
(unless (fboundp 'json-parse-string)
(require 'json))
(defconst sky-color-clock-version "1.0.1")
(defgroup sky-color-clock nil
"A clock widget for modelines with real-time sky color and
moonphase/weather icon."
:group 'emacs)
(defcustom sky-color-clock-format "%d %H:%M"
"Format string passed to `format-time-string'."
:group 'sky-color-clock
:type 'string)
(defcustom sky-color-clock-enable-emoji-icon t
"When non-nil, an emoji icon is added to the left of the clock
to indicate either rain, snow or moonphase otherwise. You also
need to initialize openweathermap client with
`sky-color-clock-initialize-openweathermap-client' to fetch
weather informations."
:group 'sky-color-clock
:type 'boolean)
(defcustom sky-color-clock-enable-daytime-emoji nil
"When non-nil and `sky-color-clock-enable-emoji-icon' is
enabled, use sun (or cloud) emoji to indicate it's daytime."
:group 'sky-color-clock
:type 'boolean)
(defcustom sky-color-clock-enable-temperature-indicator t
"When non-nil, an indicator is added to the right of the clock
to indicate current temperature. You also need to initialize
openweathermap client with
`sky-color-clock-initialize-openweathermap-client' to fetch
weather informations."
:group 'sky-color-clock
:type 'boolean)
;; NOTE: solar.el, lunar.el has more accurate algorithm
;; ---- color utilities
(defun sky-color-clock--make-gradient (&rest color-stops)
"Make a function which takes a number and returns a color
according to COLOR-STOPS, which is a sorted list of the
form ((NUMBER . COLOR) ...)."
(unless color-stops
(error "No color-stops are specified."))
(let* ((first-color (pop color-stops))
(last-color first-color))
`(lambda (x)
(cond ((<= x ,(car first-color)) ,(cdr first-color))
,@(mapcar (lambda (next-color)
(prog1
`((<= x ,(car next-color))
(sky-color-clock--blend-colors
,(cdr last-color) ,(cdr next-color)
(/ (- x ,(car last-color)) ,(float (- (car next-color) (car last-color))))))
(setq last-color next-color)))
color-stops)
(t ,(cdr last-color))))))
(defun sky-color-clock--blend-colors (basecolor mixcolor &optional fraction)
"Blend to colors. FRACTION must be between 0.0 and 1.0,
otherwise result may be broken."
(cl-destructuring-bind (r g b) (color-name-to-rgb basecolor)
(cl-destructuring-bind (rr gg bb) (color-name-to-rgb mixcolor)
(let* ((x (or fraction 0.5)) (y (- 1 x)))
(color-rgb-to-hex (+ (* r y) (* rr x)) (+ (* g y) (* gg x)) (+ (* b y) (* bb x)))))))
;; ---- openweathermap api
(defvar sky-color-clock--openweathermap-timer nil)
(defvar sky-color-clock--openweathermap-api-key nil)
(defvar sky-color-clock--openweathermap-city-id nil)
(defvar sky-color-clock--openweathermap-cache nil)
(defun sky-color-clock--parse-json (str)
(if (fboundp 'json-parse-string) ; Emacs >=27.1
(json-parse-string str)
(let ((json-object-type 'hash-table)
(json-key-type 'string)
(json-array-type 'vector))
(json-read-from-string str))))
(defun sky-color-clock--update-weather ()
"Fetch current weather via openweathermap API and update
`sky-color-clock--openweathermap-cache'."
(url-retrieve
(format "http://api.openweathermap.org/data/2.5/weather?id=%s&appid=%s"
sky-color-clock--openweathermap-city-id
sky-color-clock--openweathermap-api-key)
(lambda (_)
(search-forward "\n\n" nil t)
(setq sky-color-clock--openweathermap-cache
(sky-color-clock--parse-json (buffer-substring (point) (point-max))))
(url-mark-buffer-as-dead (current-buffer)))))
(defun sky-color-clock--cloudiness ()
"Get current cloudiness in percent from
`sky-color-clock--openweathermap-cache', or nil."
(when sky-color-clock--openweathermap-cache
(gethash "all" (gethash "clouds" sky-color-clock--openweathermap-cache))))
(defun sky-color-clock--temperature ()
"Get current temperature in kelvin from
`sky-color-clock--openweathermap-cache', or nil."
(when sky-color-clock--openweathermap-cache
(gethash "temp" (gethash "main" sky-color-clock--openweathermap-cache))))
(defun sky-color-clock--weather ()
"Get current weather as a 'weather condition code' from
`sky-color-clock--openweathermap-cache', or nil."
(when sky-color-clock--openweathermap-cache
(gethash "id" (aref (gethash "weather" sky-color-clock--openweathermap-cache) 0))))
(defun sky-color-clock-initialize-openweathermap-client (api-key city-id &optional interval)
"Initialize openweathermap client with API-KEY to fetch weather
of city specified with CITY-ID every INTERVAL minutes. INTERVAL
defaults 30."
(when sky-color-clock--openweathermap-timer
(cancel-timer sky-color-clock--openweathermap-timer)
(setq sky-color-clock--openweathermap-timer nil))
(setq sky-color-clock--openweathermap-api-key api-key
sky-color-clock--openweathermap-city-id city-id
sky-color-clock--openweathermap-timer
(run-with-timer 0 (* (or interval 30) 60) 'sky-color-clock--update-weather)))
;; ---- sky color
(defvar sky-color-clock--bg-color-gradient nil
"A function which converts a float time (12:30 as 12.5, for
example), to a color.")
(defvar sky-color-clock--sunrise nil
"Sunrise time from noon")
(defvar sky-color-clock--sunset nil
"Sunset tiem from noon")
;;;###autoload
(defun sky-color-clock-initialize (latitude)
"Initialize sky-color-clock with LATITUDE (in degrees). Special
cases are not considered for now: sun must rise after 02:00,
daytime length must be longer than 2hrs, and sun must set before
23:30."
(let* ((day-of-year ; day of year (0-origin)
(1- (time-to-day-in-year (current-time))))
(sun-declination ; declination of the sun
(degrees-to-radians
(* -23.44 (cos (degrees-to-radians (* (/ 360 365.0) (+ day-of-year 10)))))))
(sunset-hour-angle ; the "Sunrise equation"
(* (acos (- (* (tan (degrees-to-radians latitude)) (tan sun-declination))))))
(sunset-time-from-noon ; rad -> hours
(* 24 (/ (radians-to-degrees sunset-hour-angle) 360)))
(sunrise (- 12 sunset-time-from-noon))
(sunset (+ 12 sunset-time-from-noon)))
(setq sky-color-clock--sunrise sunrise
sky-color-clock--sunset sunset
sky-color-clock--bg-color-gradient
(sky-color-clock--make-gradient
(cons (- sunrise 2.0) "#111111")
(cons (- sunrise 1.5) "#4d548a")
(cons (- sunrise 1.0) "#c486b1")
(cons (- sunrise 0.5) "#ee88a0")
(cons sunrise "#ff7d75")
(cons (+ sunrise 0.5) "#f4eeef")
(cons (/ (+ sunset sunrise) 2) "#8bd7f5")
(cons (- sunset 1.2) "#b3f2e6")
(cons (- sunset 0.8) "#f3e693")
(cons (- sunset 0.4) "#f86b10")
(cons sunset "#100028")
(cons (+ sunset 0.5) "#111111")))))
(defun sky-color-clock--pick-bg-color (time &optional cloudiness)
"Pick a color from sky-color-clock--bg-color-gradient and
saturate according to CLOUDINESS. CLOUDINESS can be a number from
0 to 100."
(unless sky-color-clock--bg-color-gradient
(error "sky-color-clock-initialize is not called."))
(cl-destructuring-bind (sec min hour . xs) (decode-time time)
(let ((cloudiness (if cloudiness (/ cloudiness 100.0) 0.00))
(color (funcall sky-color-clock--bg-color-gradient (+ (/ (+ (/ sec 60.0) min) 60.0) hour))))
(cl-destructuring-bind (h s l) (apply 'color-rgb-to-hsl (color-name-to-rgb color))
(apply 'color-rgb-to-hex
(color-hsl-to-rgb h (- s (* s cloudiness 0.9)) (min 0.95 (+ l (* cloudiness 0.15)))))))))
(defun sky-color-clock--pick-fg-color (color)
(cl-destructuring-bind (h s l) (apply 'color-rgb-to-hsl (color-name-to-rgb color))
(apply 'color-rgb-to-hex
(color-hsl-to-rgb h s (min 1 (max 0 (+ l (if (> l 0.5) -0.55 0.55))))))))
(defun sky-color-clock-preview ()
(interactive)
(switch-to-buffer (get-buffer-create "*sky-color-clock*"))
(erase-buffer)
(let ((sky-color-clock-enable-emoji-icon nil)
(sky-color-clock-format "%H:%M"))
(dotimes (hour 23)
(dolist (min '(0 5 10 15 20 25 30 35 40 45 50 55))
(dolist (cloudiness '(0 30 60 90))
(dolist (temperature '(278 288 298))
(insert (sky-color-clock (encode-time 0 min hour 1 7 2018) cloudiness temperature)
" ")))
(insert "\n\n")))))
;; ---- temperature
(defvar sky-color-clock--temperature-color-gradient
(sky-color-clock--make-gradient
;; -10 15 40
'(263 . "#00a1ff") '(288 . "#ffffff") '(313 . "#ffa100")))
(defun sky-color-clock--temperature-indicator (temperature)
(if (null temperature) ""
(let ((color (funcall sky-color-clock--temperature-color-gradient temperature)))
(propertize " " 'face `(:background ,color)))))
;; ---- emoji moonphase
(defconst sky-color-clock--newmoon 6.8576
"A new moon (1970/01/08 05:35) in days since the epoch.")
(defconst sky-color-clock--moonphase-cycle 29.5306
"Eclipse (synodic month) cycle in days.")
(defun sky-color-clock--emoji-moonphase (time)
(let* ((time-in-days (/ (float-time time) 60 60 24))
(phase (mod (- time-in-days sky-color-clock--newmoon) sky-color-clock--moonphase-cycle)))
(cond ((<= phase 1.84) "🌑")
((<= phase 5.53) "🌒")
((<= phase 9.22) "🌓")
((<= phase 12.91) "🌔")
((<= phase 16.61) "🌕")
((<= phase 20.30) "🌖")
((<= phase 23.99) "🌗")
((<= phase 27.68) "🌘")
(t "🌑"))))
(defun sky-color-clock--emoji-daytime (time &optional cloudiness)
(cl-destructuring-bind (sec min hour . xs) (decode-time time)
(let ((time-in-hours (+ (/ (+ (/ sec 60.0) min) 60.0) hour)))
(cond ((< sky-color-clock--sunset time-in-hours) nil)
((< time-in-hours sky-color-clock--sunrise) nil)
((and cloudiness (>= cloudiness 50)) "☁️")
((< time-in-hours (+ sky-color-clock--sunrise 0.5)) "🌅")
((< time-in-hours (- sky-color-clock--sunset 0.5)) "☀️")
(t "🌇")))))
(defun sky-color-clock--emoji-icon (time &optional cloudiness weather)
(cond ((and weather (< weather 600)) "💧")
((and weather (< weather 700)) "❄️")
(t (or (and sky-color-clock-enable-daytime-emoji
(sky-color-clock--emoji-daytime time cloudiness))
(sky-color-clock--emoji-moonphase time)))))
;; ---- the clock
(defun sky-color-clock (&optional time cloudiness temperature weather)
"Generate a fontified time string according to
`sky-color-clock-format' and
`sky-color-clock-enable-emoji-icon'."
(let* ((time (or time (current-time)))
(cloudiness (or cloudiness (sky-color-clock--cloudiness)))
(temperature (or temperature (sky-color-clock--temperature)))
(weather (or weather (sky-color-clock--weather)))
(bg (sky-color-clock--pick-bg-color time cloudiness))
(fg (sky-color-clock--pick-fg-color bg))
(str (concat " " (format-time-string sky-color-clock-format time) " ")))
(when sky-color-clock-enable-emoji-icon
(setq str (concat " " (sky-color-clock--emoji-icon time cloudiness weather) str)))
(setq str (propertize str 'face `(:background ,bg :foreground ,fg)))
(when sky-color-clock-enable-temperature-indicator
(setq str (concat str (sky-color-clock--temperature-indicator temperature))))
str))
(provide 'sky-color-clock)
;;; sky-color-clock.el ends here