1 ;;; cal-mayan.el --- calendar functions for the Mayan calendars
3 ;; Copyright (C) 1992-1993, 1995, 1997, 2001-2011
4 ;; Free Software Foundation, Inc.
6 ;; Author: Stewart M. Clamen <clamen@cs.cmu.edu>
7 ;; Edward M. Reingold <reingold@cs.uiuc.edu>
8 ;; Maintainer: Glenn Morris <rgm@gnu.org>
10 ;; Human-Keywords: Mayan calendar, Maya, calendar, diary
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
36 (defconst calendar-mayan-days-before-absolute-zero
1137142
37 "Number of days of the Mayan calendar epoch before absolute day 0.
38 This is the Goodman-Martinez-Thompson correlation used by almost all experts,
39 but some use 1137140. Using 1232041 gives you Spinden's correlation; using
40 1142840 gives you Hochleitner's correlation.")
42 (defconst calendar-mayan-haab-at-epoch
'(8 .
18)
43 "Mayan haab date at the epoch.")
45 (defconst calendar-mayan-haab-month-name-array
46 ["Pop" "Uo" "Zip" "Zotz" "Tzec" "Xul" "Yaxkin" "Mol" "Chen" "Yax"
47 "Zac" "Ceh" "Mac" "Kankin" "Muan" "Pax" "Kayab" "Cumku"]
48 "Names of the Mayan haab months.")
50 (defconst calendar-mayan-tzolkin-at-epoch
'(4 .
20)
51 "Mayan tzolkin date at the epoch.")
53 (defconst calendar-mayan-tzolkin-names-array
54 ["Imix" "Ik" "Akbal" "Kan" "Chicchan" "Cimi" "Manik" "Lamat" "Muluc" "Oc"
55 "Chuen" "Eb" "Ben" "Ix" "Men" "Cib" "Caban" "Etznab" "Cauac" "Ahau"]
56 "Names of the Mayan tzolkin months.")
58 (defun calendar-mayan-long-count-from-absolute (date)
59 "Compute the Mayan long count corresponding to the absolute DATE."
60 (let* ((long-count (+ date calendar-mayan-days-before-absolute-zero
))
61 (baktun (/ long-count
144000))
62 (remainder (% long-count
144000))
63 (katun (/ remainder
7200))
64 (remainder (% remainder
7200))
65 (tun (/ remainder
360))
66 (remainder (% remainder
360))
67 (uinal (/ remainder
20))
68 (kin (% remainder
20)))
69 (list baktun katun tun uinal kin
)))
71 (defun calendar-mayan-long-count-to-string (mayan-long-count)
72 "Convert MAYAN-LONG-COUNT into traditional written form."
73 (apply 'format
(cons "%s.%s.%s.%s.%s" mayan-long-count
)))
75 (defun calendar-mayan-string-from-long-count (str)
76 "Given STR, a string of format \"%d.%d.%d.%d.%d\", return list of numbers."
82 (while (string-match "[0-9]+" str end
)
83 (setq rlc
(cons (string-to-number (match-string 0 str
)) rlc
)
85 (unless (= (length rlc
) 5) (signal 'invalid-read-syntax nil
)))
86 (invalid-read-syntax nil
))
89 (defun calendar-mayan-haab-from-absolute (date)
90 "Convert absolute DATE into a Mayan haab date (a pair)."
91 (let* ((long-count (+ date calendar-mayan-days-before-absolute-zero
))
94 (car calendar-mayan-haab-at-epoch
)
95 (* 20 (1- (cdr calendar-mayan-haab-at-epoch
))))
97 (day (% day-of-haab
20))
98 (month (1+ (/ day-of-haab
20))))
101 (defun calendar-mayan-haab-difference (date1 date2
)
102 "Number of days from Mayan haab DATE1 to next occurrence of haab date DATE2."
103 (mod (+ (* 20 (- (cdr date2
) (cdr date1
)))
104 (- (car date2
) (car date1
)))
107 (defun calendar-mayan-haab-on-or-before (haab-date date
)
108 "Absolute date of latest HAAB-DATE on or before absolute DATE."
111 (calendar-mayan-haab-difference
112 (calendar-mayan-haab-from-absolute 0) haab-date
))
116 (defun calendar-mayan-date-string (&optional date
)
117 "String of Mayan date of Gregorian DATE; default today."
118 (let* ((d (calendar-absolute-from-gregorian
119 (or date
(calendar-current-date))))
120 (tzolkin (calendar-mayan-tzolkin-from-absolute d
))
121 (haab (calendar-mayan-haab-from-absolute d
))
122 (long-count (calendar-mayan-long-count-from-absolute d
)))
123 (format "Long count = %s; tzolkin = %s; haab = %s"
124 (calendar-mayan-long-count-to-string long-count
)
125 (calendar-mayan-tzolkin-to-string tzolkin
)
126 (calendar-mayan-haab-to-string haab
))))
129 (defun calendar-mayan-print-date ()
130 "Show the Mayan long count, tzolkin, and haab equivalents of date."
132 (message "Mayan date: %s"
133 (calendar-mayan-date-string (calendar-cursor-to-date t
))))
135 (define-obsolete-function-alias 'calendar-print-mayan-date
136 'calendar-mayan-print-date
"23.1")
138 (defun calendar-mayan-read-haab-date ()
139 "Prompt for a Mayan haab date."
140 (let* ((completion-ignore-case t
)
141 (haab-day (calendar-read
143 (lambda (x) (and (>= x
0) (< x
20)))))
144 (haab-month-list (append calendar-mayan-haab-month-name-array
145 (and (< haab-day
5) '("Uayeb"))))
148 (completing-read "Haab uinal: "
149 (mapcar 'list haab-month-list
)
151 (calendar-make-alist haab-month-list
1) t
))))
152 (cons haab-day haab-month
)))
154 (defun calendar-mayan-read-tzolkin-date ()
155 "Prompt for a Mayan tzolkin date."
156 (let* ((completion-ignore-case t
)
157 (tzolkin-count (calendar-read
158 "Tzolkin kin (1-13): "
159 (lambda (x) (and (> x
0) (< x
14)))))
160 (tzolkin-name-list (append calendar-mayan-tzolkin-names-array nil
))
163 (completing-read "Tzolkin uinal: "
164 (mapcar 'list tzolkin-name-list
)
166 (calendar-make-alist tzolkin-name-list
1) t
))))
167 (cons tzolkin-count tzolkin-name
)))
170 (defun calendar-mayan-next-haab-date (haab-date &optional noecho
)
171 "Move cursor to next instance of Mayan HAAB-DATE.
172 Echo Mayan date unless NOECHO is non-nil."
173 (interactive (list (calendar-mayan-read-haab-date)))
175 (calendar-gregorian-from-absolute
176 (calendar-mayan-haab-on-or-before
179 (calendar-absolute-from-gregorian (calendar-cursor-to-date))))))
180 (or noecho
(calendar-mayan-print-date)))
182 (define-obsolete-function-alias 'calendar-next-haab-date
183 'calendar-mayan-next-haab-date
"23.1")
186 (defun calendar-mayan-previous-haab-date (haab-date &optional noecho
)
187 "Move cursor to previous instance of Mayan HAAB-DATE.
188 Echo Mayan date unless NOECHO is non-nil."
189 (interactive (list (calendar-mayan-read-haab-date)))
191 (calendar-gregorian-from-absolute
192 (calendar-mayan-haab-on-or-before
194 (1- (calendar-absolute-from-gregorian (calendar-cursor-to-date))))))
195 (or noecho
(calendar-mayan-print-date)))
197 (define-obsolete-function-alias 'calendar-previous-haab-date
198 'calendar-mayan-previous-haab-date
"23.1")
200 (defun calendar-mayan-haab-to-string (haab)
201 "Convert Mayan HAAB date (a pair) into its traditional written form."
202 (let ((month (cdr haab
)))
203 (format "%d %s" (car haab
) ; day
204 ;; 19th month consists of 5 special days
205 (if (= month
19) "Uayeb"
206 (aref calendar-mayan-haab-month-name-array
(1- month
))))))
208 (defun calendar-mayan-tzolkin-from-absolute (date)
209 "Convert absolute DATE into a Mayan tzolkin date (a pair)."
210 (let* ((long-count (+ date calendar-mayan-days-before-absolute-zero
))
211 ;; Remainder on division by 13,20 with 13,20 instead of zero.
213 (1- (+ long-count
(car calendar-mayan-tzolkin-at-epoch
)))
216 (1- (+ long-count
(cdr calendar-mayan-tzolkin-at-epoch
)))
220 (defun calendar-mayan-tzolkin-difference (date1 date2
)
221 "Number of days from Mayan tzolkin DATE1 to next occurrence of tzolkin DATE2."
222 (let ((number-difference (- (car date2
) (car date1
)))
223 (name-difference (- (cdr date2
) (cdr date1
))))
224 (mod (+ number-difference
225 (* 13 (mod (* 3 (- number-difference name-difference
))
229 (defun calendar-mayan-tzolkin-on-or-before (tzolkin-date date
)
230 "Absolute date of latest TZOLKIN-DATE on or before absolute DATE."
232 (%
(- date
(calendar-mayan-tzolkin-difference
233 (calendar-mayan-tzolkin-from-absolute 0)
238 (defun calendar-mayan-next-tzolkin-date (tzolkin-date &optional noecho
)
239 "Move cursor to next instance of Mayan TZOLKIN-DATE.
240 Echo Mayan date unless NOECHO is non-nil."
241 (interactive (list (calendar-mayan-read-tzolkin-date)))
243 (calendar-gregorian-from-absolute
244 (calendar-mayan-tzolkin-on-or-before
247 (calendar-absolute-from-gregorian (calendar-cursor-to-date))))))
248 (or noecho
(calendar-mayan-print-date)))
250 (define-obsolete-function-alias 'calendar-next-tzolkin-date
251 'calendar-mayan-next-tzolkin-date
"23.1")
254 (defun calendar-mayan-previous-tzolkin-date (tzolkin-date &optional noecho
)
255 "Move cursor to previous instance of Mayan TZOLKIN-DATE.
256 Echo Mayan date unless NOECHO is non-nil."
257 (interactive (list (calendar-mayan-read-tzolkin-date)))
259 (calendar-gregorian-from-absolute
260 (calendar-mayan-tzolkin-on-or-before
262 (1- (calendar-absolute-from-gregorian (calendar-cursor-to-date))))))
263 (or noecho
(calendar-mayan-print-date)))
265 (define-obsolete-function-alias 'calendar-previous-tzolkin-date
266 'calendar-mayan-previous-tzolkin-date
"23.1")
268 (defun calendar-mayan-tzolkin-to-string (tzolkin)
269 "Convert Mayan TZOLKIN date (a pair) into its traditional written form."
272 (aref calendar-mayan-tzolkin-names-array
(1- (cdr tzolkin
)))))
274 (defun calendar-mayan-tzolkin-haab-on-or-before (tzolkin-date haab-date date
)
275 "Absolute date that is Mayan TZOLKIN-DATE and HAAB-DATE.
276 Latest such date on or before DATE.
277 Returns nil if such a tzolkin-haab combination is impossible."
278 (let* ((haab-difference
279 (calendar-mayan-haab-difference
280 (calendar-mayan-haab-from-absolute 0)
283 (calendar-mayan-tzolkin-difference
284 (calendar-mayan-tzolkin-from-absolute 0)
286 (difference (- tzolkin-difference haab-difference
)))
287 (if (zerop (% difference
5))
290 (+ haab-difference
(* 365 difference
)))
295 (defun calendar-mayan-next-round-date (tzolkin-date haab-date
297 "Move cursor to next instance of Mayan TZOLKIN-DATE HAAB-DATE combination.
298 Echo Mayan date unless NOECHO is non-nil."
299 (interactive (list (calendar-mayan-read-tzolkin-date)
300 (calendar-mayan-read-haab-date)))
301 (let ((date (calendar-mayan-tzolkin-haab-on-or-before
302 tzolkin-date haab-date
303 (+ 18980 (calendar-absolute-from-gregorian
304 (calendar-cursor-to-date))))))
306 (error "%s, %s does not exist in the Mayan calendar round"
307 (calendar-mayan-tzolkin-to-string tzolkin-date
)
308 (calendar-mayan-haab-to-string haab-date
))
309 (calendar-goto-date (calendar-gregorian-from-absolute date
))
310 (or noecho
(calendar-mayan-print-date)))))
312 (define-obsolete-function-alias 'calendar-next-calendar-round-date
313 'calendar-mayan-next-round-date
"23.1")
316 (defun calendar-mayan-previous-round-date
317 (tzolkin-date haab-date
&optional noecho
)
318 "Move to previous instance of Mayan TZOLKIN-DATE HAAB-DATE combination.
319 Echo Mayan date unless NOECHO is non-nil."
320 (interactive (list (calendar-mayan-read-tzolkin-date)
321 (calendar-mayan-read-haab-date)))
322 (let ((date (calendar-mayan-tzolkin-haab-on-or-before
323 tzolkin-date haab-date
324 (1- (calendar-absolute-from-gregorian
325 (calendar-cursor-to-date))))))
327 (error "%s, %s does not exist in the Mayan calendar round"
328 (calendar-mayan-tzolkin-to-string tzolkin-date
)
329 (calendar-mayan-haab-to-string haab-date
))
330 (calendar-goto-date (calendar-gregorian-from-absolute date
))
331 (or noecho
(calendar-mayan-print-date)))))
333 (define-obsolete-function-alias 'calendar-previous-calendar-round-date
334 'calendar-mayan-previous-round-date
"23.1")
336 (defun calendar-mayan-long-count-to-absolute (c)
337 "Compute the absolute date corresponding to the Mayan Long Count C.
338 Long count is a list (baktun katun tun uinal kin)"
339 (+ (* (nth 0 c
) 144000) ; baktun
340 (* (nth 1 c
) 7200) ; katun
341 (* (nth 2 c
) 360) ; tun
342 (* (nth 3 c
) 20) ; uinal
343 (nth 4 c
) ; kin (days)
344 ;; Days before absolute date 0.
345 (- calendar-mayan-days-before-absolute-zero
)))
347 (define-obsolete-function-alias 'calendar-absolute-from-mayan-long-count
348 'calendar-mayan-long-count-to-absolute
"23.1")
350 (defun calendar-mayan-long-count-common-era (lc)
351 "Return non-nil if long count LC represents a date in the Common Era."
352 (let ((base (calendar-mayan-long-count-from-absolute 1)))
353 (while (and base
(= (car lc
) (car base
)))
356 (or (null lc
) (> (car lc
) (car base
)))))
359 (defun calendar-mayan-goto-long-count-date (date &optional noecho
)
360 "Move cursor to Mayan long count DATE.
361 Echo Mayan date unless NOECHO is non-nil."
364 (while (not (setq datum
365 (calendar-mayan-string-from-long-count
367 "Mayan long count (baktun.katun.tun.uinal.kin): "
368 (calendar-mayan-long-count-to-string
369 (calendar-mayan-long-count-from-absolute
370 (calendar-absolute-from-gregorian
371 (calendar-current-date))))))
372 datum
(if (calendar-mayan-long-count-common-era datum
)
376 (calendar-gregorian-from-absolute
377 (calendar-mayan-long-count-to-absolute date
)))
378 (or noecho
(calendar-mayan-print-date)))
380 (define-obsolete-function-alias 'calendar-goto-mayan-long-count-date
381 'calendar-mayan-goto-long-count-date
"23.1")
385 ;; To be called from diary-list-sexp-entries, where DATE is bound.
387 (defun diary-mayan-date ()
388 "Show the Mayan long count, haab, and tzolkin dates as a diary entry."
389 (format "Mayan date: %s" (calendar-mayan-date-string date
)))
393 ;;; cal-mayan.el ends here