OSDN Git Service

Merge branch 'v06' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / app / models / speech.rb
index 726f26d..2b33f65 100644 (file)
@@ -1,22 +1,39 @@
 class Speech < ActiveRecord::Base
+  include ElementPart
   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 :settings, :presence => true
+  validates :quotes, :length => {:maximum => 15}, :quotes_even => true
+  validates :settings, :extend_speech => true
+  
+  @@text_align_texts = ['left', 'left', 'right', 'center']
   
   before_validation :valid_encode
   
   def valid_encode
-    ['content', 'settings'].each do |a|
+    ['content', 'quotes', 'settings'].each do |a|
       next if attributes[a] == nil
       raise Pettanr::BadRequest unless attributes[a].valid_encoding?
     end
   end
   
+  def self.colum_structures
+    @@colum_structures ||= {
+      :fore_color => {
+        :helper => 'panels/color_helper'
+      }
+    }
+  end
+  
   def supply_default
     self.x = 0
     self.y = 0
@@ -34,53 +51,20 @@ class Speech < ActiveRecord::Base
     self.speech_balloon.panel.visible? roles
   end
   
-  def get_speech_balloon
-    self.speech_balloon
-  end
-  
-  def get_panel_id
-    if self.get_speech_balloon == nil or self.get_speech_balloon.panel == nil or self.get_speech_balloon.panel.new_record?
-      0
-    else
-      self.get_speech_balloon.panel.id
-    end
-  end
-  
-  def tag_id c = nil
-    'panel' + tag_panel_id + tag_element_type + tag_element_id + tag_element_part_type + tag_element_part_id + c.to_s
-  end
-  
-  def field_tag_id f
-    self.tag_id + f.to_s
-  end
-  
-  def tag_panel_id
-    self.get_panel_id.to_s
-  end
-  
-  def tag_element_id
-    r = if self.get_speech_balloon == nil or self.get_speech_balloon.new_record?
-      0
-    else
-      self.get_speech_balloon.panel.id
-    end
-    r.to_s
-  end
-  
-  def tag_element_type
-    'speech_balloon'
+  def symbol_option
+    self.get_parent.speech_balloon_template.symbol_option
   end
   
-  def tag_element_part_id
-    self.new_record? ? '0' : self.id.to_s
+  def get_parent
+    self.speech_balloon || @new_parent
   end
   
   def tag_element_part_type
     'speech'
   end
   
-  def field_tree f
-    'panels-' + self.tag_panel_id + '-speech_balloons_attributes-' + self.tag_element_id + '-speech_attributes-' + f.to_s
+  def text_align_text
+    @@text_align_texts[self.text_align]
   end
   
   def self.default_page_size
@@ -104,16 +88,20 @@ class Speech < ActiveRecord::Base
     page_size
   end
   
+  def self.list_where
+    'panels.publish > 0'
+  end
+  
   def self.list page = 1, page_size = self.default_page_size
-    opt = {}
-    opt.merge!(Speech.list_opt)
-    opt.merge!({:limit => page_size, :offset => (page -1) * page_size}) if page_size > 0
-    opt.merge!({:conditions => 'panels.publish > 0', :order => 'speeches.updated_at desc'})
-    Speech.find(:all, opt)
+    Speech.where(self.list_where()).includes(Speech.list_opt).order('speeches.updated_at desc').offset((page -1) * page_size).limit(page_size)
+  end
+  
+  def self.list_paginate page = 1, page_size = self.default_page_size
+    Kaminari.paginate_array(Array.new(Speech.where(self.list_where()).includes(Speech.list_opt).count, nil)).page(page).per(page_size)
   end
   
   def self.list_opt
-    {:include => {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {}} }}
+    {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {}} }
   end
   
   def self.list_json_opt
@@ -136,12 +124,33 @@ class Speech < ActiveRecord::Base
     {: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
-    ERB::Util.html_escape(self.content)
+    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