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