OSDN Git Service

t#:
[pettanr/pettanr.git] / app / models / balloon.rb
index eebf969..b6a4bbb 100644 (file)
@@ -1,18 +1,88 @@
-class Balloon < ActiveRecord::Base
+class Balloon < Peta::Content
+  load_manifest
   belongs_to :speech_balloon
   belongs_to :system_picture
   
-  validates :speech_balloon_id, :presence => true, :numericality => true, :existence => true
-  validates :system_picture_id, :presence => true, :numericality => true, :existence => true
+  validates :speech_balloon_id, :numericality => {:allow_blank => true}
+  validates :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false}
   validates :x, :presence => true, :numericality => true
   validates :y, :presence => true, :numericality => true
   validates :width, :presence => true, :numericality => true, :natural_number => true
   validates :height, :presence => true, :numericality => true, :natural_number => true
+  validates :r, :presence => true, :numericality => true
 #  validates :caption, :presence => true
-#  validates :settings, :presence => true
+  validates :settings, :extend_balloon => true
 
   def url
     '/system_pictures/' + self.system_picture.filename
   end
   
+  def visible? operators
+    return false unless super
+    self.owner_model.visible? operators
+  end
+  
+  def supply_default
+    self.x = 0
+    self.y = 0
+    self.width = 100
+    self.height = 100
+    self.r = 0
+self.system_picture_id = 1
+  end
+  
+  def symbol_option
+    self.speech_balloon.speech_balloon_template.symbol_option
+  end
+  
+  def self.list_where
+    'panels.publish > 0'
+  end
+  
+  def self.list_order
+    'balloons.updated_at desc'
+  end
+  
+  def self.list_opt
+    {:speech_balloon => {:panel => {:author => {}}, :speech => {}, :speech_balloon_template => {} }}
+  end
+  
+  def self.list_json_opt
+    {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :speech => {}, :speech_balloon_template => {} }}}}
+  end
+  
+  def self.show_opt
+    {:include => {:speech_balloon => {:panel => {:author => {}}, :speech => {}, :speech_balloon_template => {} }}}
+  end
+  
+  def self.show_json_opt
+    {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :speech => {}, :speech_balloon_template => {} }}}}
+  end
+  
+  def style
+    {
+      'width' => self.width.to_s + 'px','height' => self.height.to_s + 'px',
+      'top' => self.y.to_s + 'px','left' => self.x.to_s + 'px'
+    }
+  end
+  
+  def copy_attributes
+    r = self.attributes
+    r.delete 'id'
+    r.delete 'speech_balloon_id'
+    r.delete 'created_at'
+    r.delete 'updated_at'
+    r
+  end
+  
+  def self.panelize balloon_attributes
+    {'balloon_attributes' => balloon_attributes}
+  end
+  
+  def scenario
+  end
+  
+  def plain_scenario
+  end
+  
 end