Re: [Flightgear-devel] Compiling SimGear on Cygwin

2007-08-11 Thread Durk Talsma
Hi Romeo,

On Thursday 09 August 2007 20:37, Romeo Ahohe wrote:
 Hi,

 I was able to compile and install plib and openal using Cygwin.
 However, the configure script for SimGear is unable to find the openal
 installation. The following error message is produced when i run that
 script:

 checking for library containing alGenBuffers... no
 checking for library containing alutInit... no

 You *must* have the openal library installed on your system to build
 SimGear!

 Please see README.OpenAL for more details.

 configure aborted

 There was another problem too: there is no README.OpenAL in the
 directory. Instead, I only see README, README.MSVC, and README.zlib

 Any help will be greatly appreciated.


Which versions of SimGear and openal are you compiling? There used to be a 
time when openal didn't compile properly under cygwin, and the solution 
needed for FlightGear was to install a specially prebuild package that was 
kindly provided by Norman Vine. Last time I tried, those problems were gone, 
and openal now compiles fine. 

There is a naming difference between the regularly built openal libraries and 
the special package that was provided by Norman (IIRC). The regular libraries 
are called openal and alut, whereas the special purpose build versions were 
called openal32 and ALut. Older versions of SimGear (and this might very well 
include the latest released version) only check for the existence of the 
special purpose built library. I remember adding the additional check to the 
autoconf system sometime last year, so CVS versions of SimGear should be able 
to detect your openal libraries just fine. 

FWIW, if not, try modifying your configure script accordingly:

dnl check for OpenAL libraries
OPENAL_OK=no
case ${host} in
*-*-cygwin* | *-*-mingw32*)
dnl CygWin under Windoze.
INCLUDES=$INCLUDES -I/usr/local/include/
LIBS=$LIBS -L/usr/local/lib
AC_SEARCH_LIBS(alGenBuffers, [ sending pixbuf data as 'image/png' (png)
AC_SEARCH_LIBS(alutInit, [ openal32 ALut alut ] )
LIBS=$LIBS -lwinmm -ldsound -ldxguid -lole32
openal_LIBS=$LIBS
OPENAL_OK=$ac_cv_search_alGenBuffers
;;

*-apple-darwin*)
dnl Mac OS X

LIBS=$LIBS -framework IOKit -framework OpenAL
openal_LIBS=$LIBS
# not sure how to test if OpenAL exists on MacOS (does it come by 
default?)
OPENAL_OK=yes
;;

*)
dnl default unix style machines

save_LIBS=$LIBS
LIBS=$LIBS $thread_LIBS
AC_SEARCH_LIBS(alGenBuffers, openal)
AC_SEARCH_LIBS(alutInit, [ alut openal ] )
OPENAL_OK=$ac_cv_search_alGenBuffers
openal_LIBS=$LIBS
LIBS=$save_LIBS
;;

esac


FWIW, inspired by your question, I tried dusting off my cygwin tools and see 
if I could build FlightGear using cygwin again. So far no luck yet the 
default 3.3 gccc barfs on an invalid typecast in OpenScenceGraph, and the 
latest gcc version (I tried 4.2.1 and 4.1.2) also died compiling OSG with an 
internal compiler error. Bizarre, because 4.1.2 is the same version as I'm 
using under linux.

Hope this helps,
Durk

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread Sébastien MARQUE
Hi all,

just willing to say you that OSG/SVN doesn't seem to have anymore the 
member 'setUpdateVisitor' in class osgViewer::Scene, which is needed at 
least the first time during compilation in renderer.cxx at line 396.

After grepping in my local include directory, I found another 
'setUpdateVisitor' member in osgUtil::SceneView, I tried to use it in 
renderer.cxx, line 391:
osgUtil::SceneView* scene = viewer-getScene();

but then I get the following:
renderer.cxx:392: erreur: cannot convert ‘osgViewer::Scene*’ to 
‘osgUtil::SceneView*’ in initialization

I know this is not a very orthodox method, but I wanted to give it a try ;)

The last fine working OSG revison was the rev7802 here.

System: Debian Sid, gcc4.2.1

Regards
Seb

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread gh.robin
On Sat 11 August 2007 11:08, Sébastien MARQUE wrote:
 Hi all,

 just willing to say you that OSG/SVN doesn't seem to have anymore the
 member 'setUpdateVisitor' in class osgViewer::Scene, which is needed at
 least the first time during compilation in renderer.cxx at line 396.

 After grepping in my local include directory, I found another
 'setUpdateVisitor' member in osgUtil::SceneView, I tried to use it in
 renderer.cxx, line 391:
 osgUtil::SceneView* scene = viewer-getScene();

 but then I get the following:
 renderer.cxx:392: erreur: cannot convert ‘osgViewer::Scene*’ to
 ‘osgUtil::SceneView*’ in initialization

 I know this is not a very orthodox method, but I wanted to give it a try ;)

 The last fine working OSG revison was the rev7802 here.

 System: Debian Sid, gcc4.2.1

 Regards
 Seb

I wonder if , here we are testing FG with OSG. or OSG stand alone :) ?

Wasn't it said before on that devel-mail , that the best,  would be to keep 
the stable version of OSG v2.0, during that long migration of FG from Plib to 
Osg.
SEE [Flightgear-devel] OpenSceneGraph 2.0  Date : 2007-06-16 02:23  topic
everything is said and answered here. 
http://sourceforge.net/mailarchive/forum.php?thread_name=46732D9D.7030300%40jonathanwagner.netforum_name=flightgear-devel


Regards
-- 
Gérard


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread gh.robin
On Sat 11 August 2007 14:45, gh.robin wrote:
 On Sat 11 August 2007 11:08, Sébastien MARQUE wrote:
  Hi all,
 
  just willing to say you that OSG/SVN doesn't seem to have anymore the
  member 'setUpdateVisitor' in class osgViewer::Scene, which is needed at
  least the first time during compilation in renderer.cxx at line 396.
 
  After grepping in my local include directory, I found another
  'setUpdateVisitor' member in osgUtil::SceneView, I tried to use it in
  renderer.cxx, line 391:
  osgUtil::SceneView* scene = viewer-getScene();
 
  but then I get the following:
  renderer.cxx:392: erreur: cannot convert ‘osgViewer::Scene*’ to
  ‘osgUtil::SceneView*’ in initialization
 
  I know this is not a very orthodox method, but I wanted to give it a try
  ;)
 
  The last fine working OSG revison was the rev7802 here.
 
  System: Debian Sid, gcc4.2.1
 
  Regards
  Seb

 I wonder if , here we are testing FG with OSG. or OSG stand alone :) ?

 Wasn't it said before on that devel-mail , that the best,  would be to keep
 the stable version of OSG v2.0, during that long migration of FG from Plib
 to Osg.
 SEE [Flightgear-devel] OpenSceneGraph 2.0  Date : 2007-06-16 02:23  topic
 everything is said and answered here.
 http://sourceforge.net/mailarchive/forum.php?thread_name=46732D9D.7030300%4
0jonathanwagner.netforum_name=flightgear-devel


 Regards


ouups 

the right link which refer to the toîc is 

http://sourceforge.net/mailarchive/message.php?msg_name=46732D9D.7030300%40jonathanwagner.net
-- 
Gérard


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] Seasonal AI-Flighplans, AI Dash-8

2007-08-11 Thread Ralf Gerlich
Hi all,

is there a possibility to introduce seasonal flightplans for AI aircraft?

Most airlines have a winter and a summer schedule, but also some more
limited flights which take place only for a few weeks or months.

Ingrid is working on the Star Alliance Flightplans :-) (no guarantees,
however ;-)

BTW: Anybody interested in making an AI-model of a Bombardier Dash
8-300Q (previously DeHavilland Canada)? All aircraft of the InterSky
group (stationed at EDNY) are Dash-8. We are currently resorting to a
Fokker 50, but that is not a proper replacement in terms of performance.

Cheers,
Ralf

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread Sébastien MARQUE
thank you gh.robin for your lights,

but, you have to understand that I'm not camplaining, just reporting a 
fact and telling the solutions I've tried to solve the problem, in the 
hope to help or avoid future problems.

As far as I know, FG is Open-source, OSG is open-source, and I am 
open-minded. If you want to stay close-minded that's your choice, we 
already discussed this point on an other place.

I think... no, I'm sure that I'm free to use OSG/SVN linked to FG/CVS 
and that I can live with the problems encountered by dynamic and still 
in development softwares. If you only like stable softwares and 
librairies, that's your choice too, and I never tried to change your 
mind about. So please, gh.robin, don't tell me anymore that I have to do 
to satisfy your way of thinking

all the best
Seb

gh.robin a écrit :
 On Sat 11 August 2007 14:45, gh.robin wrote:
 On Sat 11 August 2007 11:08, Sébastien MARQUE wrote:
 Hi all,

 just willing to say you that OSG/SVN doesn't seem to have anymore the
 member 'setUpdateVisitor' in class osgViewer::Scene, which is needed at
 least the first time during compilation in renderer.cxx at line 396.

 After grepping in my local include directory, I found another
 'setUpdateVisitor' member in osgUtil::SceneView, I tried to use it in
 renderer.cxx, line 391:
 osgUtil::SceneView* scene = viewer-getScene();

 but then I get the following:
 renderer.cxx:392: erreur: cannot convert ‘osgViewer::Scene*’ to
 ‘osgUtil::SceneView*’ in initialization

 I know this is not a very orthodox method, but I wanted to give it a try
 ;)

 The last fine working OSG revison was the rev7802 here.

 System: Debian Sid, gcc4.2.1

 Regards
 Seb
 I wonder if , here we are testing FG with OSG. or OSG stand alone :) ?

 Wasn't it said before on that devel-mail , that the best,  would be to keep
 the stable version of OSG v2.0, during that long migration of FG from Plib
 to Osg.
 SEE [Flightgear-devel] OpenSceneGraph 2.0  Date : 2007-06-16 02:23  topic
 everything is said and answered here.
 http://sourceforge.net/mailarchive/forum.php?thread_name=46732D9D.7030300%4
 0jonathanwagner.netforum_name=flightgear-devel


 Regards
 
 
 ouups 
 
 the right link which refer to the toîc is 
 
 http://sourceforge.net/mailarchive/message.php?msg_name=46732D9D.7030300%40jonathanwagner.net

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread gh.robin
On Sat 11 August 2007 15:48, Sébastien MARQUE wrote:
 thank you gh.robin for your lights,

 but, you have to understand that I'm not camplaining, just reporting a
 fact and telling the solutions I've tried to solve the problem, in the
 hope to help or avoid future problems.

 As far as I know, FG is Open-source, OSG is open-source, and I am
 open-minded. If you want to stay close-minded that's your choice, we
 already discussed this point on an other place.

 I think... no, I'm sure that I'm free to use OSG/SVN linked to FG/CVS
 and that I can live with the problems encountered by dynamic and still
 in development softwares. If you only like stable softwares and
 librairies, that's your choice too, and I never tried to change your
 mind about. So please, gh.robin, don't tell me anymore that I have to do
 to satisfy your way of thinking

 all the best
 Seb



Ouf, i feel better

 so this was OUT of flightgear-devel  topic

thanks


-- 
Gérard


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread Sébastien MARQUE
 Ouf, i feel better
I don't care about!

  so this was OUT of flightgear-devel  topic
This is IN flightgear-devel topic as FG use OSG for now, even if you'd 
prefer it to use plib forever, and you will have to live with that. If 
there is a change in the OSG structure, FG-devel would be implied, and 
it seems to be exactly the case here.

I apologize for all this noise on the list, it is the last time from my 
part.

Regards
Seb

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread Tim Moore
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

gh.robin wrote:
 On Sat 11 August 2007 14:45, gh.robin wrote:
 On Sat 11 August 2007 11:08, Sébastien MARQUE wrote:
 Hi all,

 just willing to say you that OSG/SVN doesn't seem to have anymore the
 member 'setUpdateVisitor' in class osgViewer::Scene, which is needed at
 least the first time during compilation in renderer.cxx at line 396.

Thanks for the report; I / we will check it out.

 I wonder if , here we are testing FG with OSG. or OSG stand alone :) ?

 Wasn't it said before on that devel-mail , that the best,  would be to keep
 the stable version of OSG v2.0, during that long migration of FG from Plib
 to Osg.
 SEE [Flightgear-devel] OpenSceneGraph 2.0  Date : 2007-06-16 02:23  topic
 everything is said and answered here.
 http://sourceforge.net/mailarchive/forum.php?thread_name=46732D9D.7030300%4
 0jonathanwagner.netforum_name=flightgear-devel
That isn't really desirable when there are real bug fixes post OSG 2.0, some
of which were provided by us. On the the other hand, I know it is annoying to 
have
track OSG's SVN head in real time in order to compile FlightGear, so perhaps the
fix for the reported problem can be guarded by an #ifdef.

Tim

- --
Red Hat France SARL, 171 Avenue Georges Clemenceau
92024 Nanterre Cedex, France.
Siret n° 421 199 464 00056
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iD8DBQFGvfNseDhWHdXrDRURAoytAKCGeD9b+57LP3imBd5SLtcDgd9DGACdGXOs
NT7Z2E4NVG8ztS8T7JM0gA4=
=wOEv
-END PGP SIGNATURE-

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] osgDB ac3d reader: detected line with less than 2 vertices!

2007-08-11 Thread gh.robin

Hello,

Help==
With FG OSG  when the model is loaded we could get the following message:
osgDB ac3d reader: detected line with less than 2 vertices!

It is not a huge work to find the error  and to  solve the error , 
but. if the model is made of ...more than 120 submodels (i have 
it   :)  ).

Is there any way to get the model_name.ac  which is the cause of the error 
message.

Regards

-- 
Gérard


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


Re: [Flightgear-devel] 'setUpdateVisitor' doesn't exist anymore in OSG?

2007-08-11 Thread Laurence Vanek
Sébastien MARQUE wrote:
 Hi all,

 just willing to say you that OSG/SVN doesn't seem to have anymore the 
 member 'setUpdateVisitor' in class osgViewer::Scene, which is needed at 
 least the first time during compilation in renderer.cxx at line 396.

 After grepping in my local include directory, I found another 
 'setUpdateVisitor' member in osgUtil::SceneView, I tried to use it in 
 renderer.cxx, line 391:
 osgUtil::SceneView* scene = viewer-getScene();

 but then I get the following:
 renderer.cxx:392: erreur: cannot convert ‘osgViewer::Scene*’ to 
 ‘osgUtil::SceneView*’ in initialization

 I know this is not a very orthodox method, but I wanted to give it a try ;)

 The last fine working OSG revison was the rev7802 here.

 System: Debian Sid, gcc4.2.1

 Regards
 Seb

   
Me also.

After svn update of OSG, cvs updates of simgear  FG today, I get this 
when attempting to build FG:


.
.
.
renderer.cxx: In member function ‘void FGRenderer::splashinit()’:
renderer.cxx:396: error: ‘class osgViewer::Scene’ has no member named 
‘setUpdateVisitor’
renderer.cxx: In static member function ‘static bool 
FGRenderer::pick(unsigned int, unsigned int, std::vectorSGSceneryPick, 
std::allocatorSGSceneryPick , const osgGA::GUIEventAdapter*)’:
renderer.cxx:971: warning: converting to ‘unsigned int’ from ‘double’
make[2]: *** [renderer.o] Error 1
make[2]: Leaving directory `/home/lvanek/FlightGear-0.9/source/src/Main'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/lvanek/FlightGear-0.9/source/src'
make: *** [all-recursive] Error 1
==

Last rebuilds were  ~one week ago with no issues.



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel


[Flightgear-devel] Weekly CVS Changelog Summary: SimGear

2007-08-11 Thread Curtis L. Olson
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-07_00:26:21 (frohlich)
/var/cvs/SimGear-0.3/source/projects/VC7.1/SimGear.vcproj

Modified Files:
projects/VC7.1/SimGear.vcproj projects/VC8/SimGear.vcproj
simgear/math/Makefile.am simgear/math/SGGeoc.hxx
simgear/math/SGGeodesy.cxx simgear/math/SGGeodesy.hxx
simgear/math/polar3d.hxx simgear/math/sg_geodesy.hxx
simgear/math/sg_types.hxx
Removed Files:
simgear/math/polar3d.cxx simgear/math/sg_geodesy.cxx
simgear/math/sg_memory.h:
Remove sg_memory.h It is unused anyway and should not be required
in a c++ world. Move distance course functions to the SG* type
system. Move the implementation into SGGeodesy.cxx. Remove some of
the old Point3D Based sg* functions that are already unused.


2f585eeea02e2c79d7b1d8c4963bae2d

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
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

2007-08-11 Thread Curtis L. Olson
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-08_01:09:58 (durk)
/var/cvs/FlightGear-0.9/source/src/AIModel/AIFlightPlanCreatePushBack.cxx
/var/cvs/FlightGear-0.9/source/src/Airports/dynamicloader.cxx
/var/cvs/FlightGear-0.9/source/src/Airports/gnnode.cxx
/var/cvs/FlightGear-0.9/source/src/Airports/gnnode.hxx

- Ground network XML parsing code reads the new attributes holdPointType
  and isOnRunway.
- Added initial support for AI controlled pushback operations, making use of the
  current editing capabilities of TaxiDraw CVS / New_GUI_CODE. The current
  implementation is slightly more computationally intensive than strictly
  required, due to the currently inability of taxidraw to link one specific
  pushBack point to to a particular startup location. FlightGear now determines
  this dynamically, and once we have that functionality in TaxiDraw, the
  initialization part of createPushBack() can be further simplified.
- Smoother transition from pushback to taxi. No more skipping of waypoints, and
  aircraft wait for two minutes at pushback point.
- The classes FGTaxiNode, FGTaxiSegment, and FGParking, now have copy
  constructors, and assignment operators.
- Removed declaration of undefined constructor FGTaxiNode(double, double, int)
- Array boundry checks and cleanup.
- Modified Dijkstra path search algoritm to solve partial problems. Currently
  limited to include pushback points and routes only, but can probably be
  extended to a more general approach.
- Added initial support for giving certain routes in the network a penalty, in
  order to discourage the use of certain routes over others.


2f585eeea02e2c79d7b1d8c4963bae2d

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
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

2007-08-11 Thread Curtis L. Olson
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-05_07:38:59 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/Instruments-3d/radio_stack/transparent-bg.rgb

Dave PERRY: various fixes and improvements (hotspots, lighting, ...)


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-05_07:47:57 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/help.xml
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/pa28-161-sound.xml
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/pa28-electrical.nas

Dave PERRY:

Pa28-161 update from David Megginson's photos include
1. added kt70 transponder,
2. working flap lever and elevator trim,
3. working rudder trim and brake handle on center console
4. working rocker switch panel includes panel light dimmer, flight is
great,
5. working fuel selector,
6. landing light, nave lights, rot beacon, and wing strobes,
7. amp meter, hobbs, stall warning, simulated egt, and other gages.

Several related changes to pa24 and Instruments-3d. 


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-05_07:47:58 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FuelPointer.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FuelValvePlackards.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/Halos.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/StrobeLight.xml
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/WhiteLight1.ac

Dave PERRY:

Pa28-161 update from David Megginson's photos include
1. added kt70 transponder,
2. working flap lever and elevator trim,
3. working rudder trim and brake handle on center console
4. working rocker switch panel includes panel light dimmer, flight is
great,
5. working fuel selector,
6. landing light, nave lights, rot beacon, and wing strobes,
7. amp meter, hobbs, stall warning, simulated egt, and other gages.

Several related changes to pa24 and Instruments-3d. 


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-05_07:48:00 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/pa28.nas
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/panel-color.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/rudderTrim.rgb

Dave PERRY:

Pa28-161 update from David Megginson's photos include
1. added kt70 transponder,
2. working flap lever and elevator trim,
3. working rudder trim and brake handle on center console
4. working rocker switch panel includes panel light dimmer, flight is
great,
5. working fuel selector,
6. landing light, nave lights, rot beacon, and wing strobes,
7. amp meter, hobbs, stall warning, simulated egt, and other gages.

Several related changes to pa24 and Instruments-3d. 


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-05_07:48:01 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/AMP/AMP-face.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/AMP/AMP-face0.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/AMP/amp.ac
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/AMP/amp.xml

Dave PERRY:

Pa28-161 update from David Megginson's photos include
1. added kt70 transponder,
2. working flap lever and elevator trim,
3. working rudder trim and brake handle on center console
4. working rocker switch panel includes panel light dimmer, flight is
great,
5. working fuel selector,
6. landing light, nave lights, rot beacon, and wing strobes,
7. amp meter, hobbs, stall warning, simulated egt, and other gages.

Several related changes to pa24 and Instruments-3d. 


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-05_07:48:02 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FlapTrim/FlapTrim.ac
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FlapTrim/FlapTrim.xml
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FlapTrim/trimScale.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FlapTrim/trimwheel.rgb

Dave PERRY:

Pa28-161 update from David Megginson's photos include
1. added kt70 transponder,
2. working flap lever and elevator trim,
3. working rudder trim and brake handle on center console
4. working rocker switch panel includes panel light dimmer, flight is
great,
5. working fuel selector,
6. landing light, nave lights, rot beacon, and wing strobes,
7. amp meter, hobbs, stall warning, simulated egt, and other gages.

Several related changes to pa24 and Instruments-3d. 


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
2007-08-05_07:48:03 (mfranz)
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FlightCom/FlightCom.ac
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FlightCom/FlightCom.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/FlightCom/flightcom.xml
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/Hobbs/hobbs.ac
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/Hobbs/hobbs.rgb
/var/cvs/FlightGear-0.9/data/Aircraft/pa28-161/Models/Hobbs/hobbs.xml

Dave PERRY:

Pa28-161 update