Mercurial > emacs
annotate lisp/calendar/cal-mayan.el @ 7395:99e9c133a752
(record_delete): Record the old point value only right after a boundary.
(record_delete): Test last_point_position_buffer.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 07 May 1994 08:38:28 +0000 |
parents | 3e1323443b1a |
children | 51b28b893fea |
rev | line source |
---|---|
957 | 1 ;;; cal-mayan.el --- calendar functions for the Mayan calendars. |
2 | |
5834
5391898ea85c
(calendar-print-mayan-date): Use new error arg to calendar-cursor-to-date.
Richard M. Stallman <rms@gnu.org>
parents:
5700
diff
changeset
|
3 ;; Copyright (C) 1992, 1993 Free Software Foundation, Inc. |
957 | 4 |
5 ;; Author: Stewart M. Clamen <clamen@cs.cmu.edu> | |
6 ;; Edward M. Reingold <reingold@cs.uiuc.edu> | |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2106
diff
changeset
|
7 ;; Keywords: calendar |
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2106
diff
changeset
|
8 ;; Human-Keywords: Mayan calendar, Maya, calendar, diary |
957 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
12 ;; GNU Emacs is free software; you can redistribute it and/or modify |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
13 ;; it under the terms of the GNU General Public License as published by |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
15 ;; any later version. |
957 | 16 |
6736
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
20 ;; GNU General Public License for more details. |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
21 |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
22 ;; You should have received a copy of the GNU General Public License |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
23 ;; along with GNU Emacs; see the file COPYING. If not, write to |
3e1323443b1a
Fix copying conditions for current GPL version.
Richard M. Stallman <rms@gnu.org>
parents:
6006
diff
changeset
|
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
957 | 25 |
26 ;;; Commentary: | |
27 | |
28 ;; This collection of functions implements the features of calendar.el and | |
29 ;; diary.el that deal with the Mayan calendar. It was written jointly by | |
30 | |
31 ;; Stewart M. Clamen School of Computer Science | |
32 ;; clamen@cs.cmu.edu Carnegie Mellon University | |
33 ;; 5000 Forbes Avenue | |
34 ;; Pittsburgh, PA 15213 | |
35 | |
36 ;; and | |
37 | |
38 ;; Edward M. Reingold Department of Computer Science | |
39 ;; (217) 333-6733 University of Illinois at Urbana-Champaign | |
40 ;; reingold@cs.uiuc.edu 1304 West Springfield Avenue | |
41 ;; Urbana, Illinois 61801 | |
42 | |
43 ;; Comments, improvements, and bug reports should be sent to Reingold. | |
44 | |
45 ;; Technical details of the Mayan calendrical calculations can be found in | |
46 ;; ``Calendrical Calculations, Part II: Three Historical Calendars'' | |
47 ;; by E. M. Reingold, N. Dershowitz, and S. M. Clamen, | |
2945
2c1f0215fcc3
* holidays.el: Update reference to the papers in S-P&E.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
48 ;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993), |
2c1f0215fcc3
* holidays.el: Update reference to the papers in S-P&E.
Jim Blandy <jimb@redhat.com>
parents:
2247
diff
changeset
|
49 ;; pages 383-404. |
957 | 50 |
51 ;;; Code: | |
52 | |
53 (require 'calendar) | |
54 | |
55 (defun mayan-adjusted-mod (m n) | |
56 "Non-negative remainder of M/N with N instead of 0." | |
4521
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
57 (1+ (mod (1- m) n))) |
957 | 58 |
59 (defconst calendar-mayan-days-before-absolute-zero 1137140 | |
3869
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
60 "Number of days of the Mayan calendar epoch before absolute day 0. |
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
61 According to the Goodman-Martinez-Thompson correlation. This correlation is |
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
62 not universally accepted, as it still a subject of astro-archeological |
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
63 research. Using 1232041 will give you the correlation used by Spinden.") |
957 | 64 |
65 (defconst calendar-mayan-haab-at-epoch '(8 . 18) | |
66 "Mayan haab date at the epoch.") | |
67 | |
68 (defconst calendar-mayan-haab-month-name-array | |
69 ["Pop" "Uo" "Zip" "Zotz" "Tzec" "Xul" "Yaxkin" "Mol" "Chen" "Yax" | |
70 "Zac" "Ceh" "Mac" "Kankin" "Muan" "Pax" "Kayab" "Cumku"]) | |
71 | |
72 (defconst calendar-mayan-tzolkin-at-epoch '(4 . 20) | |
73 "Mayan tzolkin date at the epoch.") | |
74 | |
75 (defconst calendar-mayan-tzolkin-names-array | |
76 ["Imix" "Ik" "Akbal" "Kan" "Chicchan" "Cimi" "Manik" "Lamat" "Muluc" "Oc" | |
77 "Chuen" "Eb" "Ben" "Ix" "Men" "Cib" "Caban" "Etznab" "Cauac" "Ahau"]) | |
78 | |
79 (defun calendar-mayan-long-count-from-absolute (date) | |
80 "Compute the Mayan long count corresponding to the absolute DATE." | |
81 (let ((long-count (+ date calendar-mayan-days-before-absolute-zero))) | |
82 (let* ((baktun (/ long-count 144000)) | |
83 (remainder (% long-count 144000)) | |
84 (katun (/ remainder 7200)) | |
85 (remainder (% remainder 7200)) | |
86 (tun (/ remainder 360)) | |
87 (remainder (% remainder 360)) | |
88 (uinal (/ remainder 20)) | |
89 (kin (% remainder 20))) | |
90 (list baktun katun tun uinal kin)))) | |
91 | |
92 (defun calendar-mayan-long-count-to-string (mayan-long-count) | |
93 "Convert MAYAN-LONG-COUNT into traditional written form." | |
94 (apply 'format (cons "%s.%s.%s.%s.%s" mayan-long-count))) | |
95 | |
96 (defun calendar-string-to-mayan-long-count (str) | |
97 "Given STR, a string of format \"%d.%d.%d.%d.%d\", return list of nums." | |
98 (let ((rlc nil) | |
99 (c (length str)) | |
100 (cc 0)) | |
101 (condition-case condition | |
102 (progn | |
103 (while (< cc c) | |
6006
dc6d45202fb9
(calendar-string-to-mayan-long-count): Don't
Richard M. Stallman <rms@gnu.org>
parents:
5834
diff
changeset
|
104 (let* ((start (string-match "[0-9]+" str cc)) |
dc6d45202fb9
(calendar-string-to-mayan-long-count): Don't
Richard M. Stallman <rms@gnu.org>
parents:
5834
diff
changeset
|
105 (end (match-end 0)) |
dc6d45202fb9
(calendar-string-to-mayan-long-count): Don't
Richard M. Stallman <rms@gnu.org>
parents:
5834
diff
changeset
|
106 datum) |
dc6d45202fb9
(calendar-string-to-mayan-long-count): Don't
Richard M. Stallman <rms@gnu.org>
parents:
5834
diff
changeset
|
107 (setq datum (read (substring str start end))) |
dc6d45202fb9
(calendar-string-to-mayan-long-count): Don't
Richard M. Stallman <rms@gnu.org>
parents:
5834
diff
changeset
|
108 (setq rlc (cons datum rlc)) |
dc6d45202fb9
(calendar-string-to-mayan-long-count): Don't
Richard M. Stallman <rms@gnu.org>
parents:
5834
diff
changeset
|
109 (setq cc end))) |
957 | 110 (if (not (= (length rlc) 5)) (signal 'invalid-read-syntax nil))) |
111 (invalid-read-syntax nil)) | |
112 (reverse rlc))) | |
113 | |
114 (defun calendar-mayan-haab-from-absolute (date) | |
115 "Convert absolute DATE into a Mayan haab date (a pair)." | |
116 (let* ((long-count (+ date calendar-mayan-days-before-absolute-zero)) | |
117 (day-of-haab | |
118 (% (+ long-count | |
119 (car calendar-mayan-haab-at-epoch) | |
120 (* 20 (1- (cdr calendar-mayan-haab-at-epoch)))) | |
121 365)) | |
122 (day (% day-of-haab 20)) | |
123 (month (1+ (/ day-of-haab 20)))) | |
124 (cons day month))) | |
125 | |
126 (defun calendar-mayan-haab-difference (date1 date2) | |
3869
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
127 "Number of days from Mayan haab DATE1 to next occurrence of haab date DATE2." |
4521
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
128 (mod (+ (* 20 (- (cdr date2) (cdr date1))) |
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
129 (- (car date2) (car date1))) |
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
130 365)) |
957 | 131 |
132 (defun calendar-mayan-haab-on-or-before (haab-date date) | |
133 "Absolute date of latest HAAB-DATE on or before absolute DATE." | |
2106
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
134 (- date |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
135 (% (- date |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
136 (calendar-mayan-haab-difference |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
137 (calendar-mayan-haab-from-absolute 0) haab-date)) |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
138 365))) |
957 | 139 |
140 (defun calendar-next-haab-date (haab-date &optional noecho) | |
141 "Move cursor to next instance of Mayan HAAB-DATE. | |
142 Echo Mayan date if NOECHO is t." | |
143 (interactive (list (calendar-read-mayan-haab-date))) | |
144 (calendar-goto-date | |
145 (calendar-gregorian-from-absolute | |
146 (calendar-mayan-haab-on-or-before | |
147 haab-date | |
148 (+ 365 | |
149 (calendar-absolute-from-gregorian (calendar-cursor-to-date)))))) | |
150 (or noecho (calendar-print-mayan-date))) | |
151 | |
152 (defun calendar-previous-haab-date (haab-date &optional noecho) | |
153 "Move cursor to previous instance of Mayan HAAB-DATE. | |
154 Echo Mayan date if NOECHO is t." | |
155 (interactive (list (calendar-read-mayan-haab-date))) | |
156 (calendar-goto-date | |
157 (calendar-gregorian-from-absolute | |
158 (calendar-mayan-haab-on-or-before | |
159 haab-date | |
160 (1- (calendar-absolute-from-gregorian (calendar-cursor-to-date)))))) | |
161 (or noecho (calendar-print-mayan-date))) | |
162 | |
163 (defun calendar-mayan-haab-to-string (haab) | |
164 "Convert Mayan haab date (a pair) into its traditional written form." | |
165 (let ((month (cdr haab)) | |
166 (day (car haab))) | |
167 ;; 19th month consists of 5 special days | |
168 (if (= month 19) | |
169 (format "%d Uayeb" day) | |
170 (format "%d %s" | |
171 day | |
172 (aref calendar-mayan-haab-month-name-array (1- month)))))) | |
173 | |
174 (defun calendar-mayan-tzolkin-from-absolute (date) | |
175 "Convert absolute DATE into a Mayan tzolkin date (a pair)." | |
176 (let* ((long-count (+ date calendar-mayan-days-before-absolute-zero)) | |
177 (day (mayan-adjusted-mod | |
178 (+ long-count (car calendar-mayan-tzolkin-at-epoch)) | |
179 13)) | |
180 (name (mayan-adjusted-mod | |
181 (+ long-count (cdr calendar-mayan-tzolkin-at-epoch)) | |
182 20))) | |
183 (cons day name))) | |
184 | |
185 (defun calendar-mayan-tzolkin-difference (date1 date2) | |
3869
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
186 "Number of days from Mayan tzolkin DATE1 to next occurrence of tzolkin DATE2." |
957 | 187 (let ((number-difference (- (car date2) (car date1))) |
188 (name-difference (- (cdr date2) (cdr date1)))) | |
4521
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
189 (mod (+ number-difference |
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
190 (* 13 (mod (* 3 (- number-difference name-difference)) |
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
191 20))) |
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
192 260))) |
957 | 193 |
194 (defun calendar-mayan-tzolkin-on-or-before (tzolkin-date date) | |
195 "Absolute date of latest TZOLKIN-DATE on or before absolute DATE." | |
2106
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
196 (- date |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
197 (% (- date (calendar-mayan-tzolkin-difference |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
198 (calendar-mayan-tzolkin-from-absolute 0) |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
199 tzolkin-date)) |
f90250f69413
* cal-mayan.el (calendar-mayan-haab-on-or-before,
Jim Blandy <jimb@redhat.com>
parents:
1353
diff
changeset
|
200 260))) |
957 | 201 |
202 (defun calendar-next-tzolkin-date (tzolkin-date &optional noecho) | |
203 "Move cursor to next instance of Mayan TZOLKIN-DATE. | |
204 Echo Mayan date if NOECHO is t." | |
205 (interactive (list (calendar-read-mayan-tzolkin-date))) | |
206 (calendar-goto-date | |
207 (calendar-gregorian-from-absolute | |
208 (calendar-mayan-tzolkin-on-or-before | |
209 tzolkin-date | |
210 (+ 260 | |
211 (calendar-absolute-from-gregorian (calendar-cursor-to-date)))))) | |
212 (or noecho (calendar-print-mayan-date))) | |
213 | |
214 (defun calendar-previous-tzolkin-date (tzolkin-date &optional noecho) | |
215 "Move cursor to previous instance of Mayan TZOLKIN-DATE. | |
216 Echo Mayan date if NOECHO is t." | |
217 (interactive (list (calendar-read-mayan-tzolkin-date))) | |
218 (calendar-goto-date | |
219 (calendar-gregorian-from-absolute | |
220 (calendar-mayan-tzolkin-on-or-before | |
221 tzolkin-date | |
222 (1- (calendar-absolute-from-gregorian (calendar-cursor-to-date)))))) | |
223 (or noecho (calendar-print-mayan-date))) | |
224 | |
225 (defun calendar-mayan-tzolkin-to-string (tzolkin) | |
226 "Convert Mayan tzolkin date (a pair) into its traditional written form." | |
227 (format "%d %s" | |
228 (car tzolkin) | |
229 (aref calendar-mayan-tzolkin-names-array (1- (cdr tzolkin))))) | |
230 | |
231 (defun calendar-mayan-tzolkin-haab-on-or-before (tzolkin-date haab-date date) | |
3869
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
232 "Absolute date that is Mayan TZOLKIN-DATE and HAAB-DATE. |
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
233 Latest such date on or before DATE. |
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
234 Returns nil if such a tzolkin-haab combination is impossible." |
957 | 235 (let* ((haab-difference |
236 (calendar-mayan-haab-difference | |
237 (calendar-mayan-haab-from-absolute 0) | |
238 haab-date)) | |
239 (tzolkin-difference | |
240 (calendar-mayan-tzolkin-difference | |
241 (calendar-mayan-tzolkin-from-absolute 0) | |
242 tzolkin-date)) | |
243 (difference (- tzolkin-difference haab-difference))) | |
244 (if (= (% difference 5) 0) | |
245 (- date | |
4521
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
246 (mod (- date |
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
247 (+ haab-difference (* 365 difference))) |
2308b366bfc8
(calendar-/, calendar-%): Remove, since floor and mod
Paul Eggert <eggert@twinsun.com>
parents:
3869
diff
changeset
|
248 18980)) |
957 | 249 nil))) |
250 | |
251 (defun calendar-read-mayan-haab-date () | |
252 "Prompt for a Mayan haab date" | |
253 (let* ((completion-ignore-case t) | |
254 (haab-day (calendar-read | |
255 "Haab kin (0-19): " | |
256 '(lambda (x) (and (>= x 0) (< x 20))))) | |
257 (haab-month-list (append calendar-mayan-haab-month-name-array | |
258 (and (< haab-day 5) '("Uayeb")))) | |
259 (haab-month (cdr | |
260 (assoc | |
261 (capitalize | |
262 (completing-read "Haab uinal: " | |
263 (mapcar 'list haab-month-list) | |
264 nil t)) | |
265 (calendar-make-alist | |
266 haab-month-list 1 'capitalize))))) | |
267 (cons haab-day haab-month))) | |
268 | |
269 (defun calendar-read-mayan-tzolkin-date () | |
270 "Prompt for a Mayan tzolkin date" | |
271 (let* ((completion-ignore-case t) | |
272 (tzolkin-count (calendar-read | |
273 "Tzolkin kin (1-13): " | |
274 '(lambda (x) (and (> x 0) (< x 14))))) | |
275 (tzolkin-name-list (append calendar-mayan-tzolkin-names-array nil)) | |
276 (tzolkin-name (cdr | |
277 (assoc | |
278 (capitalize | |
279 (completing-read "Tzolkin uinal: " | |
280 (mapcar 'list tzolkin-name-list) | |
281 nil t)) | |
282 (calendar-make-alist | |
283 tzolkin-name-list 1 'capitalize))))) | |
284 (cons tzolkin-count tzolkin-name))) | |
285 | |
286 (defun calendar-next-calendar-round-date | |
287 (tzolkin-date haab-date &optional noecho) | |
288 "Move cursor to next instance of Mayan HAAB-DATE TZOKLIN-DATE combination. | |
289 Echo Mayan date if NOECHO is t." | |
290 (interactive (list (calendar-read-mayan-tzolkin-date) | |
291 (calendar-read-mayan-haab-date))) | |
292 (let ((date (calendar-mayan-tzolkin-haab-on-or-before | |
293 tzolkin-date haab-date | |
294 (+ 18980 (calendar-absolute-from-gregorian | |
295 (calendar-cursor-to-date)))))) | |
296 (if (not date) | |
297 (error "%s, %s does not exist in the Mayan calendar round" | |
298 (calendar-mayan-tzolkin-to-string tzolkin-date) | |
299 (calendar-mayan-haab-to-string haab-date)) | |
300 (calendar-goto-date (calendar-gregorian-from-absolute date)) | |
301 (or noecho (calendar-print-mayan-date))))) | |
302 | |
303 (defun calendar-previous-calendar-round-date | |
304 (tzolkin-date haab-date &optional noecho) | |
3869
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
305 "Move to previous instance of Mayan TZOKLIN-DATE HAAB-DATE combination. |
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
306 Echo Mayan date if NOECHO is t." |
957 | 307 (interactive (list (calendar-read-mayan-tzolkin-date) |
308 (calendar-read-mayan-haab-date))) | |
309 (let ((date (calendar-mayan-tzolkin-haab-on-or-before | |
310 tzolkin-date haab-date | |
311 (1- (calendar-absolute-from-gregorian | |
312 (calendar-cursor-to-date)))))) | |
313 (if (not date) | |
314 (error "%s, %s does not exist in the Mayan calendar round" | |
315 (calendar-mayan-tzolkin-to-string tzolkin-date) | |
316 (calendar-mayan-haab-to-string haab-date)) | |
317 (calendar-goto-date (calendar-gregorian-from-absolute date)) | |
318 (or noecho (calendar-print-mayan-date))))) | |
319 | |
320 (defun calendar-absolute-from-mayan-long-count (c) | |
3869
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
321 "Compute the absolute date corresponding to the Mayan Long Count C. |
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
322 Long count is a list (baktun katun tun uinal kin)" |
957 | 323 (+ (* (nth 0 c) 144000) ; baktun |
324 (* (nth 1 c) 7200) ; katun | |
325 (* (nth 2 c) 360) ; tun | |
326 (* (nth 3 c) 20) ; uinal | |
327 (nth 4 c) ; kin (days) | |
328 (- ; days before absolute date 0 | |
329 calendar-mayan-days-before-absolute-zero))) | |
330 | |
5700
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
331 (defun calendar-mayan-date-string (&optional date) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
332 "String of Mayan date of Gregorian DATE. |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
333 Defaults to today's date if DATE is not given." |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
334 (let* ((d (calendar-absolute-from-gregorian |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
335 (or date (calendar-current-date)))) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
336 (tzolkin (calendar-mayan-tzolkin-from-absolute d)) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
337 (haab (calendar-mayan-haab-from-absolute d)) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
338 (long-count (calendar-mayan-long-count-from-absolute d))) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
339 (format "Long count = %s; tzolkin = %s; haab = %s" |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
340 (calendar-mayan-long-count-to-string long-count) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
341 (calendar-mayan-tzolkin-to-string tzolkin) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
342 (calendar-mayan-haab-to-string haab)))) |
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
343 |
957 | 344 (defun calendar-print-mayan-date () |
3869
037e012d04b0
* cal-mayan.el (calendar-mayan-days-before-absolute-zero,
Jim Blandy <jimb@redhat.com>
parents:
2945
diff
changeset
|
345 "Show the Mayan long count, tzolkin, and haab equivalents of date." |
957 | 346 (interactive) |
5700
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
347 (message "Mayan date: %s" |
5834
5391898ea85c
(calendar-print-mayan-date): Use new error arg to calendar-cursor-to-date.
Richard M. Stallman <rms@gnu.org>
parents:
5700
diff
changeset
|
348 (calendar-mayan-date-string (calendar-cursor-to-date t)))) |
957 | 349 |
350 (defun calendar-goto-mayan-long-count-date (date &optional noecho) | |
351 "Move cursor to Mayan long count DATE. Echo Mayan date unless NOECHO is t." | |
352 (interactive | |
353 (let (lc) | |
354 (while (not lc) | |
355 (let ((datum | |
356 (calendar-string-to-mayan-long-count | |
357 (read-string "Mayan long count (baktun.katun.tun.uinal.kin): " | |
358 (calendar-mayan-long-count-to-string | |
359 (calendar-mayan-long-count-from-absolute | |
360 (calendar-absolute-from-gregorian | |
361 (calendar-current-date)))))))) | |
362 (if (calendar-mayan-long-count-common-era datum) | |
363 (setq lc datum)))) | |
364 (list lc))) | |
365 (calendar-goto-date | |
366 (calendar-gregorian-from-absolute | |
367 (calendar-absolute-from-mayan-long-count date))) | |
368 (or noecho (calendar-print-mayan-date))) | |
369 | |
370 (defun calendar-mayan-long-count-common-era (lc) | |
371 "T if long count represents date in the Common Era." | |
372 (let ((base (calendar-mayan-long-count-from-absolute 1))) | |
373 (while (and (not (null base)) (= (car lc) (car base))) | |
374 (setq lc (cdr lc) | |
375 base (cdr base))) | |
376 (or (null lc) (> (car lc) (car base))))) | |
377 | |
378 (defun diary-mayan-date () | |
379 "Show the Mayan long count, haab, and tzolkin dates as a diary entry." | |
5700
6620aa507202
(calendar-mayan-date-string): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4521
diff
changeset
|
380 (format "Mayan date: %s" (calendar-mayan-date-string date))) |
957 | 381 |
382 (provide 'cal-mayan) | |
383 | |
384 ;;; cal-mayan.el ends here |