Class: NL::KndClient::Zone
- Inherits:
-
Hash
- Object
- Hash
- NL::KndClient::Zone
- Defined in:
- lib/nl/knd_client/zone.rb
Overview
Represents a spatial zone from KND.
Constant Summary collapse
- ZONE_VERSION =
Switched to integer millimeters in version 2
2
- @@param_names =
TODO: This should be a constant, not a class variable
{ 'occupied' => 'Occupied', 'bright' => 'Brightness', 'sa' => 'Surface Area', 'xc' => 'X Center', 'yc' => 'Y Center', 'zc' => 'Z Center', 'xmin' => 'World Xmin', 'ymin' => 'World Ymin', 'zmin' => 'World Zmin', 'xmax' => 'World Xmax', 'ymax' => 'World Ymax', 'zmax' => 'World Zmax', 'px_xmin' => 'Screen Xmin', 'px_ymin' => 'Screen Ymin', 'px_zmin' => 'Screen Zmin', 'px_xmax' => 'Screen Xmax', 'px_ymax' => 'Screen Ymax', 'px_zmax' => 'Screen Zmax', 'pop' => 'Population', 'maxpop' => 'Max Population', 'negate' => 'Inverted', 'param' => 'Occupied Parameter', 'on_level' => 'Rising Threshold', 'off_level' => 'Falling Threshold', 'on_delay' => 'Rising Delay', 'off_delay' => 'Falling Delay', }.freeze
- @@name_params =
@@param_names.invert.freeze
Class Method Summary collapse
-
.fix_name!(str) ⇒ Object
Removes unsupported characters from the given name, modifying the string directly.
-
.names ⇒ Object
Returns a hash mapping human-friendly names to parameter names.
-
.params ⇒ Object
Returns a hash mapping parameter names to their human-friendly names (excludes the ‘name’ parameter).
Instance Method Summary collapse
-
#initialize(kvpairs, normalize = true) ⇒ Zone
constructor
Initializes a zone definition with the given key-value set.
-
#merge_zone(other) ⇒ Object
Merges with the other Hash or Zone, then converts known keys into their expected types.
-
#normalize! ⇒ Object
Converts known keys into their expected types.
-
#range(param) ⇒ Object
Computes the range for the given parameter.
Constructor Details
#initialize(kvpairs, normalize = true) ⇒ Zone
Initializes a zone definition with the given key-value set. If kvpairs is a string, it is parsed with kin_kvp(). If it is a Hash, its keys are used as the zone definition.
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/nl/knd_client/zone.rb', line 58 def initialize kvpairs, normalize=true EMKndClient.bench 'Zone.new' do super nil if kvpairs.is_a? String EMKndClient.bench 'Zone.new string' do merge! kvpairs.kin_kvp normalize = false end elsif kvpairs.is_a? Hash EMKndClient.bench 'Zone.new hash' do merge! kvpairs end else raise "kvpairs must be a String or a Hash, not #{kvpairs.class}." end normalize! if normalize self['occupied'] = (self['occupied'] == 1) if self['occupied'].is_a?(Fixnum) end end |
Class Method Details
.fix_name!(str) ⇒ Object
Removes unsupported characters from the given name, modifying the string directly
218 219 220 221 222 223 224 |
# File 'lib/nl/knd_client/zone.rb', line 218 def self.fix_name! str # TODO: Support spaces (need to change HTML to use data-zone), # strip or error on non-UTF8 non-printable characters str.delete!(",") str.tr!(" \t\r\n", '_') str end |
.names ⇒ Object
Returns a hash mapping human-friendly names to parameter names.
213 214 215 |
# File 'lib/nl/knd_client/zone.rb', line 213 def self.names @@name_params end |
.params ⇒ Object
Returns a hash mapping parameter names to their human-friendly names (excludes the ‘name’ parameter).
208 209 210 |
# File 'lib/nl/knd_client/zone.rb', line 208 def self.params @@param_names end |
Instance Method Details
#merge_zone(other) ⇒ Object
Merges with the other Hash or Zone, then converts known keys into their expected types.
49 50 51 52 53 |
# File 'lib/nl/knd_client/zone.rb', line 49 def merge_zone other merge! other normalize! unless other.is_a? Zone self end |
#normalize! ⇒ Object
Converts known keys into their expected types.
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/nl/knd_client/zone.rb', line 79 def normalize! EMKndClient.bench 'Zone.normalize!' do if has_key?('version') && self['version'].to_i < 2 EMKndClient.log "Converting version #{self['version']} zone to version #{ZONE_VERSION}" self['xmin'] &&= self['xmin'].to_f * 1000.0 self['ymin'] &&= self['ymin'].to_f * 1000.0 self['zmin'] &&= self['zmin'].to_f * 1000.0 self['xmax'] &&= self['xmax'].to_f * 1000.0 self['ymax'] &&= self['ymax'].to_f * 1000.0 self['zmax'] &&= self['zmax'].to_f * 1000.0 end self['xmin'] &&= self['xmin'].to_i self['ymin'] &&= self['ymin'].to_i self['zmin'] &&= self['zmin'].to_i self['xmax'] &&= self['xmax'].to_i self['ymax'] &&= self['ymax'].to_i self['zmax'] &&= self['zmax'].to_i self['px_xmin'] &&= self['px_xmin'].to_i self['px_ymin'] &&= self['px_ymin'].to_i self['px_zmin'] &&= self['px_zmin'].to_i self['px_xmax'] &&= self['px_xmax'].to_i self['px_ymax'] &&= self['px_ymax'].to_i self['px_zmax'] &&= self['px_zmax'].to_i self['pop'] &&= self['pop'].to_i self['maxpop'] &&= self['maxpop'].to_i self['xc'] &&= self['xc'].to_i self['yc'] &&= self['yc'].to_i self['zc'] &&= self['zc'].to_i self['sa'] &&= self['sa'].to_i self['bright'] &&= self['bright'].to_i if has_key? 'negate' if self['negate'] == 'true' then self['negate'] = true elsif self['negate'] == 'false' then self['negate'] = false elsif self['negate'].respond_to? 'to_i' then self['negate'] = self['negate'].to_i == 1 ? true : false else self['negate'] = !!self['negate'] end end unless self.range('param').include?(self['param']) self.delete 'param' end self['on_level'] &&= self['on_level'].to_i self['off_level'] &&= self['off_level'].to_i self['on_delay'] &&= self['on_delay'].to_i self['off_delay'] &&= self['off_delay'].to_i if has_key? 'occupied' and self['occupied'].respond_to? 'to_i' then self['occupied'] = self['occupied'].to_i == 1 ? true : false end Zone.fix_name!(self['name']) if has_key? 'name' end self end |
#range(param) ⇒ Object
Computes the range for the given parameter. Returns nil if param is not a valid zone parameter, the parameter’s range is unknown, or the given parameter has no range.
TODO: this should probably just be a constant Hash
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
# File 'lib/nl/knd_client/zone.rb', line 147 def range param case param when 'xmin', 'xmax' (-KNC_XMAX / 2)..(KNC_XMAX / 2) when 'ymin', 'ymax' (-KNC_YMAX / 2)..(KNC_YMAX / 2) when 'zmin', 'zmax' 0..KNC_ZMAX when 'px_xmin', 'px_xmax' 0..639 when 'px_ymin', 'px_ymax' 0..479 when 'px_zmin', 'px_zmax' 0..KNC_PXZMAX when 'pop' 0..self['maxpop'] when 'maxpop' 0..(640 * 480) when 'xc' 0..1000 when 'yc' 0..1000 when 'zc' 0..1000 when 'sa' (self['xmax'] - self['xmin']) * (self['ymax'] - self['ymin']) when 'bright' 0..1000 when 'negate' [false, true] when 'param' ['pop', 'sa', 'bright', 'xc', 'yc', 'zc'] when 'on_level', 'off_level' # TODO: Range depends on param -5000..(640 * 480) when 'on_delay', 'off_delay' 0..(86400 * 30) else nil end end |