Module: WindowIO

Defined in:
lib/output.rb

Instance Method Summary collapse

Instance Method Details

#getchObject

FIXME These don’t/can’t honor @started flag…



275
276
277
# File 'lib/output.rb', line 275

def getch
  X.getch
end

#getsObject

still needs improvement



279
280
281
282
# File 'lib/output.rb', line 279

def gets  # still needs improvement
  recv = RubyText.started ? $stdscr : Kernel
  recv.gets
end

#p(*args) ⇒ Object



263
264
265
266
# File 'lib/output.rb', line 263

def p(*args)
  recv = RubyText.started ? $stdscr : Kernel
  recv.p(*args)
end


258
259
260
261
# File 'lib/output.rb', line 258

def print(*args)
  recv = RubyText.started ? $stdscr : Kernel
  recv.print(*args)
end

#putch(ch, r: nil, c: nil, fx: nil) ⇒ Object



284
285
286
287
288
289
# File 'lib/output.rb', line 284

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

#puts(*args) ⇒ Object

Doesn’t affect STDOUT.puts, etc.



253
254
255
256
# File 'lib/output.rb', line 253

def puts(*args)       # Doesn't affect STDOUT.puts, etc.
  recv = RubyText.started ? $stdscr : Kernel
  recv.puts(*args)
end

#rcprint(r, c, *args) ⇒ Object



268
269
270
271
# File 'lib/output.rb', line 268

def rcprint(r, c, *args)
  recv = RubyText.started ? $stdscr : Kernel
  recv.rcprint r, c, *args
end