t-rex 1.0.6 → 2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/t-rex +323 -443
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2fa0770f86f98c3694ab939dfccb26a9f6174058fb600e79afde45b3f32f69b3
|
4
|
+
data.tar.gz: '01468ba7f3d71c57125452fd9bd6caf02bcaa0606fc4c0486bef615773b7d862'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c725bce6bf26b3d5a58a4d4cd53d9a18aa5e99054a02f0f741da70486c167d8e30bd54cf020ba5e6575a586018a9d035594cc0aca366f1f62cb5878f3eaa34e3
|
7
|
+
data.tar.gz: ab6a77ecd77d303cd76bca9972daa28db844eae423bc5480193eca1e42cdf9df0c39ab5b407a7a5da5e0d3a71c236ea4107323462b2c4f3c5a9662f87f89ebcd
|
data/bin/t-rex
CHANGED
@@ -1,75 +1,73 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
2
|
# encoding: utf-8
|
3
|
+
#
|
4
|
+
# Title: T-REX (Terminal - Rpn EXperiment)
|
5
|
+
# Language: Pure Ruby, best viewed in VIM
|
6
|
+
# Author: Geir Isene <g@isene.com> http://isene.com/
|
7
|
+
# Github: https://github.com/isene/t-rex/
|
8
|
+
# License: I release all copyright claims. This code is in the public domain.
|
9
|
+
# Permission is granted to use, copy modify, distribute, and sell
|
10
|
+
# this software for any purpose. I make no guarantee about the
|
11
|
+
# suitability of this software for any purpose and I am not liable
|
12
|
+
# for any damages resulting from its use. Further, I am under no
|
13
|
+
# obligation to maintain or extend this software. It is provided
|
14
|
+
# on an 'as is' basis without any expressed or implied warranty.
|
15
|
+
@version = "2.0" # Full rewrite with rcurses, face lift, new functionality, bug fixes
|
3
16
|
|
4
|
-
require '
|
5
|
-
|
6
|
-
include Curses
|
17
|
+
require 'rcurses'
|
18
|
+
include Rcurses::Input
|
7
19
|
|
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
|
-
end
|
56
|
-
self.refresh
|
57
|
-
self.setpos(y, x)
|
58
|
-
end
|
59
|
-
def p(text) # Puts text to window
|
60
|
-
self.attr = 0 if self.attr == nil
|
61
|
-
if self.color == nil
|
62
|
-
self.bg = 0 if self.bg == nil
|
63
|
-
self.fg = 255 if self.fg == nil
|
64
|
-
init_pair(self.fg, self.fg, self.bg)
|
65
|
-
self.attron(color_pair(self.fg) | self.attr) { self << text }
|
66
|
-
else
|
67
|
-
self.attron(color_pair(self.color) | self.attr) { self << text }
|
68
|
-
end
|
69
|
-
self.refresh
|
20
|
+
def help # HELP text
|
21
|
+
help = <<HELPTEXT
|
22
|
+
|
23
|
+
T-REX - Terminal Rpn calculator EXperiment. GitHub: https://github.com/isene/T-REX
|
24
|
+
This is a Reverse Polish Notation calculator similar to the traditional Hewlett
|
25
|
+
Packard calculators. See https://www.hpmuseum.org/rpn.htm for info on RPN.
|
26
|
+
|
27
|
+
The stack is shown to the top left. The X, Y, Z and T registers comprise the
|
28
|
+
operating stack. L is the "Last X" register showing the previous value in X.
|
29
|
+
Toggle US and European number formats by pressing '.
|
30
|
+
|
31
|
+
Functions available are shown under the stack registers. The orange symbol
|
32
|
+
corresponds to the key to be pressed. For functions above each label (grey
|
33
|
+
functions), press the Control key (Ctrl) and the orange key (asin = Ctrl+i).
|
34
|
+
|
35
|
+
For Rectangular to Polar conversions:
|
36
|
+
R-P: X value in x, Y in y - yields "θ" in y and "r" in x.
|
37
|
+
P-R: "θ" in y and "r" in x - yeilds X in x and Y in y.
|
38
|
+
|
39
|
+
Use the "f" key to set the fixed number of decimal places. Use the "s" key to set
|
40
|
+
the limit for viewing numbers in the "scientific" notation (e.g. 5e+06 for 5000000).
|
41
|
+
|
42
|
+
Content of registers #0-#9 are shown below the functions.
|
43
|
+
Store/recall using capital "S"/"R". "M" clears the regs.
|
44
|
+
|
45
|
+
Copy/yank the X register to clipboard with "y". Use "Y" to yank all the memory regs.
|
46
|
+
|
47
|
+
You can undo (with "u") all the way to the beginning of the session.
|
48
|
+
|
49
|
+
The 'H' key toggles between the help text in the right pane or a continuous printout.
|
50
|
+
Save the full printout to ~/t-rex.txt with "Ctrl-P".
|
51
|
+
|
52
|
+
The stack, register contents, modes and help text settings are saved on Quit.
|
53
|
+
|
54
|
+
Additionally, you can access the "Ruby mode" via '@'. Here you can address the stack
|
55
|
+
directly, e.g. 'x = y + (z / t); puts x'. Quit Ruby mode with ESC.
|
56
|
+
|
57
|
+
Alternative keys: Left/Right keys (in addition to "<") exchanges X and Y registers.
|
58
|
+
Backspace clears the x register.
|
59
|
+
HELPTEXT
|
60
|
+
if @hlp
|
61
|
+
@p_hlp.fg = 239
|
62
|
+
@p_hlp.ix = 0
|
63
|
+
@p_hlp.puts(help)
|
64
|
+
else
|
65
|
+
@p_hlp.ix = @history.length - @h + 3
|
66
|
+
histprint
|
70
67
|
end
|
71
68
|
end
|
72
|
-
|
69
|
+
|
70
|
+
class Stack # STACK class
|
73
71
|
attr_accessor :x, :y, :z, :t, :l, :deg
|
74
72
|
|
75
73
|
def initialize(x, y, z, t, l)
|
@@ -227,13 +225,21 @@ class Stack
|
|
227
225
|
end
|
228
226
|
def asin
|
229
227
|
self.l = self.x
|
230
|
-
|
231
|
-
|
228
|
+
begin
|
229
|
+
self.x = Math::asin(self.x)
|
230
|
+
self.x = self.x * 180 / Math::PI if self.deg
|
231
|
+
rescue
|
232
|
+
return "Error"
|
233
|
+
end
|
232
234
|
end
|
233
235
|
def acos
|
234
236
|
self.l = self.x
|
235
|
-
|
236
|
-
|
237
|
+
begin
|
238
|
+
self.x = Math::acos(self.x)
|
239
|
+
self.x = self.x * 180 / Math::PI if self.deg
|
240
|
+
rescue
|
241
|
+
return "Error"
|
242
|
+
end
|
237
243
|
end
|
238
244
|
def atan
|
239
245
|
self.l = self.x
|
@@ -268,7 +274,7 @@ class Stack
|
|
268
274
|
end
|
269
275
|
end
|
270
276
|
|
271
|
-
begin # BASIC
|
277
|
+
begin # BASIC setup
|
272
278
|
@stk = Stack.new(0, 0, 0, 0, 0)
|
273
279
|
@reg = %w[0 0 0 0 0 0 0 0 0 0]
|
274
280
|
@fix = 4
|
@@ -280,58 +286,93 @@ begin # BASIC SETUP
|
|
280
286
|
load(Dir.home+'/.t-rex.conf') if File.exist?(Dir.home+'/.t-rex.conf')
|
281
287
|
@mod == "Deg" ? @stk.deg = true : @stk.deg = false
|
282
288
|
|
283
|
-
@history = [""]
|
289
|
+
@history = [" "]
|
290
|
+
@u = []
|
291
|
+
@undo = false
|
292
|
+
end
|
293
|
+
|
294
|
+
begin # PANE setup
|
295
|
+
@h, @w = IO.console.winsize
|
296
|
+
|
297
|
+
# pane = Rcurses::Pane.new( x, y, width, height, fg, bg)
|
298
|
+
@p_bck = Rcurses::Pane.new( 1, 1, @w, @h, 235, 235) # Back
|
299
|
+
@p_inf = Rcurses::Pane.new( 2, 2, 32, 1, 168, 238) # Info-line
|
300
|
+
@p_lbl = Rcurses::Pane.new( 2, 3, 1, 5, 250, 238) # LTZYX lables
|
301
|
+
@p_key = Rcurses::Pane.new( 2, 9, 32, 11, 0, 0) # Key panel
|
302
|
+
@p_reg = Rcurses::Pane.new( 2, 21, 32, @h - 21, 242, 0) # Regs
|
303
|
+
@p_hlp = Rcurses::Pane.new( 35, 2, @w - 35, @h - 2, 239, 0) # Help
|
304
|
+
@p_l = Rcurses::Pane.new( 4, 3, 30, 1, 60, 235) # L
|
305
|
+
@p_t = Rcurses::Pane.new( 4, 4, 30, 1, 68, 233) # T
|
306
|
+
@p_z = Rcurses::Pane.new( 4, 5, 30, 1, 75, 233) # Z
|
307
|
+
@p_y = Rcurses::Pane.new( 4, 6, 30, 1, 117, 233) # Y
|
308
|
+
@p_x = Rcurses::Pane.new( 4, 7, 30, 1, 7, 0) # X
|
309
|
+
|
310
|
+
@p_lbl.align = "r"
|
311
|
+
@p_l.align = "r"
|
312
|
+
@p_t.align = "r"
|
313
|
+
@p_z.align = "r"
|
314
|
+
@p_y.align = "r"
|
315
|
+
@p_x.align = "r"
|
316
|
+
|
317
|
+
@p_lbl.text = "ltzyx".i
|
318
|
+
|
319
|
+
class String
|
320
|
+
def t ; self.fg(111) ; end
|
321
|
+
def k ; self.fg(214) ; end
|
322
|
+
def s ; self.fg(242) ; end
|
323
|
+
end
|
284
324
|
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
325
|
+
keys = "\n"
|
326
|
+
keys += " r".t + "↓".k + " r".t + "↑".k + " x".t + "<".k + ">y".t
|
327
|
+
keys += " + - * / \\ %".k + " c".t + "h".k + "s".t + " p".k + "i".t
|
328
|
+
keys += "\n\n"
|
329
|
+
keys += " y√x x^2 x^3 e^x 10^x redrw".s
|
330
|
+
keys += "\n"
|
331
|
+
keys += " y".t + "^".k + "x".t + " 1/".t + "x".k + " s".t + "q".k + "rt".t
|
332
|
+
keys += " l".t + "n".k + " lo".t + "g".k + " l".k + "astx".t
|
333
|
+
keys += "\n\n"
|
334
|
+
keys += " asin acos atan R→P P→R cstk".s
|
335
|
+
keys += "\n"
|
336
|
+
keys += " s".t + "i".k + "n".t + " c".t + "o".k + "s".t + " t".t + "a".k + "n".t
|
337
|
+
keys += " r".k + "ad".t + " d".k + "eg".t + " c".k + "lx".t
|
338
|
+
keys += "\n\n"
|
339
|
+
keys += " S".k + "to".t + " R".k + "cl".t + " s".k + "ci".t + " f".k + "ix".t
|
340
|
+
keys += " u".k + "ndo".t + " H".k + "lp".t + " Q".k + "uit".t
|
341
|
+
@p_key.text = keys
|
291
342
|
end
|
292
343
|
|
293
344
|
# FUNCTIONS
|
294
|
-
def
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
345
|
+
def history(entry)
|
346
|
+
@history.push(entry.b, " #{@stk.t}".i, " #{@stk.z}".i, " #{@stk.y}".i, " #{@stk.x}".i.b, " ")
|
347
|
+
end
|
348
|
+
def histprint
|
349
|
+
print = @history.join("\n ")
|
350
|
+
@p_hlp.ix = 0 if @p_hlp.ix < 0
|
351
|
+
@p_hlp.fg = 145
|
352
|
+
@p_hlp.puts(print)
|
353
|
+
return print
|
354
|
+
end
|
355
|
+
def num_format(n) # THE NUMBER FORMAT FUNCTION
|
356
|
+
if n.abs >= 10 ** @sci.to_i
|
357
|
+
n = "%.#{@sci}g" % n
|
358
|
+
elsif n.abs <= 10 ** (1 / @sci.to_i) and n > 10
|
359
|
+
n = "%.#{@sci}g" % n
|
360
|
+
else
|
361
|
+
n = n.round(@fix)
|
362
|
+
n = "%.#{@fix}f" % n
|
363
|
+
m = n[/^-/]
|
364
|
+
m = "" if m == nil
|
365
|
+
n.sub!(/-/, '')
|
366
|
+
i = n[/\d*/]
|
367
|
+
i.gsub!(/(\d)(?=(\d\d\d)+(?!\d))/, "\\1,")
|
368
|
+
f = n.sub(/\d*\.(\d*)/, '\1')
|
369
|
+
n = m + i + "." + f
|
370
|
+
if not @dot
|
371
|
+
n.gsub!(/,/, ' ')
|
372
|
+
n.sub!(/\./, ',')
|
313
373
|
end
|
314
|
-
|
315
|
-
|
316
|
-
when "" then chr = "LDEL"
|
317
|
-
when "" then chr = "C-X"
|
318
|
-
when "" then chr = "C-Q"
|
319
|
-
when "" then chr = "C-N"
|
320
|
-
when "" then chr = "C-G"
|
321
|
-
when "" then chr = "C-L"
|
322
|
-
when " " then chr = "C-I"
|
323
|
-
when "" then chr = "C-O"
|
324
|
-
when "" then chr = "C-A"
|
325
|
-
when "" then chr = "C-R"
|
326
|
-
when "" then chr = "C-D"
|
327
|
-
when "" then chr = "C-C"
|
328
|
-
when "" then chr = "C-T"
|
329
|
-
when "" then chr = "C-^"
|
330
|
-
when "\r" then chr = "ENTER"
|
331
|
-
when "\t" then chr = "TAB"
|
332
|
-
when /./ then chr = c
|
333
|
-
end
|
334
|
-
return chr
|
374
|
+
end
|
375
|
+
return n
|
335
376
|
end
|
336
377
|
def main_getkey(c) # GET KEY FROM USER
|
337
378
|
c == "" ? chr = getchr : chr = c
|
@@ -339,86 +380,121 @@ def main_getkey(c) # GET KEY FROM USER
|
|
339
380
|
when 'ENTER'
|
340
381
|
@stk.l = @stk.x
|
341
382
|
@stk.y, @stk.z, @stk.t = @stk.x, @stk.y, @stk.z
|
383
|
+
history("ENTER")
|
342
384
|
when "'"
|
343
385
|
@dot = !@dot
|
344
386
|
when 'UP' # Roll stack up
|
345
387
|
@stk.rup
|
388
|
+
history("↑")
|
346
389
|
when 'DOWN' # Roll stack down
|
347
390
|
@stk.rdn
|
391
|
+
history("↓")
|
348
392
|
when '<', 'LEFT', 'RIGHT' # x<>y
|
349
393
|
@stk.xy
|
394
|
+
history("x<>y")
|
350
395
|
when '+'
|
351
396
|
@stk.add
|
397
|
+
history("+")
|
352
398
|
when '-'
|
353
399
|
@stk.subtract
|
400
|
+
history("-")
|
354
401
|
when '*'
|
355
402
|
@stk.multiply
|
403
|
+
history("*")
|
356
404
|
when '/'
|
357
405
|
e = @stk.divide
|
406
|
+
history("/")
|
358
407
|
error ("Error: Divide by zero") if e == "Error"
|
359
408
|
when '\\' # \ (modulo)
|
360
409
|
@stk.mod
|
410
|
+
history("MOD")
|
361
411
|
when '%' # 100*x/y
|
362
412
|
e = @stk.percent
|
413
|
+
history("%")
|
363
414
|
error ("Error: Divide by zero") if e == "Error"
|
364
415
|
when 'h' # Change sign
|
365
416
|
@stk.chs
|
417
|
+
history("chs")
|
366
418
|
when 'p' # pi
|
367
419
|
@stk.l = @stk.x
|
368
420
|
@stk.pi
|
421
|
+
history("pi")
|
369
422
|
when '^' # y^x
|
370
423
|
@stk.pow
|
424
|
+
history("y^x")
|
371
425
|
when 'C-^' # y^(1/x)
|
372
426
|
e = @stk.root
|
427
|
+
history("y^(1/x)")
|
373
428
|
error ("Error: Divide by zero") if e == "Error"
|
374
429
|
when 'x' # 1/x
|
375
430
|
e = @stk.recip
|
431
|
+
history("1/x")
|
376
432
|
error ("Error: Divide by zero") if e == "Error"
|
377
433
|
when 'C-X' # x^2
|
378
434
|
@stk.sqr
|
435
|
+
history("x^2")
|
379
436
|
when 'q' # Square root
|
380
437
|
e = @stk.sqrt
|
438
|
+
history("sqrt")
|
381
439
|
error ("Error: Imaginary number") if e == "Error"
|
382
440
|
when 'C-Q' # x^3
|
383
441
|
@stk.cube
|
442
|
+
history("x^3")
|
384
443
|
when 'n' # ln(x)
|
385
444
|
e = @stk.ln
|
445
|
+
history("ln")
|
386
446
|
error ("Error: Negative x") if e == "Error"
|
387
447
|
when 'C-N' # e^x
|
388
448
|
@stk.ex
|
449
|
+
history("e^x")
|
389
450
|
when 'g' # log(x)
|
390
451
|
e = @stk.log
|
452
|
+
history("log")
|
391
453
|
error ("Error: Negative x") if e == "Error"
|
392
454
|
when 'C-G' # 10^x
|
393
455
|
@stk.tenx
|
456
|
+
history("10^x")
|
394
457
|
when 'l' # Recall Lastx (l) to x
|
395
458
|
@stk.lift
|
396
459
|
@stk.x = @stk.l
|
397
|
-
|
398
|
-
|
460
|
+
history("lastx")
|
461
|
+
when 'C-L' # Redraw
|
462
|
+
refresh
|
399
463
|
when 'i'
|
400
464
|
@stk.sin
|
401
|
-
|
402
|
-
|
465
|
+
history("sin")
|
466
|
+
when 'TAB' # Same as 'C-I'
|
467
|
+
e = @stk.asin
|
468
|
+
history("asin")
|
469
|
+
error ("Error: Number out of domain") if e == "Error"
|
403
470
|
when 'o'
|
404
471
|
@stk.cos
|
472
|
+
history("cos")
|
405
473
|
when 'C-O'
|
406
|
-
@stk.acos
|
474
|
+
e = @stk.acos
|
475
|
+
history("acos")
|
476
|
+
error ("Error: Number out of domain") if e == "Error"
|
407
477
|
when 'a'
|
408
478
|
@stk.tan
|
479
|
+
history("tan")
|
409
480
|
when 'C-A'
|
410
481
|
@stk.atan
|
482
|
+
history("atan")
|
411
483
|
when 'r' # Rad mode
|
412
484
|
@mod = "Rad"
|
413
485
|
@stk.deg = false
|
486
|
+
history("Rad")
|
414
487
|
when 'C-R' # R->P
|
415
488
|
e = @stk.rp
|
489
|
+
history("R->P")
|
416
490
|
error ("Error: Divide by zero") if e == "Error"
|
417
491
|
when 'd' # Deg mode
|
418
492
|
@mod = "Deg"
|
419
493
|
@stk.deg = true
|
494
|
+
history("Deg")
|
420
495
|
when 'C-D' # P->R
|
421
496
|
@stk.pr
|
497
|
+
history("P->R")
|
422
498
|
when 'c', 'BACK'
|
423
499
|
@stk.x = 0
|
424
500
|
when 'C-C' # Clear stack
|
@@ -427,59 +503,62 @@ def main_getkey(c) # GET KEY FROM USER
|
|
427
503
|
@stk.z = 0
|
428
504
|
@stk.t = 0
|
429
505
|
@stk.l = 0
|
506
|
+
history("CLR")
|
430
507
|
when 'M'
|
431
508
|
@reg = %w[0 0 0 0 0 0 0 0 0 0]
|
432
509
|
when 'S' # Store to Reg
|
433
|
-
@
|
434
|
-
@w_x.p(" Store x in Reg #(0-9)")
|
510
|
+
@p_x.puts(" Store x in Reg #(0-9)")
|
435
511
|
r = getchr
|
436
512
|
if r =~ /[0-9]/
|
437
513
|
@reg[r.to_i] = @stk.x
|
438
514
|
end
|
515
|
+
history("STO #{r}")
|
439
516
|
when 'R' # Recall from Reg
|
440
|
-
@
|
441
|
-
@w_x.p(" Recall from Reg #(0-9)")
|
517
|
+
@p_x.puts(" Recall from Reg #(0-9)")
|
442
518
|
r = getchr
|
443
519
|
if r =~ /[0-9]/
|
444
520
|
@stk.lift
|
445
521
|
@stk.x = @reg[r.to_i].to_f
|
446
522
|
end
|
523
|
+
history("RCL #{r}")
|
447
524
|
when 's' # Set Sci size/limit
|
448
|
-
@
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
@sci = r.to_i
|
525
|
+
@p_x.puts(" Sci notation limit (2-9)")
|
526
|
+
s = getchr
|
527
|
+
if s =~ /[2-9]/
|
528
|
+
@sci = s.to_i
|
453
529
|
end
|
530
|
+
history("Sci #{s}")
|
454
531
|
when 'f' # Set Fix size
|
455
|
-
@
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
@fix = r.to_i
|
532
|
+
@p_x.puts(" Fixed decimals (0-9)")
|
533
|
+
f = getchr
|
534
|
+
if f =~ /[0-9]/
|
535
|
+
@fix = f.to_i
|
460
536
|
end
|
537
|
+
history("Fix #{f}")
|
461
538
|
when 'u' # Undo
|
462
539
|
unless @u.empty?
|
463
540
|
@stk = @u.last.dup
|
464
541
|
@u.pop
|
465
542
|
@undo = true
|
466
543
|
end
|
544
|
+
history("UNDO")
|
467
545
|
when 'y'
|
468
546
|
begin
|
469
|
-
@
|
470
|
-
@
|
547
|
+
@p_x.bg = 250
|
548
|
+
@p_x.refresh
|
471
549
|
system("echo '#{@stk.x}' | xclip")
|
472
550
|
sleep(0.1)
|
473
|
-
@
|
551
|
+
@p_x.bg = 0
|
552
|
+
@p_x.refresh
|
474
553
|
rescue
|
475
|
-
@
|
476
|
-
@
|
554
|
+
@p_x.text = " Install xclip to yank"
|
555
|
+
@p_x.refresh
|
477
556
|
getchr
|
478
557
|
end
|
479
558
|
when 'Y'
|
480
559
|
begin
|
481
|
-
@
|
482
|
-
@
|
560
|
+
@p_x.bg = 244
|
561
|
+
@p_x.refresh
|
483
562
|
mem = ""
|
484
563
|
10.times do |i|
|
485
564
|
reg = @reg[i]
|
@@ -487,142 +566,74 @@ def main_getkey(c) # GET KEY FROM USER
|
|
487
566
|
end
|
488
567
|
system("echo '#{mem}' | xclip")
|
489
568
|
sleep(0.1)
|
490
|
-
@
|
569
|
+
@p_x.bg = 0
|
570
|
+
@p_x.refresh
|
491
571
|
rescue
|
492
|
-
@
|
493
|
-
@
|
572
|
+
@p_x.text = " Install xclip to yank"
|
573
|
+
@p_x.refresh
|
494
574
|
getchr
|
495
575
|
end
|
496
|
-
when 'H'
|
576
|
+
when 'H' # Toggle help/histprint
|
497
577
|
@hlp = !@hlp
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
578
|
+
when 'C-B'
|
579
|
+
if !@hlp
|
580
|
+
loop do
|
581
|
+
@p_hlp.ix -= @h + 3
|
582
|
+
histprint
|
583
|
+
break if getchr != 'C-B'
|
584
|
+
end
|
585
|
+
end
|
586
|
+
when 'C-P'
|
587
|
+
cont = histprint.pure
|
588
|
+
File.write(Dir.home+'/t-rex.txt', cont)
|
589
|
+
error ("History written to t-rex.txt")
|
590
|
+
when '@' # Ruby console
|
591
|
+
@p_hlp.fg = 168
|
592
|
+
loop do
|
593
|
+
@p_hlp.puts("")
|
594
|
+
@p_hlp.prompt = " Ruby: "
|
595
|
+
@p_hlp.editline
|
596
|
+
Rcurses::Cursor.set(4,36)
|
597
|
+
x = @stk.x
|
598
|
+
y = @stk.y
|
599
|
+
z = @stk.z
|
600
|
+
t = @stk.t
|
601
|
+
l = @stk.l
|
602
|
+
begin
|
603
|
+
eval(@p_hlp.text)
|
604
|
+
rescue
|
605
|
+
end
|
606
|
+
break if getchr == "ESC"
|
607
|
+
end
|
608
|
+
@p_hlp.fg = 239
|
609
|
+
getchr
|
610
|
+
@hlp ? help : @p_hlp.puts("")
|
611
|
+
when 'Q' # QUIT
|
506
612
|
exit 0
|
507
|
-
when /[0-9
|
613
|
+
when /[0-9.,]/ # Go to entry mode for x
|
614
|
+
@stk.lift
|
615
|
+
pstack
|
508
616
|
number, c = entry(chr)
|
509
617
|
if number != ""
|
510
618
|
@stk.l = @stk.x
|
511
619
|
@stk.lift unless @stk.x == 0
|
512
620
|
@stk.x = number
|
513
621
|
end
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
Curses.echo
|
520
|
-
@w_hlp.color = 9
|
521
|
-
stk = 0
|
522
|
-
pos = @history[stk].length
|
523
|
-
@w_hlp.setpos(0,0)
|
524
|
-
chr = ""
|
525
|
-
while chr != "C-C"
|
526
|
-
@w_hlp.setpos(@w_hlp.cury,0)
|
527
|
-
text = pretext + @history[stk]
|
528
|
-
text += " " * (@w_hlp.maxx - text.length) if text.length < @w_hlp.maxx
|
529
|
-
@w_hlp.p(text)
|
530
|
-
@w_hlp.setpos(0,pretext.length + pos)
|
531
|
-
@w_hlp.refresh
|
532
|
-
chr = getchr
|
533
|
-
case chr
|
534
|
-
when 'UP'
|
535
|
-
unless stk == @history.length - 1
|
536
|
-
stk += 1
|
537
|
-
pos = @history[stk].length
|
538
|
-
end
|
539
|
-
when 'DOWN'
|
540
|
-
unless stk == 0
|
541
|
-
stk -= 1
|
542
|
-
pos = @history[stk].length
|
543
|
-
end
|
544
|
-
when 'RIGHT'
|
545
|
-
pos += 1 unless pos > @history[stk].length
|
546
|
-
when 'LEFT'
|
547
|
-
pos -= 1 unless pos == 0
|
548
|
-
when 'HOME'
|
549
|
-
pos = 0
|
550
|
-
when 'END'
|
551
|
-
pos = @history[stk].length
|
552
|
-
when 'DEL'
|
553
|
-
@history[stk][pos] = ""
|
554
|
-
when 'BACK'
|
555
|
-
unless pos == 0
|
556
|
-
pos -= 1
|
557
|
-
@history[stk][pos] = ""
|
558
|
-
end
|
559
|
-
when 'WBACK'
|
560
|
-
unless pos == 0
|
561
|
-
until @history[stk][pos - 1] == " " or pos == 0
|
562
|
-
pos -= 1
|
563
|
-
@history[stk][pos] = ""
|
564
|
-
end
|
565
|
-
if @history[stk][pos - 1] == " "
|
566
|
-
pos -= 1
|
567
|
-
@history[stk][pos] = ""
|
568
|
-
end
|
569
|
-
end
|
570
|
-
when 'LDEL'
|
571
|
-
@history[stk] = ""
|
572
|
-
pos = 0
|
573
|
-
when /^.$/
|
574
|
-
@history[stk].insert(pos,chr)
|
575
|
-
pos += 1
|
576
|
-
when 'ENTER'
|
577
|
-
@w_hlp.fill
|
578
|
-
@w_hlp.p(text)
|
579
|
-
@w_hlp.setpos(0,pretext.length + pos)
|
580
|
-
@w_hlp.refresh
|
581
|
-
@w_hlp.p("\n ")
|
582
|
-
curstr = @history[stk]
|
583
|
-
@history.uniq!
|
584
|
-
@history.compact!
|
585
|
-
@history.delete("")
|
586
|
-
begin
|
587
|
-
x = @stk.x
|
588
|
-
y = @stk.y
|
589
|
-
z = @stk.z
|
590
|
-
t = @stk.t
|
591
|
-
l = @stk.l
|
592
|
-
eval(curstr)
|
593
|
-
@stk.x = x
|
594
|
-
@stk.y = y
|
595
|
-
@stk.z = z
|
596
|
-
@stk.t = t
|
597
|
-
@stk.l = l
|
598
|
-
@w_hlp.p("\n\n")
|
599
|
-
pstack
|
600
|
-
rescue StandardError => e
|
601
|
-
@w_hlp.p("\n Error: #{e.inspect}\n")
|
602
|
-
end
|
603
|
-
@history.unshift("")
|
604
|
-
stk = 0
|
605
|
-
pos = @history[stk].length
|
606
|
-
chr = ""
|
607
|
-
@w_hlp.setpos(0,0)
|
622
|
+
history(number.to_s)
|
623
|
+
@stk.drop if c == "ENTER"
|
624
|
+
if %w[< + - * / \ % ^ x C-X q C-Q n C-N g C-G i C-I o C-O a C-A c C-C].include?(c)
|
625
|
+
@stk.drop
|
626
|
+
main_getkey(c)
|
608
627
|
end
|
609
628
|
end
|
610
|
-
@w_hlp.color = 11
|
611
|
-
Curses.curs_set(0)
|
612
|
-
Curses.noecho
|
613
629
|
end
|
614
|
-
def entry(chr)
|
615
|
-
Curses.curs_set(1)
|
616
|
-
Curses.echo
|
630
|
+
def entry(chr) # X REGISTER ENTRY
|
617
631
|
num = chr
|
618
632
|
pos = 1
|
619
|
-
|
633
|
+
Rcurses::Cursor.set(7,33)
|
634
|
+
Rcurses::Cursor.show
|
620
635
|
while %w[0 1 2 3 4 5 6 7 8 9 . , h RIGHT LEFT HOME END DEL BACK WBACK LDEL].include?(chr)
|
621
|
-
@
|
622
|
-
@w_x.setpos(0,0)
|
623
|
-
@w_x.p(num)
|
624
|
-
@w_x.setpos(0,pos)
|
625
|
-
@w_x.refresh
|
636
|
+
@p_x.puts(num)
|
626
637
|
chr = getchr
|
627
638
|
case chr
|
628
639
|
when 'RIGHT'
|
@@ -634,12 +645,15 @@ def entry(chr)
|
|
634
645
|
when 'END'
|
635
646
|
pos = num.length
|
636
647
|
when 'DEL'
|
637
|
-
num[pos] = ""
|
638
|
-
when 'BACK'
|
639
648
|
unless pos == 0
|
640
649
|
pos -= 1
|
641
650
|
num[pos] = ""
|
642
651
|
end
|
652
|
+
when 'BACK'
|
653
|
+
unless pos == 0
|
654
|
+
pos -= 1
|
655
|
+
num[pos - 1] = ""
|
656
|
+
end
|
643
657
|
when 'WBACK'
|
644
658
|
unless pos == 0
|
645
659
|
until num[pos - 1] == " " or pos == 0
|
@@ -666,134 +680,47 @@ def entry(chr)
|
|
666
680
|
num.insert(pos,chr)
|
667
681
|
pos += 1
|
668
682
|
end
|
683
|
+
Rcurses::Cursor.col(33 - num.length + pos)
|
669
684
|
end
|
670
685
|
num = "" if %w[DOWN UP].include?(chr)
|
671
686
|
num.gsub!(/,/, '.')
|
672
687
|
num != "" ? number = num.to_f : number = ""
|
673
|
-
|
674
|
-
Curses.noecho
|
675
|
-
@w_x.color = 6
|
688
|
+
Rcurses::Cursor.hide
|
676
689
|
return number, chr
|
677
690
|
end
|
678
|
-
def
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
i.gsub!(/(\d)(?=(\d\d\d)+(?!\d))/, "\\1,")
|
691
|
-
f = n.sub(/\d*\.(\d*)/, '\1')
|
692
|
-
n = m + i + "." + f
|
693
|
-
if not @dot
|
694
|
-
n.gsub!(/,/, ' ')
|
695
|
-
n.sub!(/\./, ',')
|
696
|
-
end
|
697
|
-
end
|
698
|
-
return n
|
691
|
+
def refresh # REFRESH ALL PANES
|
692
|
+
@p_bck.refresh
|
693
|
+
@p_inf.refresh
|
694
|
+
@p_lbl.refresh
|
695
|
+
@p_key.refresh
|
696
|
+
@p_reg.refresh
|
697
|
+
help
|
698
|
+
@p_l.refresh
|
699
|
+
@p_t.refresh
|
700
|
+
@p_z.refresh
|
701
|
+
@p_y.refresh
|
702
|
+
@p_x.refresh
|
699
703
|
end
|
700
|
-
def pstack
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
@w_l.setpos(0,0)
|
707
|
-
@w_l.p(l.rjust(30))
|
708
|
-
@w_yzt.setpos(0,0)
|
709
|
-
@w_yzt.p(t.rjust(30) + z.rjust(30) + y.rjust(30))
|
710
|
-
@w_x.setpos(0,0)
|
711
|
-
@w_x.p(x.rjust(30))
|
704
|
+
def pstack # PRINT STACK (XYZTL)
|
705
|
+
@p_l.puts(num_format(@stk.l))
|
706
|
+
@p_t.puts(num_format(@stk.t))
|
707
|
+
@p_z.puts(num_format(@stk.z))
|
708
|
+
@p_y.puts(num_format(@stk.y))
|
709
|
+
@p_x.puts(num_format(@stk.x).b)
|
712
710
|
end
|
713
|
-
def pregs
|
714
|
-
@
|
711
|
+
def pregs # PRINT CONTENT OF REGS (0-9)
|
712
|
+
@p_reg.text = "\n"
|
715
713
|
10.times do |i|
|
716
714
|
r = num_format(@reg[i].to_f)
|
717
|
-
@
|
715
|
+
@p_reg.text += " R##{i}".i + "#{r}".rjust(27) + "\n"
|
718
716
|
end
|
717
|
+
@p_reg.refresh
|
719
718
|
end
|
720
|
-
def error(err)
|
721
|
-
@
|
722
|
-
@
|
719
|
+
def error(err) # PRINT ERRORS TO X
|
720
|
+
@p_x.puts(err)
|
721
|
+
@history.insert(-2, err)
|
723
722
|
getchr
|
724
723
|
end
|
725
|
-
def cmd
|
726
|
-
text = <<CMDTEXT
|
727
|
-
|
728
|
-
r|↓| r|↑| x|<|>y |+| |-| |*| |/| |\\| |%| c|h|s |p|i
|
729
|
-
y√x x^2 x^3 e^x 10^x redrw
|
730
|
-
y|^|x 1/|x| s|q|rt l|n| lo|g| |l|astx
|
731
|
-
asin acos atan R→P P→R cstk
|
732
|
-
s|i|n c|o|s t|a|n |r|ad |d|eg |c|lx
|
733
|
-
|
734
|
-
|S|to |R|cl |s|ci |f|ix |u|ndo |H|lp |Q|uit
|
735
|
-
CMDTEXT
|
736
|
-
text = text.split("\n")
|
737
|
-
text.each_with_index do |t,i|
|
738
|
-
if i.even?
|
739
|
-
@w_cmd.color = 8
|
740
|
-
@w_cmd.p(t)
|
741
|
-
else
|
742
|
-
t = t.split("|")
|
743
|
-
t.each_with_index do |c,j|
|
744
|
-
if j.even?
|
745
|
-
@w_cmd.color = 9
|
746
|
-
@w_cmd.p(c)
|
747
|
-
else
|
748
|
-
@w_cmd.color = 10
|
749
|
-
@w_cmd.p(c)
|
750
|
-
end
|
751
|
-
end
|
752
|
-
@w_cmd.p("\n")
|
753
|
-
end
|
754
|
-
@w_cmd.p("\n")
|
755
|
-
end
|
756
|
-
end
|
757
|
-
def help
|
758
|
-
help = <<HELPTEXT
|
759
|
-
|
760
|
-
T-REX - Terminal Rpn calculator EXperiment. GitHub: https://github.com/isene/T-REX
|
761
|
-
|
762
|
-
This is a Reverse Polish Notation calculator similar to the traditional Hewlett
|
763
|
-
Packard calculators. See https://www.hpmuseum.org/rpn.htm for info on RPN.
|
764
|
-
|
765
|
-
The stack is shown to the top left. The X, Y, Z and T registers comprise the
|
766
|
-
operating stack. L is the "Last X" register showing the previous value in X.
|
767
|
-
Toggle US and European number formats by pressing '.
|
768
|
-
|
769
|
-
Functions available are shown under the stack registers. The orange symbol
|
770
|
-
corresponds to the key to be pressed. For functions above each label (grey
|
771
|
-
functions), press the Control key (Ctrl) and the orange key (asin = Ctrl+i).
|
772
|
-
|
773
|
-
For Rectangular to Polar conversions:
|
774
|
-
R-P: X value in x, Y in y - yields "θ" in y and "r" in x.
|
775
|
-
P-R: "θ" in y and "r" in x - yeilds X in x and Y in y.
|
776
|
-
|
777
|
-
Use the "f" key to set the fixed number of decimal places. Use the "s" key to set
|
778
|
-
the limit for viewing numbers in the "scientific" notation (e.g. 5e+06 for 5000000).
|
779
|
-
|
780
|
-
Content of registers #0-#9 are shown below the functions.
|
781
|
-
Store/recall using capital "S"/"R". "M" clears the regs.
|
782
|
-
|
783
|
-
Copy/yank the X register to clipboard with "y". Use "Y" to yank all the memory regs.
|
784
|
-
|
785
|
-
You can undo all the way to the beginning of the session.
|
786
|
-
|
787
|
-
The 'H' key toggles the help text in the right pane.
|
788
|
-
|
789
|
-
The stack, register contents, modes and help text settings are saved on Quit.
|
790
|
-
|
791
|
-
Additionally, for a world of possibilities, you can access the "Ruby mode" via '@'.
|
792
|
-
Here you can address the stack directly, e.g. x = y + (z / t). Quit Ruby mode with Ctrl-C.
|
793
|
-
|
794
|
-
HELPTEXT
|
795
|
-
@w_hlp.p(help)
|
796
|
-
end
|
797
724
|
def conf_write # WRITE TO .t-rex.conf
|
798
725
|
conf = "@fix = #{@fix}\n"
|
799
726
|
conf += "@sci = #{@sci}\n"
|
@@ -808,73 +735,26 @@ def conf_write # WRITE TO .t-rex.conf
|
|
808
735
|
end
|
809
736
|
|
810
737
|
# MAIN PROGRAM
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
#
|
820
|
-
|
821
|
-
@
|
822
|
-
@w_l = Curses::Window.new( 1, 30, 2, 3)
|
823
|
-
@w_yzt = Curses::Window.new( 3, 30, 3, 3)
|
824
|
-
@w_x = Curses::Window.new( 1, 30, 6, 3)
|
825
|
-
@w_cmd = Curses::Window.new(12, 32, 8, 1)
|
826
|
-
@w_reg = Curses::Window.new(maxy - 22, 32, 21, 1)
|
827
|
-
@w_hlp = Curses::Window.new(maxy - 2, maxx - 35, 1, 34)
|
828
|
-
|
829
|
-
init_pair( 2, 88, 238) # @w_inf
|
830
|
-
init_pair( 3, 60, 238) # @w_lbl
|
831
|
-
init_pair( 4, 246, 236) # @w_l
|
832
|
-
init_pair( 5, 250, 234) # @w_yzt
|
833
|
-
init_pair( 6, 7, 0) # @w_x
|
834
|
-
init_pair( 7, 0, 250) # @w_xi
|
835
|
-
init_pair( 8, 242, 0) # @w_cmd ctrl- & @w_reg
|
836
|
-
init_pair( 9, 111, 0) # @w_cmd
|
837
|
-
init_pair(10, 214, 0) # @w_cmd key
|
838
|
-
init_pair(11, 238, 0) # @w_hlp
|
839
|
-
|
840
|
-
@w_inf.color = 2
|
841
|
-
@w_lbl.color = 3
|
842
|
-
@w_l.color = 4
|
843
|
-
@w_yzt.color = 5
|
844
|
-
@w_x.color = 6
|
845
|
-
@w_x.attr = Curses::A_BOLD
|
846
|
-
@w_cmd.color = 8
|
847
|
-
@w_cmd.attr = Curses::A_BOLD
|
848
|
-
@w_reg.color = 8
|
849
|
-
@w_hlp.color = 11
|
850
|
-
|
851
|
-
@w_lbl.p(" L T Z Y X")
|
852
|
-
@w_cmd.fill; cmd
|
853
|
-
@w_reg.fill
|
854
|
-
@w_hlp.fill
|
855
|
-
help if @hlp
|
856
|
-
|
857
|
-
@u = []
|
738
|
+
refresh
|
739
|
+
Rcurses::Cursor.hide
|
740
|
+
begin # Capture main loop
|
741
|
+
loop do # Main loop
|
742
|
+
@p_inf.puts(" #{@mod} Sci=#{@sci} Fix=#{@fix}".i)
|
743
|
+
pstack
|
744
|
+
pregs
|
745
|
+
@t = @stk.dup
|
746
|
+
main_getkey("") # Get key input from user
|
747
|
+
help
|
748
|
+
@u.push(@t.dup) if @t != @stk and @undo == false
|
858
749
|
@undo = false
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
@w_inf.p(" #{@mod} Sci=#{@sci} Fix=#{@fix}".ljust(32))
|
864
|
-
pstack
|
865
|
-
pregs
|
866
|
-
@t = @stk.dup
|
867
|
-
main_getkey("") # Get key from user
|
868
|
-
@u.push(@t.dup) if @t != @stk and @undo == false
|
869
|
-
@undo = false
|
870
|
-
|
871
|
-
break if @break # Break to outer loop, redrawing windows, if user hit 'r'
|
872
|
-
break if Curses.cols != maxx or Curses.lines != maxy # break on terminal resize
|
750
|
+
h1, w1 = IO.console.winsize
|
751
|
+
if h1 != @h or w1 != @w # Refresh on terminal resize
|
752
|
+
@h, @w = IO.console.winsize
|
753
|
+
refresh
|
873
754
|
end
|
874
|
-
ensure # On exit: close curses, clear terminal
|
875
|
-
conf_write
|
876
|
-
close_screen
|
877
755
|
end
|
756
|
+
ensure # Write to .t-rex.conf on exit
|
757
|
+
conf_write
|
878
758
|
end
|
879
759
|
|
880
760
|
# vim: set sw=2 sts=2 et fdm=syntax fdn=2 fcs=fold\:\ :
|
metadata
CHANGED
@@ -1,39 +1,39 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: t-rex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: '2.0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: rcurses
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '2.4'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
22
|
+
version: '2.4'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
29
|
+
version: '2.4'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
32
|
+
version: '2.4'
|
33
33
|
description: 'This is a terminal curses RPN calculator similar to the traditional
|
34
34
|
calculators from Hewlett Packard. See https://www.hpmuseum.org/rpn.htm for info
|
35
|
-
on RPN (Reverse Polish Notation). New in
|
36
|
-
|
35
|
+
on RPN (Reverse Polish Notation). New in 2.0: Full rewrite with rcurses, face lift,
|
36
|
+
new functionality, bug fixes'
|
37
37
|
email: g@isene.com
|
38
38
|
executables:
|
39
39
|
- t-rex
|
@@ -46,7 +46,7 @@ licenses:
|
|
46
46
|
- Unlicense
|
47
47
|
metadata:
|
48
48
|
source_code_uri: https://github.com/isene/t-rex
|
49
|
-
post_install_message:
|
49
|
+
post_install_message:
|
50
50
|
rdoc_options: []
|
51
51
|
require_paths:
|
52
52
|
- lib
|
@@ -61,8 +61,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: '0'
|
63
63
|
requirements: []
|
64
|
-
rubygems_version: 3.
|
65
|
-
signing_key:
|
64
|
+
rubygems_version: 3.4.20
|
65
|
+
signing_key:
|
66
66
|
specification_version: 4
|
67
67
|
summary: T-REX - Terminal Rpn calculator EXperiment
|
68
68
|
test_files: []
|