507 lines
10 KiB
XML
507 lines
10 KiB
XML
|
<?xml version="1.0"?>
|
||
|
|
||
|
<PropertyList>
|
||
|
<name>marker-adjust</name>
|
||
|
<layout>vbox</layout>
|
||
|
<x>-20</x>
|
||
|
<y>-20</y>
|
||
|
|
||
|
<group>
|
||
|
<layout>hbox</layout>
|
||
|
<empty><stretch>1</stretch></empty>
|
||
|
|
||
|
<text>
|
||
|
<label>Adjust marker</label>
|
||
|
</text>
|
||
|
|
||
|
<empty><stretch>1</stretch></empty>
|
||
|
|
||
|
<button>
|
||
|
<pref-width>16</pref-width>
|
||
|
<pref-height>16</pref-height>
|
||
|
<legend></legend>
|
||
|
<default>1</default>
|
||
|
<keynum>27</keynum>
|
||
|
<border>2</border>
|
||
|
|
||
|
<binding>
|
||
|
<command>dialog-close</command>
|
||
|
</binding>
|
||
|
</button>
|
||
|
</group>
|
||
|
|
||
|
<hrule><whatever/></hrule>
|
||
|
|
||
|
<nasal>
|
||
|
<open>
|
||
|
var self = cmdarg();
|
||
|
var dlgname = self.getNode("name").getValue();
|
||
|
|
||
|
var Value = {
|
||
|
new : func(name, init = 0) {
|
||
|
var m = { parents: [Value] };
|
||
|
m.name = name;
|
||
|
var n = props.globals.getNode("/sim/model/marker/" ~ m.name, 1);
|
||
|
m.sliderN = n.getNode("slider", 1);
|
||
|
m.offsetN = n.getNode("offset", 1);
|
||
|
m.valueN = n.getNode("value", 1);
|
||
|
m.offsetN.setDoubleValue(0);
|
||
|
m.sliderN.setDoubleValue(0);
|
||
|
m.valueN.setDoubleValue(init);
|
||
|
m.last_slider = 0;
|
||
|
m.center();
|
||
|
m.sliderL = setlistener(m.sliderN, func { m.update() });
|
||
|
return m;
|
||
|
},
|
||
|
del : func {
|
||
|
removelistener(me.sliderL);
|
||
|
},
|
||
|
update : func {
|
||
|
var offs = me.sliderN.getValue();
|
||
|
var v = me.offsetN.getValue() + me.sliderN.getValue() - me.last_slider;
|
||
|
me.valueN.setValue(me.valueN.getValue() + v * 0.1);
|
||
|
me.offsetN.setDoubleValue(0);
|
||
|
me.last_slider = offs;
|
||
|
},
|
||
|
center : func {
|
||
|
me.offsetN.setValue(me.offsetN.getValue() + me.sliderN.getValue());
|
||
|
me.sliderN.setDoubleValue(0);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
var values = [
|
||
|
Value.new("x"),
|
||
|
Value.new("y"),
|
||
|
Value.new("z"),
|
||
|
Value.new("scale", 1),
|
||
|
];
|
||
|
|
||
|
var center = func {
|
||
|
foreach (var v; values) {
|
||
|
v.center();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var dump = func {
|
||
|
print("<marker>");
|
||
|
foreach (var v; values) {
|
||
|
print(sprintf(" <%s>%.3f</%s>", v.name, v.valueN.getValue(), v.name));
|
||
|
}
|
||
|
print("</marker>");
|
||
|
}
|
||
|
|
||
|
var update = func(w) {
|
||
|
self.setValues({"dialog-name": dlgname, "object-name": w});
|
||
|
fgcommand("dialog-update", self);
|
||
|
center();
|
||
|
}
|
||
|
|
||
|
setprop("/sim/model/marker/arrow-enabled", 1);
|
||
|
setprop("/sim/model/marker/cross-enabled", 1);
|
||
|
</open>
|
||
|
|
||
|
<close>
|
||
|
setprop("/sim/model/marker/cross-enabled", 0);
|
||
|
setprop("/sim/model/marker/arrow-enabled", 0);
|
||
|
foreach (var v; values) {
|
||
|
v.del();
|
||
|
}
|
||
|
</close>
|
||
|
</nasal>
|
||
|
|
||
|
<group>
|
||
|
<layout>hbox</layout>
|
||
|
<default-padding>0</default-padding>
|
||
|
|
||
|
<button>
|
||
|
<legend><<</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/x/offset</property>
|
||
|
<step>-10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("x")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend><</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/x/offset</property>
|
||
|
<step>-1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("x")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<slider>
|
||
|
<name>x</name>
|
||
|
<property>/sim/model/marker/x/slider</property>
|
||
|
<legend>fore/aft</legend>
|
||
|
<pref-width>250</pref-width>
|
||
|
<live>1</live>
|
||
|
<min>-1</min>
|
||
|
<max>1</max>
|
||
|
|
||
|
<color>
|
||
|
<red>1.0</red>
|
||
|
<green>0.6</green>
|
||
|
<blue>0.6</blue>
|
||
|
<alpha>1</alpha>
|
||
|
</color>
|
||
|
|
||
|
<binding>
|
||
|
<command>dialog-apply</command>
|
||
|
<object-name>x</object-name>
|
||
|
</binding>
|
||
|
</slider>
|
||
|
|
||
|
<button>
|
||
|
<legend>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/x/offset</property>
|
||
|
<step>1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("x")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend>>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/x/offset</property>
|
||
|
<step>10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("x")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
</group>
|
||
|
|
||
|
<group>
|
||
|
<layout>hbox</layout>
|
||
|
<default-padding>0</default-padding>
|
||
|
|
||
|
<button>
|
||
|
<legend><<</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/y/offset</property>
|
||
|
<step>-10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("y")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend><</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/y/offset</property>
|
||
|
<step>-1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("y")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<slider>
|
||
|
<name>y</name>
|
||
|
<property>/sim/model/marker/y/slider</property>
|
||
|
<legend>left/right</legend>
|
||
|
<pref-width>250</pref-width>
|
||
|
<live>1</live>
|
||
|
<min>-1</min>
|
||
|
<max>1</max>
|
||
|
|
||
|
<color>
|
||
|
<red>0.6</red>
|
||
|
<green>1.0</green>
|
||
|
<blue>0.6</blue>
|
||
|
<alpha>1.0</alpha>
|
||
|
</color>
|
||
|
|
||
|
<binding>
|
||
|
<command>dialog-apply</command>
|
||
|
<object-name>y</object-name>
|
||
|
</binding>
|
||
|
</slider>
|
||
|
|
||
|
<button>
|
||
|
<legend>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/y/offset</property>
|
||
|
<step>1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("y")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend>>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/y/offset</property>
|
||
|
<step>10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("y")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
</group>
|
||
|
|
||
|
<group>
|
||
|
<layout>hbox</layout>
|
||
|
<default-padding>0</default-padding>
|
||
|
|
||
|
<button>
|
||
|
<legend><<</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim//model/marker/z/offset</property>
|
||
|
<step>-10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("z")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend><</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/z/offset</property>
|
||
|
<step>-1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("z")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<slider>
|
||
|
<name>z</name>
|
||
|
<property>/sim/model/marker/z/slider</property>
|
||
|
<legend>down/up</legend>
|
||
|
<pref-width>250</pref-width>
|
||
|
<live>1</live>
|
||
|
<min>-1</min>
|
||
|
<max>1</max>
|
||
|
|
||
|
<color>
|
||
|
<red>0.6</red>
|
||
|
<green>0.6</green>
|
||
|
<blue>1.0</blue>
|
||
|
<alpha>1.0</alpha>
|
||
|
</color>
|
||
|
|
||
|
<binding>
|
||
|
<command>dialog-apply</command>
|
||
|
<object-name>z</object-name>
|
||
|
</binding>
|
||
|
</slider>
|
||
|
|
||
|
<button>
|
||
|
<legend>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/z/offset</property>
|
||
|
<step>1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("z")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend>>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/z/offset</property>
|
||
|
<step>10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("z")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
</group>
|
||
|
|
||
|
<group>
|
||
|
<layout>hbox</layout>
|
||
|
<default-padding>0</default-padding>
|
||
|
|
||
|
<button>
|
||
|
<legend><<</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim//model/marker/scale/offset</property>
|
||
|
<step>-10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("scale")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend><</legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/scale/offset</property>
|
||
|
<step>-1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("scale")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<slider>
|
||
|
<name>scale</name>
|
||
|
<property>/sim/model/marker/scale/slider</property>
|
||
|
<legend>size</legend>
|
||
|
<pref-width>250</pref-width>
|
||
|
<live>1</live>
|
||
|
<min>-1</min>
|
||
|
<max>1</max>
|
||
|
|
||
|
<color>
|
||
|
<red>1.0</red>
|
||
|
<green>0.6</green>
|
||
|
<blue>1.0</blue>
|
||
|
<alpha>1.0</alpha>
|
||
|
</color>
|
||
|
|
||
|
<binding>
|
||
|
<command>dialog-apply</command>
|
||
|
<object-name>scale</object-name>
|
||
|
</binding>
|
||
|
</slider>
|
||
|
|
||
|
<button>
|
||
|
<legend>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/scale/offset</property>
|
||
|
<step>1</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("scale")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<button>
|
||
|
<legend>>></legend>
|
||
|
<pref-width>22</pref-width>
|
||
|
<pref-height>22</pref-height>
|
||
|
|
||
|
<binding>
|
||
|
<command>property-adjust</command>
|
||
|
<property>/sim/model/marker/scale/offset</property>
|
||
|
<step>10</step>
|
||
|
</binding>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>update("scale")</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
</group>
|
||
|
|
||
|
<group>
|
||
|
<layout>hbox</layout>
|
||
|
<default-padding>2</default-padding>
|
||
|
|
||
|
<empty><stretch>1</stretch></empty>
|
||
|
|
||
|
<button>
|
||
|
<halign>center</halign>
|
||
|
<legend>Center</legend>
|
||
|
<pref-height>22</pref-height>
|
||
|
<pref-width>60</pref-width>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>center()</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
|
||
|
<empty><stretch>1</stretch></empty>
|
||
|
|
||
|
<button>
|
||
|
<halign>right</halign>
|
||
|
<legend>Dump</legend>
|
||
|
<pref-height>22</pref-height>
|
||
|
<pref-width>60</pref-width>
|
||
|
<binding>
|
||
|
<command>nasal</command>
|
||
|
<script>dump()</script>
|
||
|
</binding>
|
||
|
</button>
|
||
|
</group>
|
||
|
</PropertyList>
|