OSDN Git Service

4c80fd5e2953df53a8d8440db527b234ac734074
[pettanr/pettanr.git] / app / models / speech.rb
1 class Speech < Peta::Element
2   load_manifest
3   belongs_to :speech_balloon
4   belongs_to :speech_balloon_template
5   belongs_to :writing_format
6   
7   validates :speech_balloon_id, :numericality => {:allow_blank => true}
8   validates :speech_balloon_template_id, :presence => true, :numericality => true, :existence => {:both => false}
9   validates :speech_balloon_template_module_name, :presence => true, :length => {:maximum => 50}
10   validates :writing_format_id, :presence => true, :numericality => true, :existence => {:both => false}
11   validates :writing_format_module_name, :presence => true, :length => {:maximum => 50}
12   validates :font_size, :presence => true, :numericality => {:only_integer => false}
13   validates :text_align, :presence => true, :numericality => true, :inclusion => { :in => 0..3 }
14   validates :fore_color, :presence => true, :numericality => {:greater_than_or_equal_to => 0, :less_than => 0x1000000}
15   validates :x, :presence => true, :numericality => true
16   validates :y, :presence => true, :numericality => true
17   validates :width, :presence => true, :numericality => true, :natural_number => true
18   validates :height, :presence => true, :numericality => true, :natural_number => true
19   validates :quotes, :length => {:maximum => 15}, :quotes_even => true
20   validates :speech_balloon_template_settings, :boost => {:boost_name => :speech_balloon_template}
21   #validates :writing_format_settings
22   
23   @@text_align_texts = ['left', 'left', 'right', 'center']
24   
25   def supply_default
26     self.x = 0
27     self.y = 0
28     self.width = 100
29     self.height = 100
30   end
31   
32   def symbol_option
33     self.speech_balloon.speech_balloon_template.symbol_option
34   end
35   
36   def outer_style
37     {
38       'top' => self._y, 'left' => self.x, 
39       'width' => self.width, 'height' => self.height
40     }
41   end
42   
43   def inner_style
44     {
45       'font-size' => self.font_size.to_s + 'em',
46       'text-align' => self.text_align_text, 
47       'color' => '#' + format("%06x", self.fore_color)
48     }
49   end
50   
51   def text_align_text
52     @@text_align_texts[self.text_align]
53   end
54   
55   def self.public_list_where
56     'panels.publish > 0'
57   end
58   
59   def self.by_author_list_includes
60     {
61       :speech_balloon => {
62         :panel => {
63           :author => {}
64         }
65       }
66     }
67   end
68   
69   def self.show_opt
70     {:include => {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {} }}}
71   end
72   
73   def self.panelize speech_attributes
74     {'speech_attributes' => speech_attributes}
75   end
76   
77   def writing_format_engine_model
78     self.writing_format.engine_model
79   end
80   
81   def scenario
82     self.writing_format_engine_model.render self.content
83   end
84   
85   def plain_scenario
86     self.content + "\n"
87   end
88   
89   def feed
90     ERB::Util.html_escape(self.content)
91   end
92   
93 end