Sha256: 36f0f29502857d5ce1039d995648dcadb33c3d59b863d24c9782ab9a6e01bf9d

Contents?: true

Size: 1.36 KB

Versions: 6

Compression:

Stored size: 1.36 KB

Contents

class UIColor
  def uicolor ; self ; end

  def red
    _sugarcube_colors && _sugarcube_colors[:red]
  end

  def cgcolor
    self.CGColor
  end

  def green
    _sugarcube_colors && _sugarcube_colors[:green]
  end

  def blue
    _sugarcube_colors && _sugarcube_colors[:blue]
  end

  def alpha
    _sugarcube_colors && _sugarcube_colors[:alpha]
  end

  # returns the closest css name
  def css_name
    found = Symbol.css_colors.map { |key, val| [key, _sugarcube_color_compare(self, val.uicolor)] }.inject{|c1,c2| c1[1] < c2[1] ? c1 : c2 }
    threshold = 0.03
    if found[1] > 0.03
      nil
    else
      found[0]
    end
  end

private
  def _sugarcube_color_compare(c1, c2)
    return (c1.red - c2.red).abs + (c1.green - c2.green).abs + (c1.blue - c2.blue).abs
  end

  def _sugarcube_colors
    @color ||= begin
      red = Pointer.new(:float)
      green = Pointer.new(:float)
      blue = Pointer.new(:float)
      white = Pointer.new(:float)
      alpha = Pointer.new(:float)
      if self.getRed(red, green:green, blue:blue, alpha:alpha)
        {
          red: red[0],
          green: green[0],
          blue: blue[0],
          alpha: alpha[0],
        }
      elsif self.getWhite(white, alpha:alpha)
        {
          red: white[0],
          green: white[0],
          blue: white[0],
          alpha: alpha[0],
        }
      else
        nil
      end
    end
  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sugarcube-0.16.2 lib/sugarcube/uicolor.rb
sugarcube-0.16 lib/sugarcube/uicolor.rb
sugarcube-0.15.5 lib/sugarcube/uicolor.rb
sugarcube-0.15.3 lib/sugarcube/uicolor.rb
sugarcube-0.15.0 lib/sugarcube/uicolor.rb
sugarcube-0.14.0 lib/sugarcube/uicolor.rb