Sha256: 3d2afd74a0bb7c6e6f131c1a3805dc9c7e30976038b246e016834dce0e170c84

Contents?: true

Size: 1.23 KB

Versions: 8

Compression:

Stored size: 1.23 KB

Contents

class RubyText::Window

  def coords(r, c)
    r = case
          when r == :center
            self.rows / 2 
          when r == :top
            0
          when r == :bottom
            self.rows - 1
          else
            r
          end
    c = case
          when c == :center
            self.cols / 2 
          when c == :left
            0
          when c == :right
            self.cols - 1
          else
            c
          end
    [r, c]
  end

  def goto(r, c)  # only accepts numbers!
    @cwin.setpos(r, c)
  end

  def go(r0, c0)
    r, c = coords(r0, c0)
    save = self.rc
    goto(r, c)
    if block_given?
      yield 
      goto(*save)
    end
  end

  def up(n=1)
    r, c = rc
    go r-n, c
  end

  def down(n=1)
    r, c = rc
    go r+n, c
  end

  def left(n=1)
    r, c = rc
    go r, c-n
  end

  def right(n=1)
    r, c = rc
    go r, c+n
  end

  def top
    r, c = rc
    go 0, c
  end

  def bottom 
    r, c = rc
    rmax = self.rows - 1
    go rmax, c
  end

  def up!
    top
  end

  def down!
    bottom
  end

  def left!
    r, c = rc
    go r, 0
  end

  def right!
    r, c = rc
    cmax = self.cols - 1
    go r, cmax
  end

  def home
    go 0, 0
  end

  def rc
    [@cwin.cury, @cwin.curx]
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rubytext-0.0.89 lib/navigation.rb
rubytext-0.0.88 lib/navigation.rb
rubytext-0.0.87 lib/navigation.rb
rubytext-0.0.86 lib/navigation.rb
rubytext-0.0.85 lib/navigation.rb
rubytext-0.0.84 lib/navigation.rb
rubytext-0.0.83 lib/navigation.rb
rubytext-0.0.82 lib/navigation.rb