[Flightgear-devel] Compile FG 0.9.10 (Suse 10.1)

2006-07-08 Thread Darko Tasovac
Hi,

I tried to compile FG 0.9.10 on my Suse PC (10.1 x86_64) with gcc
4.1.0. After make command, I got this error

AIBase.cxx: In member function 'SGVec3d FGAIBase::getCartPosAt(const
SGVec3d) const':
AIBase.cxx:346: error: conversion from 'SGGeod' to non-scalar type
'SGVec3double' requested

Does anyone know solution?

Regards,
Darko T.

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] hud.hxx vs. HUD.hxx

2006-07-08 Thread Melchior FRANZ
* Olaf Flebbe -- Friday 07 July 2006 21:51:
 The current layout
 breaks the VC8 Project files in current FG CVS quite heavily.
 
 #include hud.hxx vs. #include HUD.hxx

That's not a valid argument, as the files are to be included as
#include Instrumentation/HUD/HUD.hxx and  Cockpit/hud.hxx.
No ambituity there. But I have no problem with your renaming
suggestion, if *all* HUD in the filenames are made lower case,
not just the header file ... I just did it that way because my
preference (hud.hxx) was already used in the Cockpit/.

 I would vote for renaming the Cockpit/hud.hxx to Cockpit/old_hud.hxx
 to match the include guard. And btw: rename the hud.cxx accordingly.

I, however, won't do this change. You probably know that CVS (unlike
SVN) doesn't support renaming. This has to be done by the operator
(Curt) on the server. I could only delete and commit again, but this
breaks the cvs history, so I won't.

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] MIL-STD-1878B -- Aircraft Display Symbology

2006-07-08 Thread Melchior FRANZ
* Mathias Fröhlich -- Friday 07 July 2006 11:25:
 I did not yet find time to look into that. And I doubt that I 
 will find this weekend.

No problem. While comments are, of course, very welcome already,
I wouldn't be all that happy about other involvement at this time,
anyway. I'd prefer if I could finish all my TODOs, and only then
invite people to step in.

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] HUD updates

2006-07-08 Thread Melchior FRANZ
* Erik Hofman -- Friday 07 July 2006 23:13:
 Add to that the fact the I would need the data of a Flight Data 
 Recorder which won't be easy to get your hands on.

Of course, we do have real files from a data recorder. Someone from
Brazil let us download them from a helicopter crash (with the actual
crash stripped).

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


[Flightgear-devel] Weekly CVS Changelog Summary: SimGear

2006-07-08 Thread Curtis L. Olson
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-03_00:13:27 (andy)
/var/cvs/SimGear-0.3/source/simgear/nasal/code.c
/var/cvs/SimGear-0.3/source/simgear/nasal/code.h
/var/cvs/SimGear-0.3/source/simgear/nasal/codegen.c
/var/cvs/SimGear-0.3/source/simgear/nasal/gc.c
/var/cvs/SimGear-0.3/source/simgear/nasal/lib.c
/var/cvs/SimGear-0.3/source/simgear/nasal/vector.c

Been hacking at Nasal recently:

Fix bug with break/continue inside of a foreach or forindex: Don't pop
the vector/index inside OP_EACH, do it at the end of the loop.

In the process, discovered and fixed a scary corruption issue with
continue; it never really worked right, although simple usage was
likely to get away without crashing.  Both the continue's OP_BREAK and
the cleanup code at the end of a loop would pop the mark stack,
leading to an underflow.  Introduced an OP_CONTINUE which adjusts
stack but doesn't change markTop

Re-inline the PUSH macro.  This thing is called all over the place
from the inner loop.  If the problem is intra-expression side effects,
then just use another expression in the macro.

Return an empty vector when requesting zero-length subvec, not nil

Have call() return the call stack in the error vector; see docs on
plausible.org/nasal or ask Andy about this feature.

Default closure()'s level argument to zero, not nil

Add an optional file name argument to compile()


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_21:52:06 (andy)
/var/cvs/SimGear-0.3/source/simgear/nasal/code.c
/var/cvs/SimGear-0.3/source/simgear/nasal/code.h
/var/cvs/SimGear-0.3/source/simgear/nasal/codegen.c

The previous update (and, embarassingly, the nasal 1.0 release I
announced on Freshmeat.net) was broken.  This is the proper
break/continue fix.


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-05_04:31:36 (mfranz)
/var/cvs/SimGear-0.3/source/simgear/scene/sky/bbcache.cxx

remove the last redundant delete check in all of fgfs/sg (except JSBSim)


2f585eeea02e2c79d7b1d8c4963bae2d


-
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] Weekly CVS Changelog Summary: FlightGear source

2006-07-08 Thread Curtis L. Olson
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_10:52:09 (mfranz)
/var/cvs/FlightGear-0.9/source/configure.ac
/var/cvs/FlightGear-0.9/source/src/Instrumentation/Makefile.am
/var/cvs/FlightGear-0.9/source/src/Main/Makefile.am

add new HUD to build system


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_10:54:41 (mfranz)
/var/cvs/FlightGear-0.9/source/src/Instrumentation/instrument_mgr.cxx
/var/cvs/FlightGear-0.9/source/src/Main/renderer.cxx

initialize HUD class and call its drawing routine from renderer
(basically a NOOP if /sim/hud/visibility[1] is false)


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_18:29:05 (mfranz)
/var/cvs/FlightGear-0.9/source/src/Input/Makefile.am
/var/cvs/FlightGear-0.9/source/src/Input/fgjs.cxx
/var/cvs/FlightGear-0.9/source/src/Input/jsinput.cxx
/var/cvs/FlightGear-0.9/source/src/Input/jsinput.h

Stefan Seifert:
- read bindings from template
- automatic deadband detection

mf:
- write js name into output file
- poor man's progress bar during deadband detection
- fix header inclusion, fix mixed indentation


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-05_04:39:46 (mfranz)
/var/cvs/FlightGear-0.9/source/src/Network/ATC-Inputs.cxx
/var/cvs/FlightGear-0.9/source/src/Network/generic.cxx

remove redundant vector::clear(). A just created vector *is* clear.


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-06_09:24:14 (mfranz)
/var/cvs/FlightGear-0.9/source/src/FDM/UFO.cxx

set altitude AGL


2f585eeea02e2c79d7b1d8c4963bae2d


-
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] Weekly CVS Changelog Summary: FlightGear data

2006-07-08 Thread Curtis L. Olson
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-02_16:26:11 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/bo105/Models/bo105.xml

remove hud experiment


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-02_16:41:36 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/bo105/Models/bo105.xml

fix blade incidence


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-03_00:59:24 (mfranz)
/var/cvs/FlightGear-0.9/data/Nasal/gui.nas

remove workaround for broken continue


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-03_04:48:41 (vmmeazza)
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/KC135-set.xml

Add a boomer's view - but don't expect to see anything really exciting unless 
the refuelling ac is in front of you!


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-03_04:50:09 (vmmeazza)
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/Systems/autopilot.xml
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/Systems/electrical.xml
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/Systems/instrumentation.xml

Use the new fluxgate compass and change the ap and electrical sytems accordingly


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-03_04:51:34 (vmmeazza)
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/Models/KC135.ac

Add boomer window, more accurate livery, correct a number of minor errors,


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-03_04:51:35 (vmmeazza)
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/Models/KC135.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/Models/KC135.xml

Add boomer window, more accurate livery, correct a number of minor errors,


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-03_04:52:37 (vmmeazza)
/var/cvs/FlightGear-0.9/data/Aircraft/KC135/Instruments/pfd1.xml

Use the new fluxgate compass and change the ap etc. accordingly.


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_10:26:58 (mfranz)
/var/cvs/FlightGear-0.9/data/Huds/README
/var/cvs/FlightGear-0.9/data/Huds/default.xml
/var/cvs/FlightGear-0.9/data/Huds/Instruments/compass.xml
/var/cvs/FlightGear-0.9/data/Huds/Instruments/gload.xml
/var/cvs/FlightGear-0.9/data/Huds/Instruments/ladder.xml
/var/cvs/FlightGear-0.9/data/Huds/Instruments/latitude.xml
/var/cvs/FlightGear-0.9/data/Huds/Instruments/longitude.xml
/var/cvs/FlightGear-0.9/data/Huds/Instruments/runway.xml
/var/cvs/FlightGear-0.9/data/Huds/Instruments/turn-bank-indicator.xml

README ... describes which files belong to the old, and which to the new HUD
Instruments/*.xml ... single components, like the gload display
Sets/*.xml ... combinations of components

There's no difference in filetypes between sets and instruments. It's
just easier to find things that way. Note that new and old files are never
mixed in one dir.


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_10:46:39 (mfranz)
/var/cvs/FlightGear-0.9/data/preferences.xml

/sim/hud/visibility[1] controls the new HUD


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_13:28:54 (mfranz)
/var/cvs/FlightGear-0.9/data/Huds/f16.xml

sample code for the f16. Use like so:

  $ fgfs --aircraft=f16-3d --prop:hud=Huds/f16.xml 
--prop:sim/hud/visibility\[1\]=1

The hud path is for now expected in /hud. This will, of course, be changed
later. The old and new HUD code don't match exactly when laid one over the
other yet, and the new HUD's tapes don't work.


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-04_18:31:44 (mfranz)
/var/cvs/FlightGear-0.9/data/Input/Joysticks/template.xml

Stefan Seifert: first stab at joystick template file for new fgjs
mf: turn name into comment, so that the file won't be recognized as
named joystick config; saves a few cycles ...


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2006-07-05_10:40:16 (curt)
/var/cvs/FlightGear-0.9/data/Aircraft/B-52F/B-52F-set.xml
/var/cvs/FlightGear-0.9/data/Aircraft/B-52F/B-52F-yasim.xml
/var/cvs/FlightGear-0.9/data/Aircraft/B-52F/Models/B-52F-model.xml

Lee Elliott:

here are some updates for the B-52F.

The most important change is to reduce the lift factor of the
elevator in an effort to damp the pitch a bit.  I've also fixed
a few things that have got broken along the way, put the correct
values in for the AoA indexer, made the 2D panels less garish
and removed a few small instrument textures.

The updated files are:

B-52F/B-52F-set.xm
B-52F/B-52F-yasim.xml

B-52F/Models/B-52F-model.xml

B-52F/Nasal/B-52F.nas

B-52F/Panels/Instruments/digital-accl.xml
B-52F/Panels/Instruments/digital-agl.xml
B-52F/Panels/Instruments/digital-alt.xml
B-52F/Panels/Instruments/digital-aoa.xml
B-52F/Panels/Instruments/digital-ap-speed-kt.xml
B-52F/Panels/Instruments/digital-engine.xml
B-52F/Panels/Instruments/digital-flap.xml
B-52F/Panels/Instruments/digital-fuel-tank.xml
B-52F/Panels/Instruments/digital-fuel-tot.xml