# This example demonstrates the use of the TextInput functionality. # One can tab through, or click into the text fields and change it's contents. # At its most basic form, you only need to create a new TextInput instance and # set the text_input attribute of your window to it. Until you set this # attribute to nil again, the TextInput object will build a text that can be # accessed via TextInput#text. # The TextInput object also maintains the position of the caret as the index # of the character that it's left to via the caret_pos attribute. Furthermore, # if there is a selection, the selection_start attribute yields its beginning, # using the same indexing scheme. If there is no selection, selection_start # is equal to caret_pos. # A TextInput object is purely abstract, though; drawing the input field is left # to the user. In this case, we are subclassing TextInput to add this code. # As with most of Gosu, how this is handled is completely left open; the scheme # presented here is not mandatory! Gosu only aims to provide enough code for # games (or intermediate UI toolkits) to be built upon it. begin # In case you use Gosu via RubyGems. require 'rubygems' rescue LoadError # In case you don't. end require 'gosu' class TextField < Gosu::TextInput # Some constants that define our appearance. INACTIVE_COLOR = 0xcc666666 ACTIVE_COLOR = 0xccff6666 SELECTION_COLOR = 0xcc0000ff CARET_COLOR = 0xffffffff PADDING = 5 attr_reader :x, :y def initialize(window, font, x, y) # TextInput's constructor doesn't expect any arguments. super() @window, @font, @x, @y = window, font, x, y # Start with a self-explanatory text in each field. self.text = "Click to change text" end # Example filter method. You can truncate the text to employ a length limit (watch out # with Ruby 1.8 and UTF-8!), limit the text to certain characters etc. def filter text text.upcase end def draw # Depending on whether this is the currently selected input or not, change the # background's color. if @window.text_input == self then background_color = ACTIVE_COLOR else background_color = INACTIVE_COLOR end @window.draw_quad(x - PADDING, y - PADDING, background_color, x + width + PADDING, y - PADDING, background_color, x - PADDING, y + height + PADDING, background_color, x + width + PADDING, y + height + PADDING, background_color, 0) # Calculate the position of the caret and the selection start. pos_x = x + @font.text_width(self.text[0...self.caret_pos]) sel_x = x + @font.text_width(self.text[0...self.selection_start]) # Draw the selection background, if any; if not, sel_x and pos_x will be # the same value, making this quad empty. @window.draw_quad(sel_x, y, SELECTION_COLOR, pos_x, y, SELECTION_COLOR, sel_x, y + height, SELECTION_COLOR, pos_x, y + height, SELECTION_COLOR, 0) # Draw the caret; again, only if this is the currently selected field. if @window.text_input == self then @window.draw_line(pos_x, y, CARET_COLOR, pos_x, y + height, CARET_COLOR, 0) end # Finally, draw the text itself! @font.draw(self.text, x, y, 0) end # This text field grows with the text that's being entered. # (Usually one would use clip_to and scroll around on the text field.) def width @font.text_width(self.text) end def height @font.height end # Hit-test for selecting a text field with the mouse. def under_point?(mouse_x, mouse_y) mouse_x > x - PADDING and mouse_x < x + width + PADDING and mouse_y > y - PADDING and mouse_y < y + height + PADDING end end class TextInputWindow < Gosu::Window def initialize super(300, 200, false) self.caption = "Text Input Example" font = Gosu::Font.new(self, Gosu::default_font_name, 20) # Set up an array of three text fields. @text_fields = Array.new(3) { |index| TextField.new(self, font, 50, 30 + index * 50) } @cursor = Gosu::Image.new(self, "media/Cursor.png", false) end def draw @text_fields.each { |tf| tf.draw } @cursor.draw(mouse_x, mouse_y, 0) end def button_down(id) if id == Gosu::KbTab then # Tab key will not be 'eaten' by text fields; use for switching through # text fields. index = @text_fields.index(self.text_input) || -1 self.text_input = @text_fields[(index + 1) % @text_fields.size] elsif id == Gosu::KbEscape then # Escape key will not be 'eaten' by text fields; use for deselecting. if self.text_input then self.text_input = nil else close end elsif id == Gosu::MsLeft then # Mouse click: Select text field based on mouse position. self.text_input = @text_fields.find { |tf| tf.under_point?(mouse_x, mouse_y) } end end end TextInputWindow.new.show