2016-12-06 10:38:09 +01:00
|
|
|
# Helper module that extract position attribute.
|
2014-09-25 19:30:02 +02:00
|
|
|
module Positioned
|
2017-01-01 20:52:00 +01:00
|
|
|
@positions = {}
|
2016-12-28 11:51:18 +01:00
|
|
|
|
|
|
|
def self.positions
|
2017-01-01 20:52:00 +01:00
|
|
|
@positions
|
2016-12-28 11:51:18 +01:00
|
|
|
end
|
|
|
|
|
2017-01-01 20:52:00 +01:00
|
|
|
def self.position(object)
|
|
|
|
pos = self.positions[object]
|
2016-12-28 11:51:18 +01:00
|
|
|
if pos == nil
|
|
|
|
str = "position accessed but not set, "
|
2017-01-01 20:52:00 +01:00
|
|
|
str += "#{object.object_id.to_s(16)}\n"
|
2018-03-26 12:43:26 +02:00
|
|
|
str += "for #{object.class} byte_length #{object.byte_length if object.respond_to?(:byte_length)} for #{object.inspect[0...100]}"
|
|
|
|
raise str
|
2015-05-30 11:20:39 +02:00
|
|
|
end
|
2016-12-28 11:51:18 +01:00
|
|
|
pos
|
2014-09-25 19:30:02 +02:00
|
|
|
end
|
2017-01-01 20:52:00 +01:00
|
|
|
|
|
|
|
def self.set_position( object , pos )
|
2016-12-28 11:51:18 +01:00
|
|
|
raise "Position must be number not :#{pos}:" unless pos.is_a?(Numeric)
|
2015-05-13 15:06:38 +02:00
|
|
|
# resetting of position used to be error, but since relink and dynamic instruction size it is ok.
|
|
|
|
# in measures (of 32)
|
2016-12-29 20:24:11 +01:00
|
|
|
#puts "Setting #{pos} for #{self.class}"
|
2017-01-01 20:52:00 +01:00
|
|
|
old = Positioned.positions[object]
|
2016-12-28 11:51:18 +01:00
|
|
|
if old != nil and ((old - pos).abs > 10000)
|
2017-01-01 20:52:00 +01:00
|
|
|
raise "position set again #{pos}!=#{old} for #{object}"
|
2014-09-25 19:30:02 +02:00
|
|
|
end
|
2017-01-01 20:52:00 +01:00
|
|
|
self.positions[object] = pos
|
2014-09-25 19:30:02 +02:00
|
|
|
end
|
2016-12-28 11:51:18 +01:00
|
|
|
|
|
|
|
|
2014-06-26 17:39:02 +02:00
|
|
|
end
|