RE: [Flightgear-devel] JSBsim fails to build in FGFS cvs

2004-01-19 Thread Jon Berndt
Are you using the version in FGFS CVS?

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Alex Perry
 Sent: Monday, January 19, 2004 12:49 AM
 To: [EMAIL PROTECTED]
 Subject: [Flightgear-devel] JSBsim fails to build in FGFS cvs


 Making all in filtersjb
 make[1]: Entering directory
 `/home/alex/fs/FlightGear/src/FDM/JSBSim/filtersjb'
 make[1]: Nothing to be done for `all'.
 make[1]: Leaving directory
 `/home/alex/fs/FlightGear/src/FDM/JSBSim/filtersjb'
 make[1]: Entering directory `/home/alex/fs/FlightGear/src/FDM/JSBSim'
 source='FGEngine.cpp' object='FGEngine.o' libtool=no \
 depfile='.deps/FGEngine.Po' tmpdepfile='.deps/FGEngine.TPo' \
 depmode=gcc /bin/sh ../../../depcomp \
 g++ -DHAVE_CONFIG_H -I. -I. -I../../../src/Include -I../../..
 -I../../../src  -I/usr/X11R6/include -DFGFS -g -O2 -D_REENTRANT
 -c -o FGEngine.o `test -f FGEngine.cpp || echo './'`FGEngine.cpp
 FGEngine.cpp: In method `JSBSim::FGEngine::FGEngine(JSBSim::FGFDMExec *)':
 FGEngine.cpp:71: no matching function for call to
 `basic_stringchar,string_char_traitschar,__default_alloc_templa
 tetrue,0 ::clear ()'
 make[1]: *** [FGEngine.o] Error 1
 make[1]: Leaving directory `/home/alex/fs/FlightGear/src/FDM/JSBSim'
 make: *** [all-recursive] Error 1

 ___
 Flightgear-devel mailing list
 [EMAIL PROTECTED]
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel


___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


RE: [Flightgear-devel] JSBsim fails to build in FGFS cvs

2004-01-19 Thread Jon Berndt
What system are you building under?  Erik made some changes recently to
facilitate building under IRIX.  That's the only change that happened in
FGEngine.cpp. Strange.

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of Alex Perry
 Sent: Monday, January 19, 2004 12:49 AM
 To: [EMAIL PROTECTED]
 Subject: [Flightgear-devel] JSBsim fails to build in FGFS cvs


 Making all in filtersjb
 make[1]: Entering directory
 `/home/alex/fs/FlightGear/src/FDM/JSBSim/filtersjb'
 make[1]: Nothing to be done for `all'.
 make[1]: Leaving directory
 `/home/alex/fs/FlightGear/src/FDM/JSBSim/filtersjb'
 make[1]: Entering directory `/home/alex/fs/FlightGear/src/FDM/JSBSim'
 source='FGEngine.cpp' object='FGEngine.o' libtool=no \
 depfile='.deps/FGEngine.Po' tmpdepfile='.deps/FGEngine.TPo' \
 depmode=gcc /bin/sh ../../../depcomp \
 g++ -DHAVE_CONFIG_H -I. -I. -I../../../src/Include -I../../..
 -I../../../src  -I/usr/X11R6/include -DFGFS -g -O2 -D_REENTRANT
 -c -o FGEngine.o `test -f FGEngine.cpp || echo './'`FGEngine.cpp
 FGEngine.cpp: In method `JSBSim::FGEngine::FGEngine(JSBSim::FGFDMExec *)':
 FGEngine.cpp:71: no matching function for call to
 `basic_stringchar,string_char_traitschar,__default_alloc_templa
tetrue,0 ::clear ()'
 make[1]: *** [FGEngine.o] Error 1
 make[1]: Leaving directory `/home/alex/fs/FlightGear/src/FDM/JSBSim'
 make: *** [all-recursive] Error 1

 ___
 Flightgear-devel mailing list
 [EMAIL PROTECTED]
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel


___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] [Fwd: Linux User Developer Expo 2004]

2004-01-19 Thread Martin Spott
Curtis L. Olson [EMAIL PROTECTED] wrote:

 If your name is on this list and it shouldn't be, or I have the level of 
 definiteness wrong, please let me know.

I'll use this as a chance to enjoy a short visit to London with my
cohabitee. This means, that I'll be able to spend some hours at the
booth, but not the whole event,

Martin.
-- 
 Unix _IS_ user friendly - it's just selective about who its friends are !
--

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] Flashing white patches

2004-01-19 Thread Erik Hofman
Simon Hollier wrote:
Both of these patches should fix the fog flashing to white(black?) bug. 
The first one just checks for the Not a Number condition that results 
from acos(1+small_delta).  The second patch uses atan2, but doesn't 
quite make it near 0 or PI at the edge cases near 1 or -1.  I can't 
really tell the difference between the two, but I'm sure there is one.  
I've committed a patch that simply checks whether 'dot' is greater than 
1.0 and then prints an error message and set 'dot' to 1.0

It looks to me like this approach isn't really slower than the ones you 
proposed.

Erik

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


RE: [Flightgear-devel] Flashing white patches

2004-01-19 Thread Norman Vine
Erik Hofman writes:
 
 I've committed a patch that simply checks whether 'dot' is greater than 
 1.0 and then prints an error message and set 'dot' to 1.0

Should do the less then case too :-) 

 if (dot  1) {
 SG_LOG( SG_ASTRO, SG_WARN,
 Dot product  =   dot   is greater than 1.0 );
 dot = 1.0;
 }
 
 else if (dot  -1.0) {
 SG_LOG( SG_ASTRO, SG_WARN,
 Dot product  =   dot   is less than -1.0 );
 dot = -1.0;
 }
  
HTH

Norman

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] Flashing white patches

2004-01-19 Thread Erik Hofman
Norman Vine wrote:
Erik Hofman writes:

I've committed a patch that simply checks whether 'dot' is greater than 
1.0 and then prints an error message and set 'dot' to 1.0


Should do the less then case too :-) 


Eh, silly me. Off course.
Thanks Norman.
Erik



___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


[Flightgear-devel] Re: Flashing white patches

2004-01-19 Thread Simon Hollier
Erik Hofman writes: 

Simon Hollier wrote:
Both of these patches should fix the fog flashing to white(black?) bug. 
The first one just checks for the Not a Number condition that results 
from acos(1+small_delta).  The second patch uses atan2, but doesn't quite 
make it near 0 or PI at the edge cases near 1 or -1.  I can't really tell 
the difference between the two, but I'm sure there is one.
I've committed a patch that simply checks whether 'dot' is greater than 
1.0 and then prints an error message and set 'dot' to 1.0 

It looks to me like this approach isn't really slower than the ones you 
proposed. 

Erik
Thanks.  That was originally how I had it patched, but changed it to try to 
use atan2 as per Andy's suggestion.  That alert output might be a bit much 
if you fly around noon / midnight alot. My 2 minute flight out of KSFO 
towards the sailboat generated 6 alerts. 

- Simon. 

Simon Hollier
Computer Services
Northeast Health District 



___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


[Flightgear-devel] NAVAIR 51-50AAA-2.pdf

2004-01-19 Thread JAmann





Dave -

Not sure if this email address still works properly, I had stumbled across
your response to a post about the VASI regarding the subject matter.  The
link that you provided no longer works.  would it be possible to email me a
copy of that file?



Jason L Amann

Electrical Engineer
John J. McMullen Associates, Inc.
Alexandria, Virginia  22302
Main Office:  (703) 418 - 0100
Direct:  (703) 933 - 6615
Fax: (703) 933 - 6774
E-Mail:  [EMAIL PROTECTED]


___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] JSBsim fails to build in FGFS cvs

2004-01-19 Thread Adam Boggs

I had this problem on my debian system.  Apparently bastring.h in the
STL is missing clear in some old versions of libstdc++.  I ugraded to
g++ 3.3 and a new version of libstdc++ and it compiled ok after that.

Hope that helps,
-Adam

Jon Berndt [EMAIL PROTECTED] wrote:

 What system are you building under?  Erik made some changes recently to
 facilitate building under IRIX.  That's the only change that happened in
 FGEngine.cpp. Strange.
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] Behalf Of Alex Perry
  Sent: Monday, January 19, 2004 12:49 AM
  To: [EMAIL PROTECTED]
  Subject: [Flightgear-devel] JSBsim fails to build in FGFS cvs
 
 
  Making all in filtersjb
  make[1]: Entering directory
  `/home/alex/fs/FlightGear/src/FDM/JSBSim/filtersjb'
  make[1]: Nothing to be done for `all'.
  make[1]: Leaving directory
  `/home/alex/fs/FlightGear/src/FDM/JSBSim/filtersjb'
  make[1]: Entering directory `/home/alex/fs/FlightGear/src/FDM/JSBSim'
  source='FGEngine.cpp' object='FGEngine.o' libtool=no \
  depfile='.deps/FGEngine.Po' tmpdepfile='.deps/FGEngine.TPo' \
  depmode=gcc /bin/sh ../../../depcomp \
  g++ -DHAVE_CONFIG_H -I. -I. -I../../../src/Include -I../../..
  -I../../../src  -I/usr/X11R6/include -DFGFS -g -O2 -D_REENTRANT
  -c -o FGEngine.o `test -f FGEngine.cpp || echo './'`FGEngine.cpp
  FGEngine.cpp: In method `JSBSim::FGEngine::FGEngine(JSBSim::FGFDMExec *)':
  FGEngine.cpp:71: no matching function for call to
  `basic_stringchar,string_char_traitschar,__default_alloc_templa
 tetrue,0 ::clear ()'
  make[1]: *** [FGEngine.o] Error 1
  make[1]: Leaving directory `/home/alex/fs/FlightGear/src/FDM/JSBSim'
  make: *** [all-recursive] Error 1
 
  ___
  Flightgear-devel mailing list
  [EMAIL PROTECTED]
  http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 
 
 ___
 Flightgear-devel mailing list
 [EMAIL PROTECTED]
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 


___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] Re: Flashing white patches

2004-01-19 Thread Erik Hofman
Simon Hollier wrote:

Thanks.  That was originally how I had it patched, but changed it to try 
to use atan2 as per Andy's suggestion.  That alert output might be a bit 
much if you fly around noon / midnight alot. My 2 minute flight out of 
KSFO towards the sailboat generated 6 alerts.
Hmm, maybe the log level should be decreased to INFO for those messages?

Erik

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] [Fwd: Linux User Developer Expo 2004]

2004-01-19 Thread David Culp
On Wednesday 14 January 2004 08:29 am, Curtis L. Olson wrote:
 FlightGear has been offered free .org booth space and a possible speaker
 slot at the Linux User  Developer Expo 2004.  This is Oct 20-21 at the
 Olympia Exhibition Centre in London, UK.  You don't necessarily need to be
 a developer to help with the booth, but a moderate working knowledge of
 FlightGear (and for this show, Linux) is always helpful.  Are there any UK
 people who might be interested in staffing a booth, bringing a pc, etc.?
 Anyone looking for an excuse to visit London next October?


I've tried to find more information on this event on the web, but have had no 
luck.  There *is* an April 20-21 show.  Not the same one?


Dave
-- 

David Culp
davidculp2[at]comcast.net


___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


[Flightgear-devel] IRC

2004-01-19 Thread Curtis L. Olson
For any of you interested in doing IRC, Nic Fischer has given us a channel 
on his IRC server.  Just connect up to irc.flightgear.org and join the 
#flightgear channel.

Regards,

Curt.
--
Curtis Olson   Intelligent Vehicles Lab FlightGear Project
Twin Cities[EMAIL PROTECTED]  [EMAIL PROTECTED]
Minnesota  http://www.menet.umn.edu/~curt   http://www.flightgear.org
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] IRC

2004-01-19 Thread Arnt Karlsen
On Mon, 19 Jan 2004 15:21:24 -0600, 
Curtis L. Olson [EMAIL PROTECTED] wrote in message 
[EMAIL PROTECTED]:

 For any of you interested in doing IRC, Nic Fischer has given us a
 channel on his IRC server.  Just connect up to irc.flightgear.org and
 join the #flightgear channel.

..hey!  Shouldn't we be coding instead?  Or is this the wee beginnings
of FG ATC, with voice, radarscreens and all?  ;-)

-- 
..med vennlig hilsen = with Kind Regards from Arnt... ;-)
...with a number of polar bear hunters in his ancestry...
  Scenarios always come in sets of three: 
  best case, worst case, and just in case.



___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] IRC

2004-01-19 Thread Curtis L. Olson
Arnt Karlsen wrote:
On Mon, 19 Jan 2004 15:21:24 -0600, 
Curtis L. Olson [EMAIL PROTECTED] wrote in message 
[EMAIL PROTECTED]:


For any of you interested in doing IRC, Nic Fischer has given us a
channel on his IRC server.  Just connect up to irc.flightgear.org and
join the #flightgear channel.


..hey!  Shouldn't we be coding instead?  Or is this the wee beginnings
of FG ATC, with voice, radarscreens and all?  ;-)
Sure IRC as an ATC start

curt This is Cessna 42 Papa turn final
flyboy lol
turky381 :-P
*** erik has signed off
jimbo hey erik, is that you that just went into the tree, rotflmao
flyboy lol
turky381 :-P
curt I see some smoke off the end of runway 42
flyboy lol
turky381 :-P
*** erik has joined #flightgear
flyboy lol, you all in one piece?
turkey381 :-P
erik just testing some f16 fdm changes
turky381 :-P
turky381 hey flyboy, beat you this time.
flyboy lol
turky381 :-P
.
.
.
.


--
Curtis Olson   Intelligent Vehicles Lab FlightGear Project
Twin Cities[EMAIL PROTECTED]  [EMAIL PROTECTED]
Minnesota  http://www.menet.umn.edu/~curt   http://www.flightgear.org
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] IRC

2004-01-19 Thread David Megginson
Curtis L. Olson wrote:

For any of you interested in doing IRC, Nic Fischer has given us a 
channel on his IRC server.  Just connect up to irc.flightgear.org and 
join the #flightgear channel.
IRC is s yesterday.  Where's the FlightGear blog?

All the best,

David

p.s. Just joking, of course.  Many thanks to Nic for setting up the channel.

___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel


Re: [Flightgear-devel] IRC

2004-01-19 Thread Arnt Karlsen
On Mon, 19 Jan 2004 18:13:24 -0600, 
Curtis L. Olson [EMAIL PROTECTED] wrote in message 
[EMAIL PROTECTED]:

 Arnt Karlsen wrote:
  On Mon, 19 Jan 2004 15:21:24 -0600, 
  Curtis L. Olson [EMAIL PROTECTED] wrote in message 
  [EMAIL PROTECTED]:
  
  
 For any of you interested in doing IRC, Nic Fischer has given us a
 channel on his IRC server.  Just connect up to irc.flightgear.org
 andjoin the #flightgear channel.
  
  
  ..hey!  Shouldn't we be coding instead?  Or is this the wee
  beginnings of FG ATC, with voice, radarscreens and all?  ;-)
 
 Sure IRC as an ATC start
 
 curt This is Cessna 42 Papa turn final
 flyboy lol
 turky381 :-P
 *** erik has signed off
 jimbo hey erik, is that you that just went into the tree, rotflmao
 flyboy lol
 turky381 :-P
 curt I see some smoke off the end of runway 42
 flyboy lol
 turky381 :-P
 *** erik has joined #flightgear
 flyboy lol, you all in one piece?
 turkey381 :-P
 erik just testing some f16 fdm changes
 turky381 :-P
 turky381 hey flyboy, beat you this time.
 flyboy lol
 turky381 :-P

..it needs voice.  ;-)

-- 
..med vennlig hilsen = with Kind Regards from Arnt... ;-)
...with a number of polar bear hunters in his ancestry...
  Scenarios always come in sets of three: 
  best case, worst case, and just in case.



___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel