Compare commits

7 Commits

13 changed files with 197 additions and 92 deletions

View File

@@ -27,7 +27,6 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = %w[lib assets] spec.require_paths = %w[lib assets]
spec.add_dependency "clipboard", "~> 1.3"
spec.add_dependency "excon", "~> 0.88" spec.add_dependency "excon", "~> 0.88"
spec.add_dependency "gosu", "~> 1.1" spec.add_dependency "gosu", "~> 1.1"
spec.add_dependency "gosu_more_drawables", "~> 0.3" spec.add_dependency "gosu_more_drawables", "~> 0.3"

View File

@@ -8,7 +8,6 @@ end
require "json" require "json"
require "excon" require "excon"
require "gosu_more_drawables" require "gosu_more_drawables"
require "clipboard"
require_relative "cyberarm_engine/version" require_relative "cyberarm_engine/version"
require_relative "cyberarm_engine/stats" require_relative "cyberarm_engine/stats"

View File

@@ -8,8 +8,11 @@ module CyberarmEngine
window.current_state window.current_state
end end
def previous_state def previous_state(state = nil)
window.previous_state raise "Only available for CyberarmEngine::GameState and subclasses" unless is_a?(CyberarmEngine::GameState) || state.is_a?(CyberarmEngine::GameState)
i = window.states.index(state || self)
window.states[i - 1] unless (i - 1).negative?
end end
def pop_state def pop_state

View File

@@ -22,19 +22,21 @@ module CyberarmEngine
else else
@color = Gosu::Color::WHITE @color = Gosu::Color::WHITE
end end
@mode = options[:mode] || :default @mode = options[:mode] || :default
@alignment = options[:alignment] || nil @alignment = options[:alignment] || nil
@border = options[:border] @border = options[:border]
@border = true if options[:border].nil? @border = true if options[:border].nil?
@border_size = options[:border_size] || 1 @border_size = options[:border_size] || 1
@border_alpha = options[:border_alpha] || 30 @border_alpha = options[:border_alpha] || 30
@border_color = options[:border_color] @border_color = options[:border_color] || Gosu::Color::BLACK
@shadow = options[:shadow] @shadow = options[:shadow]
@shadow_size = options[:shadow_size] || 2 @shadow_size = options[:shadow_size] || 2
@shadow_alpha = options[:shadow_alpha] || 30 @shadow_alpha = options[:shadow_alpha] || 30
@shadow_color = options[:shadow_color] @shadow_color = options[:shadow_color] || Gosu::Color::BLACK
@static = options[:static] || (options[:static].nil? || options[:static] == false ? false : true)
@textobject = check_cache(@size, @font) @textobject = check_cache(@size, @font)
@@ -84,46 +86,49 @@ module CyberarmEngine
end end
def text=(string) def text=(string)
@rendered_border = nil invalidate_cache! if @text != string
@text = string @text = string
end end
def factor_x=(n) def factor_x=(n)
@rendered_border = nil invalidate_cache! if @factor_x != n
@factor_x = n @factor_x = n
end end
def factor_y=(n) def factor_y=(n)
@rendered_border = nil invalidate_cache! if @factor_y != n
@factor_y = n @factor_y = n
end end
def color=(color) def color=(color)
@rendered_border = nil old_color = @color
if color if color
@color = color.is_a?(Gosu::Color) ? color : Gosu::Color.new(color) @color = color.is_a?(Gosu::Color) ? color : Gosu::Color.new(color)
else else
raise "color cannot be nil" raise "color cannot be nil"
end end
invalidate_cache! if old_color != color
end end
def border=(boolean) def border=(boolean)
@rendered_border = nil invalidate_cache! if @border != boolean
@border = boolean @border = boolean
end end
def border_size=(n) def border_size=(n)
@rendered_border = nil invalidate_cache! if @border_size != n
@border_size = n @border_size = n
end end
def border_alpha=(n) def border_alpha=(n)
@rendered_border = nil invalidate_cache! if @border_alpha != n
@border_alpha = n @border_alpha = n
end end
def border_color=(n) def border_color=(n)
@rendered_border = nil invalidate_cache! if @border_color != n
@border_color = n @border_color = n
end end
@@ -132,11 +137,27 @@ module CyberarmEngine
end end
def text_width(text = @text) def text_width(text = @text)
textobject.text_width(text) + @border_size + @shadow_size spacing = 0
spacing += @border_size if @border
spacing += @shadow_size if @shadow
if text == @text && @static && @gosu_cached_text_image
@gosu_cached_text_image&.width + spacing
else
textobject.text_width(text) + spacing
end
end end
def markup_width(text = @text) def markup_width(text = @text)
textobject.markup_width(text) + @border_size + @shadow_size spacing = 0
spacing += @border_size if @border
spacing += @shadow_size if @shadow
if text == @text && @static && @gosu_cached_text_image
@gosu_cached_text_image&.width + spacing
else
textobject.markup_width(text) + spacing
end
end end
def height(text = @text) def height(text = @text)
@@ -148,39 +169,72 @@ module CyberarmEngine
end end
def draw(method = :draw_markup) def draw(method = :draw_markup)
if @border && !ARGV.join.include?("--no-border") if @static
border_alpha = @color.alpha <= 30 ? @color.alpha : @border_alpha if @border && !@cached_text_border_image
border_color = @border_color || Gosu::Color.rgba(@color.red, @color.green, @color.blue, _x = @border_size
border_alpha) _y = @border_size
white = Gosu::Color::WHITE _width = method == :draw_markup ? text_width : markup_width
img = Gosu::Image.send(:"from_#{method.to_s.split("_").last}", @text, @size, font: @font)
_x = @border_size @cached_text_border_image = Gosu.render((_width + (@border_size * 2)).ceil, (height + (@border_size * 2)).ceil) do
_y = @border_size img.draw(-_x, 0, @z, @factor_x, @factor_y, @border_color, @mode)
_width = method == :draw_markup ? text_width : markup_width img.draw(-_x, -_y, @z, @factor_x, @factor_y, @border_color, @mode)
@rendered_border ||= Gosu.render((_width + (border_size * 2)).ceil, (height + (@border_size * 2)).ceil) do img.draw(0, -_y, @z, @factor_x, @factor_y, @border_color, @mode)
@textobject.send(method, @text, _x - @border_size, _y, @z, @factor_x, @factor_y, white, @mode) img.draw(_x, -_y, @z, @factor_x, @factor_y, @border_color, @mode)
@textobject.send(method, @text, _x - @border_size, _y - @border_size, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x, _y - @border_size, @z, @factor_x, @factor_y, white, @mode) img.draw(_x, 0, @z, @factor_x, @factor_y, @border_color, @mode)
@textobject.send(method, @text, _x + @border_size, _y - @border_size, @z, @factor_x, @factor_y, white, @mode) img.draw(_x, _y, @z, @factor_x, @factor_y, @border_color, @mode)
@textobject.send(method, @text, _x, _y + @border_size, @z, @factor_x, @factor_y, white, @mode) img.draw(0, _y, @z, @factor_x, @factor_y, @border_color, @mode)
@textobject.send(method, @text, _x - @border_size, _y + @border_size, @z, @factor_x, @factor_y, white, @mode) img.draw(-_x, _y, @z, @factor_x, @factor_y, @border_color, @mode)
end
@textobject.send(method, @text, _x + @border_size, _y, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x + @border_size, _y + @border_size, @z, @factor_x, @factor_y, white, @mode)
end end
@rendered_border.draw(@x - @border_size, @y - @border_size, @z, @factor_x, @factor_y, border_color) @cached_text_shadow_image ||= Gosu::Image.send(:"from_#{method.to_s.split("_").last}", @text, @size, font: @font) if @shadow
end
if @shadow @gosu_cached_text_image ||= Gosu::Image.send(:"from_#{method.to_s.split("_").last}", @text, @size, font: @font)
shadow_color = @shadow_color || Gosu::Color.rgba(@color.red, @color.green, @color.blue, @shadow_alpha)
@textobject.send(method, @text, @x + @shadow_size, @y + @shadow_size, @z, @factor_x, @factor_y, shadow_color, @mode)
end
@textobject.send(method, @text, @x, @y, @z, @factor_x, @factor_y, @color, @mode) @cached_text_border_image.draw(@x, @y, @z, @factor_x, @factor_y, @border_color, @mode) if @border
@cached_text_shadow_image.draw(@x + @shadow_size, @y + @shadow_size, @z, @factor_x, @factor_y, @shadow_color, @mode) if @shadow
@gosu_cached_text_image.draw(@x, @y, @z, @factor_x, @factor_y, @color, @mode)
else
if @border && !ARGV.join.include?("--no-border")
border_alpha = @color.alpha <= 30 ? @color.alpha : @border_alpha
border_color = @border_color || Gosu::Color.rgba(@color.red, @color.green, @color.blue,
border_alpha)
white = Gosu::Color::WHITE
_x = @border_size
_y = @border_size
_width = method == :draw_markup ? text_width : markup_width
@cached_text_border_image ||= Gosu.render((_width + (border_size * 2)).ceil, (height + (@border_size * 2)).ceil) do
@textobject.send(method, @text, _x - @border_size, _y, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x - @border_size, _y - @border_size, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x, _y - @border_size, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x + @border_size, _y - @border_size, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x, _y + @border_size, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x - @border_size, _y + @border_size, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x + @border_size, _y, @z, @factor_x, @factor_y, white, @mode)
@textobject.send(method, @text, _x + @border_size, _y + @border_size, @z, @factor_x, @factor_y, white, @mode)
end
@cached_text_border_image.draw(@x - @border_size, @y - @border_size, @z, @factor_x, @factor_y, border_color)
end
if @shadow
shadow_color = @shadow_color || Gosu::Color.rgba(@color.red, @color.green, @color.blue, @shadow_alpha)
@textobject.send(method, @text, @x + @shadow_size, @y + @shadow_size, @z, @factor_x, @factor_y, shadow_color, @mode)
end
@textobject.send(method, @text, @x, @y, @z, @factor_x, @factor_y, @color, @mode)
end
end end
def alpha=(n) def alpha=(n)
@@ -193,5 +247,11 @@ module CyberarmEngine
def update def update
end end
def invalidate_cache!
@cached_text_border_image = nil
@cached_text_shadow_image = nil
@gosu_cached_text_image = nil
end
end end
end end

View File

@@ -447,18 +447,10 @@ module CyberarmEngine
end end
if @parent && @style.fill # Handle fill behavior if @parent && @style.fill # Handle fill behavior
fill_siblings = @parent.children.select { |c| c.style.fill }.count.to_f # include self since we're dividing
if dimension == :width && @parent.is_a?(Flow) if dimension == :width && @parent.is_a?(Flow)
space_available_width = ((@parent.content_width - (@parent.children.reject { |c| c.style.fill }).map(&:outer_width).sum) / fill_siblings)
space_available_width = space_available_width.nan? ? 0 : space_available_width.floor # The parent element might not have its dimensions, yet.
return space_available_width - noncontent_width return space_available_width - noncontent_width
elsif dimension == :height && @parent.is_a?(Stack) elsif dimension == :height && @parent.is_a?(Stack)
space_available_height = ((@parent.content_height - (@parent.children.reject { |c| c.style.fill }).map(&:outer_height).sum) / fill_siblings)
space_available_height = space_available_height.nan? ? 0 : space_available_height.floor # The parent element might not have its dimensions, yet.
return space_available_height - noncontent_height return space_available_height - noncontent_height
end end
@@ -470,6 +462,22 @@ module CyberarmEngine
new_size new_size
end end
def space_available_width
# TODO: This may get expensive if there are a lot of children, probably should cache it somehow
fill_siblings = @parent.children.select { |c| c.style.fill }.count.to_f # include self since we're dividing
available_space = ((@parent.content_width - (@parent.children.reject { |c| c.style.fill }).map(&:outer_width).sum) / fill_siblings)
(available_space.nan? || available_space.infinite?) ? 0 : available_space.floor # The parent element might not have its dimensions, yet.
end
def space_available_height
# TODO: This may get expensive if there are a lot of children, probably should cache it somehow
fill_siblings = @parent.children.select { |c| c.style.fill }.count.to_f # include self since we're dividing
available_space = ((@parent.content_height - (@parent.children.reject { |c| c.style.fill }).map(&:outer_height).sum) / fill_siblings)
(available_space.nan? || available_space.infinite?) ? 0 : available_space.floor # The parent element might not have its dimensions, yet.
end
def background=(_background) def background=(_background)
@style.background_canvas.background = _background @style.background_canvas.background = _background
update_background update_background

View File

@@ -136,7 +136,31 @@ module CyberarmEngine
@height = _height || (@children.map { |c| c.y + c.outer_height }.max || 0).floor @height = _height || (@children.map { |c| c.y + c.outer_height }.max || 0).floor
end end
# Move child to parent after positioning # FIXME: Correctly handle alignment when element has siblings
# FIXME: Enable alignment for any element, not just containers
if @style.v_align
space = space_available_height
case @style.v_align
when :center
@y = parent.height / 2 - height / 2
when :bottom
@y = parent.height - height
end
end
if @style.h_align
space = space_available_width
case @style.h_align
when :center
@x = parent.width / 2 - width / 2
when :right
@x = parent.width - width
end
end
# Move children to parent after positioning
@children.each do |child| @children.each do |child|
child.x += (@x + @style.border_thickness_left) - style.margin_left child.x += (@x + @style.border_thickness_left) - style.margin_left
child.y += (@y + @style.border_thickness_top) - style.margin_top child.y += (@y + @style.border_thickness_top) - style.margin_top
@@ -172,7 +196,6 @@ module CyberarmEngine
end end
def fits_on_line?(element) # Flow def fits_on_line?(element) # Flow
p [@options[:id], @width] if @options[:id]
@current_position.x + element.outer_width <= max_width && @current_position.x + element.outer_width <= max_width &&
@current_position.x + element.outer_width <= window.width @current_position.x + element.outer_width <= window.width
end end
@@ -182,7 +205,6 @@ module CyberarmEngine
element.y = element.style.margin_top + @current_position.y element.y = element.style.margin_top + @current_position.y
@current_position.x += element.outer_width @current_position.x += element.outer_width
@current_position.x = @style.margin_left if @current_position.x >= max_width
end end
def tallest_neighbor(querier, _y_position) # Flow def tallest_neighbor(querier, _y_position) # Flow
@@ -195,14 +217,14 @@ module CyberarmEngine
response response
end end
def position_on_next_line(child) # Flow def position_on_next_line(element) # Flow
@current_position.x = @style.margin_left @current_position.x = @style.margin_left + @style.padding_left
@current_position.y += tallest_neighbor(child, @current_position.y).outer_height @current_position.y += tallest_neighbor(element, @current_position.y).outer_height
child.x = child.style.margin_left + @current_position.x element.x = element.style.margin_left + @current_position.x
child.y = child.style.margin_top + @current_position.y element.y = element.style.margin_top + @current_position.y
@current_position.x += child.outer_width @current_position.x += element.outer_width
end end
def move_to_next_line(element) # Stack def move_to_next_line(element) # Stack

View File

@@ -1,6 +1,20 @@
module CyberarmEngine module CyberarmEngine
class Element class Element
class EditLine < Button class EditLine < Button
class TextInput < Gosu::TextInput
def filter=(filter)
@filter = filter
end
def filter(text_in)
if @filter
@filter.call(text_in)
else
text_in
end
end
end
def initialize(text, options = {}, block = nil) def initialize(text, options = {}, block = nil)
@filter = options.delete(:filter) @filter = options.delete(:filter)
super(text, options, block) super(text, options, block)
@@ -14,18 +28,11 @@ module CyberarmEngine
@caret_last_interval = Gosu.milliseconds @caret_last_interval = Gosu.milliseconds
@show_caret = true @show_caret = true
@text_input = Gosu::TextInput.new @text_input = TextInput.new
@text_input.filter = @filter
@text_input.text = text @text_input.text = text
@last_text_value = text @last_text_value = text
if @filter && @filter.respond_to?(:call)
@text_input.instance_variable_set(:@filter, @filter)
def @text_input.filter(text_in)
@filter.call(text_in)
end
end
@offset_x = 0 @offset_x = 0
@offset_y = 0 @offset_y = 0
@@ -98,20 +105,20 @@ module CyberarmEngine
@text_input.caret_pos = @text_input.text.length @text_input.caret_pos = @text_input.text.length
when Gosu::KB_C when Gosu::KB_C
if @text_input.selection_start < @text_input.caret_pos Gosu.clipboard = if @text_input.selection_start < @text_input.caret_pos
Clipboard.copy(@text_input.text[@text_input.selection_start...@text_input.caret_pos]) @text_input.text[@text_input.selection_start...@text_input.caret_pos]
else else
Clipboard.copy(@text_input.text[@text_input.caret_pos...@text_input.selection_start]) @text_input.text[@text_input.caret_pos...@text_input.selection_start]
end end
when Gosu::KB_X when Gosu::KB_X
chars = @text_input.text.chars chars = @text_input.text.chars
if @text_input.selection_start < @text_input.caret_pos if @text_input.selection_start < @text_input.caret_pos
Clipboard.copy(@text_input.text[@text_input.selection_start...@text_input.caret_pos]) Gosu.clipboard = @text_input.text[@text_input.selection_start...@text_input.caret_pos]
chars.slice!(@text_input.selection_start, @text_input.caret_pos) chars.slice!(@text_input.selection_start, @text_input.caret_pos)
else else
Clipboard.copy(@text_input.text[@text_input.caret_pos...@text_input.selection_start]) Gosu.clipboard = @text_input.text[@text_input.caret_pos...@text_input.selection_start]
chars.slice!(@text_input.caret_pos, @text_input.selection_start) chars.slice!(@text_input.caret_pos, @text_input.selection_start)
end end
@@ -119,10 +126,9 @@ module CyberarmEngine
when Gosu::KB_V when Gosu::KB_V
if instance_of?(EditLine) # EditLine assumes a single line of text if instance_of?(EditLine) # EditLine assumes a single line of text
@text_input.text = @text_input.text.insert(@text_input.caret_pos, @text_input.insert_text(Gosu.clipboard.gsub("\n", ""))
Clipboard.paste.encode("UTF-8").gsub("\n", ""))
else else
@text_input.text = @text_input.text.insert(@text_input.caret_pos, Clipboard.paste.encode("UTF-8")) @text_input.insert_text(Gosu.clipboard)
end end
end end
end end
@@ -180,7 +186,7 @@ module CyberarmEngine
if @type == :password if @type == :password
@text.x + @text.width(default(:password_character) * @text_input.text[0...@text_input.send(method)].length) @text.x + @text.width(default(:password_character) * @text_input.text[0...@text_input.send(method)].length)
else else
@text.x + @text.width(@text_input.text[0...@text_input.send(method)]) @text.x + @text.width(@text_input.text[0...@text_input.send(method)]) - @style.border_thickness_left
end end
end end

View File

@@ -13,7 +13,7 @@ module CyberarmEngine
@style.background_canvas.background = default(:background) @style.background_canvas.background = default(:background)
# TODO: "Clean Up" into own class? # TODO: "Clean Up" into own class?
@menu = Stack.new(parent: parent, width: @options[:width], theme: @options[:theme]) @menu = Stack.new(parent: self, theme: @options[:theme])
@menu.define_singleton_method(:recalculate_menu) do @menu.define_singleton_method(:recalculate_menu) do
@x = @__list_box.x @x = @__list_box.x
@y = @__list_box.y + @__list_box.height @y = @__list_box.y + @__list_box.height
@@ -64,6 +64,8 @@ module CyberarmEngine
def show_menu def show_menu
@menu.clear @menu.clear
@menu.style.width = width
@items.each do |item| @items.each do |item|
next if item == self.value next if item == self.value

View File

@@ -42,7 +42,7 @@ module CyberarmEngine
@step_size = @options[:step] || 0.1 @step_size = @options[:step] || 0.1
@value = @options[:value] || (@range.first + @range.last) / 2 @value = @options[:value] || (@range.first + @range.last) / 2
@handle = Handle.new("", parent: self, width: 8, height: 1.0) { close } @handle = Handle.new("", parent: self, theme: options[:theme], width: 8, height: 1.0) { close }
add(@handle) add(@handle)
end end
@@ -61,10 +61,10 @@ module CyberarmEngine
end end
def position_handle def position_handle
@handle.x = @x + @style.padding_left + @style.border_thickness_left + @handle.x = @x + @handle.style.margin_left + @style.padding_left + @style.border_thickness_left +
((content_width - @handle.outer_width) * (@value - @range.min) / (@range.max - @range.min).to_f) ((content_width - @handle.outer_width) * (@value - @range.min) / (@range.max - @range.min).to_f)
@handle.y = @y + @style.border_thickness_top + @style.padding_top @handle.y = @y + @handle.style.margin_top + @style.border_thickness_top + @style.padding_top
end end
def draw def draw

View File

@@ -7,6 +7,7 @@ module CyberarmEngine
@text = Text.new( @text = Text.new(
text, font: @options[:font], z: @z, color: @options[:color], text, font: @options[:font], z: @z, color: @options[:color],
size: @options[:text_size], shadow: @options[:text_shadow], size: @options[:text_size], shadow: @options[:text_shadow],
static: @options[:text_static],
shadow_size: @options[:text_shadow_size], shadow_size: @options[:text_shadow_size],
shadow_color: @options[:text_shadow_color], shadow_color: @options[:text_shadow_color],
border: @options[:text_border], border: @options[:text_border],
@@ -64,6 +65,10 @@ module CyberarmEngine
end end
end end
if is_a?(Button)
@text.y = @y + height / 2 - @text.height / 2
end
update_background update_background
end end

View File

@@ -171,6 +171,9 @@ module CyberarmEngine
end end
@focus.button_up(id) if @focus.respond_to?(:button_up) @focus.button_up(id) if @focus.respond_to?(:button_up)
# Prevents menu from popping back up if the listbox is clicked to hide it.
@hid_menu_for = nil
end end
def tool_tip_delay def tool_tip_delay
@@ -185,7 +188,7 @@ module CyberarmEngine
@focus = nil @focus = nil
end end
if @mouse_over if @mouse_over && @hid_menu_for != @mouse_over
@mouse_down_position[button] = Vector.new(window.mouse_x, window.mouse_y) @mouse_down_position[button] = Vector.new(window.mouse_x, window.mouse_y)
@mouse_down_on[button] = @mouse_over @mouse_down_on[button] = @mouse_over
@@ -199,7 +202,7 @@ module CyberarmEngine
def redirect_released_mouse_button(button) def redirect_released_mouse_button(button)
hide_menu if @menu && (@menu == @mouse_over) || (@mouse_over&.parent == @menu) hide_menu if @menu && (@menu == @mouse_over) || (@mouse_over&.parent == @menu)
if @mouse_over if @mouse_over && @hid_menu_for != @mouse_over
@mouse_over.publish(:"released_#{button}_mouse_button", window.mouse_x, window.mouse_y) @mouse_over.publish(:"released_#{button}_mouse_button", window.mouse_x, window.mouse_y)
if @mouse_over == @mouse_down_on[button] if @mouse_over == @mouse_down_on[button]
@mouse_over.publish(:"clicked_#{button}_mouse_button", window.mouse_x, @mouse_over.publish(:"clicked_#{button}_mouse_button", window.mouse_x,
@@ -255,6 +258,9 @@ module CyberarmEngine
end end
def hide_menu def hide_menu
return unless @menu
@hid_menu_for = @menu.parent
@menu = nil @menu = nil
end end

View File

@@ -102,7 +102,8 @@ module CyberarmEngine
caret_color: Gosu::Color::WHITE, caret_color: Gosu::Color::WHITE,
caret_interval: 500, caret_interval: 500,
selection_color: Gosu::Color.rgba(255, 128, 50, 200), selection_color: Gosu::Color.rgba(255, 128, 50, 200),
text_align: :left text_align: :left,
text_static: false # static text causes issues correctly displaying caret position
}, },
Image: { # < Element Image: { # < Element

View File

@@ -139,12 +139,6 @@ module CyberarmEngine
@states.last @states.last
end end
def previous_state
if @states.size > 1 && (state = @states[@states.size - 2])
state
end
end
def pop_state def pop_state
@states.pop @states.pop
end end