OSDN Git Service

fix model
[pettanr/pettanr.git] / app / models / speech.rb
index fc1ff5b..f42b2a7 100644 (file)
@@ -1,3 +1,108 @@
-class Speech < ActiveRecord::Base
-  belongs_to :balloon
+class Speech < Peta::Content
+  load_manifest
+  belongs_to :speech_balloon
+  belongs_to :writing_format
+  
+  validates :speech_balloon_id, :numericality => {:allow_blank => true}
+  validates :writing_format_id, :presence => true, :numericality => true, :existence => {:both => false}
+  validates :font_size, :presence => true, :numericality => {:only_integer => false}
+  validates :text_align, :presence => true, :numericality => true, :inclusion => { :in => 0..3 }
+  validates :fore_color, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 0x1000000}
+  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 :quotes, :length => {:maximum => 15}, :quotes_even => true
+  validates :settings, :extend_speech => true
+  
+  @@text_align_texts = ['left', 'left', 'right', 'center']
+  
+  def supply_default
+    self.x = 0
+    self.y = 0
+    self.width = 100
+    self.height = 100
+  end
+  
+  def visible? operators
+    return false unless super
+    self.owner_model.visible? operators
+  end
+  
+  def symbol_option
+    self.get_parent.speech_balloon_template.symbol_option
+  end
+  
+  def outer_style
+    {
+      'top' => self.y, 'left' => self.x, 
+      'width' => self.width, 'height' => self.height
+    }
+  end
+  
+  def inner_style
+    {
+      'font-size' => self.font_size.to_s + 'em',
+      'text-align' => self.text_align_text, 
+      'color' => '#' + format("%06x", self.fore_color)
+    }
+  end
+  
+  def text_align_text
+    @@text_align_texts[self.text_align]
+  end
+  
+  def self.list_where
+    'panels.publish > 0'
+  end
+  
+  def self.list_order
+    'speeches.updated_at desc'
+  end
+  
+  def self.list_opt
+    {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {}} }
+  end
+  
+  def self.list_json_opt
+    {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :balloon => {}, :speech_balloon_template => {} }}}}
+  end
+  
+  def self.show_opt
+    {:include => {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {} }}}
+  end
+  
+  def self.show_json_opt
+    {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :balloon => {}, :speech_balloon_template => {} }}}}
+  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 speech_attributes
+    {'speech_attributes' => speech_attributes}
+  end
+  
+  def writing_format_engine_model
+    self.writing_format.engine_model
+  end
+  
+  def scenario
+    self.writing_format_engine_model.render self.content
+  end
+  
+  def plain_scenario
+    self.content + "\n"
+  end
+  
+  def feed
+    ERB::Util.html_escape(self.content)
+  end
+  
 end