36 lines
1.1 KiB
Text
36 lines
1.1 KiB
Text
|
# ===========================
|
||
|
# Immatriculation by Zakharov
|
||
|
# ===========================
|
||
|
|
||
|
var refresh_immat = func {
|
||
|
var immat = props.globals.getNode("/sim/model/immat",1).getValue();
|
||
|
var immat_size = size(immat);
|
||
|
if (immat_size != 0) immat = string.uc(immat);
|
||
|
for (var i = 0; i < 6; i += 1) {
|
||
|
if (i >= immat_size)
|
||
|
glyph = -1;
|
||
|
elsif (string.isupper(immat[i]))
|
||
|
glyph = immat[i] - `A`;
|
||
|
elsif (string.isdigit(immat[i]))
|
||
|
glyph = immat[i] - `0` + 26;
|
||
|
else
|
||
|
glyph = 36;
|
||
|
props.globals.getNode("/sim/multiplay/generic/int["~i~"]", 1).setValue(glyph+1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var immat_dialog = gui.Dialog.new("/sim/gui/dialogs/c172p/status/dialog",
|
||
|
"Aircraft/c172p/Dialogs/immat.xml");
|
||
|
|
||
|
setlistener("/sim/signals/fdm-initialized", func {
|
||
|
if (props.globals.getNode("/sim/model/immat") == nil) {
|
||
|
var immat = props.globals.getNode("/sim/model/immat",1);
|
||
|
var callsign = props.globals.getNode("/sim/multiplay/callsign").getValue();
|
||
|
if (callsign != "callsign") immat.setValue(callsign);
|
||
|
else immat.setValue("F-GHYQ");
|
||
|
}
|
||
|
refresh_immat();
|
||
|
setlistener("sim/model/immat", refresh_immat, 0);
|
||
|
},0);
|
||
|
|