Re: [Flightgear-devel] ZKV500 GPS instrument; (New?) GPS code bug
Hi, Thank you for reporting, I haven't had a look into the zkv500 for a long time but I'm going to look what is going wrong, sorry for inconvenience. best regards seb Victhor Foster a écrit : > I'm pretty sure that this bug happened to me before. If the GPS is set > to OBS mode, changing the course as to make the CDI needle center > causes the autopilot to follow north, while leaving it at the default > setting (north) causes the AP to follow the correct course. Is it > supposed to happen? It works normally while on leg mode. > BTW, what is "DTO" mode for? I see it on the GPS dialog, but I don't > know how that mode works. > > Also, I would like to tell the developer of the ZKV500 GPS instrument > (listed in the manual as "Sébastien MARQUE") that it isn't working as > it should anymore. Perhaps it was the GPS code update, or the user :) > I have a few "bookmarks" on the "turnpoint" screen, but pressing the > start or the enter button does nothing. > -- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > ___ > Flightgear-devel mailing list > Flightgear-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/flightgear-devel > -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] New Sound system committed
So far I've tried compiling several versions of openal-soft ... and only get certain sounds , and always get an 'AL Error (atc):' in the terminal at startup. I get atc-chatter , and certain aircraft sounds like flaps , engine start ... I've tried openal-soft-1.8.466, 1.9.563 and the git version from http://kcat.strangesoft.net/openal.html Will keep trying... Cheers -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] Fix for Citation-II gear problem
On Thu, Oct 22, 2009 at 4:34 PM, syd adams wrote: > I,ve already fixed that , but have a few more panel fixes before I commit it > ... > Cheers > Hi Syd, I was just thinking about the other obvious bug where the Citation-II will tip backwards onto the left and right landing gear only. Regards George -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] Fix for Citation-II gear problem
Cool. Thanks for the great plane Tom On Wed, Oct 21, 2009 at 10:34 PM, syd adams wrote: > I,ve already fixed that , but have a few more panel fixes before I commit > it ... > Cheers > > > > -- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > ___ > Flightgear-devel mailing list > Flightgear-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/flightgear-devel > > -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] Fix for Citation-II gear problem
I,ve already fixed that , but have a few more panel fixes before I commit it ... Cheers -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
[Flightgear-devel] Fix for Citation-II gear problem
Hi I've noticed that part of the gear on the Citation-II, with gear up, is positioned incorrectly, and shows through the wing. The animation in the XML file acts on RHgear and LHgear, but the same name refers to both a group object and a poly object within the group. To cut the story short, the RHgear/LHgear polys were rotated twice the amount by the animation. It's fixed as shown below, renaming the poly objects (and not the groups). Tom diff --git a/Aircraft/Citation/Models/Citation-II.ac b/Aircraft/Citation/Models/ index 89ab6ae..fbe800b 100644 --- a/Aircraft/Citation/Models/Citation-II.ac +++ b/Aircraft/Citation/Models/Citation-II.ac @@ -25016,7 +25016,7 @@ OBJECT group name "RHgear" kids 3 OBJECT poly -name "RHgear" +name "RHgear.0" texture "Citation-II.rgb" texrep 1 1 crease 45 @@ -36780,7 +36780,7 @@ OBJECT group name "LHgear" kids 3 OBJECT poly -name "LHgear" +name "LHgear.0" texture "Citation-II.rgb" texrep 1 1 crease 45 -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
[Flightgear-devel] ZKV500 GPS instrument; (New?) GPS code bug
I'm pretty sure that this bug happened to me before. If the GPS is set to OBS mode, changing the course as to make the CDI needle center causes the autopilot to follow north, while leaving it at the default setting (north) causes the AP to follow the correct course. Is it supposed to happen? It works normally while on leg mode. BTW, what is "DTO" mode for? I see it on the GPS dialog, but I don't know how that mode works. Also, I would like to tell the developer of the ZKV500 GPS instrument (listed in the manual as "Sébastien MARQUE") that it isn't working as it should anymore. Perhaps it was the GPS code update, or the user :) I have a few "bookmarks" on the "turnpoint" screen, but pressing the start or the enter button does nothing. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] New Sound system committed
dave perry wrote > Erik Hofman wrote: > > dave perry wrote: > > > >> dave perry wrote: > >> > >>> With an update this morning from cvs, I still only hear ATC and that > >>> with frequency distortion. Did I miss a required library change? I > >>> have openal-0.0.9-0.15.20060204cvs.fc9.i386 and > >>> freealut-1.1.0-6.fc9.i386 with fc10. > >>> > >>> > >>> > >> The above is on my desktop (Athlon XP 3200+, current FC10, AC'97 Chip > >> ALC650. > >> > >> I also have a notebook with an Intel core2 duo running FC10 64 bit. On > >> this system I get all the AC sounds but still distorted ATC. I am > using > >> the following update script on both systems. > >> > > > > Sorry I have been busy fixing technical bugs lately. Functional bugs are > > for a later date. So it's not your setup thats the problem. > > > > Erik > > > > > Hi Erik, > > I was tweaking an autopilot config file today on my desktop (which has > not had any aircraft sounds). After about an hour of flight reloading > the autopilot config many times after edits, suddenly I have aircraft > sounds after one of the autopilot reloads. It remained on until I > reloaded fgfs. Last update from cvs yesterday evening. > No ATC sound here with MSVC9 either. But there is improvement. FG fails to compile out of the box. It fails in AIPlane.cxx line #204: std::auto_ptr ptr( buf.c_str() ); The fix is to #ifdef that section out - no harm seems to be done by doing that. I think that bit is all terminally broken anyway. That done, FG compiles and runs. It now exits without a crash. So that's the good news. The bad news is that in test trains/railways here it all stops after about an hour. Framerates become protracted, tiles fail to load, and FG finally grinds to a halt. Interestingly, in similar tests before the new sound system was committed both Jon Stockill and I left FG running overnight with no ill effects. Are we there yet? No, but we're getting there Vivian -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] New Sound system committed
Erik Hofman wrote: > dave perry wrote: > >> dave perry wrote: >> >>> With an update this morning from cvs, I still only hear ATC and that >>> with frequency distortion. Did I miss a required library change? I >>> have openal-0.0.9-0.15.20060204cvs.fc9.i386 and >>> freealut-1.1.0-6.fc9.i386 with fc10. >>> >>> >>> >> The above is on my desktop (Athlon XP 3200+, current FC10, AC'97 Chip >> ALC650. >> >> I also have a notebook with an Intel core2 duo running FC10 64 bit. On >> this system I get all the AC sounds but still distorted ATC. I am using >> the following update script on both systems. >> > > Sorry I have been busy fixing technical bugs lately. Functional bugs are > for a later date. So it's not your setup thats the problem. > > Erik > > Hi Erik, I was tweaking an autopilot config file today on my desktop (which has not had any aircraft sounds). After about an hour of flight reloading the autopilot config many times after edits, suddenly I have aircraft sounds after one of the autopilot reloads. It remained on until I reloaded fgfs. Last update from cvs yesterday evening. Dave P. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] Another person selling FlightGear on ebay
On 10/21/09, Jon S. Berndt wrote: > > Maybe there ought to be a continuous listing on eBay for FlightGear that we > put there, that mentions all the other "rebrands", and prominently displays > the web site, that it can be downloaded freely. The idea behind the listing > wouldn't be to make money, just to set the facts straight. > > Or something like that ... > > Jon Excellent idea. Fabian -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] Another person selling FlightGear on ebay
Maybe there ought to be a continuous listing on eBay for FlightGear that we put there, that mentions all the other "rebrands", and prominently displays the web site, that it can be downloaded freely. The idea behind the listing wouldn't be to make money, just to set the facts straight. Or something like that ... Jon > -Original Message- > From: Erik Hofman [mailto:e...@ehofman.com] > Sent: Wednesday, October 21, 2009 3:27 AM > To: FlightGear developers discussions > Subject: Re: [Flightgear-devel] Another person selling FlightGear on > ebay > > George Patterson wrote: > > On Wed, Oct 21, 2009 at 8:11 AM, Curtis Olson > wrote: > >> Here's a slightly different wrinkle (maybe) on this whole selling > copies of > >> FlightGear under dubious premises. > >> > >> In this case FlightGear is prominently displayed in the ebay ad, but > later > >> they claim: > >> > >> Copyright > >> This item is copyrighted. Any reproduction, duplication or resale of > any > >> kind is strictly prohibited. > >> Software included is either released under GNU or contains our > protected IP. > >> Copyright C 2009 MT Software Solutions. All rights reserved. > > This might be perfectly legal if they, for instance, ship their own > installer. Then the package can't be sold as is (because if the > inclusion of their differently copyrighted software), but you are > allowed to grab FlightGear from the nmedia and give it to all your > friends for example. > > Erik > > --- > --- > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart > your > developing skills, take BlackBerry mobile applications to market and > stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > ___ > Flightgear-devel mailing list > Flightgear-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/flightgear-devel -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] New Sound system committed
Erik Hofman wrote: > I've had a report that the latest *stable* version of OpenAL-Soft does > work properly while a developers release behaved just like you describe. > It would be nice if you would want to test the latest stable version. I do notice thought that in fly-by view engine sound can either be silent or always close by. Have to look at that. Erik -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] Another person selling FlightGear on ebay
George Patterson wrote: > On Wed, Oct 21, 2009 at 8:11 AM, Curtis Olson wrote: >> Here's a slightly different wrinkle (maybe) on this whole selling copies of >> FlightGear under dubious premises. >> >> In this case FlightGear is prominently displayed in the ebay ad, but later >> they claim: >> >> Copyright >> This item is copyrighted. Any reproduction, duplication or resale of any >> kind is strictly prohibited. >> Software included is either released under GNU or contains our protected IP. >> Copyright © 2009 MT Software Solutions. All rights reserved. This might be perfectly legal if they, for instance, ship their own installer. Then the package can't be sold as is (because if the inclusion of their differently copyrighted software), but you are allowed to grab FlightGear from the nmedia and give it to all your friends for example. Erik -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel
Re: [Flightgear-devel] New Sound system committed
Scott Hamilton wrote: > On Tue, 2009-10-20 at 13:34 +0200, Erik Hofman wrote: >> I've committed a few fixes to SimGear and FlightGear again. >> Please report any progress (and if preferably any command line options >> if something fails). > rpm -qa | grep openal > libopenal0-soft-1.5.304-1.33 > openal-soft-1.5.304-1.33 > libopenal1-soft-1.5.304-1.33 > openal-soft-devel-1.5.304-1.33 > Hope that helps, but I still have no engine sound on any aircraft I've > tried, and some sounds, like the flaps sound, work on some aircraft? > Anything else I can provide to assist with debugging? I've had a report that the latest *stable* version of OpenAL-Soft does work properly while a developers release behaved just like you describe. It would be nice if you would want to test the latest stable version. Erik -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference ___ Flightgear-devel mailing list Flightgear-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/flightgear-devel