OSDN Git Service

fix license picture
[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 attr_y
26     self.attributes['y']
27   end
28   
29   def supply_default
30     self.x = 0
31     self.y = 0
32     self.width = 100
33     self.height = 100
34   end
35   
36   def symbol_option
37     self.speech_balloon.speech_balloon_template.symbol_option
38   end
39   
40   def outer_style
41     {
42       'top' => self.attr_y, 'left' => self.x, 
43       'width' => self.width, 'height' => self.height
44     }
45   end
46   
47   def inner_style
48     {
49       'font-size' => self.font_size.to_s + 'em',
50       'text-align' => self.text_align_text, 
51       'color' => '#' + format("%06x", self.fore_color)
52     }
53   end
54   
55   def text_align_text
56     @@text_align_texts[self.text_align]
57   end
58   
59   def self.public_list_where
60     'panels.publish > 0'
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.show_opt
74     {:include => {:speech_balloon => {:panel => {:author => {}}, :balloon => {}, :speech_balloon_template => {} }}}
75   end
76   
77   def self.panelize speech_attributes
78     {'speech_attributes' => speech_attributes}
79   end
80   
81   def scenario
82     self.boosts 'read'
83     self.render
84   end
85   
86   def plain_scenario
87     self.content + "\n"
88   end
89   
90   def feed
91     ERB::Util.html_escape(self.content)
92   end
93   
94 end