-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(efb): flyPadOS 3 (#6528) @12226f0e1
- Loading branch information
1 parent
6e3df93
commit 02215d4
Showing
296 changed files
with
37,139 additions
and
10,621 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
|
||
* text=auto | ||
|
||
# Ensure LF for shell files, even on Windows, so that bash inside Docker does not panic | ||
*.sh text eol=lf | ||
|
||
# Ensure the language files update during build are not marked as changed due to different | ||
# line endings. | ||
/src/instruments/src/EFB/Localization/*.json text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,4 @@ | |
} | ||
], | ||
"version": 4 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+220 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/NotoSansDevanagari-Light.ttf
Binary file not shown.
Binary file added
BIN
+228 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/NotoSansDevanagari-Medium.ttf
Binary file not shown.
Binary file added
BIN
+223 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/NotoSansDevanagari-Regular.ttf
Binary file not shown.
Binary file added
BIN
+230 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/NotoSansDevanagari-SemiBold.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-36.1 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/ibm-plex-mono-v6-latin-300.ttf
Binary file not shown.
Binary file removed
BIN
-36.9 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/nunito-sans-v6-latin-200.ttf
Binary file not shown.
Binary file removed
BIN
-37.8 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/nunito-sans-v6-latin-700.ttf
Binary file not shown.
Binary file removed
BIN
-37.7 KB
flybywire-aircraft-a320-neo/html_ui/Fonts/nunito-sans-v6-latin-regular.ttf
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
flybywire-aircraft-a320-neo/html_ui/Pages/A32NX_Core/A32NX_Pushback.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
class A32NX_Pushback { | ||
constructor() {} | ||
|
||
init() { | ||
SimVar.SetSimVarValue('L:A32NX_PUSHBACK_TUG_DIRECTION_FACTOR', 'number', -1); | ||
console.log("A32NX Pushback Initialized."); | ||
} | ||
|
||
update(_deltaTime) { | ||
const simOnGround = SimVar.GetSimVarValue('SIM ON GROUND', 'number'); | ||
const pushBackAttached = SimVar.GetSimVarValue('Pushback Attached', 'bool'); | ||
|
||
if (!(pushBackAttached && simOnGround)) { | ||
return; | ||
} | ||
console.log(SimVar.GetSimVarValue('A:RUDDER POSITION', 'number')); | ||
const tugSpeed = SimVar.GetSimVarValue('L:A32NX_TUG_SPEED', 'number'); | ||
const parkingBrakeEngaged = SimVar.GetSimVarValue('L:A32NX_PARK_BRAKE_LEVER_POS', 'Bool'); | ||
const commandedTugDirectionFactor = SimVar.GetSimVarValue('L:A32NX_PUSHBACK_TUG_DIRECTION_FACTOR', 'number'); | ||
const commandedTugHeadingFactor = SimVar.GetSimVarValue('L:A32NX_PUSHBACK_TUG_HEADING_FACTOR', 'number'); | ||
|
||
SimVar.SetSimVarValue('VELOCITY BODY X', 'Number', 0); | ||
SimVar.SetSimVarValue('VELOCITY BODY Y', 'Number', 0); | ||
SimVar.SetSimVarValue('VELOCITY BODY Z', 'Number', tugSpeed * (parkingBrakeEngaged ? 0.75 : 8) * commandedTugDirectionFactor); | ||
|
||
SimVar.SetSimVarValue('ROTATION VELOCITY BODY X', 'Number', 0); | ||
SimVar.SetSimVarValue('ROTATION VELOCITY BODY Y', 'Number', tugSpeed * (parkingBrakeEngaged ? 0.015 : 0.16) * commandedTugHeadingFactor * commandedTugDirectionFactor); | ||
SimVar.SetSimVarValue('ROTATION VELOCITY BODY Z', 'Number', 0); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...neo/html_ui/Pages/VCockpit/Instruments/Airliners/FlyByWire_A320_Neo/CDU/A320_Neo_CDU.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.