Sha256: 23fa29bb0c0639d21c451bf679d0fbf409672cfc6059a562b35f51c4da5db8ed
Contents?: true
Size: 1.87 KB
Versions: 4
Compression:
Stored size: 1.87 KB
Contents
require 'vedeu/support/read' require 'vedeu/support/write' module Vedeu class Console # @param height [Fixnum] # @param width [Fixnum] def initialize(height = 25, width = 80) @height = height || 25 @width = width || 80 end # @param data [String|NilClass] # @return [String] def input(data = nil) Vedeu::Read.from(self, data) end alias_method :read, :input # @param data [Array<Array<Char>>|Array<String>|String|NilClass] # @return [Array] def output(data = nil) Vedeu::Write.to(self, data) end alias_method :write, :output # Returns a coordinate tuple of the format [y, x], where `y` is the row/line # and `x` is the column/character. # # @return [Array] def centre [(height / 2), (width / 2)] end # Returns the `y` (row/line) component of the coordinate tuple provided by # {Vedeu::Terminal.centre} # # @return [Fixnum] def centre_y centre.first end # Returns the `x` (column/character) component of the coodinate tuple # provided by {Vedeu::Terminal.centre} # # @return [Fixnum] def centre_x centre.last end # @param block [Proc] # @return [Proc] def cooked(&block) yield end # @return [Fixnum] def height @height end alias_method :tyn, :height alias_method :yn, :height # @return [Fixnum] def origin 1 end alias_method :x, :origin alias_method :y, :origin alias_method :tx, :origin alias_method :ty, :origin # @param block [Proc] # @return [Proc] def raw(&block) yield end # @return [Array] def size [height, width] end alias_method :winsize, :size # @return [Fixnum] def width @width end alias_method :txn, :width alias_method :xn, :width end # Console end # Vedeu
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.3.4 | lib/vedeu/support/console.rb |
vedeu-0.3.3 | lib/vedeu/support/console.rb |
vedeu-0.3.2 | lib/vedeu/support/console.rb |
vedeu-0.3.1 | lib/vedeu/support/console.rb |