OSDN Git Service

fix license picture
[pettanr/pettanr.git] / app / models / balloon.rb
1 class Balloon < Peta::Element
2   load_manifest
3   belongs_to :speech_balloon
4   belongs_to :speech_balloon_template
5   belongs_to :system_picture
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 :system_picture_id, :presence => true, :numericality => true, :existence => {:both => false}
11   validates :x, :presence => true, :numericality => true
12   validates :y, :presence => true, :numericality => true
13   validates :width, :presence => true, :numericality => true, :natural_number => true
14   validates :height, :presence => true, :numericality => true, :natural_number => true
15   validates :r, :presence => true, :numericality => true
16 #  validates :caption, :presence => true
17   validates :speech_balloon_template_settings, :boost => {:boost_name => :speech_balloon_template}
18
19   def attr_y
20     self.attributes['y']
21   end
22   
23   def url
24     '/system_pictures/' + self.system_picture.filename
25   end
26   
27   def supply_default
28     self.x = 0
29     self.y = 0
30     self.width = 100
31     self.height = 100
32     self.r = 0
33 self.system_picture_id = 1
34   end
35   
36   def symbol_option
37     self.speech_balloon.speech_balloon_template.symbol_option
38   end
39   
40   def self.public_list_where
41     'panels.publish > 0'
42   end
43   
44   def self.by_author_list_includes
45     {
46       :speech_balloon => {
47         :panel => {
48           :author => {}
49         }
50       }
51     }
52   end
53   
54   def self.show_opt
55     {:include => {:speech_balloon => {:panel => {:author => {}}, :speech => {}, :speech_balloon_template => {} }}}
56   end
57   
58   def style
59     {
60       'width' => self.width.to_s + 'px','height' => self.height.to_s + 'px',
61       'top' => self.attr_y.to_s + 'px','left' => self.x.to_s + 'px'
62     }
63   end
64   
65   def self.panelize balloon_attributes
66     {'balloon_attributes' => balloon_attributes}
67   end
68   
69   def scenario
70   end
71   
72   def plain_scenario
73   end
74   
75 end