Class: Fidgit::GuiState
- Extended by:
- Forwardable
- Defined in:
- lib/fidgit/states/gui_state.rb
Direct Known Subclasses
Constant Summary collapse
- PIXEL_IMAGE =
A 1x1 white pixel used for drawing.
'pixel.png'
Instance Attribute Summary collapse
-
#container ⇒ Packer
readonly
The Container that contains all the elements for this GuiState.
-
#focus ⇒ Element
The element with focus.
Class Method Summary collapse
-
.clear ⇒ Object
Clear the data which is specific to the current $window.
Instance Method Summary collapse
- #clear(*args, &block) ⇒ Object
-
#cursor ⇒ Cursor
The Cursor.
- #distance(x1, y1, x2, y2) ⇒ Object
- #draw ⇒ Object
-
#draw_frame(x, y, width, height, thickness, z, color, mode = :default) ⇒ Object
Draw an unfilled rectangle.
-
#draw_rect(x, y, width, height, z, color, mode = :default) ⇒ Object
Draw a filled rectangle.
-
#file_dialog(type, options = {}, &block) ⇒ Object
Show a file_dialog.
- #finalize ⇒ Object
-
#flush ⇒ Object
Flush all pending drawing to the screen.
- #hide ⇒ Object
-
#hide_menu ⇒ Object
Hides the currently shown menu, if any.
-
#initialize ⇒ GuiState
constructor
A new instance of GuiState.
- #menu(options = {}, &block) ⇒ Object
- #message(text, options = {}) {|result| ... } ⇒ Object
- #setup ⇒ Object
- #show ⇒ Object
-
#show_menu(menu) ⇒ Object
Set the menu pane to be displayed.
-
#t(*args) ⇒ Object
Internationalisation helper.
-
#tool_tip_delay ⇒ Object
Delay, in ms, before a tool-tip will appear.
-
#unset_mouse_over ⇒ Object
Called by active elements when they are disabled.
- #update ⇒ Object
- #write_tree ⇒ Object
Constructor Details
#initialize ⇒ GuiState
Returns a new instance of GuiState.
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/fidgit/states/gui_state.rb', line 51 def initialize # The container is where the user puts their content. @container = MainPacker.new @menu = nil @last_cursor_pos = [-1, -1] @mouse_over = nil unless defined? @@draw_pixel media_dir = File.(File.join(File.dirname(__FILE__), '..', '..', '..', 'media')) Gosu::Image.autoload_dirs << File.join(media_dir, 'images') Gosu::Sample.autoload_dirs << File.join(media_dir, 'sounds') @@draw_pixel = Gosu::Image.new($window, File.join(media_dir, 'images', PIXEL_IMAGE), true) # Must be tileable or it will blur. @@cursor = Cursor.new end @min_drag_distance = 0 super() add_inputs( left_mouse_button: ->{ (:left) }, holding_left_mouse_button: ->{ (:left) }, released_left_mouse_button: ->{ (:left) }, middle_mouse_button: ->{ (:middle) }, holding_middle_mouse_button: ->{ (:middle) }, released_middle_mouse_button: ->{ (:middle) }, right_mouse_button: ->{ (:right) }, holding_right_mouse_button: ->{ (:right) }, released_right_mouse_button: ->{ (:right) }, mouse_wheel_up: :redirect_mouse_wheel_up, mouse_wheel_down: :redirect_mouse_wheel_down, x: -> { if @focus and (holding_any?(:left_control, :right_control)) then @focus.cut end }, c: -> { if @focus and (holding_any?(:left_control, :right_control)) then @focus.copy end }, v: -> { if @focus and (holding_any?(:left_control, :right_control)) then @focus.paste end } ) end |
Instance Attribute Details
#container ⇒ Packer (readonly)
The Container that contains all the elements for this GuiState.
15 16 17 |
# File 'lib/fidgit/states/gui_state.rb', line 15 def container @container end |
#focus ⇒ Element
The element with focus.
19 20 21 |
# File 'lib/fidgit/states/gui_state.rb', line 19 def focus @focus end |
Class Method Details
.clear ⇒ Object
Clear the data which is specific to the current $window.
97 98 99 100 |
# File 'lib/fidgit/states/gui_state.rb', line 97 def self.clear remove_class_variable '@@cursor' if defined? @@cursor remove_class_variable '@@draw_pixel' if defined? @@draw_pixel end |
Instance Method Details
#clear(*args, &block) ⇒ Object
49 |
# File 'lib/fidgit/states/gui_state.rb', line 49 def clear(*args, &block); @container.clear(*args, &block); end |
#cursor ⇒ Cursor
The Cursor.
23 |
# File 'lib/fidgit/states/gui_state.rb', line 23 def cursor; @@cursor; end |
#distance(x1, y1, x2, y2) ⇒ Object
239 240 241 |
# File 'lib/fidgit/states/gui_state.rb', line 239 def distance(x1, y1, x2, y2) Gosu.distance(x1, y1, x2, y2) end |
#draw ⇒ Object
155 156 157 158 159 160 161 162 |
# File 'lib/fidgit/states/gui_state.rb', line 155 def draw @container.draw @menu.draw if @menu @tool_tip.draw if @tool_tip cursor.draw super end |
#draw_frame(x, y, width, height, thickness, z, color, mode = :default) ⇒ Object
Draw an unfilled rectangle.
230 231 232 233 234 235 236 237 |
# File 'lib/fidgit/states/gui_state.rb', line 230 def draw_frame(x, y, width, height, thickness, z, color, mode = :default) draw_rect(x - thickness, y, thickness, height, z, color, mode) # left draw_rect(x - thickness, y - thickness, width + thickness * 2, thickness, z, color, mode) # top (full) draw_rect(x + width, y, thickness, height, z, color, mode) # right draw_rect(x - thickness, y + height, width + thickness * 2, thickness, z, color, mode) # bottom (full) nil end |
#draw_rect(x, y, width, height, z, color, mode = :default) ⇒ Object
Draw a filled rectangle.
223 224 225 226 227 |
# File 'lib/fidgit/states/gui_state.rb', line 223 def draw_rect(x, y, width, height, z, color, mode = :default) @@draw_pixel.draw x, y, z, width, height, color, mode nil end |
#file_dialog(type, options = {}, &block) ⇒ Object
Show a file_dialog. (see FileDialog#initialize)
38 39 40 |
# File 'lib/fidgit/states/gui_state.rb', line 38 def file_dialog(type, = {}, &block) FileDialog.new(type, , &block) end |
#finalize ⇒ Object
179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/fidgit/states/gui_state.rb', line 179 def finalize unset_mouse_over if @focus @focus.publish :blur @focus = nil end @tool_tip = nil nil end |
#flush ⇒ Object
Flush all pending drawing to the screen.
218 219 220 |
# File 'lib/fidgit/states/gui_state.rb', line 218 def flush $window.flush end |
#hide ⇒ Object
248 249 250 251 |
# File 'lib/fidgit/states/gui_state.rb', line 248 def hide $window.game_state_manager.pop if $window.game_state_manager.current == self nil end |
#hide_menu ⇒ Object
Hides the currently shown menu, if any.
211 212 213 214 215 |
# File 'lib/fidgit/states/gui_state.rb', line 211 def @menu = nil nil end |
#menu(options = {}, &block) ⇒ Object
43 |
# File 'lib/fidgit/states/gui_state.rb', line 43 def ( = {}, &block); MenuPane.new(, &block); end |
#message(text, options = {}) {|result| ... } ⇒ Object
46 |
# File 'lib/fidgit/states/gui_state.rb', line 46 def (text, = {}, &block); MessageDialog.new(text, , &block); end |
#setup ⇒ Object
164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/fidgit/states/gui_state.rb', line 164 def setup super @tool_tip = nil @mouse_over = nil # Element the mouse is hovering over. @mouse_down_on = Hash.new # Element that each button was pressed over. @mouse_down_pos = Hash.new # Position that each button was pressed down at. @drag_button = nil @dragging_element = nil @focus = nil @mouse_moved_at = Gosu::milliseconds nil end |
#show ⇒ Object
243 244 245 246 |
# File 'lib/fidgit/states/gui_state.rb', line 243 def show $window.game_state_manager.push self unless $window.game_state_manager.game_states.include? self nil end |
#show_menu(menu) ⇒ Object
Set the menu pane to be displayed.
202 203 204 205 206 207 |
# File 'lib/fidgit/states/gui_state.rb', line 202 def () if @menu @menu = nil end |
#t(*args) ⇒ Object
Internationalisation helper.
94 |
# File 'lib/fidgit/states/gui_state.rb', line 94 def t(*args); I18n.t(*args); end |
#tool_tip_delay ⇒ Object
Delay, in ms, before a tool-tip will appear.
32 33 34 |
# File 'lib/fidgit/states/gui_state.rb', line 32 def tool_tip_delay 500 # TODO: configure this. end |
#unset_mouse_over ⇒ Object
Called by active elements when they are disabled.
193 194 195 196 |
# File 'lib/fidgit/states/gui_state.rb', line 193 def unset_mouse_over @mouse_over.publish :leave if @mouse_over @mouse_over = nil end |
#update ⇒ Object
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/fidgit/states/gui_state.rb', line 102 def update cursor.update @tool_tip.update if @tool_tip @menu.update if @menu @container.update # Check menu first, then other elements. new_mouse_over = @menu.hit_element(cursor.x, cursor.y) if @menu new_mouse_over = @container.hit_element(cursor.x, cursor.y) unless new_mouse_over if new_mouse_over new_mouse_over.publish :enter if new_mouse_over != @mouse_over new_mouse_over.publish :hover, cursor.x, cursor.y end @mouse_over.publish :leave if @mouse_over and new_mouse_over != @mouse_over @mouse_over = new_mouse_over # Check if the mouse has moved, and no menu is shown, so we can show a tooltip. if [cursor.x, cursor.y] == @last_cursor_pos and (not @menu) if @mouse_over and (Gosu::milliseconds - @mouse_moved_at) > tool_tip_delay if text = @mouse_over.tip and not text.empty? @tool_tip ||= ToolTip.new @tool_tip.text = text @tool_tip.x = cursor.x @tool_tip.y = cursor.y + cursor.height # Place the tip beneath the cursor. else @tool_tip = nil @mouse_moved_at = Gosu::milliseconds end end else @tool_tip = nil @mouse_moved_at = Gosu::milliseconds end # The element that grabs input. @active_element = @dragging_element || @focus || @mouse_over @last_cursor_pos = [cursor.x, cursor.y] super end |
#write_tree ⇒ Object
147 148 149 150 151 152 153 |
# File 'lib/fidgit/states/gui_state.rb', line 147 def write_tree puts "=== #{self.class} ===" indent = " " @container.write_tree(indent) @menu.write_tree(indent) if @menu @tool_tip.write_tree(indent) if @tool_tip end |