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