-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkey-structs.lisp
493 lines (421 loc) · 16.5 KB
/
key-structs.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
;; Code related to the parsing and construction of keys
;; The stack labels the bottom four entries. In order from first
;; popped to last: X, Y, Z, W
;;
;; The general format of key operator rules is this:
;;
;; X <- (sqrt (* X X) (* Y Y))
;; Y <- (atan Y X)
;;
;; However...
;; If the function produces only a single result, it can be abbreviated as:
;;
;; (* Y X)
;;
;;
;; so, we need some code to rewrite this, when it arrives as macro
;; arguments.
(declaim (optimize (debug 3) (safety 3)))
(in-package :HP67-INTERNALS)
(defparameter *rcode* :RETCODE)
(defparameter *assign* '<-)
(defstruct (location)
(row nil) ;; 1-offset row number
(col nil) ;; 1-offset column number
(shift :UNSHIFTED)
(width 1)
(narrow-key nil) ;; some keys are square, not rectangular
(compound-key nil)
(category-1 nil)
(category-2 nil))
;; Here are the category-1 types, and their category-2 types, if defined:
;;
;; :NUMERIC
;; :ARITHMETIC
;; :STATISTICS
;; :ALGEBRAIC
;; :TRIGONOMETRY (nil :INVERSE-TRIG)
;; :TRANSCENDENTAL
;; :STACK-MANIPULATION
;; :MODE-SWITCH
;; :INDIRECTION
;; :EXTERNAL-I-O
;; :MEMORY (nil :MEMORY-RECALL :MEMORY-STORE)
;; :FLAGS
;; :FLOW-CONTROL (nil :MEMORY-STORE)
;; :PROGRAM-MEMORY
;; Keys can return one of the following:
;;
;; :NORMAL-EXIT no unusual behaviour. If in numeric input mode,
;; switches back to run mode
;; :GOTO "label" move program counter to the next forward occurence
;; of label, or back nnn steps if "label" is a
;; negative number
;; :GOSUB "label" execute the program starting at label, until RTN is
;; encountered
;; :RETURN-FROM-SUBROUTINE pop the stack and return from gosub
;; :TOKEN "<token>"... start numeric input mode if not already there
;; :SINGLE-STEP execute the next program step
;; :LABEL "label" record a label, a target for GOTO or GOSUB
;; :BACK-STEP back up the program counter by one step
;; :SKIP-NEXT-STEP jump over the next program step
;; :CARD-OPERATION use the calculator's card reader/writer
;; :DELETE-CURRENT-STEP delete a program step
;; :PAUSE-1-SECOND display the X register for 1 second, then continue
;; :REVIEW-REGISTERS display the primary registers, then continue
;; :RUN-STOP start or stop the program execution
;; :PAUSE-5-SECONDS display the X register for 5 seconds, then continue
;; :DISPLAY-STACK display the stack, then continue
;; :NO-OP insert a null instruction in the program space
(defstruct (key-struct)
(key-location nil)
(key-id nil)
(token-key nil)
(avail-modes '(:RUN-MODE :RUN-MODE-NO-PROG
:PROGRAM-EXECUTION :PROGRAMMING-MODE))
(abbrev nil)
(run-mode-form nil)
(run-mode-fcn nil)
(takes-arg nil)
(can-clear-errors nil)
(doc-string nil))
(let ((keys '())
(next-id 0))
(defun erase-keys ()
(setf keys '()))
(defun make-new-id ()
(prog1
next-id
(incf next-id)))
(defun register-key-structure (ks)
(let ((this-id (key-struct-key-id ks)))
(when (>= this-id next-id)
(setf next-id (1+ this-id))))
(when (member-if
#'(lambda (x)
(and (string= (key-struct-abbrev x)
(key-struct-abbrev ks))
(intersection (key-struct-avail-modes x)
(key-struct-avail-modes ks))))
keys)
(error "Key collision: redundant definition for ~A~%"
(key-struct-abbrev ks)))
(push ks keys))
(defun get-key-structs (mode &key sort-fcn veto-list limit-to-mode)
(let ((all-keys (copy-list (get-keys))))
(when sort-fcn
(setf all-keys (sort all-keys sort-fcn)))
(when veto-list
(setf all-keys (remove-if
#'(lambda (x)
(member (key-struct-abbrev x)
veto-list
:test 'string=))
all-keys)))
(when limit-to-mode
(setf all-keys
(remove-if
#'(lambda (x)
(let ((ksam (key-struct-avail-modes x)))
(not (or (not ksam)
(member mode ksam)))))
all-keys)))
all-keys))
(defun get-key-abbrevs (mode &key sort-fcn veto-list limit-to-mode)
(remove-duplicates
(mapcar #'key-struct-abbrev
(get-key-structs mode
:sort-fcn sort-fcn
:veto-list veto-list
:limit-to-mode limit-to-mode))
:test 'string=))
(defun get-compound-keys ()
(remove-if-not #'(lambda (x)
(location-compound-key
(key-struct-key-location x)))
(get-keys)))
(defun get-keys ()
keys))
(defun show-forms-on-key (abbreviation)
(dolist (k (get-keys))
(when (string= abbreviation (key-struct-abbrev k))
(format t "~S~%" (key-struct-run-mode-form k)))))
(defun get-symbols-in-list (rlist)
(let ((rval '()))
(dolist (element rlist)
(cond
((listp element)
(setf rval (append rval (get-symbols-in-list element))))
((symbolp element)
(push element rval))))
(delete-duplicates rval)))
(defun get-vars-used (rules-list varnames)
(let ((symbols-used (get-symbols-in-list rules-list))
(vlen (length varnames)))
(dotimes (i vlen)
(let ((check (nth (- vlen i 1) varnames)))
(when (member check symbols-used)
(return-from get-vars-used
(subseq varnames 0 (- vlen i))))))))
(defun get-vars-assigned (rules-list varnames &key no-implicit-x)
(let ((rv '()))
(labels
((worker (rl)
(do ((v rl (cdr v)))
((not v) rv)
(cond
((listp (first v))
(setf rv (append rv (worker (first v)))))
((and (symbolp (first v))
(eq (second v) *assign*))
(push (first v) rv))))))
(setf rv (worker rules-list))
(setf rv (remove-if #'(lambda (x)
(not (member x varnames))) rv))
(if (and no-implicit-x (not rv))
(list (first varnames))
(delete-duplicates rv)))))
(defun convert-to-setf-forms (rules-list
vars-used
output-varnames
return-code-symbol
return-code-var)
(let (rv)
(do ((pos rules-list (cdr pos)))
((not pos) rv)
(cond
((and (eq (second pos) *assign*)
(eq (first pos) return-code-symbol))
(setf rv (append rv `((setf ,return-code-var ,(third pos)))))
(setf pos (cddr pos)))
((and (member (first pos) vars-used)
(eq (second pos) *assign*)
(third pos))
(setf rv
(append rv
`((setf ,(nth (position (first pos)
vars-used)
output-varnames)
,(third pos)))))
(setf pos (cddr pos)))
((listp (first pos))
(setf rv
(append
rv
(list
(convert-to-setf-forms (first pos)
vars-used
output-varnames
return-code-symbol
return-code-var)))))
(t
(setf rv (append rv (list (first pos)))))))))
(defun is-token-rule (rules-list)
(car (member :TOKEN (get-symbols-in-list rules-list))))
;; This is going to change a basic rules list into explicit pops,
;; pushes, and exception handling
(defun expand-rules (rules-list &key
no-implicit-x
update-last-x
rational-safe
op-takes-arg)
(let* ((varnames '(X Y Z W))
(rflag (if rational-safe :RATIONAL :DOUBLE-FLOAT))
(stack-var (gensym))
(state-var (gensym))
(ret-code-var (gensym))
with-implicit
(vars-used (get-vars-used rules-list
varnames))
(vars-assigned (get-vars-assigned rules-list
varnames)))
;; If this is an implicit X <- form, make it explicit so the setf
;; substitution will work later. Overridden by a keyword.
(when (and (not no-implicit-x)
(not (member *assign* (get-symbols-in-list
rules-list)))
(= 1 (length rules-list)))
(setf with-implicit t)
(setf rules-list
(append (list (first varnames) *assign*)
rules-list))
(setf vars-assigned (get-vars-assigned rules-list varnames)))
;; We need new symbols to hold the assigned values of the stack
;; variables, to avoid side-effects on multiple assignments.
(let (gensyms-output)
(dolist (v vars-assigned)
(declare (ignore v))
(push (gensym) gensyms-output))
(setf rules-list
(convert-to-setf-forms
rules-list
vars-assigned
gensyms-output
*rcode* ret-code-var))
`(lambda ,(if op-takes-arg
`(,stack-var ,state-var ARG)
`(,stack-var ,state-var))
(declare (ignorable ,stack-var ,state-var))
(macrolet
((to-radians (angle)
`(convert-angle-to-radians
,angle
(modes-angles ,',state-var)))
(from-radians (angle)
`(convert-angle-from-radians
,angle
(modes-angles ,',state-var)))
(set-flag (name)
`(set-flag-fcn ,',stack-var ,name))
(clear-flag (name)
`(clear-flag-fcn ,',stack-var ,name))
(get-flag (name)
`(get-flag-fcn ,',stack-var ,name))
(push-val (val)
`(push-stack ,',stack-var ,val ,,rflag))
(roll-stack-up ()
`(rollup-stack ,',stack-var))
(roll-stack-down ()
`(rolldown-stack ,',stack-var))
(get-last-x ()
`(retrieve-last-x-value ,',stack-var))
(round-to-display-precision (num)
`(convert-string-rep-to-rational
(format-for-printing ,',state-var ,num)))
(store-mem (name val)
`(store-memory ,',stack-var ,name ,val ,,rflag))
(recall-mem (name)
`(recall-memory ,',stack-var ,name ,,rflag))
(swap-registers ()
`(swap-primary-secondary ,',stack-var))
(clear-registers ()
`(clear-primary-memory-registers ,',stack-var))
(clear-error-state ()
"Returns non-nil if there was an error."
`(prog1
(stack-error-state ,',stack-var)
(setf (stack-error-state ,',stack-var) nil)))
(clear-program ()
`(clear-program-memory ,',stack-var ,',state-var))
(store-i-val (val)
`(set-i-register ,',stack-var ,val))
(recall-i-val ()
`(get-i-register ,',stack-var))
(get-i-int-val ()
`(second (multiple-value-list
(get-i-register ,',stack-var))))
(set-angle-mode (how)
`(set-angle-units-mode ,',state-var ,how))
(set-display-width (width)
`(set-display-digits ,',state-var ,width))
(set-display-mode (how)
`(set-display-output-mode ,',state-var ,how)))
,(when update-last-x
`(update-last-x ,stack-var))
(backup-stack ,stack-var)
(let (,@(mapcar #'(lambda (x)
`(,x (pop-stack ,stack-var ,rflag)))
vars-used)
,@(mapcar #'(lambda (x)
(list x 0))
gensyms-output)
(,ret-code-var '(:NORMAL-EXIT)))
(declare (ignorable ,@vars-used))
(handler-case
(progn
,@rules-list
,@(mapcar #'(lambda (x)
`(push-stack ,stack-var ,x ,rflag))
gensyms-output))
((or
arithmetic-error simple-error
invalid-float-arrived single-precision-float
overflow
not-real-number i-register-range-error) (c)
(set-error-state ,stack-var c)
(setf ,ret-code-var '(:ERROR))
(recover-stack ,stack-var)))
,ret-code-var))))))
(defmacro define-op-key ((&key
location
(id (make-new-id))
modelist
abbreviation
(updates-last-x t)
rational-safe
takes-argument
(implicit-x t)
can-clear-errors
documentation)
&body run-mode-forms)
(let ((run-forms
(expand-rules
`(,@run-mode-forms)
:update-last-x updates-last-x
:no-implicit-x (not implicit-x)
:rational-safe rational-safe
:op-takes-arg takes-argument)))
`(register-key-structure
(make-key-struct :key-location ,location
:key-id ,id
:token-key ,(is-token-rule `(,@run-mode-forms))
:avail-modes ',modelist
:abbrev ,abbreviation
:takes-arg ,takes-argument
:can-clear-errors ,can-clear-errors
:doc-string ,documentation
:run-mode-form ',run-forms
:run-mode-fcn ,run-forms))))
(defmacro define-toprow-key ((col letter abbreviation doc
&key
category-1
implicit-x
(updates-last-x t)
rational-safe)
&body arith-forms)
`(progn
(define-op-key
(:location (make-location
:row 1
:col ,col
:category-1 ,category-1)
:modelist '(:RUN-MODE-NO-PROG)
:abbreviation ,abbreviation
:updates-last-x ,updates-last-x
:rational-safe ,rational-safe
:implicit-x ,implicit-x
:documentation ,(format nil
"~S (when no program exists)"
doc))
,@arith-forms)
(define-op-key
(:location (make-location
:row 1
:col ,col
:category-1 :FLOW-CONTROL)
:abbreviation ,(format nil
"GSB-~C"
letter)
:implicit-x ,implicit-x
:updates-last-x nil
:documentation ,(format nil
"Call program label ~C"
letter))
:RETCODE <- '(:GOSUB ,(format nil "~C" letter))
X <- X)
(define-op-key
(:location (make-location
:row 1
:col ,col
:category-1 :FLOW-CONTROL)
:abbreviation ,(format nil
"GSB-~C"
(char-downcase letter))
:implicit-x ,implicit-x
:updates-last-x nil
:documentation ,(format nil
"Call program label ~C"
(char-downcase letter)))
:RETCODE <- '(:GOSUB ,(format nil "~C"
(char-downcase letter)))
X <- X)))