]>
git.mxchange.org Git - flightgear.git/log
Tim Moore [Tue, 16 Mar 2010 14:12:46 +0000 (15:12 +0100)]
Merge branch 'syd/ias-limit' into next
jmt [Sat, 13 Mar 2010 12:21:51 +0000 (12:21 +0000)]
Syd Adams: only define overspeed-indicator properties when enabled.
jmt [Thu, 11 Mar 2010 09:45:48 +0000 (09:45 +0000)]
Airspeed indicator: add default values for overspeed, and rename the
enable property to 'has-overspeed-indicator'.
Tim Moore [Thu, 11 Mar 2010 08:01:42 +0000 (09:01 +0100)]
Merge branch 'torsten/auto' into next
torsten [Wed, 10 Mar 2010 21:02:57 +0000 (21:02 +0000)]
Added anti windup for the pi-simple-controller
Tim Moore [Thu, 11 Mar 2010 08:01:02 +0000 (09:01 +0100)]
Merge branch 'torsten/js64' into next
torsten [Wed, 10 Mar 2010 08:42:34 +0000 (08:42 +0000)]
Just another 64bit fix
torsten [Wed, 10 Mar 2010 08:33:10 +0000 (08:33 +0000)]
David Fries:
64bit fixes
torsten [Wed, 10 Mar 2010 08:29:08 +0000 (08:29 +0000)]
David Fries:
Fixes for 64bit systems
Tim Moore [Thu, 11 Mar 2010 07:58:45 +0000 (08:58 +0100)]
Merge branch 'syd/ias-limit' into next
jmt [Tue, 9 Mar 2010 11:11:07 +0000 (11:11 +0000)]
Syd Adams:
add ias-limit (brarber-pole) computation to airpseed-indicator
expose selected DME frequency on the DME instrument
Tim Moore [Tue, 9 Mar 2010 10:25:18 +0000 (11:25 +0100)]
Merge branch 'timoore/getpath-rebase' into next
Tim Moore [Fri, 18 Dec 2009 06:15:48 +0000 (07:15 +0100)]
changes for SGPropertyNode::getPath return type
It's now a std::string.
Tim Moore [Tue, 9 Mar 2010 10:20:04 +0000 (11:20 +0100)]
Merge branch 'jmt/gps'
Tim Moore [Tue, 9 Mar 2010 10:19:40 +0000 (11:19 +0100)]
Merge branch 'maint'
Tim Moore [Tue, 9 Mar 2010 09:39:30 +0000 (10:39 +0100)]
Merge branch 'vivian/tachy' into next
torsten [Sat, 6 Mar 2010 21:20:21 +0000 (21:20 +0000)]
one more gcc warning fix: xxx will be initialized after yyy
Tim Moore [Tue, 9 Mar 2010 09:38:43 +0000 (10:38 +0100)]
Merge branch 'torsten/auto' into next
torsten [Sat, 6 Mar 2010 15:40:17 +0000 (15:40 +0000)]
Just a tiny change adds a <reference> input to FGDigitalFilters. This is nice to have to calculate differences of signals using gain-filters.
Old calculation was
output = input * gain
and is now
output = (input-reference) * gain
Note: the PI(D) controller use (reference-input) which effectively reverses the sign. Our notation was picked for backwards compatibility to not break the myriads of <filter> elements currently existing.
All the rest is some code cleanup.
Tim Moore [Fri, 5 Mar 2010 17:17:39 +0000 (18:17 +0100)]
Merge branch 'timoore/fire-fix' into next
Tim Moore [Fri, 5 Mar 2010 17:17:19 +0000 (18:17 +0100)]
add back wildfire multiplayer property
This was deleted by accident when I moved property types to their own
namespace.
Tim Moore [Wed, 3 Mar 2010 23:46:52 +0000 (00:46 +0100)]
Merge branch 'aperry/terrasync' into next
fredb [Wed, 3 Mar 2010 19:38:17 +0000 (19:38 +0000)]
Jari Häkkinen: compile on Mac
fredb [Wed, 3 Mar 2010 19:35:16 +0000 (19:35 +0000)]
Remove a name conflict under Unix
fredb [Sun, 28 Feb 2010 22:29:21 +0000 (22:29 +0000)]
Alex Perry : Don't call stream functions in signal handlers
Me : close socket to force exit when termination signal is received while idle.
fredb [Sun, 28 Feb 2010 09:09:48 +0000 (09:09 +0000)]
Alex Perry : Patch to protect terrasync SVN from ^C
Me : make it compile under MSVC. Works with fgrun.
Tim Moore [Fri, 26 Feb 2010 07:47:41 +0000 (08:47 +0100)]
Merge branch 'vivian/tachy' into next
V Meazza [Fri, 19 Feb 2010 23:45:19 +0000 (23:45 +0000)]
Revised bugfix for tachymetric gunsight
Tim Moore [Thu, 25 Feb 2010 22:53:38 +0000 (23:53 +0100)]
Merge branch 'maint' into next
Curtis L. Olson [Thu, 25 Feb 2010 14:35:33 +0000 (08:35 -0600)]
Fix missed items for the 2.0.0 release.
Tim Moore [Thu, 25 Feb 2010 22:34:04 +0000 (23:34 +0100)]
Merge branch 'jmt/gpswidget' into next
jmt [Sun, 21 Feb 2010 21:56:37 +0000 (21:56 +0000)]
Make automake happier.
jmt [Sun, 21 Feb 2010 21:05:16 +0000 (21:05 +0000)]
MSVC project updates: add GUI/WaypointList[.cxx|.hxx] to build.
Tim Moore [Thu, 25 Feb 2010 22:23:00 +0000 (23:23 +0100)]
Merge branch 'curt/release-stuff' into next
curt [Thu, 25 Feb 2010 14:48:08 +0000 (14:48 +0000)]
Update the NEWS file to reflect v2.0.0 changes.
curt [Thu, 25 Feb 2010 14:33:56 +0000 (14:33 +0000)]
Make sure we check for the proper simgear version.
Tim Moore [Thu, 25 Feb 2010 22:21:55 +0000 (23:21 +0100)]
Merge branch 'torsten/auto' into next
torsten [Wed, 24 Feb 2010 22:15:48 +0000 (22:15 +0000)]
New feature: added <logic> "filters"
"logic filters" use well known conditions to drive output properties. Example for bax = baz & (foo | bar).
<logic>
<name>my first logic element</name>
<input>
<or>
<property>foo</property>
<property>bar</property>
</or>
<property>baz</property>
</input>
<output>bax</output>
</logic>
Tim Moore [Thu, 25 Feb 2010 11:06:08 +0000 (12:06 +0100)]
Merge branch 'jmt/font'
Tim Moore [Thu, 25 Feb 2010 11:05:07 +0000 (12:05 +0100)]
Merge branch 'jmt/bulk'
Tim Moore [Thu, 25 Feb 2010 11:04:58 +0000 (12:04 +0100)]
Merge branch 'jmt/gui'
Tim Moore [Tue, 23 Feb 2010 07:53:58 +0000 (08:53 +0100)]
Merge branch 'jmt/gpswidget' into next
jmt [Tue, 23 Feb 2010 00:17:53 +0000 (00:17 +0000)]
waypointList: stop using GNU extension / C99 features.
Tim Moore [Mon, 22 Feb 2010 08:37:05 +0000 (09:37 +0100)]
Merge branch 'jmt/gpswidget' into next
Tim Moore [Mon, 22 Feb 2010 08:32:32 +0000 (09:32 +0100)]
remove trailing slash / empty line from Makefile.am
Tim Moore [Sun, 21 Feb 2010 21:26:29 +0000 (22:26 +0100)]
Merge branch 'jmt/gpswidget' into next
jmt [Sun, 21 Feb 2010 20:44:17 +0000 (20:44 +0000)]
GPS / route-manager: add new custom widget to display the waypoints list.
Supports various new editing features, including dragging to re-order, and
+/- keys to adjust the target altitude for a waypoint. Also displays some
additional information, and will display *even* more once I land airways/
SID/STAR support.
Tim Moore [Sun, 21 Feb 2010 21:25:56 +0000 (22:25 +0100)]
Merge branch 'durk/traffic' into next
durk [Sun, 21 Feb 2010 14:15:18 +0000 (14:15 +0000)]
AI aircraft will need to switch frequencies before being able to request
push-back clearance.
Tim Moore [Sun, 21 Feb 2010 21:24:53 +0000 (22:24 +0100)]
Merge branch 'jmt/track-bug' into next
jmt [Fri, 19 Feb 2010 00:31:38 +0000 (00:31 +0000)]
bug #80, exception flying west from NZAA (Auckland, NZ). The underlying
issue is numerical problems in _wgs84_inverse, triggered by the traffic-manager
testing enormous distances geodetically.
Changes
- refactor AISchedule::update, so the aircraft approximate position
calculation is simpler.
- refactor AIAircraft to no longer use exceptions as a return value mechanism
- change AISchedule::update to use cartesian math for in-visible-range check
Tim Moore [Sun, 21 Feb 2010 21:21:53 +0000 (22:21 +0100)]
Merge branch 'maint' into next
Tim Moore [Sun, 21 Feb 2010 21:21:46 +0000 (22:21 +0100)]
Merge branch 'maint'
curt [Thu, 18 Feb 2010 16:07:12 +0000 (16:07 +0000)]
Add data/Scenery/Airports/ to the data distribution.
Tim Moore [Wed, 17 Feb 2010 17:05:23 +0000 (18:05 +0100)]
Merge branch 'curt/make'
Tim Moore [Wed, 17 Feb 2010 06:46:38 +0000 (07:46 +0100)]
Merge branch 'curt/make' into next
curt [Tue, 16 Feb 2010 20:26:26 +0000 (20:26 +0000)]
Fix a couple "make dist" glitches.
Tim Moore [Wed, 17 Feb 2010 06:44:36 +0000 (07:44 +0100)]
Merge branch 'jmt/bulk' into next
jmt [Mon, 15 Feb 2010 23:57:56 +0000 (23:57 +0000)]
Quiet: reduce log-level of various things from INFO to DEBUG or BULK, and tune the categories/level of some specific messages.
Part of original commit that only applys to master branch.
Tim Moore [Wed, 17 Feb 2010 06:41:48 +0000 (07:41 +0100)]
Merge branch 'jmt/gui' into next
jmt [Mon, 15 Feb 2010 23:57:56 +0000 (23:57 +0000)]
Quiet: reduce log-level of various things from INFO to DEBUG or BULK, and tune the categories/level of some specific messages.
Commit split by timoore in order to apply most of it to maint branch.
jmt [Mon, 15 Feb 2010 23:34:53 +0000 (23:34 +0000)]
Bugfix: stop dialogs jumping around when re-layout occurs - make positions persistent.
Tim Moore [Wed, 17 Feb 2010 06:29:44 +0000 (07:29 +0100)]
Merge branch 'jmt/navradio' into next
jmt [Mon, 15 Feb 2010 22:52:12 +0000 (22:52 +0000)]
Bugfix: don't crash on localizers with no associated runway (due to inconsistent nav.dat/apt.dat). Reported by Jacob Burbach.
Tim Moore [Sun, 14 Feb 2010 18:49:41 +0000 (19:49 +0100)]
Merge branch 'ehofman/config' into next
ehofman [Sun, 14 Feb 2010 14:15:17 +0000 (14:15 +0000)]
Updates from Geoff McLane
Tim Moore [Sun, 14 Feb 2010 18:28:33 +0000 (19:28 +0100)]
Merge branch 'vivian/mp' into next
V Meazza [Fri, 12 Feb 2010 17:10:10 +0000 (17:10 +0000)]
Change Log Message status from ALERT to DEBUG
Signed-off-by: V Meazza <vivian.meazza@lineone.net>
Tim Moore [Sat, 13 Feb 2010 23:27:41 +0000 (00:27 +0100)]
Merge branch 'jmt/gps' into next
jmt [Sat, 13 Feb 2010 19:33:54 +0000 (19:33 +0000)]
Bugfix: ensure GPS WP1 Mag-bearing is normalised to [0..360]
Tim Moore [Wed, 10 Feb 2010 23:21:10 +0000 (00:21 +0100)]
Merge branch 'jmt/font' into next
jmt [Wed, 10 Feb 2010 19:28:35 +0000 (19:28 +0000)]
Bugfix #35 / denker #20F:
Guard against invalid font names in panel XML files, and make font name
comparisons case-insensitive so that 'helvetica', 'Helvetica' or 'HELVETICA'
work as expected.
Tim Moore [Wed, 10 Feb 2010 23:13:19 +0000 (00:13 +0100)]
Merge branch 'vivian/tachy' into next
Tim Moore [Wed, 10 Feb 2010 23:13:04 +0000 (00:13 +0100)]
Only draw tachymetric sight if appropriate inputs exist
This avoids triggering asserts for missing inputs.
Tim Moore [Wed, 10 Feb 2010 15:30:31 +0000 (16:30 +0100)]
Merge branch 'vivian/tachy' into next
Meazza@.(none) [Fri, 5 Feb 2010 08:45:15 +0000 (08:45 +0000)]
Add Tachymetric Gunsight
Signed-off-by: <V Meazza>
Tim Moore [Wed, 10 Feb 2010 14:55:11 +0000 (15:55 +0100)]
Merge branch 'zan/stencil2' into next
V Meazza [Sat, 6 Feb 2010 22:10:09 +0000 (22:10 +0000)]
Add Stencil Lighting
Signed-off-by: V Meazza <vivina.meazza@lineone.net>
V Meazza [Sat, 6 Feb 2010 19:10:39 +0000 (19:10 +0000)]
MSVC9 fix
Signed-off-by: V Meazza <vivina.meazza@lineone.net>
Tim Moore [Wed, 10 Feb 2010 14:04:10 +0000 (15:04 +0100)]
Merge branch 'ehofman/config' into next
ehofman [Tue, 9 Feb 2010 09:47:41 +0000 (09:47 +0000)]
Bail out if one of the required OpenScenegraph libraries was not found.
ehofman [Wed, 10 Feb 2010 08:19:05 +0000 (08:19 +0000)]
Improve handling of type DOUBLE in generic i/o protocol.
ehofman [Sun, 7 Feb 2010 12:40:42 +0000 (12:40 +0000)]
reorganize the code a bit to prevent an infinite loop in ascii mode
Tim Moore [Tue, 9 Feb 2010 23:45:28 +0000 (00:45 +0100)]
Merge branch 'torsten/track'
Tim Moore [Tue, 9 Feb 2010 23:45:06 +0000 (00:45 +0100)]
Merge branch 'durk/atcdcl-cond'
Conflicts:
src/ATC/trafficcontrol.cxx
src/Main/Makefile.am
Tim Moore [Tue, 9 Feb 2010 23:41:52 +0000 (00:41 +0100)]
Merge branch 'jmt/navradio'
Tim Moore [Tue, 9 Feb 2010 23:41:44 +0000 (00:41 +0100)]
Merge branch 'torsten/auto'
Tim Moore [Tue, 9 Feb 2010 06:28:03 +0000 (07:28 +0100)]
Merge branch 'jmt/units-fix' into maint
durk [Fri, 5 Feb 2010 06:00:12 +0000 (06:00 +0000)]
Revert previous commit.
durk [Fri, 5 Feb 2010 05:40:15 +0000 (05:40 +0000)]
Update version number.
Tim Moore [Thu, 4 Feb 2010 23:25:52 +0000 (00:25 +0100)]
Merge branch 'fredb/winbuild'
fredb [Thu, 4 Feb 2010 22:08:48 +0000 (22:08 +0000)]
Update version numbers
Tim Moore [Thu, 4 Feb 2010 21:45:21 +0000 (22:45 +0100)]
Merge branch 'fredb/winbuild'
fredb [Sun, 31 Jan 2010 22:16:07 +0000 (22:16 +0000)]
Update Windows packages again (save Terrasync dir location and update install summary)
Tim Moore [Sun, 31 Jan 2010 17:16:51 +0000 (18:16 +0100)]
Merge branch 'fredb/winbuild'
fredb [Sun, 31 Jan 2010 12:07:54 +0000 (12:07 +0000)]
Update Windows packages
Tim Moore [Sun, 31 Jan 2010 17:01:33 +0000 (18:01 +0100)]
Merge branch 'csaba/nan'
durk [Sat, 30 Jan 2010 15:40:33 +0000 (15:40 +0000)]
A couple of last-minute patched / bugfixes to mitigate the probability of collisions between user controlled aircraft and AI traffic.
* AI aircraft distance to user proximity detection works again (lat/lon were inverted).
* The parking uses by the user aircraft is marked as such to prevent it being reused by an AI aicraft
* AI aircraft won't receive permission for pushback until the user aircraft is at a fair distance.
Csaba Halasz [Mon, 28 Dec 2009 17:29:10 +0000 (18:29 +0100)]
Fix crab angle and ground speed calculation in AILocalTraffic
jmt [Thu, 28 Jan 2010 09:42:57 +0000 (09:42 +0000)]
Bugfix: ensure navradio nav-loc and has-gs properties clear to false when no valid station is tuned / radio is u/s.