[Flightgear-devel] FPE while in-flight

2010-12-20 Thread Roland Haeder
Hi all, I got another FPE with GIT version while in-flight with the A380 (recent updates of fgdata). I flew with auto-pilot turned on from EDDL to EHAM and suddenly the FPE happens: http://pastebin.com/ixxjBv25 I keep the gdb console a little open so I can print some variables for you. :)

Re: [Flightgear-devel] FPE while in-flight

2010-12-20 Thread Roland Haeder
Hi again, forgot to add call parameters: /opt/bin/fgfs --ai-scenario=vinson_demo --callsign=Quix0r --multiplay=out,10,mpserver08.flightgear.org,5000 --multiplay=in,10,,5002 --config=$HOME.fgfs/cockpit-view.xml --airport=EDDL --config=$HOMEfgfs/fgfs-base/fgdata/pyromaniac.xml --control=joystick

[Flightgear-devel] message: Warning: TangentSpaceGenerator: unknown primitive mode 9 why?

2010-12-20 Thread henri orange
Hi, project members At FG load, i get a lot of these warning messages: TangentSpaceGenerator: unknown primitive mode 9 Is it just me ? is there any possibility to avoid it ? Thanks. Best regards, Alva, Official grtux hangar maintainer.

Re: [Flightgear-devel] FPE while in-flight

2010-12-20 Thread Csaba Halász
On Mon, Dec 20, 2010 at 9:12 AM, Roland Haeder r.hae...@gmx.de wrote: Hi all, I got another FPE with GIT version while in-flight with the A380 (recent updates of fgdata). I flew with auto-pilot turned on from EDDL to EHAM and suddenly the FPE happens: http://pastebin.com/ixxjBv25 Looks

[Flightgear-devel] Flight Gear

2010-12-20 Thread Grant
Hey guys, I have had flight gear for about 3 months now, I really enjoy playing offline but only just recently ive had the urge to want to play online, i try connecting online to on my Mac but the fgfs app in the exec app in the dock closes immediatly but flight gear stays open, this does not

[Flightgear-devel] Increasing FOV

2010-12-20 Thread castle
Hi, Tried to set the OTW view to a horizontal FOV of 66 degrees, browsing properties indicates /sim/current-view/field-of-view is set to 66 and even tried it at 90 degrees, but actual view does not change. Left edge shows parked 737 and portion of the checkered ILS shack. Tried a lower value of

Re: [Flightgear-devel] FPE while in-flight

2010-12-20 Thread ThorstenB
On Mon, Dec 20, 2010 at 9:12 AM, Roland Haeder wrote: I got another FPE with GIT version while in-flight with the A380 (recent updates of fgdata). I flew with auto-pilot turned on from EDDL to EHAM and suddenly the FPE happens: I had a look into some of these FPEs. However, there's tons of

Re: [Flightgear-devel] FPE while in-flight

2010-12-20 Thread Curtis Olson
Hi Thorsten, I was looking into a crash earlier today, and I think I traced it down to dt being zero. My little nasal script I was playing around used the simple d = r*t formula rearranged to read vel = dist / dt. I was using the result of this computation to compute an autopilot target (target

Re: [Flightgear-devel] FPE while in-flight

2010-12-20 Thread Jari Häkkinen
ThorstenB skrev 2010-12-20 19.58: So, unfortunately, divisons-by-zero, processing with infinity or NaN (not-a-number) values isn't really uncommon for FG. And since the FG default is to ignore any FPE (i.e. not to use the --enable-fpe option), few people care (I guess). Personally I don't

Re: [Flightgear-devel] FPE while in-flight

2010-12-20 Thread Roland Haeder
Hi, I can keep coming with them. :) I just need to remove a hash and add it some lines above in my start scripts (already introduced to forums). Curt, I have also found another FPE in AIShip.cpp and I came up with attached patch (works fine here). Or maybe it is the same? Can you check that out,

Re: [Flightgear-devel] FPE while in-flight

2010-12-20 Thread James Turner
On 20 Dec 2010, at 18:58, ThorstenB wrote: Personally I don't like ignoring such exceptions, since it often hides real programming errors. So, yes, I think it'd be great if someone had a look into these issues, finds all the bad computations and fixes them. However, since everyone (?) else