Mercurial > emacs
annotate lisp/calculator.el @ 87066:14174df2455d
Require individual files if needed when compiling, rather than
esh-maint. Collect any require statements. Move provide statement to
end. Move any commentary to start.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 05 Dec 2007 07:00:59 +0000 |
parents | f873840f9fea |
children | 20bb7aaa7b12 4bc33ffdda1a |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
35314
diff
changeset
|
1 ;;; calculator.el --- a [not so] simple calculator for Emacs |
27587 | 2 |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64440
diff
changeset
|
3 ;; Copyright (C) 1998, 2000, 2001, 2002, 2003, 2004, |
75347 | 4 ;; 2005, 2006, 2007 Free Software Foundation, Inc. |
27587 | 5 |
35314 | 6 ;; Author: Eli Barzilay <eli@barzilay.org> |
27587 | 7 ;; Keywords: tools, convenience |
83794
4f498b7dbb7f
Require cl for compilation.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
82140
diff
changeset
|
8 ;; Time-stamp: <2007-08-31 03:00:11 ttn> |
27587 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify it | |
13 ;; under the terms of the GNU General Public License as published by the | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75773
diff
changeset
|
14 ;; Free Software Foundation; either version 3, or (at your option) any |
27587 | 15 ;; later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, but | |
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
20 ;; General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
25 ;; MA 02110-1301, USA. | |
27587 | 26 |
33631 | 27 ;;;===================================================================== |
27587 | 28 ;;; Commentary: |
29 ;; | |
33491 | 30 ;; A calculator for Emacs. |
33551 | 31 ;; Why should you reach for your mouse to get xcalc (calc.exe, gcalc or |
33491 | 32 ;; whatever), when you have Emacs running already? |
27587 | 33 ;; |
34 ;; If this is not part of your Emacs distribution, then simply bind | |
35 ;; `calculator' to a key and make it an autoloaded function, e.g.: | |
36 ;; (autoload 'calculator "calculator" | |
33491 | 37 ;; "Run the Emacs calculator." t) |
27587 | 38 ;; (global-set-key [(control return)] 'calculator) |
39 ;; | |
33491 | 40 ;; Written by Eli Barzilay: Maze is Life! eli@barzilay.org |
41 ;; http://www.barzilay.org/ | |
27587 | 42 ;; |
43 ;; For latest version, check | |
33491 | 44 ;; http://www.barzilay.org/misc/calculator.el |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
45 ;; |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
46 |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
47 ;;; History: |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
48 ;; I hate history. |
27587 | 49 |
83794
4f498b7dbb7f
Require cl for compilation.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
82140
diff
changeset
|
50 (eval-when-compile (require 'cl)) |
27587 | 51 (eval-and-compile |
52 (if (fboundp 'defgroup) nil | |
53 (defmacro defgroup (&rest forms) nil) | |
54 (defmacro defcustom (s v d &rest r) (list 'defvar s v d)))) | |
55 | |
33631 | 56 ;;;===================================================================== |
27587 | 57 ;;; Customization: |
58 | |
59 (defgroup calculator nil | |
33491 | 60 "Simple Emacs calculator." |
27587 | 61 :prefix "calculator" |
30889 | 62 :version "21.1" |
27587 | 63 :group 'tools |
64 :group 'convenience) | |
65 | |
66 (defcustom calculator-electric-mode nil | |
67 "*Run `calculator' electrically, in the echo area. | |
33491 | 68 Electric mode saves some place but changes the way you interact with the |
69 calculator." | |
27587 | 70 :type 'boolean |
71 :group 'calculator) | |
72 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
73 (defcustom calculator-use-menu t |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
74 "*Make `calculator' create a menu. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
75 Note that this requires easymenu. Must be set before loading." |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
76 :type 'boolean |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
77 :group 'calculator) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
78 |
27587 | 79 (defcustom calculator-bind-escape nil |
80 "*If non-nil, set escape to exit the calculator." | |
81 :type 'boolean | |
82 :group 'calculator) | |
83 | |
84 (defcustom calculator-unary-style 'postfix | |
85 "*Value is either 'prefix or 'postfix. | |
86 This determines the default behavior of unary operators." | |
87 :type '(choice (const prefix) (const postfix)) | |
88 :group 'calculator) | |
89 | |
33491 | 90 (defcustom calculator-prompt "Calc=%s> " |
91 "*The prompt used by the Emacs calculator. | |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
92 It should contain a \"%s\" somewhere that will indicate the i/o radixes; |
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
93 this will be a two-character string as described in the documentation |
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
94 for `calculator-mode'." |
27587 | 95 :type 'string |
96 :group 'calculator) | |
97 | |
33491 | 98 (defcustom calculator-number-digits 3 |
99 "*The calculator's number of digits used for standard display. | |
100 Used by the `calculator-standard-display' function - it will use the | |
101 format string \"%.NC\" where this number is N and C is a character given | |
102 at runtime." | |
35214
668b2bcf528a
(calculator-number-digits): Fix :type.
Dave Love <fx@gnu.org>
parents:
33631
diff
changeset
|
103 :type 'integer |
27587 | 104 :group 'calculator) |
105 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
106 (defcustom calculator-radix-grouping-mode t |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
107 "*Use digit grouping in radix output mode. |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
108 If this is set, chunks of `calculator-radix-grouping-digits' characters |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
109 will be separated by `calculator-radix-grouping-separator' when in radix |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
110 output mode is active (determined by `calculator-output-radix')." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
111 :type 'boolean |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
112 :group 'calculator) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
113 |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
114 (defcustom calculator-radix-grouping-digits 4 |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
115 "*The number of digits used for grouping display in radix modes. |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
116 See `calculator-radix-grouping-mode'." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
117 :type 'integer |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
118 :group 'calculator) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
119 |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
120 (defcustom calculator-radix-grouping-separator "'" |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
121 "*The separator used in radix grouping display. |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
122 See `calculator-radix-grouping-mode'." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
123 :type 'string |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
124 :group 'calculator) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
125 |
33491 | 126 (defcustom calculator-remove-zeros t |
127 "*Non-nil value means delete all redundant zero decimal digits. | |
128 If this value is not t, and not nil, redundant zeros are removed except | |
129 for one and if it is nil, nothing is removed. | |
130 Used by the `calculator-remove-zeros' function." | |
131 :type '(choice (const t) (const leave-decimal) (const nil)) | |
27587 | 132 :group 'calculator) |
133 | |
33491 | 134 (defcustom calculator-displayer '(std ?n) |
135 "*A displayer specification for numerical values. | |
136 This is the displayer used to show all numbers in an expression. Result | |
137 values will be displayed according to the first element of | |
138 `calculator-displayers'. | |
139 | |
140 The displayer is a symbol, a string or an expression. A symbol should | |
141 be the name of a one-argument function, a string is used with a single | |
142 argument and an expression will be evaluated with the variable `num' | |
143 bound to whatever should be displayed. If it is a function symbol, it | |
144 should be able to handle special symbol arguments, currently 'left and | |
145 'right which will be sent by special keys to modify display parameters | |
146 associated with the displayer function (for example to change the number | |
147 of digits displayed). | |
148 | |
149 An exception to the above is the case of the list (std C) where C is a | |
150 character, in this case the `calculator-standard-displayer' function | |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
151 will be used with this character for a format string." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
152 :group 'calculator) |
33491 | 153 |
154 (defcustom calculator-displayers | |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
155 '(((std ?n) "Standard display, decimal point or scientific") |
33491 | 156 (calculator-eng-display "Eng display") |
157 ((std ?f) "Standard display, decimal point") | |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
158 ((std ?e) "Standard display, scientific") |
33491 | 159 ("%S" "Emacs printer")) |
160 "*A list of displayers. | |
161 Each element is a list of a displayer and a description string. The | |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
162 first element is the one which is currently used, this is for the display |
33491 | 163 of result values not values in expressions. A displayer specification |
164 is the same as the values that can be stored in `calculator-displayer'. | |
165 | |
166 `calculator-rotate-displayer' rotates this list." | |
167 :type 'sexp | |
27587 | 168 :group 'calculator) |
169 | |
33491 | 170 (defcustom calculator-paste-decimals t |
171 "*If non-nil, convert pasted integers so they have a decimal point. | |
172 This makes it possible to paste big integers since they will be read as | |
173 floats, otherwise the Emacs reader will fail on them." | |
27587 | 174 :type 'boolean |
175 :group 'calculator) | |
176 | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
177 (defcustom calculator-copy-displayer nil |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
178 "*If non-nil, this is any value that can be used for |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
179 `calculator-displayer', to format a string before copying it with |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
180 `calculator-copy'. If nil, then `calculator-displayer's normal value is |
62531
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
181 used." |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
182 :type 'boolean |
c905fcf5e3d9
Specify missing group (and type, if simple) in defcustom.
Juanma Barranquero <lekktu@gmail.com>
parents:
59056
diff
changeset
|
183 :group 'calculator) |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
184 |
27587 | 185 (defcustom calculator-2s-complement nil |
186 "*If non-nil, show negative numbers in 2s complement in radix modes. | |
187 Otherwise show as a negative number." | |
188 :type 'boolean | |
189 :group 'calculator) | |
190 | |
191 (defcustom calculator-mode-hook nil | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
192 "*List of hook functions for `calculator-mode' to run. |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
193 Note: if `calculator-electric-mode' is on, then this hook will get |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
194 activated in the minibuffer - in that case it should not do much more |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
195 than local key settings and other effects that will change things |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
196 outside the scope of calculator related code." |
27587 | 197 :type 'hook |
198 :group 'calculator) | |
199 | |
200 (defcustom calculator-user-registers nil | |
201 "*An association list of user-defined register bindings. | |
202 Each element in this list is a list of a character and a number that | |
203 will be stored in that character's register. | |
204 | |
205 For example, use this to define the golden ratio number: | |
33491 | 206 (setq calculator-user-registers '((?g . 1.61803398875))) |
207 before you load calculator." | |
27587 | 208 :type '(repeat (cons character number)) |
209 :set '(lambda (_ val) | |
210 (and (boundp 'calculator-registers) | |
211 (setq calculator-registers | |
212 (append val calculator-registers))) | |
213 (setq calculator-user-registers val)) | |
214 :group 'calculator) | |
215 | |
216 (defcustom calculator-user-operators nil | |
217 "*A list of additional operators. | |
218 This is a list in the same format as specified in the documentation for | |
219 `calculator-operators', that you can use to bind additional calculator | |
220 operators. It is probably not a good idea to modify this value with | |
221 `customize' since it is too complex... | |
222 | |
223 Examples: | |
224 | |
30889 | 225 * A very simple one, adding a postfix \"x-to-y\" conversion keys, using |
226 t as a prefix key: | |
27587 | 227 |
228 (setq calculator-user-operators | |
229 '((\"tf\" cl-to-fr (+ 32 (/ (* X 9) 5)) 1) | |
230 (\"tc\" fr-to-cl (/ (* (- X 32) 5) 9) 1) | |
231 (\"tp\" kg-to-lb (/ X 0.453592) 1) | |
232 (\"tk\" lb-to-kg (* X 0.453592) 1) | |
233 (\"tF\" mt-to-ft (/ X 0.3048) 1) | |
234 (\"tM\" ft-to-mt (* X 0.3048) 1))) | |
235 | |
236 * Using a function-like form is very simple, X for an argument (Y the | |
237 second in case of a binary operator), TX is a truncated version of X | |
238 and F does a recursive call, Here is a [very inefficient] Fibonacci | |
239 number calculation: | |
240 | |
241 (add-to-list 'calculator-user-operators | |
242 '(\"F\" fib (if (<= TX 1) | |
33491 | 243 1 |
244 (+ (F (- TX 1)) (F (- TX 2)))) 0)) | |
27587 | 245 |
246 Note that this will be either postfix or prefix, according to | |
247 `calculator-unary-style'." | |
248 :type '(repeat (list string symbol sexp integer integer)) | |
249 :group 'calculator) | |
250 | |
33631 | 251 ;;;===================================================================== |
27587 | 252 ;;; Code: |
253 | |
33631 | 254 ;;;--------------------------------------------------------------------- |
33491 | 255 ;;; Variables |
256 | |
27587 | 257 (defvar calculator-initial-operators |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
258 '(;; "+"/"-" have keybindings of themselves, not calculator-ops |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
259 ("=" = identity 1 -1) |
33491 | 260 (nobind "+" + + 2 4) |
261 (nobind "-" - - 2 4) | |
262 (nobind "+" + + -1 9) | |
263 (nobind "-" - - -1 9) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
264 ("(" \( identity -1 -1) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
265 (")" \) identity +1 10) |
27587 | 266 ;; normal keys |
267 ("|" or (logior TX TY) 2 2) | |
268 ("#" xor (logxor TX TY) 2 2) | |
269 ("&" and (logand TX TY) 2 3) | |
270 ("*" * * 2 5) | |
271 ("/" / / 2 5) | |
272 ("\\" div (/ TX TY) 2 5) | |
273 ("%" rem (% TX TY) 2 5) | |
274 ("L" log log 2 6) | |
275 ("S" sin (sin DX) x 6) | |
276 ("C" cos (cos DX) x 6) | |
277 ("T" tan (tan DX) x 6) | |
278 ("IS" asin (D (asin X)) x 6) | |
279 ("IC" acos (D (acos X)) x 6) | |
280 ("IT" atan (D (atan X)) x 6) | |
281 ("Q" sqrt sqrt x 7) | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
282 ("^" ^ calculator-expt 2 7) |
27587 | 283 ("!" ! calculator-fact x 7) |
284 (";" 1/ (/ 1 X) 1 7) | |
285 ("_" - - 1 8) | |
286 ("~" ~ (lognot TX) x 8) | |
287 (">" repR calculator-repR 1 8) | |
288 ("<" repL calculator-repL 1 8) | |
289 ("v" avg (/ (apply '+ L) (length L)) 0 8) | |
290 ("l" tot (apply '+ L) 0 8) | |
291 ) | |
292 "A list of initial operators. | |
293 This is a list in the same format as `calculator-operators'. Whenever | |
294 `calculator' starts, it looks at the value of this variable, and if it | |
295 is not empty, its contents is prepended to `calculator-operators' and | |
296 the appropriate key bindings are made. | |
297 | |
298 This variable is then reset to nil. Don't use this if you want to add | |
299 user-defined operators, use `calculator-user-operators' instead.") | |
300 | |
301 (defvar calculator-operators nil | |
302 "The calculator operators, each a list with: | |
303 | |
304 1. The key that is bound to for this operation (usually a string); | |
305 | |
306 2. The displayed symbol for this function; | |
307 | |
308 3. The function symbol, or a form that uses the variables `X' and `Y', | |
309 (if it is a binary operator), `TX' and `TY' (truncated integer | |
310 versions), `DX' (converted to radians if degrees mode is on), `D' | |
311 (function for converting radians to degrees if deg mode is on), `L' | |
312 (list of saved values), `F' (function for recursive iteration calls) | |
313 and evaluates to the function value - these variables are capital; | |
314 | |
33491 | 315 4. The function's arity, optional, one of: 2 => binary, -1 => prefix |
316 unary, +1 => postfix unary, 0 => a 0-arg operator func, non-number => | |
317 postfix/prefix as determined by `calculator-unary-style' (the | |
318 default); | |
27587 | 319 |
33491 | 320 5. The function's precedence - should be in the range of 1 (lowest) to |
321 9 (highest) (optional, defaults to 1); | |
27587 | 322 |
323 It it possible have a unary prefix version of a binary operator if it | |
324 comes later in this list. If the list begins with the symbol 'nobind, | |
325 then no key binding will take place - this is only useful for predefined | |
326 keys. | |
327 | |
328 Use `calculator-user-operators' to add operators to this list, see its | |
329 documentation for an example.") | |
330 | |
331 (defvar calculator-stack nil | |
332 "Stack contents - operations and operands.") | |
333 | |
334 (defvar calculator-curnum nil | |
335 "Current number being entered (as a string).") | |
336 | |
337 (defvar calculator-stack-display nil | |
338 "Cons of the stack and its string representation.") | |
339 | |
340 (defvar calculator-char-radix | |
341 '((?D . nil) (?B . bin) (?O . oct) (?H . hex) (?X . hex)) | |
342 "A table to convert input characters to corresponding radix symbols.") | |
343 | |
344 (defvar calculator-output-radix nil | |
345 "The mode for display, one of: nil (decimal), 'bin, 'oct or 'hex.") | |
346 | |
347 (defvar calculator-input-radix nil | |
348 "The mode for input, one of: nil (decimal), 'bin, 'oct or 'hex.") | |
349 | |
350 (defvar calculator-deg nil | |
351 "Non-nil if trig functions operate on degrees instead of radians.") | |
352 | |
353 (defvar calculator-saved-list nil | |
354 "A list of saved values collected.") | |
355 | |
356 (defvar calculator-saved-ptr 0 | |
357 "The pointer to the current saved number.") | |
358 | |
359 (defvar calculator-add-saved nil | |
360 "Bound to t when a value should be added to the saved-list.") | |
361 | |
362 (defvar calculator-display-fragile nil | |
363 "When non-nil, we see something that the next digit should replace.") | |
364 | |
365 (defvar calculator-buffer nil | |
366 "The current calculator buffer.") | |
367 | |
33491 | 368 (defvar calculator-eng-extra nil |
369 "Internal value used by `calculator-eng-display'.") | |
370 | |
371 (defvar calculator-eng-tmp-show nil | |
372 "Internal value used by `calculator-eng-display'.") | |
373 | |
27587 | 374 (defvar calculator-last-opXY nil |
375 "The last binary operation and its arguments. | |
376 Used for repeating operations in calculator-repR/L.") | |
377 | |
378 (defvar calculator-registers ; use user-bindings first | |
379 (append calculator-user-registers (list (cons ?e e) (cons ?p pi))) | |
380 "The association list of calculator register values.") | |
381 | |
382 (defvar calculator-saved-global-map nil | |
383 "Saved global key map.") | |
384 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
385 (defvar calculator-restart-other-mode nil |
33491 | 386 "Used to hack restarting with the electric mode changed.") |
387 | |
33631 | 388 ;;;--------------------------------------------------------------------- |
33491 | 389 ;;; Key bindings |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
390 |
27587 | 391 (defvar calculator-mode-map nil |
392 "The calculator key map.") | |
393 | |
394 (or calculator-mode-map | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
395 (let ((map (make-sparse-keymap))) |
27587 | 396 (suppress-keymap map t) |
397 (define-key map "i" nil) | |
398 (define-key map "o" nil) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
399 (let ((p |
33491 | 400 '((calculator-open-paren "[") |
401 (calculator-close-paren "]") | |
402 (calculator-op-or-exp "+" "-" [kp-add] [kp-subtract]) | |
403 (calculator-digit "0" "1" "2" "3" "4" "5" "6" "7" "8" | |
404 "9" "a" "b" "c" "d" "f" | |
405 [kp-0] [kp-1] [kp-2] [kp-3] [kp-4] | |
406 [kp-5] [kp-6] [kp-7] [kp-8] [kp-9]) | |
407 (calculator-op [kp-divide] [kp-multiply]) | |
408 (calculator-decimal "." [kp-decimal]) | |
409 (calculator-exp "e") | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
410 (calculator-dec/deg-mode "D") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
411 (calculator-set-register "s") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
412 (calculator-get-register "g") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
413 (calculator-radix-mode "H" "X" "O" "B") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
414 (calculator-radix-input-mode "id" "ih" "ix" "io" "ib" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
415 "iD" "iH" "iX" "iO" "iB") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
416 (calculator-radix-output-mode "od" "oh" "ox" "oo" "ob" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
417 "oD" "oH" "oX" "oO" "oB") |
33491 | 418 (calculator-rotate-displayer "'") |
419 (calculator-rotate-displayer-back "\"") | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
420 (calculator-displayer-prev "{") |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
421 (calculator-displayer-next "}") |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
422 (calculator-saved-up [up] [?\C-p]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
423 (calculator-saved-down [down] [?\C-n]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
424 (calculator-quit "q" [?\C-g]) |
33491 | 425 (calculator-enter [enter] [linefeed] [kp-enter] |
426 [return] [?\r] [?\n]) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
427 (calculator-save-on-list " " [space]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
428 (calculator-clear-saved [?\C-c] [(control delete)]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
429 (calculator-save-and-quit [(control return)] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
430 [(control kp-enter)]) |
33631 | 431 (calculator-paste [insert] [(shift insert)] |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
432 [paste] [mouse-2] [?\C-y]) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
433 (calculator-clear [delete] [?\C-?] [?\C-d]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
434 (calculator-help [?h] [??] [f1] [help]) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
435 (calculator-copy [(control insert)] [copy]) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
436 (calculator-backspace [backspace]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
437 ))) |
27587 | 438 (while p |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
439 ;; reverse the keys so first defs come last - makes the more |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
440 ;; sensible bindings visible in the menu |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
441 (let ((func (car (car p))) (keys (reverse (cdr (car p))))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
442 (while keys |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
443 (define-key map (car keys) func) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
444 (setq keys (cdr keys)))) |
27587 | 445 (setq p (cdr p)))) |
446 (if calculator-bind-escape | |
447 (progn (define-key map [?\e] 'calculator-quit) | |
448 (define-key map [escape] 'calculator-quit)) | |
449 (define-key map [?\e ?\e ?\e] 'calculator-quit)) | |
450 ;; make C-h work in text-mode | |
451 (or window-system (define-key map [?\C-h] 'calculator-backspace)) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
452 ;; set up a menu |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
453 (if (and calculator-use-menu (not (boundp 'calculator-menu))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
454 (let ((radix-selectors |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
455 (mapcar (lambda (x) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
456 `([,(nth 0 x) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
457 (calculator-radix-mode ,(nth 2 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
458 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
459 :keys ,(nth 2 x) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
460 :selected |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
461 (and |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
462 (eq calculator-input-radix ',(nth 1 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
463 (eq calculator-output-radix ',(nth 1 x)))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
464 [,(concat (nth 0 x) " Input") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
465 (calculator-radix-input-mode ,(nth 2 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
466 :keys ,(concat "i" (downcase (nth 2 x))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
467 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
468 :selected |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
469 (eq calculator-input-radix ',(nth 1 x))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
470 [,(concat (nth 0 x) " Output") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
471 (calculator-radix-output-mode ,(nth 2 x)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
472 :keys ,(concat "o" (downcase (nth 2 x))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
473 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
474 :selected |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
475 (eq calculator-output-radix ',(nth 1 x))])) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
476 '(("Decimal" nil "D") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
477 ("Binary" bin "B") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
478 ("Octal" oct "O") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
479 ("Hexadecimal" hex "H")))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
480 (op '(lambda (name key) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
481 `[,name (calculator-op ,key) :keys ,key]))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
482 (easy-menu-define |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
483 calculator-menu map "Calculator menu." |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
484 `("Calculator" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
485 ["Help" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
486 (let ((last-command 'calculator-help)) (calculator-help)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
487 :keys "?"] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
488 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
489 ["Copy" calculator-copy] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
490 ["Paste" calculator-paste] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
491 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
492 ["Electric mode" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
493 (progn (calculator-quit) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
494 (setq calculator-restart-other-mode t) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
495 (run-with-timer 0.1 nil '(lambda () (message nil))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
496 ;; the message from the menu will be visible, |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
497 ;; couldn't make it go away... |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
498 (calculator)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
499 :active (not calculator-electric-mode)] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
500 ["Normal mode" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
501 (progn (setq calculator-restart-other-mode t) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
502 (calculator-quit)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
503 :active calculator-electric-mode] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
504 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
505 ("Functions" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
506 ,(funcall op "Repeat-right" ">") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
507 ,(funcall op "Repeat-left" "<") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
508 "------General------" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
509 ,(funcall op "Reciprocal" ";") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
510 ,(funcall op "Log" "L") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
511 ,(funcall op "Square-root" "Q") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
512 ,(funcall op "Factorial" "!") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
513 "------Trigonometric------" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
514 ,(funcall op "Sinus" "S") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
515 ,(funcall op "Cosine" "C") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
516 ,(funcall op "Tangent" "T") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
517 ,(funcall op "Inv-Sinus" "IS") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
518 ,(funcall op "Inv-Cosine" "IC") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
519 ,(funcall op "Inv-Tangent" "IT") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
520 "------Bitwise------" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
521 ,(funcall op "Or" "|") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
522 ,(funcall op "Xor" "#") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
523 ,(funcall op "And" "&") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
524 ,(funcall op "Not" "~")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
525 ("Saved List" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
526 ["Eval+Save" calculator-save-on-list] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
527 ["Prev number" calculator-saved-up] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
528 ["Next number" calculator-saved-down] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
529 ["Delete current" calculator-clear |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
530 :active (and calculator-display-fragile |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
531 calculator-saved-list |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
532 (= (car calculator-stack) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
533 (nth calculator-saved-ptr |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
534 calculator-saved-list)))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
535 ["Delete all" calculator-clear-saved] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
536 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
537 ,(funcall op "List-total" "l") |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
538 ,(funcall op "List-average" "v")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
539 ("Registers" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
540 ["Get register" calculator-get-register] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
541 ["Set register" calculator-set-register]) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
542 ("Modes" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
543 ["Radians" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
544 (progn |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
545 (and (or calculator-input-radix calculator-output-radix) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
546 (calculator-radix-mode "D")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
547 (and calculator-deg (calculator-dec/deg-mode))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
548 :keys "D" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
549 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
550 :selected (not (or calculator-input-radix |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
551 calculator-output-radix |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
552 calculator-deg))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
553 ["Degrees" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
554 (progn |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
555 (and (or calculator-input-radix calculator-output-radix) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
556 (calculator-radix-mode "D")) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
557 (or calculator-deg (calculator-dec/deg-mode))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
558 :keys "D" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
559 :style radio |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
560 :selected (and calculator-deg |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
561 (not (or calculator-input-radix |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
562 calculator-output-radix)))] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
563 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
564 ,@(mapcar 'car radix-selectors) |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
565 ("Separate I/O" |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
566 ,@(mapcar (lambda (x) (nth 1 x)) radix-selectors) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
567 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
568 ,@(mapcar (lambda (x) (nth 2 x)) radix-selectors))) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
569 ("Decimal Display" |
33491 | 570 ,@(mapcar (lambda (d) |
571 (vector (cadr d) | |
572 ;; Note: inserts actual object here | |
573 `(calculator-rotate-displayer ',d))) | |
574 calculator-displayers) | |
575 "---" | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
576 ["Change Prev Display" calculator-displayer-prev] |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
577 ["Change Next Display" calculator-displayer-next]) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
578 "---" |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
579 ["Copy+Quit" calculator-save-and-quit] |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
580 ["Quit" calculator-quit])))) |
27587 | 581 (setq calculator-mode-map map))) |
582 | |
33631 | 583 ;;;--------------------------------------------------------------------- |
33491 | 584 ;;; Startup and mode stuff |
585 | |
27587 | 586 (defun calculator-mode () |
33491 | 587 ;; this help is also used as the major help screen |
588 "A [not so] simple calculator for Emacs. | |
27587 | 589 |
590 This calculator is used in the same way as other popular calculators | |
591 like xcalc or calc.exe - but using an Emacs interface. | |
592 | |
593 Expressions are entered using normal infix notation, parens are used as | |
594 normal. Unary functions are usually postfix, but some depends on the | |
595 value of `calculator-unary-style' (if the style for an operator below is | |
596 specified, then it is fixed, otherwise it depends on this variable). | |
597 `+' and `-' can be used as either binary operators or prefix unary | |
598 operators. Numbers can be entered with exponential notation using `e', | |
599 except when using a non-decimal radix mode for input (in this case `e' | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
600 will be the hexadecimal digit). If the result of a calculation is too |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
601 large (out of range for Emacs), the value of \"inf\" is returned. |
27587 | 602 |
603 Here are the editing keys: | |
604 * `RET' `=' evaluate the current expression | |
605 * `C-insert' copy the whole current expression to the `kill-ring' | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
606 * `C-return' evaluate, save result the `kill-ring' and exit |
27587 | 607 * `insert' paste a number if the one was copied (normally) |
608 * `delete' `C-d' clear last argument or whole expression (hit twice) | |
609 * `backspace' delete a digit or a previous expression element | |
610 * `h' `?' pop-up a quick reference help | |
611 * `ESC' `q' exit (`ESC' can be used if `calculator-bind-escape' is | |
612 non-nil, otherwise use three consecutive `ESC's) | |
613 | |
614 These operators are pre-defined: | |
615 * `+' `-' `*' `/' the common binary operators | |
616 * `\\' `%' integer division and reminder | |
617 * `_' `;' postfix unary negation and reciprocal | |
618 * `^' `L' binary operators for x^y and log(x) in base y | |
619 * `Q' `!' unary square root and factorial | |
620 * `S' `C' `T' unary trigonometric operators - sin, cos and tan | |
621 * `|' `#' `&' `~' bitwise operators - or, xor, and, not | |
622 | |
623 The trigonometric functions can be inverted if prefixed with an `I', see | |
624 below for the way to use degrees instead of the default radians. | |
625 | |
626 Two special postfix unary operators are `>' and `<': whenever a binary | |
627 operator is performed, it is remembered along with its arguments; then | |
628 `>' (`<') will apply the same operator with the same right (left) | |
629 argument. | |
630 | |
631 hex/oct/bin modes can be set for input and for display separately. | |
632 Another toggle-able mode is for using degrees instead of radians for | |
633 trigonometric functions. | |
634 The keys to switch modes are (`X' is shortcut for `H'): | |
635 * `D' switch to all-decimal mode, or toggle degrees/radians | |
636 * `B' `O' `H' `X' binary/octal/hexadecimal modes for input & display | |
637 * `i' `o' followed by one of `D' `B' `O' `H' `X' (case | |
638 insensitive) sets only the input or display radix mode | |
639 The prompt indicates the current modes: | |
640 * \"D=\": degrees mode; | |
641 * \"?=\": (? is B/O/H) this is the radix for both input and output; | |
642 * \"=?\": (? is B/O/H) the display radix (when input is decimal); | |
643 * \"??\": (? is D/B/O/H) 1st char for input radix, 2nd for display. | |
644 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
645 Also, the quote key can be used to switch display modes for decimal |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
646 numbers (double-quote rotates back), and the two brace characters |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
647 \(\"{\" and \"}\" change display parameters that these displayers use (if |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
648 they handle such). If output is using any radix mode, then these keys |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
649 toggle digit grouping mode and the chunk size. |
33491 | 650 |
27587 | 651 Values can be saved for future reference in either a list of saved |
652 values, or in registers. | |
653 | |
654 The list of saved values is useful for statistics operations on some | |
655 collected data. It is possible to navigate in this list, and if the | |
656 value shown is the current one on the list, an indication is displayed | |
657 as \"[N]\" if this is the last number and there are N numbers, or | |
658 \"[M/N]\" if the M-th value is shown. | |
659 * `SPC' evaluate the current value as usual, but also adds | |
660 the result to the list of saved values | |
661 * `l' `v' computes total / average of saved values | |
662 * `up' `C-p' browse to the previous value in the list | |
663 * `down' `C-n' browse to the next value in the list | |
664 * `delete' `C-d' remove current value from the list (if it is on it) | |
665 * `C-delete' `C-c' delete the whole list | |
666 | |
667 Registers are variable-like place-holders for values: | |
668 * `s' followed by a character attach the current value to that character | |
669 * `g' followed by a character fetches the attached value | |
670 | |
671 There are many variables that can be used to customize the calculator. | |
672 Some interesting customization variables are: | |
673 * `calculator-electric-mode' use only the echo-area electrically. | |
674 * `calculator-unary-style' set most unary ops to pre/postfix style. | |
675 * `calculator-user-registers' to define user-preset registers. | |
676 * `calculator-user-operators' to add user-defined operators. | |
677 See the documentation for these variables, and \"calculator.el\" for | |
678 more information. | |
679 | |
680 \\{calculator-mode-map}" | |
681 (interactive) | |
682 (kill-all-local-variables) | |
683 (setq major-mode 'calculator-mode) | |
684 (setq mode-name "Calculator") | |
685 (use-local-map calculator-mode-map) | |
62720
eb01420c0088
(calculator-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62531
diff
changeset
|
686 (run-mode-hooks 'calculator-mode-hook)) |
27587 | 687 |
33491 | 688 (eval-when-compile (require 'electric) (require 'ehelp)) |
689 | |
27587 | 690 ;;;###autoload |
691 (defun calculator () | |
33491 | 692 "Run the Emacs calculator. |
27587 | 693 See the documentation for `calculator-mode' for more information." |
694 (interactive) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
695 (if calculator-restart-other-mode |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
696 (setq calculator-electric-mode (not calculator-electric-mode))) |
27587 | 697 (if calculator-initial-operators |
698 (progn (calculator-add-operators calculator-initial-operators) | |
699 (setq calculator-initial-operators nil) | |
700 ;; don't change this since it is a customization variable, | |
33491 | 701 ;; its set function will add any new operators |
27587 | 702 (calculator-add-operators calculator-user-operators))) |
49575
336c18b62203
(calculator): Don't use the minibuffer even in electric mode; use a private
Juanma Barranquero <lekktu@gmail.com>
parents:
43091
diff
changeset
|
703 (setq calculator-buffer (get-buffer-create "*calculator*")) |
27587 | 704 (if calculator-electric-mode |
705 (save-window-excursion | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
706 (progn (require 'electric) (message nil)) ; hide load message |
27587 | 707 (let (old-g-map old-l-map (echo-keystrokes 0) |
708 (garbage-collection-messages nil)) ; no gc msg when electric | |
49575
336c18b62203
(calculator): Don't use the minibuffer even in electric mode; use a private
Juanma Barranquero <lekktu@gmail.com>
parents:
43091
diff
changeset
|
709 (set-window-buffer (minibuffer-window) calculator-buffer) |
27587 | 710 (select-window (minibuffer-window)) |
711 (calculator-reset) | |
712 (calculator-update-display) | |
713 (setq old-l-map (current-local-map)) | |
714 (setq old-g-map (current-global-map)) | |
715 (setq calculator-saved-global-map (current-global-map)) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
716 (use-local-map nil) |
27587 | 717 (use-global-map calculator-mode-map) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
718 (run-hooks 'calculator-mode-hook) |
27587 | 719 (unwind-protect |
720 (catch 'calculator-done | |
721 (Electric-command-loop | |
722 'calculator-done | |
723 ;; can't use 'noprompt, bug in electric.el | |
724 '(lambda () 'noprompt) | |
725 nil | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
726 (lambda (x y) (calculator-update-display)))) |
27587 | 727 (and calculator-buffer |
728 (catch 'calculator-done (calculator-quit))) | |
729 (use-local-map old-l-map) | |
730 (use-global-map old-g-map)))) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
731 (progn |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
732 (cond |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
733 ((not (get-buffer-window calculator-buffer)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
734 (let ((split-window-keep-point nil) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
735 (window-min-height 2)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
736 ;; maybe leave two lines for our window because of the normal |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
737 ;; `raised' modeline in Emacs 21 |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
738 (select-window |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
739 (split-window-vertically |
75757
fa4ebb68ab30
(calculator): Do more extensive checking for when 3 lines should be
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75347
diff
changeset
|
740 ;; If the modeline might interfere with the calculator buffer, |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
741 ;; use 3 lines instead. |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
742 (if (and (fboundp 'face-attr-construct) |
75762
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
743 (let* ((dh (plist-get (face-attr-construct 'default) :height)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
744 (mf (face-attr-construct 'modeline)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
745 (mh (plist-get mf :height))) |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
746 ;; If the modeline is shorter than the default, |
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
747 ;; stick with 2 lines. (It may be necessary to |
75762
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
748 ;; check how much shorter.) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
749 (and |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
750 (not |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
751 (or (and (integerp dh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
752 (integerp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
753 (< mh dh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
754 (and (numberp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
755 (not (integerp mh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
756 (< mh 1)))) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
757 (or |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
758 ;; If the modeline is taller than the default, |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
759 ;; use 3 lines. |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
760 (and (integerp dh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
761 (integerp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
762 (> mh dh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
763 (and (numberp mh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
764 (not (integerp mh)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
765 (> mh 1)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
766 ;; If the modeline has a box with non-negative line-width, |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
767 ;; use 3 lines. |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
768 (let* ((bx (plist-get mf :box)) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
769 (lh (plist-get bx :line-width))) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
770 (and bx |
75773
8344ba1076b6
(calculator-mode-map): Fix typo in menu entry.
Juanma Barranquero <lekktu@gmail.com>
parents:
75762
diff
changeset
|
771 (or |
75762
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
772 (not lh) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
773 (> lh 0)))) |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
774 ;; If the modeline has an overline, use 3 lines. |
a57328de9ea2
(calculator): Adjust previous adjustment.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75757
diff
changeset
|
775 (plist-get (face-attr-construct 'modeline) :overline))))) |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
776 -3 -2))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
777 (switch-to-buffer calculator-buffer))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
778 ((not (eq (current-buffer) calculator-buffer)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
779 (select-window (get-buffer-window calculator-buffer)))) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
780 (calculator-mode) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
781 (setq buffer-read-only t) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
782 (calculator-reset) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
783 (message "Hit `?' For a quick help screen."))) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
784 (if (and calculator-restart-other-mode calculator-electric-mode) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
785 (calculator))) |
27587 | 786 |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
787 (defun calculator-message (string &rest arguments) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
788 "Same as `message', but special handle of electric mode." |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
789 (apply 'message string arguments) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
790 (if calculator-electric-mode |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
791 (progn (sit-for 1) (message nil)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
792 |
33631 | 793 ;;;--------------------------------------------------------------------- |
43091
f18f05d77411
(calculator-displayers): Doc fixes.
Pavel Janík <Pavel@Janik.cz>
parents:
39818
diff
changeset
|
794 ;;; Operators |
33491 | 795 |
27587 | 796 (defun calculator-op-arity (op) |
797 "Return OP's arity, 2, +1 or -1." | |
798 (let ((arity (or (nth 3 op) 'x))) | |
799 (if (numberp arity) | |
800 arity | |
801 (if (eq calculator-unary-style 'postfix) +1 -1)))) | |
802 | |
803 (defun calculator-op-prec (op) | |
804 "Return OP's precedence for reducing when inserting into the stack. | |
805 Defaults to 1." | |
806 (or (nth 4 op) 1)) | |
807 | |
808 (defun calculator-add-operators (more-ops) | |
809 "This function handles operator addition. | |
810 Adds MORE-OPS to `calculator-operator', called initially to handle | |
811 `calculator-initial-operators' and `calculator-user-operators'." | |
812 (let ((added-ops nil)) | |
813 (while more-ops | |
814 (or (eq (car (car more-ops)) 'nobind) | |
815 (let ((i -1) (key (car (car more-ops)))) | |
816 ;; make sure the key is undefined, so it's easy to define | |
817 ;; prefix keys | |
818 (while (< (setq i (1+ i)) (length key)) | |
819 (or (keymapp | |
820 (lookup-key calculator-mode-map | |
821 (substring key 0 (1+ i)))) | |
822 (progn | |
823 (define-key | |
824 calculator-mode-map (substring key 0 (1+ i)) nil) | |
825 (setq i (length key))))) | |
826 (define-key calculator-mode-map key 'calculator-op))) | |
827 (setq added-ops (cons (if (eq (car (car more-ops)) 'nobind) | |
828 (cdr (car more-ops)) | |
829 (car more-ops)) | |
830 added-ops)) | |
831 (setq more-ops (cdr more-ops))) | |
832 ;; added-ops come first, but in correct order | |
833 (setq calculator-operators | |
834 (append (nreverse added-ops) calculator-operators)))) | |
835 | |
33631 | 836 ;;;--------------------------------------------------------------------- |
33491 | 837 ;;; Display stuff |
838 | |
27587 | 839 (defun calculator-reset () |
840 "Reset calculator variables." | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
841 (or calculator-restart-other-mode |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
842 (setq calculator-stack nil |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
843 calculator-curnum nil |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
844 calculator-stack-display nil |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
845 calculator-display-fragile nil)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
846 (setq calculator-restart-other-mode nil) |
27587 | 847 (calculator-update-display)) |
848 | |
849 (defun calculator-get-prompt () | |
850 "Return a string to display. | |
851 The string is set not to exceed the screen width." | |
852 (let* ((calculator-prompt | |
853 (format calculator-prompt | |
854 (cond | |
855 ((or calculator-output-radix calculator-input-radix) | |
856 (if (eq calculator-output-radix | |
857 calculator-input-radix) | |
858 (concat | |
859 (char-to-string | |
860 (car (rassq calculator-output-radix | |
861 calculator-char-radix))) | |
862 "=") | |
863 (concat | |
864 (if calculator-input-radix | |
865 (char-to-string | |
866 (car (rassq calculator-input-radix | |
867 calculator-char-radix))) | |
868 "=") | |
869 (char-to-string | |
870 (car (rassq calculator-output-radix | |
871 calculator-char-radix)))))) | |
872 (calculator-deg "D=") | |
873 (t "==")))) | |
874 (prompt | |
875 (concat calculator-prompt | |
876 (cdr calculator-stack-display) | |
877 (cond (calculator-curnum | |
878 ;; number being typed | |
879 (concat calculator-curnum "_")) | |
880 ((and (= 1 (length calculator-stack)) | |
881 calculator-display-fragile) | |
882 ;; only the result is shown, next number will | |
883 ;; restart | |
884 nil) | |
885 (t | |
886 ;; waiting for a number or an operator | |
887 "?")))) | |
888 (trim (- (length prompt) (1- (window-width))))) | |
889 (if (<= trim 0) | |
890 prompt | |
891 (concat calculator-prompt | |
892 (substring prompt (+ trim (length calculator-prompt))))))) | |
893 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
894 (defun calculator-string-to-number (str) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
895 "Convert the given STR to a number, according to the value of |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
896 `calculator-input-radix'." |
27587 | 897 (if calculator-input-radix |
898 (let ((radix | |
899 (cdr (assq calculator-input-radix | |
900 '((bin . 2) (oct . 8) (hex . 16))))) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
901 (i -1) (value 0) (new-value 0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
902 ;; assume mostly valid input (e.g., characters in range) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
903 (while (< (setq i (1+ i)) (length str)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
904 (setq new-value |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
905 (let* ((ch (upcase (aref str i))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
906 (n (cond ((< ch ?0) nil) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
907 ((<= ch ?9) (- ch ?0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
908 ((< ch ?A) nil) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
909 ((<= ch ?Z) (- ch (- ?A 10))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
910 (t nil)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
911 (if (and n (<= 0 n) (< n radix)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
912 (+ n (* radix value)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
913 (progn |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
914 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
915 "Warning: Ignoring bad input character `%c'." ch) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
916 (sit-for 1) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
917 value)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
918 (if (if (< new-value 0) (> value 0) (< value 0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
919 (calculator-message "Warning: Overflow in input.")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
920 (setq value new-value)) |
27587 | 921 value) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
922 (car (read-from-string |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
923 (cond ((equal "." str) "0.0") |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
924 ((string-match "[eE][+-]?$" str) (concat str "0")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
925 ((string-match "\\.[0-9]\\|[eE]" str) str) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
926 ((string-match "\\." str) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
927 ;; do this because Emacs reads "23." as an integer |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
928 (concat str "0")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
929 ((stringp str) (concat str ".0")) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
930 (t "0.0")))))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
931 |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
932 (defun calculator-curnum-value () |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
933 "Get the numeric value of the displayed number string as a float." |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
934 (calculator-string-to-number calculator-curnum)) |
27587 | 935 |
33491 | 936 (defun calculator-rotate-displayer (&optional new-disp) |
937 "Switch to the next displayer on the `calculator-displayers' list. | |
938 Can be called with an optional argument NEW-DISP to force rotation to | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
939 that argument. |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
940 If radix output mode is active, toggle digit grouping." |
33491 | 941 (interactive) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
942 (cond |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
943 (calculator-output-radix |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
944 (setq calculator-radix-grouping-mode |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
945 (not calculator-radix-grouping-mode)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
946 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
947 "Digit grouping mode %s." |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
948 (if calculator-radix-grouping-mode "ON" "OFF"))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
949 (t |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
950 (setq calculator-displayers |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
951 (if (and new-disp (memq new-disp calculator-displayers)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
952 (let ((tmp nil)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
953 (while (not (eq (car calculator-displayers) new-disp)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
954 (setq tmp (cons (car calculator-displayers) tmp)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
955 (setq calculator-displayers |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
956 (cdr calculator-displayers))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
957 (setq calculator-displayers |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
958 (nconc calculator-displayers (nreverse tmp)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
959 (nconc (cdr calculator-displayers) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
960 (list (car calculator-displayers))))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
961 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
962 "Using %s." (cadr (car calculator-displayers))))) |
33491 | 963 (calculator-enter)) |
964 | |
965 (defun calculator-rotate-displayer-back () | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
966 "Like `calculator-rotate-displayer', but rotates modes back. |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
967 If radix output mode is active, toggle digit grouping." |
33491 | 968 (interactive) |
969 (calculator-rotate-displayer (car (last calculator-displayers)))) | |
970 | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
971 (defun calculator-displayer-prev () |
33491 | 972 "Send the current displayer function a 'left argument. |
973 This is used to modify display arguments (if the current displayer | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
974 function supports this). |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
975 If radix output mode is active, increase the grouping size." |
33491 | 976 (interactive) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
977 (if calculator-output-radix |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
978 (progn (setq calculator-radix-grouping-digits |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
979 (1+ calculator-radix-grouping-digits)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
980 (calculator-enter)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
981 (and (car calculator-displayers) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
982 (let ((disp (caar calculator-displayers))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
983 (cond |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
984 ((symbolp disp) (funcall disp 'left)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
985 ((and (consp disp) (eq 'std (car disp))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
986 (calculator-standard-displayer 'left (cadr disp)))))))) |
33491 | 987 |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
988 (defun calculator-displayer-next () |
33491 | 989 "Send the current displayer function a 'right argument. |
990 This is used to modify display arguments (if the current displayer | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
991 function supports this). |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
992 If radix output mode is active, decrease the grouping size." |
33491 | 993 (interactive) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
994 (if calculator-output-radix |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
995 (progn (setq calculator-radix-grouping-digits |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
996 (max 2 (1- calculator-radix-grouping-digits))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
997 (calculator-enter)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
998 (and (car calculator-displayers) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
999 (let ((disp (caar calculator-displayers))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1000 (cond |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1001 ((symbolp disp) (funcall disp 'right)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1002 ((and (consp disp) (eq 'std (car disp))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1003 (calculator-standard-displayer 'right (cadr disp)))))))) |
33491 | 1004 |
1005 (defun calculator-remove-zeros (numstr) | |
1006 "Get a number string NUMSTR and remove unnecessary zeroes. | |
1007 the behavior of this function is controlled by | |
1008 `calculator-remove-zeros'." | |
1009 (cond ((and (eq calculator-remove-zeros t) | |
1010 (string-match "\\.0+\\([eE][+-]?[0-9]*\\)?$" numstr)) | |
1011 ;; remove all redundant zeros leaving an integer | |
1012 (if (match-beginning 1) | |
1013 (concat (substring numstr 0 (match-beginning 0)) | |
1014 (match-string 1 numstr)) | |
1015 (substring numstr 0 (match-beginning 0)))) | |
1016 ((and calculator-remove-zeros | |
1017 (string-match | |
1018 "\\..\\([0-9]*[1-9]\\)?\\(0+\\)\\([eE][+-]?[0-9]*\\)?$" | |
1019 numstr)) | |
1020 ;; remove zeros, except for first after the "." | |
1021 (if (match-beginning 3) | |
1022 (concat (substring numstr 0 (match-beginning 2)) | |
1023 (match-string 3 numstr)) | |
1024 (substring numstr 0 (match-beginning 2)))) | |
1025 (t numstr))) | |
1026 | |
1027 (defun calculator-standard-displayer (num char) | |
1028 "Standard display function, used to display NUM. | |
1029 Its behavior is determined by `calculator-number-digits' and the given | |
1030 CHAR argument (both will be used to compose a format string). If the | |
1031 char is \"n\" then this function will choose one between %f or %e, this | |
1032 is a work around %g jumping to exponential notation too fast. | |
1033 | |
1034 The special 'left and 'right symbols will make it change the current | |
1035 number of digits displayed (`calculator-number-digits'). | |
1036 | |
1037 It will also remove redundant zeros from the result." | |
1038 (if (symbolp num) | |
1039 (cond ((eq num 'left) | |
1040 (and (> calculator-number-digits 0) | |
1041 (setq calculator-number-digits | |
1042 (1- calculator-number-digits)) | |
1043 (calculator-enter))) | |
1044 ((eq num 'right) | |
1045 (setq calculator-number-digits | |
1046 (1+ calculator-number-digits)) | |
1047 (calculator-enter))) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1048 (let ((str (if (zerop num) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1049 "0" |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1050 (format |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1051 (concat "%." |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1052 (number-to-string calculator-number-digits) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1053 (if (eq char ?n) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1054 (let ((n (abs num))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1055 (if (or (< n 0.001) (> n 1e8)) "e" "f")) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1056 (string char))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1057 num)))) |
33491 | 1058 (calculator-remove-zeros str)))) |
1059 | |
1060 (defun calculator-eng-display (num) | |
1061 "Display NUM in engineering notation. | |
1062 The number of decimal digits used is controlled by | |
1063 `calculator-number-digits', so to change it at runtime you have to use | |
1064 the 'left or 'right when one of the standard modes is used." | |
1065 (if (symbolp num) | |
1066 (cond ((eq num 'left) | |
1067 (setq calculator-eng-extra | |
1068 (if calculator-eng-extra | |
1069 (1+ calculator-eng-extra) | |
1070 1)) | |
1071 (let ((calculator-eng-tmp-show t)) (calculator-enter))) | |
1072 ((eq num 'right) | |
1073 (setq calculator-eng-extra | |
1074 (if calculator-eng-extra | |
1075 (1- calculator-eng-extra) | |
1076 -1)) | |
1077 (let ((calculator-eng-tmp-show t)) (calculator-enter)))) | |
1078 (let ((exp 0)) | |
1079 (and (not (= 0 num)) | |
1080 (progn | |
1081 (while (< (abs num) 1.0) | |
1082 (setq num (* num 1000.0)) (setq exp (- exp 3))) | |
1083 (while (> (abs num) 999.0) | |
1084 (setq num (/ num 1000.0)) (setq exp (+ exp 3))) | |
1085 (and calculator-eng-tmp-show | |
1086 (not (= 0 calculator-eng-extra)) | |
1087 (let ((i calculator-eng-extra)) | |
1088 (while (> i 0) | |
1089 (setq num (* num 1000.0)) (setq exp (- exp 3)) | |
1090 (setq i (1- i))) | |
1091 (while (< i 0) | |
1092 (setq num (/ num 1000.0)) (setq exp (+ exp 3)) | |
1093 (setq i (1+ i))))))) | |
1094 (or calculator-eng-tmp-show (setq calculator-eng-extra nil)) | |
39818
6564021e098e
(calculator-eng-display): Don't call concat
Gerd Moellmann <gerd@gnu.org>
parents:
39430
diff
changeset
|
1095 (let ((str (format (concat "%." (number-to-string |
6564021e098e
(calculator-eng-display): Don't call concat
Gerd Moellmann <gerd@gnu.org>
parents:
39430
diff
changeset
|
1096 calculator-number-digits) |
6564021e098e
(calculator-eng-display): Don't call concat
Gerd Moellmann <gerd@gnu.org>
parents:
39430
diff
changeset
|
1097 "f") |
33491 | 1098 num))) |
1099 (concat (let ((calculator-remove-zeros | |
1100 ;; make sure we don't leave integers | |
1101 (and calculator-remove-zeros 'x))) | |
1102 (calculator-remove-zeros str)) | |
1103 "e" (number-to-string exp)))))) | |
1104 | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1105 (defun calculator-number-to-string (num) |
27587 | 1106 "Convert NUM to a displayable string." |
1107 (cond | |
1108 ((and (numberp num) calculator-output-radix) | |
1109 ;; print with radix - for binary I convert the octal number | |
1110 (let ((str (format (if (eq calculator-output-radix 'hex) "%x" "%o") | |
1111 (calculator-truncate | |
1112 (if calculator-2s-complement num (abs num)))))) | |
1113 (if (eq calculator-output-radix 'bin) | |
1114 (let ((i -1) (s "")) | |
1115 (while (< (setq i (1+ i)) (length str)) | |
1116 (setq s | |
1117 (concat s | |
1118 (cdr (assq (aref str i) | |
1119 '((?0 . "000") (?1 . "001") | |
1120 (?2 . "010") (?3 . "011") | |
1121 (?4 . "100") (?5 . "101") | |
1122 (?6 . "110") (?7 . "111"))))))) | |
1123 (string-match "^0*\\(.+\\)" s) | |
1124 (setq str (match-string 1 s)))) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1125 (if calculator-radix-grouping-mode |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1126 (let ((d (/ (length str) calculator-radix-grouping-digits)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1127 (r (% (length str) calculator-radix-grouping-digits))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1128 (while (>= (setq d (1- d)) (if (zerop r) 1 0)) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1129 (let ((i (+ r (* d calculator-radix-grouping-digits)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1130 (setq str (concat (substring str 0 i) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1131 calculator-radix-grouping-separator |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1132 (substring str i))))))) |
27587 | 1133 (upcase |
1134 (if (and (not calculator-2s-complement) (< num 0)) | |
1135 (concat "-" str) | |
1136 str)))) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1137 ((and (numberp num) calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1138 (cond |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1139 ((stringp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1140 (format calculator-displayer num)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1141 ((symbolp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1142 (funcall calculator-displayer num)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1143 ((and (consp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1144 (eq 'std (car calculator-displayer))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1145 (calculator-standard-displayer num (cadr calculator-displayer))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1146 ((listp calculator-displayer) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1147 (eval calculator-displayer)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1148 (t (prin1-to-string num t)))) |
33491 | 1149 ;; operators are printed here |
27587 | 1150 (t (prin1-to-string (nth 1 num) t)))) |
1151 | |
1152 (defun calculator-update-display (&optional force) | |
1153 "Update the display. | |
1154 If optional argument FORCE is non-nil, don't use the cached string." | |
1155 (set-buffer calculator-buffer) | |
1156 ;; update calculator-stack-display | |
1157 (if (or force | |
1158 (not (eq (car calculator-stack-display) calculator-stack))) | |
1159 (setq calculator-stack-display | |
1160 (cons calculator-stack | |
1161 (if calculator-stack | |
1162 (concat | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1163 (let ((calculator-displayer |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1164 (if (and calculator-displayers |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1165 (= 1 (length calculator-stack))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1166 ;; customizable display for a single value |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1167 (caar calculator-displayers) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1168 calculator-displayer))) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1169 (mapconcat 'calculator-number-to-string |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1170 (reverse calculator-stack) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1171 " ")) |
27587 | 1172 " " |
1173 (and calculator-display-fragile | |
1174 calculator-saved-list | |
1175 (= (car calculator-stack) | |
1176 (nth calculator-saved-ptr | |
1177 calculator-saved-list)) | |
1178 (if (= 0 calculator-saved-ptr) | |
1179 (format "[%s]" (length calculator-saved-list)) | |
1180 (format "[%s/%s]" | |
1181 (- (length calculator-saved-list) | |
1182 calculator-saved-ptr) | |
1183 (length calculator-saved-list))))) | |
1184 "")))) | |
1185 (let ((inhibit-read-only t)) | |
1186 (erase-buffer) | |
1187 (insert (calculator-get-prompt))) | |
1188 (set-buffer-modified-p nil) | |
1189 (if calculator-display-fragile | |
1190 (goto-char (1+ (length calculator-prompt))) | |
1191 (goto-char (1- (point))))) | |
1192 | |
33631 | 1193 ;;;--------------------------------------------------------------------- |
33491 | 1194 ;;; Stack computations |
1195 | |
27587 | 1196 (defun calculator-reduce-stack (prec) |
1197 "Reduce the stack using top operator. | |
1198 PREC is a precedence - reduce everything with higher precedence." | |
1199 (while | |
1200 (cond | |
1201 ((and (cdr (cdr calculator-stack)) ; have three values | |
1202 (consp (nth 0 calculator-stack)) ; two operators & num | |
1203 (numberp (nth 1 calculator-stack)) | |
1204 (consp (nth 2 calculator-stack)) | |
1205 (eq '\) (nth 1 (nth 0 calculator-stack))) | |
1206 (eq '\( (nth 1 (nth 2 calculator-stack)))) | |
1207 ;; reduce "... ( x )" --> "... x" | |
1208 (setq calculator-stack | |
1209 (cons (nth 1 calculator-stack) | |
1210 (nthcdr 3 calculator-stack))) | |
1211 ;; another iteration | |
1212 t) | |
1213 ((and (cdr (cdr calculator-stack)) ; have three values | |
1214 (numberp (nth 0 calculator-stack)) ; two nums & operator | |
1215 (consp (nth 1 calculator-stack)) | |
1216 (numberp (nth 2 calculator-stack)) | |
1217 (= 2 (calculator-op-arity ; binary operator | |
1218 (nth 1 calculator-stack))) | |
1219 (<= prec ; with higher prec. | |
1220 (calculator-op-prec (nth 1 calculator-stack)))) | |
1221 ;; reduce "... x op y" --> "... r", r is the result | |
1222 (setq calculator-stack | |
1223 (cons (calculator-funcall | |
1224 (nth 2 (nth 1 calculator-stack)) | |
1225 (nth 2 calculator-stack) | |
1226 (nth 0 calculator-stack)) | |
1227 (nthcdr 3 calculator-stack))) | |
1228 ;; another iteration | |
1229 t) | |
1230 ((and (>= (length calculator-stack) 2) ; have two values | |
1231 (numberp (nth 0 calculator-stack)) ; number & operator | |
1232 (consp (nth 1 calculator-stack)) | |
1233 (= -1 (calculator-op-arity ; prefix-unary op | |
1234 (nth 1 calculator-stack))) | |
1235 (<= prec ; with higher prec. | |
1236 (calculator-op-prec (nth 1 calculator-stack)))) | |
1237 ;; reduce "... op x" --> "... r" for prefix op | |
1238 (setq calculator-stack | |
1239 (cons (calculator-funcall | |
1240 (nth 2 (nth 1 calculator-stack)) | |
1241 (nth 0 calculator-stack)) | |
1242 (nthcdr 2 calculator-stack))) | |
1243 ;; another iteration | |
1244 t) | |
1245 ((and (cdr calculator-stack) ; have two values | |
1246 (consp (nth 0 calculator-stack)) ; operator & number | |
1247 (numberp (nth 1 calculator-stack)) | |
1248 (= +1 (calculator-op-arity ; postfix-unary op | |
1249 (nth 0 calculator-stack))) | |
1250 (<= prec ; with higher prec. | |
1251 (calculator-op-prec (nth 0 calculator-stack)))) | |
1252 ;; reduce "... x op" --> "... r" for postfix op | |
1253 (setq calculator-stack | |
1254 (cons (calculator-funcall | |
1255 (nth 2 (nth 0 calculator-stack)) | |
1256 (nth 1 calculator-stack)) | |
1257 (nthcdr 2 calculator-stack))) | |
1258 ;; another iteration | |
1259 t) | |
1260 ((and calculator-stack ; have one value | |
1261 (consp (nth 0 calculator-stack)) ; an operator | |
1262 (= 0 (calculator-op-arity ; 0-ary op | |
1263 (nth 0 calculator-stack)))) | |
1264 ;; reduce "... op" --> "... r" for 0-ary op | |
1265 (setq calculator-stack | |
1266 (cons (calculator-funcall | |
1267 (nth 2 (nth 0 calculator-stack))) | |
1268 (nthcdr 1 calculator-stack))) | |
1269 ;; another iteration | |
1270 t) | |
1271 ((and (cdr calculator-stack) ; have two values | |
1272 (numberp (nth 0 calculator-stack)) ; both numbers | |
1273 (numberp (nth 1 calculator-stack))) | |
1274 ;; get rid of redundant numbers: | |
1275 ;; reduce "... y x" --> "... x" | |
1276 ;; needed for 0-ary ops that puts more values | |
1277 (setcdr calculator-stack (cdr (cdr calculator-stack)))) | |
1278 (t ;; no more iterations | |
1279 nil)))) | |
1280 | |
33491 | 1281 (defun calculator-funcall (f &optional X Y) |
1282 "If F is a symbol, evaluate (F X Y). | |
1283 Otherwise, it should be a list, evaluate it with X, Y bound to the | |
1284 arguments." | |
1285 ;; remember binary ops for calculator-repR/L | |
1286 (if Y (setq calculator-last-opXY (list f X Y))) | |
1287 (condition-case nil | |
1288 ;; there used to be code here that returns 0 if the result was | |
1289 ;; smaller than calculator-epsilon (1e-15). I don't think this is | |
1290 ;; necessary now. | |
1291 (if (symbolp f) | |
1292 (cond ((and X Y) (funcall f X Y)) | |
1293 (X (funcall f X)) | |
1294 (t (funcall f))) | |
1295 ;; f is an expression | |
1296 (let* ((__f__ f) ; so we can get this value below... | |
1297 (TX (calculator-truncate X)) | |
1298 (TY (and Y (calculator-truncate Y))) | |
1299 (DX (if calculator-deg (/ (* X pi) 180) X)) | |
1300 (L calculator-saved-list) | |
1301 (Fbound (fboundp 'F)) | |
1302 (Fsave (and Fbound (symbol-function 'F))) | |
1303 (Dbound (fboundp 'D)) | |
1304 (Dsave (and Dbound (symbol-function 'D)))) | |
1305 ;; a shortened version of flet | |
1306 (fset 'F (function | |
1307 (lambda (&optional x y) | |
1308 (calculator-funcall __f__ x y)))) | |
1309 (fset 'D (function | |
1310 (lambda (x) | |
1311 (if calculator-deg (/ (* x 180) pi) x)))) | |
1312 (unwind-protect (eval f) | |
1313 (if Fbound (fset 'F Fsave) (fmakunbound 'F)) | |
1314 (if Dbound (fset 'D Dsave) (fmakunbound 'D))))) | |
1315 (error 0))) | |
1316 | |
33631 | 1317 ;;;--------------------------------------------------------------------- |
33491 | 1318 ;;; Input interaction |
1319 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1320 (defun calculator-last-input (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1321 "Last char (or event or event sequence) that was read. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1322 Optional string argument KEYS will force using it as the keys entered." |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1323 (let ((inp (or keys (this-command-keys)))) |
27587 | 1324 (if (or (stringp inp) (not (arrayp inp))) |
1325 inp | |
1326 ;; this translates kp-x to x and [tries to] create a string to | |
1327 ;; lookup operators | |
1328 (let* ((i -1) (converted-str (make-string (length inp) ? )) k) | |
1329 ;; converts an array to a string the ops lookup with keypad | |
1330 ;; input | |
1331 (while (< (setq i (1+ i)) (length inp)) | |
1332 (setq k (aref inp i)) | |
1333 ;; if Emacs will someday have a event-key, then this would | |
1334 ;; probably be modified anyway | |
64381
c25db06be8ca
(calculator-last-input): Guard uses of event-key and key-press-event-p.
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
1335 (and (if (fboundp 'key-press-event-p) (key-press-event-p k)) |
c25db06be8ca
(calculator-last-input): Guard uses of event-key and key-press-event-p.
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
1336 (if (fboundp 'event-key) |
c25db06be8ca
(calculator-last-input): Guard uses of event-key and key-press-event-p.
Richard M. Stallman <rms@gnu.org>
parents:
64091
diff
changeset
|
1337 (and (event-key k) (setq k (event-key k))))) |
27587 | 1338 ;; assume all symbols are translatable with an ascii-character |
1339 (and (symbolp k) | |
1340 (setq k (or (get k 'ascii-character) ? ))) | |
1341 (aset converted-str i k)) | |
1342 converted-str)))) | |
1343 | |
1344 (defun calculator-clear-fragile (&optional op) | |
1345 "Clear the fragile flag if it was set, then maybe reset all. | |
1346 OP is the operator (if any) that caused this call." | |
1347 (if (and calculator-display-fragile | |
1348 (or (not op) | |
1349 (= -1 (calculator-op-arity op)) | |
1350 (= 0 (calculator-op-arity op)))) | |
1351 ;; reset if last calc finished, and now get a num or prefix or 0-ary | |
33491 | 1352 ;; op |
27587 | 1353 (calculator-reset)) |
1354 (setq calculator-display-fragile nil)) | |
1355 | |
1356 (defun calculator-digit () | |
1357 "Enter a single digit." | |
1358 (interactive) | |
1359 (let ((inp (aref (calculator-last-input) 0))) | |
1360 (if (and (or calculator-display-fragile | |
1361 (not (numberp (car calculator-stack)))) | |
1362 (cond | |
1363 ((not calculator-input-radix) (<= inp ?9)) | |
1364 ((eq calculator-input-radix 'bin) (<= inp ?1)) | |
1365 ((eq calculator-input-radix 'oct) (<= inp ?7)) | |
1366 (t t))) | |
1367 ;; enter digit if starting a new computation or have an op on the | |
33491 | 1368 ;; stack |
27587 | 1369 (progn |
1370 (calculator-clear-fragile) | |
1371 (let ((digit (upcase (char-to-string inp)))) | |
1372 (if (equal calculator-curnum "0") | |
1373 (setq calculator-curnum nil)) | |
1374 (setq calculator-curnum | |
1375 (concat (or calculator-curnum "") digit))) | |
1376 (calculator-update-display))))) | |
1377 | |
1378 (defun calculator-decimal () | |
1379 "Enter a decimal period." | |
1380 (interactive) | |
1381 (if (and (not calculator-input-radix) | |
1382 (or calculator-display-fragile | |
1383 (not (numberp (car calculator-stack)))) | |
1384 (not (and calculator-curnum | |
1385 (string-match "[.eE]" calculator-curnum)))) | |
1386 ;; enter the period on the same condition as a digit, only if no | |
33491 | 1387 ;; period or exponent entered yet |
27587 | 1388 (progn |
1389 (calculator-clear-fragile) | |
1390 (setq calculator-curnum (concat (or calculator-curnum "0") ".")) | |
1391 (calculator-update-display)))) | |
1392 | |
1393 (defun calculator-exp () | |
1394 "Enter an `E' exponent character, or a digit in hex input mode." | |
1395 (interactive) | |
1396 (if calculator-input-radix | |
1397 (calculator-digit) | |
1398 (if (and (or calculator-display-fragile | |
1399 (not (numberp (car calculator-stack)))) | |
1400 (not (and calculator-curnum | |
1401 (string-match "[eE]" calculator-curnum)))) | |
33491 | 1402 ;; same condition as above, also no E so far |
27587 | 1403 (progn |
1404 (calculator-clear-fragile) | |
1405 (setq calculator-curnum (concat (or calculator-curnum "1") "e")) | |
1406 (calculator-update-display))))) | |
1407 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1408 (defun calculator-op (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1409 "Enter an operator on the stack, doing all necessary reductions. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1410 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1411 (interactive) |
33491 | 1412 (catch 'op-error |
1413 (let* ((last-inp (calculator-last-input keys)) | |
1414 (op (assoc last-inp calculator-operators))) | |
1415 (calculator-clear-fragile op) | |
1416 (if (and calculator-curnum (/= (calculator-op-arity op) 0)) | |
1417 (setq calculator-stack | |
1418 (cons (calculator-curnum-value) calculator-stack))) | |
1419 (setq calculator-curnum nil) | |
1420 (if (and (= 2 (calculator-op-arity op)) | |
1421 (not (and calculator-stack | |
1422 (numberp (nth 0 calculator-stack))))) | |
1423 ;; we have a binary operator but no number - search for a prefix | |
1424 ;; version | |
1425 (let ((rest-ops calculator-operators)) | |
1426 (while (not (equal last-inp (car (car rest-ops)))) | |
1427 (setq rest-ops (cdr rest-ops))) | |
1428 (setq op (assoc last-inp (cdr rest-ops))) | |
1429 (if (not (and op (= -1 (calculator-op-arity op)))) | |
1430 ;;(error "Binary operator without a first operand") | |
1431 (progn | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1432 (calculator-message |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1433 "Binary operator without a first operand") |
33491 | 1434 (throw 'op-error nil))))) |
1435 (calculator-reduce-stack | |
1436 (cond ((eq (nth 1 op) '\() 10) | |
1437 ((eq (nth 1 op) '\)) 0) | |
1438 (t (calculator-op-prec op)))) | |
1439 (if (or (and (= -1 (calculator-op-arity op)) | |
1440 (numberp (car calculator-stack))) | |
1441 (and (/= (calculator-op-arity op) -1) | |
1442 (/= (calculator-op-arity op) 0) | |
1443 (not (numberp (car calculator-stack))))) | |
1444 ;;(error "Unterminated expression") | |
1445 (progn | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1446 (calculator-message "Unterminated expression") |
33491 | 1447 (throw 'op-error nil))) |
1448 (setq calculator-stack (cons op calculator-stack)) | |
1449 (calculator-reduce-stack (calculator-op-prec op)) | |
1450 (and (= (length calculator-stack) 1) | |
1451 (numberp (nth 0 calculator-stack)) | |
1452 ;; the display is fragile if it contains only one number | |
1453 (setq calculator-display-fragile t) | |
1454 ;; add number to the saved-list | |
1455 calculator-add-saved | |
1456 (if (= 0 calculator-saved-ptr) | |
1457 (setq calculator-saved-list | |
1458 (cons (car calculator-stack) calculator-saved-list)) | |
1459 (let ((p (nthcdr (1- calculator-saved-ptr) | |
1460 calculator-saved-list))) | |
1461 (setcdr p (cons (car calculator-stack) (cdr p)))))) | |
1462 (calculator-update-display)))) | |
27587 | 1463 |
1464 (defun calculator-op-or-exp () | |
1465 "Either enter an operator or a digit. | |
33491 | 1466 Used with +/- for entering them as digits in numbers like 1e-3 (there is |
1467 no need for negative numbers since these are handled by unary | |
1468 operators)." | |
27587 | 1469 (interactive) |
1470 (if (and (not calculator-display-fragile) | |
1471 calculator-curnum | |
1472 (string-match "[eE]$" calculator-curnum)) | |
1473 (calculator-digit) | |
1474 (calculator-op))) | |
1475 | |
33631 | 1476 ;;;--------------------------------------------------------------------- |
33491 | 1477 ;;; Input/output modes (not display) |
1478 | |
27587 | 1479 (defun calculator-dec/deg-mode () |
1480 "Set decimal mode for display & input, if decimal, toggle deg mode." | |
1481 (interactive) | |
1482 (if calculator-curnum | |
1483 (setq calculator-stack | |
1484 (cons (calculator-curnum-value) calculator-stack))) | |
1485 (setq calculator-curnum nil) | |
1486 (if (or calculator-input-radix calculator-output-radix) | |
1487 (progn (setq calculator-input-radix nil) | |
1488 (setq calculator-output-radix nil)) | |
1489 ;; already decimal - toggle degrees mode | |
1490 (setq calculator-deg (not calculator-deg))) | |
1491 (calculator-update-display t)) | |
1492 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1493 (defun calculator-radix-mode (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1494 "Set input and display radix modes. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1495 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1496 (interactive) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1497 (calculator-radix-input-mode keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1498 (calculator-radix-output-mode keys)) |
27587 | 1499 |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1500 (defun calculator-radix-input-mode (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1501 "Set input radix modes. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1502 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1503 (interactive) |
1504 (if calculator-curnum | |
1505 (setq calculator-stack | |
1506 (cons (calculator-curnum-value) calculator-stack))) | |
1507 (setq calculator-curnum nil) | |
1508 (setq calculator-input-radix | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1509 (let ((inp (calculator-last-input keys))) |
27587 | 1510 (cdr (assq (upcase (aref inp (1- (length inp)))) |
1511 calculator-char-radix)))) | |
1512 (calculator-update-display)) | |
1513 | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1514 (defun calculator-radix-output-mode (&optional keys) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1515 "Set display radix modes. |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1516 Optional string argument KEYS will force using it as the keys entered." |
27587 | 1517 (interactive) |
1518 (if calculator-curnum | |
1519 (setq calculator-stack | |
1520 (cons (calculator-curnum-value) calculator-stack))) | |
1521 (setq calculator-curnum nil) | |
1522 (setq calculator-output-radix | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1523 (let ((inp (calculator-last-input keys))) |
27587 | 1524 (cdr (assq (upcase (aref inp (1- (length inp)))) |
1525 calculator-char-radix)))) | |
1526 (calculator-update-display t)) | |
1527 | |
33631 | 1528 ;;;--------------------------------------------------------------------- |
33491 | 1529 ;;; Saved values list |
1530 | |
27587 | 1531 (defun calculator-save-on-list () |
1532 "Evaluate current expression, put result on the saved values list." | |
1533 (interactive) | |
1534 (let ((calculator-add-saved t)) ; marks the result to be added | |
1535 (calculator-enter))) | |
1536 | |
1537 (defun calculator-clear-saved () | |
1538 "Clear the list of saved values in `calculator-saved-list'." | |
1539 (interactive) | |
1540 (setq calculator-saved-list nil) | |
33491 | 1541 (setq calculator-saved-ptr 0) |
27587 | 1542 (calculator-update-display t)) |
1543 | |
1544 (defun calculator-saved-move (n) | |
1545 "Go N elements up the list of saved values." | |
1546 (interactive) | |
1547 (and calculator-saved-list | |
1548 (or (null calculator-stack) calculator-display-fragile) | |
1549 (progn | |
1550 (setq calculator-saved-ptr | |
1551 (max (min (+ n calculator-saved-ptr) | |
1552 (length calculator-saved-list)) | |
1553 0)) | |
1554 (if (nth calculator-saved-ptr calculator-saved-list) | |
1555 (setq calculator-stack | |
1556 (list (nth calculator-saved-ptr calculator-saved-list)) | |
1557 calculator-display-fragile t) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1558 (calculator-reset)) |
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1559 (calculator-update-display)))) |
27587 | 1560 |
1561 (defun calculator-saved-up () | |
1562 "Go up the list of saved values." | |
1563 (interactive) | |
1564 (calculator-saved-move +1)) | |
1565 | |
1566 (defun calculator-saved-down () | |
1567 "Go down the list of saved values." | |
1568 (interactive) | |
1569 (calculator-saved-move -1)) | |
1570 | |
33631 | 1571 ;;;--------------------------------------------------------------------- |
33491 | 1572 ;;; Misc functions |
1573 | |
27587 | 1574 (defun calculator-open-paren () |
1575 "Equivalents of `(' use this." | |
1576 (interactive) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1577 (calculator-op "(")) |
27587 | 1578 |
1579 (defun calculator-close-paren () | |
1580 "Equivalents of `)' use this." | |
1581 (interactive) | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1582 (calculator-op ")")) |
27587 | 1583 |
1584 (defun calculator-enter () | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1585 "Evaluate current expression." |
27587 | 1586 (interactive) |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1587 (calculator-op "=")) |
27587 | 1588 |
1589 (defun calculator-backspace () | |
1590 "Backward delete a single digit or a stack element." | |
1591 (interactive) | |
1592 (if calculator-curnum | |
1593 (setq calculator-curnum | |
1594 (if (> (length calculator-curnum) 1) | |
1595 (substring calculator-curnum | |
1596 0 (1- (length calculator-curnum))) | |
1597 nil)) | |
1598 (setq calculator-stack (cdr calculator-stack))) | |
1599 (calculator-update-display)) | |
1600 | |
1601 (defun calculator-clear () | |
1602 "Clear current number." | |
1603 (interactive) | |
1604 (setq calculator-curnum nil) | |
1605 (cond | |
1606 ;; if the current number is from the saved-list - remove it | |
1607 ((and calculator-display-fragile | |
1608 calculator-saved-list | |
1609 (= (car calculator-stack) | |
1610 (nth calculator-saved-ptr calculator-saved-list))) | |
1611 (if (= 0 calculator-saved-ptr) | |
1612 (setq calculator-saved-list (cdr calculator-saved-list)) | |
1613 (let ((p (nthcdr (1- calculator-saved-ptr) | |
1614 calculator-saved-list))) | |
1615 (setcdr p (cdr (cdr p))) | |
1616 (setq calculator-saved-ptr (1- calculator-saved-ptr)))) | |
1617 (if calculator-saved-list | |
1618 (setq calculator-stack | |
1619 (list (nth calculator-saved-ptr calculator-saved-list))) | |
1620 (calculator-reset))) | |
1621 ;; reset if fragile or double clear | |
1622 ((or calculator-display-fragile (eq last-command this-command)) | |
1623 (calculator-reset))) | |
1624 (calculator-update-display)) | |
1625 | |
1626 (defun calculator-copy () | |
1627 "Copy current number to the `kill-ring'." | |
1628 (interactive) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1629 (let ((calculator-displayer |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1630 (or calculator-copy-displayer calculator-displayer)) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1631 (calculator-displayers |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1632 (if calculator-copy-displayer nil calculator-displayers))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1633 (calculator-enter) |
64440
41bfd05eff2a
(calculator-copy): Delete duplicate words.
Juri Linkov <juri@jurta.org>
parents:
64381
diff
changeset
|
1634 ;; remove trailing spaces and an index |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1635 (let ((s (cdr calculator-stack-display))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1636 (and s |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1637 (if (string-match "^\\([^ ]+\\) *\\(\\[[0-9/]+\\]\\)? *$" s) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1638 (setq s (match-string 1 s))) |
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1639 (kill-new s))))) |
27587 | 1640 |
1641 (defun calculator-set-register (reg) | |
1642 "Set a register value for REG." | |
1643 (interactive "cRegister to store into: ") | |
1644 (let* ((as (assq reg calculator-registers)) | |
1645 (val (progn (calculator-enter) (car calculator-stack)))) | |
1646 (if as | |
1647 (setcdr as val) | |
1648 (setq calculator-registers | |
1649 (cons (cons reg val) calculator-registers))) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1650 (calculator-message "[%c] := %S" reg val))) |
27587 | 1651 |
1652 (defun calculator-put-value (val) | |
1653 "Paste VAL as if entered. | |
1654 Used by `calculator-paste' and `get-register'." | |
1655 (if (and (numberp val) | |
1656 ;; (not calculator-curnum) | |
1657 (or calculator-display-fragile | |
1658 (not (numberp (car calculator-stack))))) | |
1659 (progn | |
1660 (calculator-clear-fragile) | |
39430
48633cf4ce7c
(calculator-copy-displayer): New user-option.
Gerd Moellmann <gerd@gnu.org>
parents:
38436
diff
changeset
|
1661 (setq calculator-curnum (let ((calculator-displayer "%S")) |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1662 (calculator-number-to-string val))) |
27587 | 1663 (calculator-update-display)))) |
1664 | |
1665 (defun calculator-paste () | |
1666 "Paste a value from the `kill-ring'." | |
1667 (interactive) | |
1668 (calculator-put-value | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1669 (let ((str (replace-regexp-in-string |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1670 "^ *\\(.+[^ ]\\) *$" "\\1" (current-kill 0)))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1671 (and (not calculator-input-radix) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1672 calculator-paste-decimals |
33631 | 1673 (string-match "\\([0-9]+\\)\\(\\.[0-9]+\\)?\\(e[0-9]+\\)?" |
1674 str) | |
1675 (or (match-string 1 str) | |
1676 (match-string 2 str) | |
1677 (match-string 3 str)) | |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1678 (setq str (concat (or (match-string 1 str) "0") |
33631 | 1679 (or (match-string 2 str) ".0") |
59056
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1680 (or (match-string 3 str) "")))) |
956483cc3659
(calculator-radix-grouping-mode)
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
1681 (condition-case nil (calculator-string-to-number str) |
33491 | 1682 (error nil))))) |
27587 | 1683 |
1684 (defun calculator-get-register (reg) | |
1685 "Get a value from a register REG." | |
1686 (interactive "cRegister to get value from: ") | |
1687 (calculator-put-value (cdr (assq reg calculator-registers)))) | |
1688 | |
1689 (defun calculator-help () | |
1690 ;; this is used as the quick reference screen you get with `h' | |
1691 "Quick reference: | |
1692 * numbers/operators/parens/./e - enter expressions | |
1693 + - * / \\(div) %(rem) _(-X,postfix) ;(1/X,postfix) ^(exp) L(og) | |
1694 Q(sqrt) !(fact) S(in) C(os) T(an) |(or) #(xor) &(and) ~(not) | |
1695 * >/< repeats last binary operation with its 2nd (1st) arg as postfix op | |
33491 | 1696 * I inverses next trig function * '/\"/{} - display/display args |
1697 * D - switch to all-decimal, or toggle deg/rad mode | |
27587 | 1698 * B/O/H/X - binary/octal/hex mode for i/o (X is a shortcut for H) |
1699 * i/o - prefix for d/b/o/x - set only input/output modes | |
1700 * enter/= - evaluate current expr. * s/g - set/get a register | |
1701 * space - evaluate & save on list * l/v - list total/average | |
1702 * up/down/C-p/C-n - browse saved * C-delete - clear all saved | |
27904
af501f05394a
(calculator-use-menu): New option.
Gerd Moellmann <gerd@gnu.org>
parents:
27587
diff
changeset
|
1703 * C-insert - copy whole expr. * C-return - evaluate, copy, exit |
27587 | 1704 * insert - paste a number * backspace- delete backwards |
1705 * delete - clear argument or list value or whole expression (twice) | |
1706 * escape/q - exit." | |
1707 (interactive) | |
1708 (if (eq last-command 'calculator-help) | |
1709 (let ((mode-name "Calculator") | |
1710 (major-mode 'calculator-mode) | |
1711 (g-map (current-global-map)) | |
1712 (win (selected-window))) | |
1713 (require 'ehelp) | |
1714 (if calculator-electric-mode | |
1715 (use-global-map calculator-saved-global-map)) | |
33631 | 1716 (if (or (not calculator-electric-mode) |
1717 ;; XEmacs has a problem with electric-describe-mode | |
85511
f873840f9fea
* emulation/edt-mapper.el (function-key-map):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
83794
diff
changeset
|
1718 (featurep 'xemacs)) |
33631 | 1719 (describe-mode) |
1720 (electric-describe-mode)) | |
27587 | 1721 (if calculator-electric-mode |
1722 (use-global-map g-map)) | |
1723 (select-window win) ; these are for XEmacs (also below) | |
1724 (message nil)) | |
1725 (let ((one (one-window-p t)) | |
1726 (win (selected-window)) | |
1727 (help-buf (get-buffer-create "*Help*"))) | |
1728 (save-window-excursion | |
1729 (with-output-to-temp-buffer "*Help*" | |
1730 (princ (documentation 'calculator-help))) | |
1731 (if one | |
1732 (shrink-window-if-larger-than-buffer | |
1733 (get-buffer-window help-buf))) | |
1734 (message | |
1735 "`%s' again for more help, any other key continues normally." | |
1736 (calculator-last-input)) | |
1737 (select-window win) | |
1738 (sit-for 360)) | |
1739 (select-window win)))) | |
1740 | |
1741 (defun calculator-quit () | |
1742 "Quit calculator." | |
1743 (interactive) | |
1744 (set-buffer calculator-buffer) | |
1745 (let ((inhibit-read-only t)) (erase-buffer)) | |
1746 (if (not calculator-electric-mode) | |
1747 (progn | |
1748 (condition-case nil | |
1749 (while (get-buffer-window calculator-buffer) | |
1750 (delete-window (get-buffer-window calculator-buffer))) | |
1751 (error nil)) | |
1752 (kill-buffer calculator-buffer))) | |
1753 (setq calculator-buffer nil) | |
1754 (message "Calculator done.") | |
1755 (if calculator-electric-mode (throw 'calculator-done nil))) | |
1756 | |
1757 (defun calculator-save-and-quit () | |
1758 "Quit the calculator, saving the result on the `kill-ring'." | |
1759 (interactive) | |
1760 (calculator-enter) | |
1761 (calculator-copy) | |
1762 (calculator-quit)) | |
1763 | |
1764 (defun calculator-repR (x) | |
1765 "Repeats the last binary operation with its second argument and X. | |
1766 To use this, apply a binary operator (evaluate it), then call this." | |
1767 (if calculator-last-opXY | |
1768 ;; avoid rebinding calculator-last-opXY | |
1769 (let ((calculator-last-opXY calculator-last-opXY)) | |
1770 (calculator-funcall | |
1771 (car calculator-last-opXY) x (nth 2 calculator-last-opXY))) | |
1772 x)) | |
1773 | |
1774 (defun calculator-repL (x) | |
1775 "Repeats the last binary operation with its first argument and X. | |
1776 To use this, apply a binary operator (evaluate it), then call this." | |
1777 (if calculator-last-opXY | |
1778 ;; avoid rebinding calculator-last-opXY | |
1779 (let ((calculator-last-opXY calculator-last-opXY)) | |
1780 (calculator-funcall | |
1781 (car calculator-last-opXY) (nth 1 calculator-last-opXY) x)) | |
1782 x)) | |
1783 | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1784 (defun calculator-integer-p (x) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1785 "Non-nil if X is equal to an integer." |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1786 (condition-case nil |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1787 (= x (ftruncate x)) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1788 (error nil))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1789 |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1790 (defun calculator-expt (x y) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1791 "Compute X^Y, dealing with errors appropriately." |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1792 (condition-case |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1793 nil |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1794 (expt x y) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1795 (domain-error 0.0e+NaN) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1796 (range-error |
81700
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1797 (cond |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1798 ((and (< x 1.0) (> x -1.0)) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1799 ;; For small x, the range error comes from large y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1800 0.0) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1801 ((and (> x 0.0) (< y 0.0)) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1802 ;; For large positive x and negative y, the range error |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1803 ;; comes from large negative y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1804 0.0) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1805 ((and (> x 0.0) (> y 0.0)) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1806 ;; For large positive x and positive y, the range error |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1807 ;; comes from large y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1808 1.0e+INF) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1809 ;; For the rest, x must be large and negative. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1810 ;; The range errors come from large integer y. |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1811 ((< y 0.0) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1812 0.0) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1813 ((oddp (truncate y)) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1814 ;; If y is odd |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1815 -1.0e+INF) |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1816 (t |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1817 ;; |
a92fa56df453
(calculator-expt): Use more cases to determine the value.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
81696
diff
changeset
|
1818 1.0e+INF))) |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1819 (error 0.0e+NaN))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1820 |
27587 | 1821 (defun calculator-fact (x) |
1822 "Simple factorial of X." | |
81696
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1823 (if (and (>= x 0) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1824 (calculator-integer-p x)) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1825 (if (= (calculator-expt (/ x 3.0) x) 1.0e+INF) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1826 1.0e+INF |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1827 (let ((r (if (<= x 10) 1 1.0))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1828 (while (> x 0) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1829 (setq r (* r (truncate x))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1830 (setq x (1- x))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1831 (+ 0.0 r))) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1832 (if (= x 1.0e+INF) |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1833 x |
c29faa83ba3a
(calculator-expt, calculator-integer-p): New functions.
Jay Belanger <jay.p.belanger@gmail.com>
parents:
75773
diff
changeset
|
1834 0.0e+NaN))) |
27587 | 1835 |
1836 (defun calculator-truncate (n) | |
1837 "Truncate N, return 0 in case of overflow." | |
1838 (condition-case nil (truncate n) (error 0))) | |
1839 | |
1840 | |
1841 (provide 'calculator) | |
1842 | |
52401 | 1843 ;;; arch-tag: a1b9766c-af8a-4a74-b466-65ad8eeb0c73 |
27587 | 1844 ;;; calculator.el ends here |