1
0
Fork 0
forked from OpenNeo/impress
impress/app/models/zone.rb

50 lines
1.3 KiB
Ruby
Raw Normal View History

class Zone < StaticResource
ATTRIBUTE_NAMES = ['id', 'label', 'depth', 'type_id']
ZONE_SETS = {}
attr_reader *ATTRIBUTE_NAMES
2010-09-08 19:49:39 -07:00
# When selecting zones that an asset occupies, we allow the zone to set
# whether or not the zone is "sometimes" occupied. This is false by default.
attr_writer :sometimes
def initialize(attributes)
ATTRIBUTE_NAMES.each do |name|
instance_variable_set "@#{name}", attributes[name]
end
end
2010-09-08 19:49:39 -07:00
def uncertain_label
@sometimes ? "#{label} sometimes" : label
end
2012-10-08 19:20:18 -07:00
def self.find_set(name)
ZONE_SETS[plain(name)]
2012-10-08 19:20:18 -07:00
end
def self.plain(name)
name.delete('\- /').downcase
end
n = 0
@objects = YAML.load_file(Rails.root.join('config', 'zones.yml')).map do |a|
a['id'] = (n += 1)
obj = new(a)
plain_name = plain(obj.label)
ZONE_SETS[plain_name] ||= []
ZONE_SETS[plain_name] << obj
obj
end
n = nil
2012-10-08 19:20:18 -07:00
# Add aliases to keys like "lowerforegrounditem" to "lowerforeground"
# ...unless there's already such a key, like "backgrounditem" to "background",
# in which case we don't, because that'd be silly.
ZONE_SETS.keys.each do |name|
2012-10-08 19:20:18 -07:00
if name.end_with?('item')
stripped_name = name[0..-5]
ZONE_SETS[stripped_name] ||= ZONE_SETS[name]
2012-10-08 19:20:18 -07:00
end
end
end