OSDN Git Service

t#2334:add gc offset
[pettanr/pettanr.git] / app / models / ground_color.rb
index 7f1a3f0..5204a02 100644 (file)
@@ -6,6 +6,9 @@ class GroundColor < ActiveRecord::Base
   
   validates :panel_id, :numericality => {:allow_blank => true}
   validates :code, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 0x1000000}
+  validates :orientation, :presence => true, :numericality => true, :inclusion => {:in => 0..1}
+  validates :xy, :numericality => {:greater_than_or_equal_to => 0, :allow_blank => true}
+  validates :wh, :numericality => {:greater_than_or_equal_to => 0, :allow_blank => true}
   validates :z, :presence => true, :numericality => {:greater_than => 0}
   validates :t, :presence => true, :numericality => {:greater_than_or_equal_to => 0}
   
@@ -71,9 +74,49 @@ class GroundColor < ActiveRecord::Base
     self.panel.visible? roles
   end
   
+  def div_offset
+    xy ? xy : 0
+  end
+  
+  def div_size
+    wh ? wh : 100 - self.div_offset
+  end
+  
+  def div_x
+    if self.orientation == 0
+      0
+    else
+      self.div_offset
+    end
+  end
+  
+  def div_y
+    if self.orientation == 0
+      self.div_offset
+    else
+      0
+    end
+  end
+  
+  def div_width
+    if self.orientation == 0
+      100
+    else
+      self.div_size
+    end
+  end
+  
+  def div_height 
+    if self.orientation == 0
+      self.div_size
+    else
+      100
+    end
+  end
+  
   def opt_div_style spot = nil, opacity = 20
     o = (spot and spot != self) ? "opacity: #{opacity.to_f/100}; filter:alpha(opacity=#{opacity});" : ''
-    "position: absolute; width:#{self.get_panel.width}px; height:#{self.get_panel.height}px; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}"
+    "position: absolute; left:#{self.div_x}%; top:#{self.div_y}%; width:#{self.div_width}%; height:#{self.div_height}%; z-index:#{self.z}; background-color:##{format("%06x", self.code)}; #{o}"
   end
   
   def boost