Re: [Flightgear-devel] F-14 anyone?

2006-04-28 Thread Ron Jensen
On Fri, 2006-04-28 at 07:33 +0200, Mathias Fröhlich wrote:
 On Friday 28 April 2006 04:37, Curtis L. Olson wrote:
  Is anyone out there working on an F-14 Tomcat (like from the movie,
  Top-Gun with Tom Cruise.)  I talked to a guy today who flies F-14's and
  would be able to provide a lot of information and feedback to anyone
  who'd like to start working on one of these.  Now that we have working
  aircraft carriers, a slightly more modern carrier based jet would be a
  nice addition to the fleet.  If anyone is interested, let me know and I
  can put you in touch.
 
  http://www.fortunecity.com/marina/manatee/272/tomcat.gif
 I have even more detailed 1:72 scale 3-views in a magazine.
 I can provide these too.
 
 greetings
 
 Mathias
 

http://www.airwar.ru/other/draw/f14.html

Know any F-4 pilots?

Ron




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] Nasal function and keyboard shortcut for autobrake functionality

2006-04-28 Thread Savaş Yatmaz
Hi,

I saw and tested the autobrake functionality on 737-300,and it works well.I 
can set it with http server or internal property editor.Is there a plan to 
assign a keyboard shortcut to it?

Nasal func :

--
autobrakeArmedToggle = func { if 
(getprop(/controls/flight/autospeedbrakes-armed) == true) {

setprop(/controls/flight/autospeedbrakes-armed , false);}
else { 
setprop(/controls/flight/autospeedbrakes-armed , true);}
}
--

Keyboard shortcut :

--
 key n=79
 nameO/name
 descToggle autobrake./desc
 binding
 commandnasal/command
 scriptcontrols.autobrakeArmedToggle()/script
 /binding
 /key

--


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] Re: Nasal function and keyboard shortcut for autobrake functionality

2006-04-28 Thread Melchior FRANZ
* Savaş Yatmaz -- Friday 28 April 2006 15:13:
 I saw and tested the autobrake functionality on 737-300,and it works well.I 
 can set it with http server or internal property editor.Is there a plan to 
 assign a keyboard shortcut to it?

No. We only set global keybindings if they are useful for several
aircraft, not just one or very few. Which doesn't keep me from nitpicking,
of course:  ;-)



 autobrakeArmedToggle = func { if 
 (getprop(/controls/flight/autospeedbrakes-armed) == true) {
 setprop(/controls/flight/autospeedbrakes-armed , false);}
 else { setprop(/controls/flight/autospeedbrakes-armed , true);}
 }

Usage of strings true and false for 1 and 0 is not recommended.
It's not only slower, but forces newly created properties to become
type STRING. And if (foo) doesn't do what you'd expect, if foo
is a string bool, as every non-empty string is considered true, even
if it contains false.

And one would probably try to avoid to specify one and the same
property path three times:

  autobrakeArmedToggle = func {
  var p = /controls/flight/autospeedbrakes-armed;
  setprop(p, !getprop(p));
  }

m.


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Nasal function and keyboard shortcut for autobrake functionality

2006-04-28 Thread James Turner
On 28 Apr 2006, at 14:13, Savaş Yatmaz wrote:I saw and tested the autobrake functionality on 737-300,and it works well.I  can set it with http server or internal property editor.Is there a plan to  assign a keyboard shortcut to it?  Nasal func :  -- autobrakeArmedToggle = func { if  (getprop("/controls/flight/autospeedbrakes-armed") == "true") { 		setprop("/controls/flight/autospeedbrakes-armed" , "false");} else { setprop("/controls/flight/autospeedbrakes-armed" , "true");} 			    } Just to be clear, this looks like an 'auto-spoiler' function, not an autobrake function (which applies the wheel brakes in response to the weight-on-wheels flag, in a 'clever' fashion, I think it waits for the nose gear to touch before it applies the brakes, whereas some auto-spoilers deploy when the main gear touches)Assuming this is an auto-spoiler function, it hardly needs a keyboard shortcut; moving the spoiler lever on the throttle quadrant to the relevant 'armed' position should do it. The autobrakes on the boeings I'm aware of are activated by a rotary switching on the middle of the panel (near the main gear lever), which has settings 1-3? and 'Max', which presumably does something  aggressive ... with the brake application.HHJames

Re: [Flightgear-devel] Nasal function and keyboard shortcut for autobrake functionality

2006-04-28 Thread Dave Culp
On Friday 28 April 2006 08:52 am, James Turner wrote:

 Just to be clear, this looks like an 'auto-spoiler' function, not an


The nasal code in the 737 combines the functions of the autobrakes and the 
autospeedbrakes, since they share some triggers.

There are no key bindings defined for these.  It awaits a clickable 3D panel.


Dave


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] 747-autopilot.xml

2006-04-28 Thread Justin Smithies
Not being a fully trained pilot , i dont know if this is right but i have 
found if i go below 365 kts the aircraft stops going up and down all the time 
and flys level at the set altitude if i go above 365 kts it starts to go up 
and down a few hundred feet all the time until you take off the altitude hold 
or reduce speed again.

Any ideas ?

Cheers
Justin Smithies


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] A4F - AAR Capability

2006-04-28 Thread Vivian Meazza
Hi,

I committed a new facility for the A4F yesterday. It now has a functioning
AAR capability with YASim, like the one already available for JSBSim. I have
also taken the opportunity to adjust the panel to make it more nearly like
that of an A4F, rather than an A4C, although a couple of the instruments are
not correct, principally the ASI should be replaced with a combined ASI/Mach
instrument. I have added a nav-display on which TACAN data is displayed. In
due course waypoints will also be displayed there as well.

To use all these goodies, you need to have included refuelling_demo_1.xml in
your preferences.xml file. You can then tune your TACAN to the channel of
the KC135 (039X), which is on a long N/S racetrack starting in the vicinity
of KSFO. You will see the TACAN position on the nav display (it's a Plan
Position Indicator so N is always up). You can make your approach, and when
you are within 250 ft of the tanker, a green light will come on in the fuel
contents gauge, and fuel transfer will take place. When you have taken
enough fuel, you can break off. If you also have nimitz_demo.xml in your
preference file, you cab retune your TACAN to the Nimitz channel (029Y), and
recover back aboard.

That should keep you busy for a while, enjoy!

Regards,

Vivian 

PS Yes, the A4 has a probe while the KC135 is a boom refueller. I'm working
on a KA6-D right now.  



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 747-autopilot.xml

2006-04-28 Thread Rex

Justin,

Check to see if it is also rolling and pitching slowly.  In that case
you have excited the Dutch Roll, which may be what you would
expect at higher speeds.

Rex

Justin Smithies wrote:

Not being a fully trained pilot , i dont know if this is right but i have 
found if i go below 365 kts the aircraft stops going up and down all the time 
and flys level at the set altitude if i go above 365 kts it starts to go up 
and down a few hundred feet all the time until you take off the altitude hold 
or reduce speed again.


Any ideas ?

Cheers
Justin Smithies


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

 




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] A4F - AAR Capability

2006-04-28 Thread Dave Culp
On Friday 28 April 2006 12:08 pm, Vivian Meazza wrote:
 I committed a new facility for the A4F yesterday. It now has a functioning
 AAR capability with YASim, like the one already available for JSBSim. ...

Great.  I can't wait to try it out.  BTW, now I can stop using the T-38 as a 
refueling demonstrator :)  It's still a radar demonstrator though, unless 
someone else has added radar to his model?

Will the KA-6 be part of the carrier AI scenario?

Dave


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] [RFC] new waypoint dialog

2006-04-28 Thread Melchior FRANZ
I've now put everything in place in sg  fgfs that was need to replace
the old waypoint dialog with something fancier. I intend to throw out
auto_gui.[ch]xx, so I better warn you and ask for comments. If nobody
objects, then I'll commit this in a few days (I'm away over weekend).

  http://members.aon.at/mfranz/waypoints.jpg  [24 kB]


And it goes like this:

* move a few parts of auto_gui.cxx to route_mgr.cxx
* remove auto_gui.[ch]xx  (there are a few unused dialogs in there that
  will just get dropped without replacement; Easy to add later on as
  XML-dialogs if we need them. But I doubt we will.)
* implements almost all functionality as XML dialog with embedded Nasal
* adds a listener property that waits for the well-known waypoint
  specifications ([EMAIL PROTECTED] etc.), *and* for these commands:

  $CLEAR  ... to clear the route
  $POP... to remove the first entry
  $DELETE 3   ... to remove the 4th entry

  These commands replace the fgcommands, but if people insist, then I'll
  add regular fgcommands as wrappers.
* as written above, drop deprecated fgcommands:
  old-ap-add-waypoint-dialog, old-ap-pop-waypoint-dialog, 
old-ap-clear-route-dialog


Advantages:

* removes ugly and modal hardcoded dialog
* non-blocking, draggable
* dialog is live: entries are immediately effective, the status line (top)
  shows current distance/Estimated Time of Arrival towards active waypoint
* the Remove button removes the selected entry, or the last if none selected
* input doesn't need to be in upper-case letters, but automatically converted 


TODO:

* allow to insert waypoints *in* the list (currently always appended)
* allow lon/lat waypoints in addition to airports  fixes

m.


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] F-14 anyone?

2006-04-28 Thread flying.toaster
If a 3D exterior model is needed I will contribute (blender)
I have an Aerofax on the tomcat with lots of pictures. 
I'm interested in the B (A+) make since the nozzles are the 
smooth F110 ones and the avionics still are a little crude (easier to model).
I would need somebody to help with the textures and animations though...

Enrique


 Message du 28/04/06 à 09h33
 De : Ron Jensen [EMAIL PROTECTED]
 A : flightgear-devel@lists.sourceforge.net
 Copie à : 
 Objet : Re: [Flightgear-devel] F-14 anyone?
 
 On Fri, 2006-04-28 at 07:33 +0200, Mathias Fröhlich wrote:
  On Friday 28 April 2006 04:37, Curtis L. Olson wrote:
   Is anyone out there working on an F-14 Tomcat (like from the movie,
   Top-Gun with Tom Cruise.)  I talked to a guy today who flies F-14's and
   would be able to provide a lot of information and feedback to anyone
   who'd like to start working on one of these.  Now that we have working
   aircraft carriers, a slightly more modern carrier based jet would be a
   nice addition to the fleet.  If anyone is interested, let me know and I
   can put you in touch.
  
   http://www.fortunecity.com/marina/manatee/272/tomcat.gif
  I have even more detailed 1:72 scale 3-views in a magazine.
  I can provide these too.
  
  greetings
  
  Mathias
  
 
 http://www.airwar.ru/other/draw/f14.html
 
 Know any F-4 pilots?
 
 Ron
 
 
 
 
 ---
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
 ___
 Flightgear-devel mailing list
 Flightgear-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/flightgear-devel
 




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] Re: statistics: usage of texture memory (shocking!)

2006-04-28 Thread Frederic Bouvier
Melchior FRANZ wrote :
 OBJECT_STATIC, in turn, are not shared, but freed with the tile. Their
 textures aren't shared either. Would be nice if they did, of course.
 OTOH, most of the static objects have textures that are of no use for
 other models, so it's not a big problem.
   

Perhaps you already noticed, but I checked a change to model.cxx that
allow PLIB, with its own mecanism, to reuse textures from models to models.

I did it the minimal way, just removing the cache clear after a model
load. We could rewrite ssgLoaderOptions::createTexture to use a map
instead of a linear list to cache the texture name if we think it could
improve that even better. These functions are virtual.

-Fred

-- 
Frédéric Bouvier
http://frfoto.free.fr Photo gallery - album photo
http://www.fotolia.fr/p/2278  Other photo gallery
http://fgsd.sourceforge.net/  FlightGear Scenery Designer




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] FGLive 0.1 bravo ready for testing

2006-04-28 Thread Christian Mayer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Pigeon schrieb:
 http://pigeond.net/flightgear/fglive-0.1bravo.torrent
 
 532mb, md5sum b0a267cc0d789314d0347129abb50724
 
 README: http://pigeond.net/flightgear/README.fglive.html

OK, this looks much better on my laptop.

Selecting only the defaults (+ the German version in GRUB) resulted in a
frame rate of 4 fps (i.e. with the ati/radeon GPL driver). Stopping X
and selecting the newest closed source driver I get about 40 fps (i.e.
roughly the same that I get under Windows XP).

The keyboard layout also worked as expected.

This time I also had sound working

Problems were:

- - eth1 didn't get a IP addresse via DHCP (eth0 doesn't exist...), an
ifup eth1 fixed that
- - my USB joystick (pluged in after boot) showed up on the console, but
not in FGFS. It even worked under js_demo...
- - I couldn't get a multiplayer connection. No errors were reported though.
- - minor problem: the time/clock was two hours off. (I suspect that the
kernel thinks my CMOS clock runs GMT, but that assumption is wrong for
Windows)

Something to consider:

The current windowsmanager is totally unintuitive for windows users. As
they are perhaps the biggest user group that'll use FGLive, it might be
worthwhile to take special care.
The two biggest problems for Windows users might be:
- - focus should change on mouse click, not on where the mouse points at
- - the menu should be available from a button on the bottom left corner.
No windows user will think of pressing the right mouse button to run a
program...

So far the Live CD is already very impressive!

CU,
Christian

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (MingW32)

iD8DBQFEUou1lhWtxOxWNFcRAiQ0AKC17/Ay8ouQ5J9l54nSsQ7soqOo0wCfaBGW
Axia9tzbb5u+m//OyA3nTos=
=ph3i
-END PGP SIGNATURE-


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] A4F - AAR Capability

2006-04-28 Thread Ron Jensen
Hi Vivian,

On Fri, 2006-04-28 at 18:08 +0100, Vivian Meazza wrote:
 Hi,
 
 I have
 also taken the opportunity to adjust the panel to make it more nearly like
 that of an A4F, rather than an A4C, although a couple of the instruments are
 not correct, principally the ASI should be replaced with a combined ASI/Mach
 instrument. 

Take a look at my F-4's ASI/Mach meter. 
http://www.jentronics.com/fgfs/f4e-progress03.jpg 
model at http://www.jentronics.com/fgfs/F4E.tgz

This meter is close to the A-4 instrument from my limited research.  It
reads 0-800 KIAS, while I  think the A-4 instrument is 0-600 KIAS.  Your
welcome to drop the F4 instrument into the A4, its GPL.


 PS Yes, the A4 has a probe while the KC135 is a boom refueller. I'm working
 on a KA6-D right now.  

http://www.airforce-technology.com/projects/kc135/kc1351.html 
http://www.af.mil/photos/index.asp?galleryID=38page=2
KC-135s have drogue refueling equipment available, so its not totally
inappropriate, but for carrier ops a KA6-D is more realistic. :)

Ron




---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] Re: statistics: usage of texture memory (shocking!)

2006-04-28 Thread Melchior FRANZ
* Frederic Bouvier -- Saturday 29 April 2006 00:00:
 Perhaps you already noticed, but I checked a change to model.cxx that
 allow PLIB, with its own mecanism, to reuse textures from models to models.

Yes, this was hard to miss. With it all my aircraft were untextured
(red/white), and I reverted this patch locally. Didn't look into it yet,
maybe it's only a problem on my side.

m.


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel