torsten
c380c111a0
- pushback is allways visible when the dialog is opened
...
- pushback goes away when the dialog is closed
- pushback may be hidden when the dialog is visible
2009-05-06 17:03:40 +00:00
torsten
75aa906b26
limit tow speed to approx. 20kts
2009-05-06 13:39:55 +00:00
torsten
09e1472fdf
- set speed instead of force by slider
...
- defineable properties for speed hold (cruise control) pid controller
check the wiki http://wiki.flightgear.org/index.php/Howto:_Implent_pushback for details
2009-05-06 11:27:10 +00:00
mfranz
b71c0c580e
add signum function sgn(); consistent use of braces
2009-05-05 18:34:53 +00:00
mfranz
233a9d27f4
- defined(): also consider the global namespace (as the comment implies)
...
- move local namespace container up
2009-05-05 18:33:43 +00:00
torsten
28018bd083
get rid of pushback.nas by instantiating the aircraft.door when opening the dialog.
2009-05-05 14:17:36 +00:00
abory
0734e178bc
- Change connexion command to fit /Nasal/pushback.nas
2009-05-04 23:26:06 +00:00
abory
6a66414638
- Now the pushback "door" will be created only if /sim/model/pushback has
...
already been created by the modeler via the <aircraft>-set.xml file.
- Varified the code, removed the class structure, tests the nasal dir
initialization first.
- As part of the Nasal dir, the script must *not* be declared in the
<aircraft>-set.xml file.
2009-05-04 21:40:08 +00:00
vmmeazza
343538a5d8
AndersG, hindered by me, has produced a nice uitility which enables players to share a carrier over MP. One player controls the carrier, and others can launch and recover.
2009-05-04 20:56:32 +00:00
abory
613b5f105d
- Gijs de Rooy: Generic pushback.
2009-05-04 11:20:44 +00:00
abory
2bb2de3645
- Oooops, sorry for that.
2009-05-04 11:12:52 +00:00
abory
f5601ebf3a
- Ooops, sorry for that.
2009-05-04 11:03:39 +00:00
abory
36bad881f0
- Gijs de Rooy: Generic pushback.
2009-05-04 10:58:27 +00:00
vmmeazza
7b24684016
Add information on the control axis LACCEL. Correct typos.
2009-05-02 08:30:34 +00:00
stuart
29541548b6
Updated Cumulus cloud textures from Argyle.
2009-04-29 20:22:00 +00:00
helijah
65732e2376
- change color system
2009-04-29 16:26:31 +00:00
sydadams
2443c2258f
material , pick animation update
2009-04-26 19:34:09 +00:00
sydadams
9cd8a18385
changed material
2009-04-26 19:32:40 +00:00
sydadams
ff6ceb0e24
one more material change
2009-04-26 19:32:01 +00:00
sydadams
bff22aee78
added mousewheel action to knobs
2009-04-26 03:35:45 +00:00
sydadams
5725eb5c07
added mouse wheel action to knobs
2009-04-26 03:34:47 +00:00
sydadams
2b6ad4146e
fixed a pick animation error
2009-04-26 02:48:08 +00:00
mfranz
35d506bce1
isnan: shorter & faster
2009-04-24 08:12:21 +00:00
curt
dcb7d9427e
Fix the glide slope unavailable/warning flag so it actually works correctly.
2009-04-22 18:15:41 +00:00
curt
6ab2bca4ef
Add a variant of the high res c172 rpm gauge that includes a working
...
LCD hobbs meter (instead of the previous "static" hobbs meter that was pretty
but didn't ever change.) This requires some aircraft specific nasal support
since the hobbs meter isn't implemented in the same way on every aircraft:
# initialize the hobbs meter and configure to save every 5 minutes
var hobbs = aircraft.timer.new("/instrumentation/clock/hobbs-meter-sec");
aircraft.data.save(5);
hobbs.stop();
setlistener( "/engines/engine[0]/running",
func {
var running = getprop("/engines/engine[0]/running");
if ( running ) {
hobbs.start();
} else {
hobbs.stop();
}
}
);
setlistener( "/instrumentation/clock/hobbs-meter-sec",
func {
var secs = getprop("/instrumentation/clock/hobbs-meter-sec");
setprop("/instrumentation/clock/hobbs-meter-hours", secs / 3600);
},
1
);
2009-04-22 18:11:23 +00:00
sydadams
b6ccd90066
texture update
...
pick animation update
remove nasal dependency
2009-04-17 04:19:51 +00:00
sydadams
1336f7b6df
Texture change
...
pick animation update
remove nasal file dependancy
2009-04-17 04:17:46 +00:00
vmmeazza
9a2e19c234
Anders - Bugfix
2009-04-13 21:41:52 +00:00
ehofman
849cf56a17
Set minthrottle to 0.1 for latest JSBSim engine codec172-sound.xml
2009-04-13 11:47:06 +00:00
ehofman
c935f28f90
reinstate full tyre squeal effects
2009-04-13 11:46:25 +00:00
ehofman
9638e5f1aa
make the tire squeal audiable again. Need to find out why it doesn't work otherwise.
2009-04-13 10:01:03 +00:00
sydadams
6ed10f3005
the primus now needs a systems/electrical/outputs/efis for power source
2009-04-13 04:42:50 +00:00
ehofman
95060d12ac
delay darkening the skydome a bit
2009-04-11 13:19:29 +00:00
vmmeazza
ff742b68dc
Alexis Bory has added some wonderful detail to the Nimitz model. The new model is USS Vinson. A new TACAN code is assigned - 029X. You might need it to find her!
2009-04-10 09:44:24 +00:00
ehofman
d3f9764a2d
new ambient table, all values miltuplied by 2.5
2009-04-05 09:24:22 +00:00
curt
59d5f20012
Add a protocol file to output "truth" values.
2009-04-03 17:50:51 +00:00
mfranz
894003a865
tanker: avoid cloud layers; drop identity.init
2009-03-30 20:12:57 +00:00
mfranz
834afe5aa7
make file reloadable at runtime; minor fixes; cleanup
2009-03-29 08:04:35 +00:00
torsten
7107a39010
added new features:
...
- conditions for InputValues
- multiple InputValues
2009-03-28 13:03:18 +00:00
mfranz
b7098b0bda
Dave PERRY: pa24/instruments-3d: ambient & transparency fixes
...
- Corrects ambient for pa24-250 oat and radio stack .ac files.
- Removes osg transparency artifacts for Century III mode switch.
2009-03-25 19:07:20 +00:00
mfranz
715fec092b
add callsign to warning message, cleanup
2009-03-25 17:53:40 +00:00
mfranz
d1df1132c6
add tangens function
2009-03-25 17:52:43 +00:00
mfranz
7ef387cc0a
fly refueling pattern (leg length 50 nm)
2009-03-25 17:47:56 +00:00
mfranz
ecd8c1b71f
make model-not-installed message a little less noisy
2009-03-23 21:24:41 +00:00
mfranz
073c711b89
Dave PERRY: fix ambient grey-out and texture for the pa24 yoke
2009-03-23 20:47:07 +00:00
mfranz
5cb5b0bc7e
Dave PERRY: ambient color fixes
2009-03-21 21:11:55 +00:00
mfranz
53e733d425
new isnan() that doesn't create a NaN itself
2009-03-21 18:17:59 +00:00
abory
54691b8309
- Check for NaN or neg values before math.sqrt().
2009-03-21 17:17:18 +00:00
mfranz
7ee14f044c
fix removal of data entries if channel is used elsewhere
2009-03-20 11:08:09 +00:00
torsten
434a25d329
- change amb color
2009-03-20 08:49:15 +00:00