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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/t-rex +323 -443
  3. metadata +13 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7f0b8057a14ed214b62947567e1c6c7eb0e588beb3326b4ebdedec202e7f0f1
4
- data.tar.gz: c706413cc13b9037b27fa1e60639b366018626ac6a63eddebf829a1c4363f344
3
+ metadata.gz: 2fa0770f86f98c3694ab939dfccb26a9f6174058fb600e79afde45b3f32f69b3
4
+ data.tar.gz: '01468ba7f3d71c57125452fd9bd6caf02bcaa0606fc4c0486bef615773b7d862'
5
5
  SHA512:
6
- metadata.gz: 9ecb3aa8ab03b94de67c8f9a86a2c9eecacdf127b66f047477823a9938efd706c5a6ac6ef31ace5be38fe4fbf9b6ee089ea160ccbe699142d2450b6b3718a8cc
7
- data.tar.gz: 86969990e078cf98b2634bf525217b8e526c24207508d0ca1bf3f2e025c749ffda0268c802e9d7874ef290f8e90af185cf0d39faa599936696a2b11fe9b9092a
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 'io/console'
5
- require 'curses'
6
- include Curses
17
+ require 'rcurses'
18
+ include Rcurses::Input
7
19
 
8
- # CLASSES
9
- class Curses::Window # CLASS EXTENSION
10
- # General extensions (see https://github.com/isene/Ruby-Curses-Class-Extension)
11
- attr_accessor :color, :fg, :bg, :attr
12
- # Set self.color for an already defined color pair such as: init_pair(1, 255, 3)
13
- # The color pair is defined like this: init_pair(index, foreground, background)
14
- # self.fg is set for the foreground color (and is used if self.color is not set)
15
- # self.bg is set for the background color (and is used if self.color is not set)
16
- # self.attr is set for text attributes like Curses::A_BOLD
17
- def clr # Clears the whole window
18
- self.setpos(0, 0)
19
- self.maxy.times {self.deleteln()}
20
- self.refresh
21
- self.setpos(0, 0)
22
- end
23
- def fill # Fill window with color as set by self.color (or self.bg if not set)
24
- self.setpos(0, 0)
25
- self.fill_from_cur_pos
26
- end
27
- def fill_from_cur_pos # Fills the rest of the window from current line
28
- x = curx
29
- y = cury
30
- self.setpos(y, 0)
31
- blank = " " * self.maxx
32
- if self.color == nil
33
- self.bg = 0 if self.bg == nil
34
- self.fg = 255 if self.fg == nil
35
- init_pair(self.fg, self.fg, self.bg)
36
- self.maxy.times {self.attron(color_pair(self.fg)) {self << blank}}
37
- else
38
- self.maxy.times {self.attron(color_pair(self.color)) {self << blank}}
39
- end
40
- self.refresh
41
- self.setpos(y, x)
42
- end
43
- def fill_to_cur_pos # Fills the window up to current line
44
- x = curx
45
- y = cury
46
- self.setpos(0, 0)
47
- blank = " " * self.maxx
48
- if self.color == nil
49
- self.bg = 0 if self.bg == nil
50
- self.fg = 255 if self.fg == nil
51
- init_pair(self.fg, self.fg, self.bg)
52
- y.times {self.attron(color_pair(self.fg)) {self << blank}}
53
- else
54
- y.times {self.attron(color_pair(self.color)) {self << blank}}
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
- class Stack
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
- self.x = Math::asin(self.x)
231
- self.x = self.x * 180 / Math::PI if self.deg
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
- self.x = Math::acos(self.x)
236
- self.x = self.x * 180 / Math::PI if self.deg
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 SETUP
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
- Curses.init_screen
286
- Curses.start_color
287
- Curses.curs_set(0)
288
- Curses.noecho
289
- Curses.cbreak
290
- Curses.stdscr.keypad = true
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 getchr # PROCESS KEY PRESSES
295
- c = STDIN.getch
296
- case c
297
- when "\e" # ANSI escape sequences
298
- case $stdin.getc
299
- when '[' # CSI
300
- case $stdin.getc
301
- when 'A' then chr = "UP"
302
- when 'B' then chr = "DOWN"
303
- when 'C' then chr = "RIGHT"
304
- when 'D' then chr = "LEFT"
305
- when 'Z' then chr = "S-TAB"
306
- when '2' then chr = "INS" ; STDIN.getc
307
- when '3' then chr = "DEL" ; STDIN.getc
308
- when '5' then chr = "PgUP" ; STDIN.getc
309
- when '6' then chr = "PgDOWN" ; STDIN.getc
310
- when '7' then chr = "HOME" ; STDIN.getc
311
- when '8' then chr = "END" ; STDIN.getc
312
- end
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
- when "", "" then chr = "BACK"
315
- when "" then chr = "WBACK"
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
- when 'C-L' # Break/redraw
398
- @break = true
460
+ history("lastx")
461
+ when 'C-L' # Redraw
462
+ refresh
399
463
  when 'i'
400
464
  @stk.sin
401
- when 'C-I'
402
- @stk.asin
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
- @w_x.clr
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
- @w_x.clr
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
- @w_x.clr
449
- @w_x.p(" Sci notation limit (2-9)")
450
- r = getchr
451
- if r =~ /[2-9]/
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
- @w_x.clr
456
- @w_x.p(" Fixed decimals (0-9)")
457
- r = getchr
458
- if r =~ /[0-9]/
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
- @w_x.color = 7
470
- @w_x.fill
547
+ @p_x.bg = 250
548
+ @p_x.refresh
471
549
  system("echo '#{@stk.x}' | xclip")
472
550
  sleep(0.1)
473
- @w_x.color = 6
551
+ @p_x.bg = 0
552
+ @p_x.refresh
474
553
  rescue
475
- @w_x.clr
476
- @w_x.p(" Install xclip to yank")
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
- @w_x.color = 5
482
- @w_x.fill
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
- @w_x.color = 6
569
+ @p_x.bg = 0
570
+ @p_x.refresh
491
571
  rescue
492
- @w_x.clr
493
- @w_x.p(" Install xclip to yank")
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
- @w_hlp.fill
499
- help if @hlp
500
- when '@' # Ruby console
501
- @w_hlp.fill
502
- console(" Ruby: ")
503
- @w_hlp.fill
504
- help if @hlp
505
- when 'Q' # Exit
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.,-]/ # Go to entry mode for x
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
- main_getkey(c) 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)
515
- end
516
- end
517
- def console(pretext) # A SIMPLE READLINE-LIKE ROUTINE
518
- Curses.curs_set(1)
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
- @w_x.color = 7
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
- @w_x.clr
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
- Curses.curs_set(0)
674
- Curses.noecho
675
- @w_x.color = 6
688
+ Rcurses::Cursor.hide
676
689
  return number, chr
677
690
  end
678
- def num_format(n)
679
- if n.abs >= 10 ** @sci.to_i
680
- n = "%.#{@sci}g" % n
681
- elsif n.abs <= 10 ** (1 / @sci.to_i) and n > 10
682
- n = "%.#{@sci}g" % n
683
- else
684
- n = n.round(@fix)
685
- n = "%.#{@fix}f" % n
686
- m = n[/^-/]
687
- m = "" if m == nil
688
- n.sub!(/-/, '')
689
- i = n[/\d*/]
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
- x = num_format(@stk.x)
702
- y = num_format(@stk.y)
703
- z = num_format(@stk.z)
704
- t = num_format(@stk.t)
705
- l = num_format(@stk.l)
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
- @w_reg.setpos(1,0)
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
- @w_reg.p(" R##{i}" + "#{r}".rjust(27) + " ")
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
- @w_x.clr
722
- @w_x.p(err.rjust(30))
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
- loop do # OUTER LOOP - (catching refreshes via 'b')
812
- @break = false # Initialize @break variable (set if user hits 'b')
813
- begin # Create the windows/panels
814
- maxx = Curses.cols
815
- maxy = Curses.lines
816
- init_pair( 1, 235, 235) # stdscr
817
- Curses.stdscr.color = 1
818
- Curses.stdscr.fill
819
- # Curses::Window.new(h,w,y,x)
820
- @w_inf = Curses::Window.new( 1, 32, 1, 1)
821
- @w_lbl = Curses::Window.new( 5, 2, 2, 1)
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
- loop do # INNER, CORE LOOP
861
-
862
- @w_inf.clr
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: 1.0.6
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: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2025-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: curses
14
+ name: rcurses
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.3'
19
+ version: '2.4'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.3.2
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: '1.3'
29
+ version: '2.4'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.3.2
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 1.0.6: Dropped the ''.rb'' suffix, fixed
36
- looping bug'
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.1.2
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: []