OSDN Git Service

076c80de38da96ea086b0118d0bff806913999bf
[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_classname, :presence => true, :length => {:maximum => 50}
10   validates :writing_format_id, :presence => true, :numericality => true, :existence => {:both => false}
11   validates :writing_format_classname, :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 => {:resource_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.list_order
60     'speeches.updated_at desc'
61   end
62   
63   def self.by_author_list_includes
64     {
65       :speech_balloon => {
66         :panel => {
67           :author => {}
68         }
69       }
70     }
71   end
72   
73   def self.list_opt
74     {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {}} }
75   end
76   
77   def self.list_json_opt
78     {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :balloon => {}, :speech_balloon_template => {} }}}}
79   end
80   
81   def self.show_opt
82     {:include => {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {} }}}
83   end
84   
85   def self.show_json_opt
86     {:include => {:speech_balloon => {:include => {:panel => {:include => {:author => {} }}, :balloon => {}, :speech_balloon_template => {} }}}}
87   end
88   
89   def copy_attributes
90     r = self.attributes
91     r.delete 'id'
92     r.delete 'speech_balloon_id'
93     r.delete 'created_at'
94     r.delete 'updated_at'
95     r
96   end
97   
98   def self.panelize speech_attributes
99     {'speech_attributes' => speech_attributes}
100   end
101   
102   def writing_format_engine_model
103     self.writing_format.engine_model
104   end
105   
106   def scenario
107     self.writing_format_engine_model.render self.content
108   end
109   
110   def plain_scenario
111     self.content + "\n"
112   end
113   
114   def feed
115     ERB::Util.html_escape(self.content)
116   end
117   
118 end