lib/cyberarm_engine/text.rb in cyberarm_engine-0.14.0 vs lib/cyberarm_engine/text.rb in cyberarm_engine-0.15.0
- old
+ new
@@ -3,43 +3,44 @@
CACHE = {}
attr_accessor :x, :y, :z, :size, :options
attr_reader :text, :textobject, :factor_x, :factor_y, :color, :shadow, :shadow_size, :shadow_alpha, :shadow_color
- def initialize(text, options={})
+ def initialize(text, options = {})
@text = text.to_s || ""
@options = options
@size = options[:size] || 18
@font = options[:font] || Gosu.default_font_name
@x = options[:x] || 0
@y = options[:y] || 0
@z = options[:z] || 1025
@factor_x = options[:factor_x] || 1
@factor_y = options[:factor_y] || 1
@color = options[:color] || Gosu::Color::WHITE
- @alignment= options[:alignment] || nil
+ @mode = options[:mode] || :default
+ @alignment = options[:alignment] || nil
@shadow = true if options[:shadow] == true
@shadow = false if options[:shadow] == false
- @shadow = true if options[:shadow] == nil
- @shadow_size = options[:shadow_size] ? options[:shadow_size] : 1
- @shadow_alpha= options[:shadow_alpha] ? options[:shadow_alpha] : 30
- @shadow_alpha= options[:shadow_alpha] ? options[:shadow_alpha] : 30
- @shadow_color= options[:shadow_color]
+ @shadow = true if options[:shadow].nil?
+ @shadow_size = options[:shadow_size] || 1
+ @shadow_alpha = options[:shadow_alpha] || 30
+ @shadow_alpha = options[:shadow_alpha] || 30
+ @shadow_color = options[:shadow_color]
@textobject = check_cache(@size, @font)
if @alignment
case @alignment
when :left
- @x = 0+BUTTON_PADDING
+ @x = 0 + BUTTON_PADDING
when :center
- @x = ($window.width/2)-(@textobject.text_width(@text)/2)
+ @x = ($window.width / 2) - (@textobject.text_width(@text) / 2)
when :right
- @x = $window.width-BUTTON_PADDING-@textobject.text_width(@text)
+ @x = $window.width - BUTTON_PADDING - @textobject.text_width(@text)
end
end
- return self
+ self
end
def check_cache(size, font_name)
available = false
font = nil
@@ -59,11 +60,11 @@
font = Gosu::Font.new(@size, name: @font)
CACHE[@size] = {} unless CACHE[@size].is_a?(Hash)
CACHE[@size][@font] = font
end
- return font
+ font
end
def text=(string)
@rendered_shadow = nil
@text = string
@@ -71,76 +72,89 @@
def factor_x=(n)
@rendered_shadow = nil
@factor_x = n
end
+
def factor_y=(n)
@rendered_shadow = nil
@factor_y = n
end
+
def color=(color)
@rendered_shadow = nil
@color = color
end
+
def shadow=(boolean)
@rendered_shadow = nil
@shadow = boolean
end
+
def shadow_size=(n)
@rendered_shadow = nil
@shadow_size = n
end
+
def shadow_alpha=(n)
@rendered_shadow = nil
@shadow_alpha = n
end
+
def shadow_color=(n)
@rendered_shadow = nil
@shadow_color = n
end
def width(text = @text)
textobject.text_width(text)
end
+ def markup_width(text = @text)
+ textobject.markup_width(text)
+ end
+
def height(text = @text)
- text.lines.count > 0 ? (text.lines.count) * textobject.height : @textobject.height
+ text.lines.count > 0 ? text.lines.count * textobject.height : @textobject.height
end
- def draw
+ def draw(method = :draw_markup)
if @shadow && !ARGV.join.include?("--no-shadow")
shadow_alpha = @color.alpha <= 30 ? @color.alpha : @shadow_alpha
- shadow_color = @shadow_color ? @shadow_color : Gosu::Color.rgba(@color.red, @color.green, @color.blue, shadow_alpha)
+ shadow_color = @shadow_color || Gosu::Color.rgba(@color.red, @color.green, @color.blue,
+ shadow_alpha)
+ white = Gosu::Color::WHITE
_x = @shadow_size
_y = @shadow_size
- @rendered_shadow ||= Gosu.render((self.width+(shadow_size*2)).ceil, (self.height+(@shadow_size*2)).ceil) do
- @textobject.draw_markup(@text, _x-@shadow_size, _y, @z)
- @textobject.draw_markup(@text, _x-@shadow_size, _y-@shadow_size, @z)
+ @rendered_shadow ||= Gosu.render((width + (shadow_size * 2)).ceil, (height + (@shadow_size * 2)).ceil) do
+ @textobject.send(method, @text, _x - @shadow_size, _y, @z, @factor_x, @factor_y, white, :add)
+ @textobject.send(method, @text, _x - @shadow_size, _y - @shadow_size, @z, @factor_x, @factor_y, white, :add)
- @textobject.draw_markup(@text, _x, _y-@shadow_size, @z, @factor_x)
- @textobject.draw_markup(@text, _x+@shadow_size, _y-@shadow_size, @z)
+ @textobject.send(method, @text, _x, _y - @shadow_size, @z, @factor_x, @factor_y, white, :add)
+ @textobject.send(method, @text, _x + @shadow_size, _y - @shadow_size, @z, @factor_x, @factor_y, white, :add)
- @textobject.draw_markup(@text, _x, _y+@shadow_size, @z)
- @textobject.draw_markup(@text, _x-@shadow_size, _y+@shadow_size, @z)
+ @textobject.send(method, @text, _x, _y + @shadow_size, @z, @factor_x, @factor_y, white, :add)
+ @textobject.send(method, @text, _x - @shadow_size, _y + @shadow_size, @z, @factor_x, @factor_y, white, :add)
- @textobject.draw_markup(@text, _x+@shadow_size, _y, @z)
- @textobject.draw_markup(@text, _x+@shadow_size, _y+@shadow_size, @z)
+ @textobject.send(method, @text, _x + @shadow_size, _y, @z, @factor_x, @factor_y, white, :add)
+ @textobject.send(method, @text, _x + @shadow_size, _y + @shadow_size, @z, @factor_x, @factor_y, white, :add)
end
- @rendered_shadow.draw(@x-@shadow_size, @y-@shadow_size, @z, @factor_x, @factor_y, shadow_color)
+ @rendered_shadow.draw(@x - @shadow_size, @y - @shadow_size, @z, @factor_x, @factor_y, shadow_color)
end
- @textobject.draw_markup(@text, @x, @y, @z, @factor_x, @factor_y, @color)
+ @textobject.send(method, @text, @x, @y, @z, @factor_x, @factor_y, @color, @mode)
end
def alpha=(n)
@color = Gosu::Color.rgba(@color.red, @color.green, @color.blue, n)
end
def alpha
@color.alpha
end
- def update; end
+ def update
+ end
end
end