OSDN Git Service

add manifest
[pettanr/pettanr.git] / app / models / speech.rb
index 9bf34cd..7f31064 100644 (file)
@@ -1,15 +1,21 @@
 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 :quotes, :length => {:maximum => 15}, :quotes_even => true
-#  validates :settings, :presence => true
+  validates :settings, :extend_speech => true
+  
+  @@text_align_texts = ['left', 'left', 'right', 'center']
   
   before_validation :valid_encode
   
@@ -20,6 +26,14 @@ class Speech < ActiveRecord::Base
     end
   end
   
+  def self.colum_structures
+    @@colum_structures ||= {
+      :fore_color => {
+        :helper => 'panels/color_helper'
+      }
+    }
+  end
+  
   def supply_default
     self.x = 0
     self.y = 0
@@ -37,65 +51,20 @@ class Speech < ActiveRecord::Base
     self.speech_balloon.panel.visible? roles
   end
   
-  def new_speech_balloon
-    @new_speech_balloon
-  end
-  
-  def new_speech_balloon= v
-    @new_speech_balloon = v
-  end
-  
-  def get_speech_balloon
-    self.speech_balloon || @new_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.id
-    end
-    r.to_s
+  def symbol_option
+    self.get_parent.speech_balloon_template.symbol_option
   end
   
-  def tag_element_type
-    'speech_balloon'
-  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 tag_new_index
-    if self.get_speech_balloon == nil
-      nil
-    else
-      self.get_speech_balloon.tag_new_index
-    end
+  def text_align_text
+    @@text_align_texts[self.text_align]
   end
   
   def self.default_page_size
@@ -119,16 +88,36 @@ 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_by_speech_balloon_where speech_balloon_id
+    ['speeches.speech_balloon_id = ?', speech_balloon_id]
+  end
+  
+  def self.list_by_speech_balloon speech_balloon_id, roles, page = 1, page_size = self.default_page_size
+    self.where(self.list_by_speech_balloon_where(speech_balloon_id)).includes(self.list_opt).order('speeches.updated_at desc').offset((page -1) * page_size).limit(page_size)
+  end
+  
+  def self.list_by_writing_format_where writing_format_id
+    ['speeches.writing_format_id = ?', writing_format_id]
+  end
+  
+  def self.list_by_writing_format writing_format_id, roles, page = 1, page_size = self.default_page_size
+    self.where(self.list_by_writing_format_where(writing_format_id)).includes(self.list_opt).order('speeches.updated_at desc').offset((page -1) * page_size).limit(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