WHEEL page: improvements (unfinished)
This commit is contained in:
parent
973bd4f900
commit
95ba5c6a70
3 changed files with 135 additions and 71 deletions
|
@ -42,8 +42,8 @@ var canvas_lowerECAMPageWheel =
|
|||
obj["lgctltext"].hide();
|
||||
}
|
||||
}),
|
||||
props.UpdateManager.FromHashValue("gearPosNorm", 0.01, func(val) {
|
||||
if (val < 0.2 or val > 0.8) {
|
||||
props.UpdateManager.FromHashValue("gearPosNorm", nil, func(val) {
|
||||
if (val == 0) {
|
||||
obj["Triangle-Nose1"].hide();
|
||||
obj["Triangle-Nose2"].hide();
|
||||
} else {
|
||||
|
@ -59,8 +59,8 @@ var canvas_lowerECAMPageWheel =
|
|||
obj["Triangle-Nose2"].setColor(1,0,0);
|
||||
}
|
||||
}),
|
||||
props.UpdateManager.FromHashValue("gearPosNorm1", 0.01, func(val) {
|
||||
if (val < 0.2 or val > 0.8) {
|
||||
props.UpdateManager.FromHashValue("gearPosNorm1", nil, func(val) {
|
||||
if (val == 0) {
|
||||
obj["Triangle-Left1"].hide();
|
||||
obj["Triangle-Left2"].hide();
|
||||
} else {
|
||||
|
@ -76,8 +76,8 @@ var canvas_lowerECAMPageWheel =
|
|||
obj["Triangle-Left2"].setColor(1,0,0);
|
||||
}
|
||||
}),
|
||||
props.UpdateManager.FromHashValue("gearPosNorm2", 0.01, func(val) {
|
||||
if (val < 0.2 or val > 0.8) {
|
||||
props.UpdateManager.FromHashValue("gearPosNorm2", nil, func(val) {
|
||||
if (val == 0) {
|
||||
obj["Triangle-Right1"].hide();
|
||||
obj["Triangle-Right2"].hide();
|
||||
} else {
|
||||
|
@ -93,75 +93,85 @@ var canvas_lowerECAMPageWheel =
|
|||
obj["Triangle-Right2"].setColor(1,0,0);
|
||||
}
|
||||
}),
|
||||
props.UpdateManager.FromHashList(["yellow","green","NWSSwitch","brakesMode","val.accumPressPsiPressPsi"], nil, func(val) {
|
||||
props.UpdateManager.FromHashList(["yellow","green","NWSSwitch","brakesMode","val.accumPressPsiPressPsi","leftBrakeFCS","rightBrakeFCS"], nil, func(val) {
|
||||
if (val.NWSSwitch and val.yellow >= 1500) {
|
||||
obj["NWStext"].hide();
|
||||
obj["NWS"].hide();
|
||||
obj["NWSrect"].hide();
|
||||
obj["antiskidtext"].hide();
|
||||
obj["BSCUrect1"].hide();
|
||||
obj["BSCUrect2"].hide();
|
||||
obj["BSCU1"].hide();
|
||||
obj["BSCU2"].hide();
|
||||
} else if (!val.NWSSwitch and val.yellow >= 1500) {
|
||||
obj["NWStext"].show();
|
||||
obj["NWS"].show();
|
||||
obj["NWS"].setColor(0.0509,0.7529,0.2941);
|
||||
obj["NWSrect"].show();
|
||||
obj["antiskidtext"].show();
|
||||
obj["antiskidtext"].setColor(0.7333,0.3803,0);
|
||||
obj["BSCUrect1"].show();
|
||||
obj["BSCUrect2"].show();
|
||||
obj["BSCU1"].show();
|
||||
obj["BSCU2"].show();
|
||||
} else {
|
||||
obj["NWStext"].show();
|
||||
obj["NWS"].show();
|
||||
obj["NWS"].setColor(0.7333,0.3803,0);
|
||||
obj["NWSrect"].show();
|
||||
}
|
||||
|
||||
if ((val.yellow < 1500 and val.brakesMode == 1) or !val.NWSSwitch) {
|
||||
obj["antiskidtext"].show();
|
||||
obj["antiskidtext"].setColor(0.7333,0.3803,0);
|
||||
obj["BSCUrect1"].show();
|
||||
obj["BSCUrect2"].show();
|
||||
obj["BSCU1"].show();
|
||||
obj["BSCU2"].show();
|
||||
} else {
|
||||
obj["antiskidtext"].hide();
|
||||
obj["BSCUrect1"].hide();
|
||||
obj["BSCUrect2"].hide();
|
||||
obj["BSCU1"].hide();
|
||||
obj["BSCU2"].hide();
|
||||
}
|
||||
|
||||
if (val.green >= 1500 and val.brakesMode == 1) {
|
||||
|
||||
if (val.green >= 1500) {
|
||||
obj["normbrkhyd"].setColor(0.0509,0.7529,0.2941);
|
||||
} else {
|
||||
obj["normbrkhyd"].setColor(0.7333,0.3803,0);
|
||||
}
|
||||
|
||||
if (val.yellow >= 1500) {
|
||||
obj["altnbrkhyd"].setColor(0.0509,0.7529,0.2941);
|
||||
} else {
|
||||
obj["altnbrkhyd"].setColor(0.7333,0.3803,0);
|
||||
}
|
||||
|
||||
if (!val.NWSSwitch or val.green < 1500) {
|
||||
obj["NORMbrk"].show();
|
||||
obj["normbrk-rect"].show();
|
||||
obj["normbrkhyd"].show();
|
||||
} else {
|
||||
obj["NORMbrk"].hide();
|
||||
obj["normbrk-rect"].hide();
|
||||
obj["normbrkhyd"].hide();
|
||||
} else if (val.green >= 1500 and val.NWSSwitch) {
|
||||
obj["NORMbrk"].show();
|
||||
obj["normbrk-rect"].show();
|
||||
obj["NORMbrk"].setColor(0.7333,0.3803,0);
|
||||
obj["normbrkhyd"].setColor(0.0509,0.7529,0.2941);
|
||||
} else if (val.green < 1500 or !val.NWSSwitch) {
|
||||
obj["NORMbrk"].show();
|
||||
obj["normbrk-rect"].show();
|
||||
obj["NORMbrk"].setColor(0.7333,0.3803,0);
|
||||
obj["normbrkhyd"].setColor(0.7333,0.3803,0);
|
||||
}
|
||||
|
||||
if (val.brakesMode != 2) {
|
||||
|
||||
if (val.brakesMode != 2 or val.green < 1500 or val.yellow < 1500 or !val.NWSSwitch) {
|
||||
obj["ALTNbrk"].hide();
|
||||
obj["altnbrk-rect"].hide();
|
||||
obj["altnbrkhyd"].hide();
|
||||
} else if (val.yellow >= 1500) {
|
||||
obj["ALTNbrk"].show();
|
||||
obj["altnbrk-rect"].show();
|
||||
obj["altnbrkhyd"].setColor(0.0509,0.7529,0.2941);
|
||||
} else {
|
||||
obj["ALTNbrk"].show();
|
||||
obj["altnbrk-rect"].show();
|
||||
obj["altnbrkhyd"].setColor(0.7333,0.3803,0);
|
||||
obj["altnbrkhyd"].show();
|
||||
if (val.yellow < 1500 and val.accumPressPsi < 1500) {
|
||||
obj["ALTNbrk"].setColor(0.7333,0.3803,0);
|
||||
} else {
|
||||
obj["ALTNbrk"].setColor(0.0509,0.7529,0.2941);
|
||||
}
|
||||
}
|
||||
|
||||
# TODO check the parking brake with nws switch off
|
||||
if (val.brakesMode == 2 and val.accumPressPsi < 200 and val.yellow < 1500) {
|
||||
obj["accuonlyarrow"].hide();
|
||||
obj["accuonly"].hide();
|
||||
obj["accupress_text"].show();
|
||||
obj["brakearrow"].hide();
|
||||
obj["accupress_text"].setColor(0.7333,0.3803,0);
|
||||
} else if (val.brakesMode == 2 and val.accumPressPsi > 200 and val.yellow >= 1500){
|
||||
obj["accuonlyarrow"].hide();
|
||||
obj["accuonly"].hide();
|
||||
obj["accupress_text"].show();
|
||||
obj["brakearrow"].show();
|
||||
obj["accupress_text"].setColor(0.0509,0.7529,0.2941);
|
||||
|
@ -176,8 +186,43 @@ var canvas_lowerECAMPageWheel =
|
|||
obj["brakearrow"].hide();
|
||||
obj["accupress_text"].hide();
|
||||
}
|
||||
|
||||
if (val.brakesMode == 1) {
|
||||
obj["releaseL1"].hide();
|
||||
obj["releaseL2"].hide();
|
||||
obj["releaseL3"].hide();
|
||||
obj["releaseL4"].hide();
|
||||
obj["releaseR1"].hide();
|
||||
obj["releaseR2"].hide();
|
||||
obj["releaseR3"].hide();
|
||||
obj["releaseR4"].hide();
|
||||
} else { # Display if the brakes are released and in alternate braking
|
||||
if (val.leftBrakeFCS == 0) {
|
||||
obj["releaseL1"].show();
|
||||
obj["releaseL2"].show();
|
||||
obj["releaseL3"].show();
|
||||
obj["releaseL4"].show();
|
||||
} else {
|
||||
obj["releaseL1"].hide();
|
||||
obj["releaseL2"].hide();
|
||||
obj["releaseL3"].hide();
|
||||
obj["releaseL4"].hide();
|
||||
}
|
||||
|
||||
if (val.rightBrakeFCS == 0) {
|
||||
obj["releaseR1"].show();
|
||||
obj["releaseR2"].show();
|
||||
obj["releaseR3"].show();
|
||||
obj["releaseR4"].show();
|
||||
} else {
|
||||
obj["releaseR1"].hide();
|
||||
obj["releaseR2"].hide();
|
||||
obj["releaseR3"].hide();
|
||||
obj["releaseR4"].hide();
|
||||
}
|
||||
}
|
||||
}),
|
||||
props.UpdateManager.FromHashList(["brakeAutobrkMode"], nil, func(val) {
|
||||
props.UpdateManager.FromHashList(["brakeAutobrkMode","NWSSwitch"], nil, func(val) {
|
||||
if (val.brakeAutobrkMode == 0) {
|
||||
obj["autobrkind"].hide();
|
||||
} elsif (val.brakeAutobrkMode == 1) {
|
||||
|
@ -191,11 +236,17 @@ var canvas_lowerECAMPageWheel =
|
|||
obj["autobrkind"].setText(sprintf("%s", "MAX"));
|
||||
}
|
||||
|
||||
if (val.brakeAutobrkMode != 0) {
|
||||
if (val.brakeAutobrkMode != 0 or !val.NWSSwitch) {
|
||||
obj["autobrk"].show();
|
||||
} else {
|
||||
obj["autobrk"].hide();
|
||||
}
|
||||
|
||||
if (!val.NWSSwitch) {
|
||||
obj["autobrk"].setColor(0.7333,0.3803,0);
|
||||
} else {
|
||||
obj["autobrk"].setColor(0.0509,0.7529,0.2941);
|
||||
}
|
||||
}),
|
||||
props.UpdateManager.FromHashValue("brakeLeft1", 0.5, func(val) {
|
||||
obj["braketemp1"].setText(sprintf("%s", math.round(val, 5)));
|
||||
|
@ -578,7 +629,8 @@ var canvas_lowerECAMPageWheel =
|
|||
"spoiler1Lf","spoiler2Lf","spoiler3Lf","spoiler4Lf","spoiler5Lf","ALTNbrk","altnbrkhyd","altnbrk-rect","antiskidtext","brakearrow","accupress_text",
|
||||
"accuonlyarrow","accuonly","braketemp1","normbrkhyd","braketemp2","braketemp3","braketemp4","toparc1","toparc2","toparc3","toparc4","leftuplock",
|
||||
"noseuplock","rightuplock","Triangle-Left1","Triangle-Left2","Triangle-Nose1","Triangle-Nose2","Triangle-Right1","Triangle-Right2","BSCUrect1",
|
||||
"BSCUrect2","BSCU1","BSCU2","tirepress1","tirepress2","tirepress3","tirepress4","tirepress5","tirepress6"];
|
||||
"BSCUrect2","BSCU1","BSCU2","tirepress1","tirepress2","tirepress3","tirepress4","tirepress5","tirepress6","releaseL1","releaseL2","releaseR1","releaseR2",
|
||||
"releaseL3","releaseL4","releaseR3","releaseR4"];
|
||||
},
|
||||
updateBottom: func(notification) {
|
||||
foreach(var update_item_bottom; me.updateItemsBottom)
|
||||
|
|
|
@ -41,9 +41,9 @@
|
|||
inkscape:window-height="705"
|
||||
id="namedview371"
|
||||
showgrid="true"
|
||||
inkscape:zoom="0.45254834"
|
||||
inkscape:cx="498.40273"
|
||||
inkscape:cy="607.76607"
|
||||
inkscape:zoom="0.64"
|
||||
inkscape:cx="1071.5554"
|
||||
inkscape:cy="763.4389"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="-8"
|
||||
inkscape:window-maximized="1"
|
||||
|
@ -370,14 +370,14 @@
|
|||
id="NORMbrk"
|
||||
y="616.38831"
|
||||
x="426.55933"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
xml:space="preserve"
|
||||
inkscape:label="#text4285"><tspan
|
||||
y="616.38831"
|
||||
x="426.55933"
|
||||
id="tspan4287"
|
||||
sodipodi:role="line"
|
||||
style="font-size:32px;line-height:1.25;fill:#0dc04b;fill-opacity:1">NORM BRK</tspan></text>
|
||||
style="font-size:32px;line-height:1.25;fill:#bb6100;fill-opacity:1;">NORM BRK</tspan></text>
|
||||
<text
|
||||
id="accupress_text"
|
||||
y="707.69037"
|
||||
|
@ -484,7 +484,7 @@
|
|||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">999</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="926.31042"
|
||||
y="555.97632"
|
||||
id="releaseR3"
|
||||
|
@ -494,33 +494,33 @@
|
|||
id="tspan4329"
|
||||
x="926.31042"
|
||||
y="555.97632"
|
||||
style="font-size:21.63888741px;line-height:1.25">|||</tspan></text>
|
||||
style="font-size:21.63888741px;line-height:1.25;fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<text
|
||||
transform="scale(0.83828115,1.1929172)"
|
||||
id="releaseL3"
|
||||
y="555.97632"
|
||||
x="852.14044"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
xml:space="preserve"
|
||||
inkscape:label="#text4331"><tspan
|
||||
y="555.97632"
|
||||
x="852.14044"
|
||||
id="tspan4333"
|
||||
sodipodi:role="line"
|
||||
style="font-size:21.63888741px;line-height:1.25">|||</tspan></text>
|
||||
style="font-size:21.63888741px;line-height:1.25;fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<text
|
||||
transform="scale(0.83828115,1.1929172)"
|
||||
id="releaseL4"
|
||||
y="556.23566"
|
||||
x="1048.9662"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
xml:space="preserve"
|
||||
inkscape:label="#text4335"><tspan
|
||||
y="556.23566"
|
||||
x="1048.9662"
|
||||
id="tspan4337"
|
||||
sodipodi:role="line"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.63888741px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">|||</tspan></text>
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.63888741px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
|
@ -547,7 +547,7 @@
|
|||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">REL</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="80.142349"
|
||||
y="607.25616"
|
||||
id="releaseL1"
|
||||
|
@ -557,23 +557,23 @@
|
|||
id="tspan4353"
|
||||
x="80.142349"
|
||||
y="607.25616"
|
||||
style="font-size:23.3301487px;line-height:1.25">|||</tspan></text>
|
||||
style="font-size:23.3301487px;line-height:1.25;fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<text
|
||||
transform="scale(0.91562312,1.0921524)"
|
||||
id="releaseR1"
|
||||
y="606.97186"
|
||||
x="147.61992"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
xml:space="preserve"
|
||||
inkscape:label="#text4355"><tspan
|
||||
y="606.97186"
|
||||
x="147.61992"
|
||||
id="tspan4357"
|
||||
sodipodi:role="line"
|
||||
style="font-size:23.3301487px;line-height:1.25">|||</tspan></text>
|
||||
style="font-size:23.3301487px;line-height:1.25;fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="254.77022"
|
||||
y="607.25616"
|
||||
id="releaseL2"
|
||||
|
@ -583,20 +583,20 @@
|
|||
id="tspan4361"
|
||||
x="254.77022"
|
||||
y="607.25616"
|
||||
style="font-size:23.3301487px;line-height:1.25">|||</tspan></text>
|
||||
style="font-size:23.3301487px;line-height:1.25;fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<text
|
||||
transform="scale(0.91562313,1.0921524)"
|
||||
id="releaseR2"
|
||||
y="606.97186"
|
||||
x="321.23053"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-weight:normal;line-height:0%;font-family:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
xml:space="preserve"
|
||||
inkscape:label="#text4363"><tspan
|
||||
y="606.97186"
|
||||
x="321.23053"
|
||||
id="tspan4365"
|
||||
sodipodi:role="line"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:23.3301487px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans'">|||</tspan></text>
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:23.3301487px;line-height:1.25;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<path
|
||||
style="fill:#cecdce;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 62.082323,383.88565 50.858397,0 0,2.80598 -50.861852,-0.0503 z"
|
||||
|
@ -1062,7 +1062,7 @@
|
|||
inkscape:label="#rect4336" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="636.59528"
|
||||
y="554.79926"
|
||||
id="BSCU2"
|
||||
|
@ -1071,10 +1071,10 @@
|
|||
id="tspan192"
|
||||
x="636.59528"
|
||||
y="554.79926"
|
||||
style="font-size:32px;line-height:1.25;fill:#bb6100;fill-opacity:1">2</tspan></text>
|
||||
style="font-size:32px;line-height:1.25;fill:#0dc04b;fill-opacity:1;">2</tspan></text>
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="602.89856"
|
||||
y="554.79913"
|
||||
id="BSCU1"
|
||||
|
@ -1083,7 +1083,7 @@
|
|||
id="tspan195"
|
||||
x="602.89856"
|
||||
y="554.79913"
|
||||
style="font-size:32px;line-height:1.25;fill:#bb6100;fill-opacity:1">1</tspan></text>
|
||||
style="font-size:32px;line-height:1.25;fill:#0dc04b;fill-opacity:1;">1</tspan></text>
|
||||
<rect
|
||||
y="336.88196"
|
||||
x="364.16824"
|
||||
|
@ -1114,17 +1114,17 @@
|
|||
inkscape:label="#path4358" />
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#cecdce;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#bb6100;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
|
||||
x="1123.6205"
|
||||
y="555.97632"
|
||||
id="releaseR3-7"
|
||||
id="releaseR4"
|
||||
transform="scale(0.83828114,1.1929172)"
|
||||
inkscape:label="#text4327"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan4329-4"
|
||||
x="1123.6205"
|
||||
y="555.97632"
|
||||
style="font-size:21.63888741px;line-height:1.25;stroke-width:1px">|||</tspan></text>
|
||||
style="font-size:21.63888741px;line-height:1.25;stroke-width:1px;fill:#bb6100;fill-opacity:1;">|||</tspan></text>
|
||||
<text
|
||||
inkscape:label="#text4355-7"
|
||||
transform="scale(0.92732085,1.0783754)"
|
||||
|
@ -1190,14 +1190,14 @@
|
|||
inkscape:label="#text4289"
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0%;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans';letter-spacing:0px;word-spacing:0px;fill:#0dc04b;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
x="457.25626"
|
||||
y="745.80786"
|
||||
x="441.43594"
|
||||
y="707.69073"
|
||||
id="accuonly"><tspan
|
||||
style="font-size:32px;line-height:1.25"
|
||||
sodipodi:role="line"
|
||||
id="tspan4312"
|
||||
x="457.25626"
|
||||
y="745.80786">ACCU ONLY</tspan></text>
|
||||
x="441.43594"
|
||||
y="707.69073">ACCU ONLY</tspan></text>
|
||||
<path
|
||||
inkscape:label="#path4358"
|
||||
sodipodi:nodetypes="cccccccccc"
|
||||
|
|
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 69 KiB |
|
@ -29,13 +29,25 @@
|
|||
</actuator>
|
||||
|
||||
<!-- Green -->
|
||||
<switch name="/systems/hydraulic/green-qty-cmd">
|
||||
<switch name="/systems/hydraulic/green-qty-cmd-cmd">
|
||||
<default value="/systems/hydraulic/green-qty-input"/>
|
||||
<test value="0">
|
||||
/systems/failures/hydraulic/green-leak eq 1
|
||||
</test>
|
||||
</switch>
|
||||
|
||||
<fcs_function name="/systems/hydraulic/green-qty-cmd">
|
||||
<function>
|
||||
<sum>
|
||||
<property>/systems/hydraulic/green-qty-cmd-cmd</property>
|
||||
<product>
|
||||
<value>2.1</value>
|
||||
<property>/gear/gear[0]/position-norm</property>
|
||||
</product>
|
||||
</sum>
|
||||
</function>
|
||||
</fcs_function>
|
||||
|
||||
<switch name="/systems/hydraulic/green-qty-decr-rate">
|
||||
<default value="100"/> <!-- Instant -->
|
||||
<test value="0.25">
|
||||
|
|
Loading…
Add table
Reference in a new issue