Module: WindowIO
- Defined in:
- lib/output.rb
Instance Method Summary collapse
-
#getch ⇒ Object
FIXME These don’t/can’t honor @started flag…
-
#gets ⇒ Object
still needs improvement.
- #p(*args) ⇒ Object
- #print(*args) ⇒ Object
- #putch(ch, r: nil, c: nil, fx: nil) ⇒ Object
-
#puts(*args) ⇒ Object
Doesn’t affect STDOUT.puts, etc.
- #rcprint(r, c, *args) ⇒ Object
Instance Method Details
#getch ⇒ Object
FIXME These don’t/can’t honor @started flag…
343 344 345 |
# File 'lib/output.rb', line 343 def getch Curses.getch end |
#gets ⇒ Object
still needs improvement
347 348 349 350 |
# File 'lib/output.rb', line 347 def gets # still needs improvement recv = RubyText.started ? $stdscr : Kernel recv.gets end |
#p(*args) ⇒ Object
331 332 333 334 |
# File 'lib/output.rb', line 331 def p(*args) recv = RubyText.started ? $stdscr : Kernel recv.p(*args) end |
#print(*args) ⇒ Object
326 327 328 329 |
# File 'lib/output.rb', line 326 def print(*args) recv = RubyText.started ? $stdscr : Kernel recv.print(*args) end |
#putch(ch, r: nil, c: nil, fx: nil) ⇒ Object
352 353 354 355 356 357 |
# File 'lib/output.rb', line 352 def putch(ch, r: nil, c: nil, fx: nil) r, c = STDSCR.rc r ||= r0 c ||= c0 STDSCR.putch(ch, r: r, c: c, fx: fx) end |