1
0
Fork 0
fgdata/gui/dialogs/joystick-info.xml

97 lines
2.2 KiB
XML
Raw Normal View History

2006-10-21 10:19:04 +00:00
<?xml version="1.0"?>
<PropertyList>
<name>joystick-info</name>
<layout>vbox</layout>
<default-padding>3</default-padding>
<group>
<layout>hbox</layout>
<default-padding>1</default-padding>
<empty><whatever/></empty>
<text>
<label>Joystick Information</label>
</text>
<empty><stretch>true</stretch></empty>
<button>
<legend></legend>
<key>Esc</key>
<pref-width>16</pref-width>
<pref-height>16</pref-height>
<border>2</border>
<binding>
<command>dialog-close</command>
</binding>
</button>
</group>
<hrule><empty/></hrule>
<nasal>
<open>
value = func(p, default = "") {
return p != nil and (var v = p.getValue()) != nil ? v : default;
}
items = func(it, name) {
var t = "";
foreach (var x; it) {
t ~= " [";
2006-10-21 11:46:43 +00:00
t ~= value(x.getNode("name"), name ~ " #" ~ x.getIndex());
2006-10-21 10:19:04 +00:00
t ~= "] ";
t ~= value(x.getNode("desc"), "???");
t ~= "\n";
}
return t;
}
var t = "";
var joysticks = props.globals.getNode("/input/joysticks").getChildren("js");
var numjoysticks = size(joysticks);
forindex (var i; joysticks) {
var js = joysticks[i];
2006-10-21 11:46:43 +00:00
t ~= "Joystick #" ~ js.getIndex() ~ ": \"" ~ value(js.getNode("id"), "[unnamed]") ~ "\"\n\n";
2006-10-21 10:19:04 +00:00
t ~= " Configuration: " ~ value(js.getNode("source"), "[user defined]") ~ "\n";
var names = js.getChildren("name");
if (size(names)) {
t ~= " Used for: ";
2006-10-21 10:50:42 +00:00
var last = pop(names);
2006-10-21 10:19:04 +00:00
foreach (var n; names) {
t ~= '"' ~ value(n) ~ '", ';
}
2006-10-21 10:50:42 +00:00
t ~= '"' ~ value(last) ~ '"';
2006-10-21 10:19:04 +00:00
}
t ~= "\n\n";
t ~= items(js.getChildren("axis"), "Axis");
2006-10-21 11:46:43 +00:00
t ~= "\n";
t ~= items(js.getChildren("button"), "Button");
2006-10-21 10:19:04 +00:00
if (numjoysticks > 1 and i &lt; numjoysticks - 1) {
t ~= "\n\n\n----------------------------------------\n\n\n";
}
}
var text = props.globals.getNode("/sim/gui/dialogs/joystick-info/text", 1);
text.setValue(t);
</open>
<close>
text.setValue("");
</close>
</nasal>
<textbox>
<halign>fill</halign>
<pref-width>640</pref-width>
<pref-height>480</pref-height>
<slider>20</slider>
<wrap>true</wrap>
<editable>false</editable>
<property>/sim/gui/dialogs/joystick-info/text</property>
</textbox>
</PropertyList>