Sha256: 8272b9dcce927cacceb9e55874aa1a468443808aab064782ee11f0c307e2dadb

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

#!/usr/local/bin/ruby -w
# -*- coding: utf-8 -*-

require "graphics"

class Editor < Graphics::Simulation
  attr_accessor :overlay, :s, :lines

  alias :overlay? :overlay

  def initialize
    super 850, 850, 16, self.class.name

    self.overlay = true
    self.s = ""
    self.lines = []
  end

  def handle_event e, n
    case e
    when SDL::Event::KeyDown then
      if e.mod & (SDL::Key::MOD_LCTRL | SDL::Key::MOD_RCTRL) != 0 then
        case e.sym.chr
        when "t" then
          self.overlay = ! self.overlay
        end
      else
        c = e.sym.chr rescue ""
        c.upcase! if e.mod & (SDL::Key::MOD_LSHIFT | SDL::Key::MOD_RSHIFT) != 0
        case c
        when "\r" then
          c = "\n"
          lines << s.dup
          s.clear
          return
        when "\b" then
          self.s = s[0..-2]
          return
        end
        s << c
      end
    else
      super
    end
  end

  def draw n
    clear

    draw_scene
    draw_overlay
  end

  def draw_scene
  end

  def draw_overlay
    if overlay? then
      lines.each_with_index do |l, i|
        text l, 10, ((lines.size-i)*font.height), :gray
      end

      text "> #{s}_", 10, 0, :white
    end
  end
end

if $0 == __FILE__
  Editor.new.run
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
graphics-1.0.0b1 examples/editor.rb