]> git.mxchange.org Git - flightgear.git/log
flightgear.git
16 years agoErik HOFMAN: faster and better xmlgrep implementation
mfranz [Sun, 29 Jun 2008 13:08:24 +0000 (13:08 +0000)]
Erik HOFMAN: faster and better xmlgrep implementation

16 years ago- remove unused puObject args in gui fgcommands
mfranz [Mon, 23 Jun 2008 18:28:02 +0000 (18:28 +0000)]
- remove unused puObject args in gui fgcommands
- remove no longer used PU macros

16 years ago- make sure /sim/fg-current can't get preset and write protected, so
mfranz [Sun, 22 Jun 2008 11:29:32 +0000 (11:29 +0000)]
- make sure /sim/fg-current can't get preset and write protected, so
  it's reliable at Nasal init time.
- make sure the cwd buffer is terminated

16 years agoadd abort()
mfranz [Thu, 19 Jun 2008 17:25:14 +0000 (17:25 +0000)]
add abort()

16 years agowhile abort() is really only useful for listeners (in all other cases
mfranz [Thu, 19 Jun 2008 17:18:42 +0000 (17:18 +0000)]
while abort() is really only useful for listeners (in all other cases
we know the stack trace), it's better to use a separate function for
it, as this can be used conditionally, as in:

  setlistener("/the/property", func(n) {
      if (n.getValue() < 0) # who's writing negative numbers to /the/property?!
          abort();          # let's check the backtrace ...
  });

16 years agomake fgfs abort() after a listener with runtime arg == -1 was triggered
mfranz [Thu, 19 Jun 2008 10:39:12 +0000 (10:39 +0000)]
make fgfs abort() after a listener with runtime arg == -1 was triggered
and its function called. This is useful for debugging purposes, to get
a core dump which unveils which C++ code was writing to the property.
This isn't any more of a security problem as other Nasal code that
makes fgfs crash, such as:  var x = func call(x); x();  The difference
is that the listener doesn't use up all memory before and is much quicker.

16 years agoset_fg_root: prevent circumvention of the Nasal security code through
mfranz [Mon, 16 Jun 2008 07:46:55 +0000 (07:46 +0000)]
set_fg_root: prevent circumvention of the Nasal security code through
pre-setting and write-protecting /sim/fg-root in *-set.xml files

16 years ago- allow users to set fg-home dir via FG_HOME environment variable, but
mfranz [Fri, 13 Jun 2008 10:52:47 +0000 (10:52 +0000)]
- allow users to set fg-home dir via FG_HOME environment variable, but
- don't allow to do that from any XML file. This is to prevent malign
  code from writing a new fg-home in ~/.fgfs/autosave.xml or other files
  in ~/.fgfs/.

16 years agoFrom Benoit Laniel: replace SG threading constructs with OpenThreads
timoore [Thu, 12 Jun 2008 08:24:39 +0000 (08:24 +0000)]
From Benoit Laniel: replace SG threading constructs with OpenThreads

16 years agocosmetic changes *only*:
mfranz [Wed, 11 Jun 2008 18:02:19 +0000 (18:02 +0000)]
cosmetic changes *only*:
- fix mixed tab/space indentation (replace all tabs by 8 spaces)
- remove trailing spaces
- rename one local variable (ttt -> pwd)

16 years agoAnders GIDENSTAM: catch all exceptions to avoid aborting fgfs after
mfranz [Wed, 11 Jun 2008 17:16:50 +0000 (17:16 +0000)]
Anders GIDENSTAM: catch all exceptions to avoid aborting fgfs after
                  commands like "ls .."

16 years agoDon't add guiCamera, which is now a slave, to the scene graph.
timoore [Sun, 8 Jun 2008 20:50:30 +0000 (20:50 +0000)]
Don't add guiCamera, which is now a slave, to the scene graph.

16 years agovim syntax files for *.ac and *.nas files. See nasal.vim for how to use them.
mfranz [Sat, 7 Jun 2008 17:21:47 +0000 (17:21 +0000)]
vim syntax files for *.ac and *.nas files. See nasal.vim for how to use them.
Note that for XML embedded Nasal you can type  :set ft=nasal  and back to
XML with  :set ft=xml   (ft ... filetype)

16 years agoFGFontCache::initializeFonts() now portable across platform through the use of plib
fredb [Sat, 7 Jun 2008 08:10:46 +0000 (08:10 +0000)]
FGFontCache::initializeFonts() now portable across platform through the use of plib

16 years agoRevert most iostream-related changes to JSBSim
timoore [Fri, 6 Jun 2008 21:21:57 +0000 (21:21 +0000)]
Revert most iostream-related changes to JSBSim

So many files in JSBSim use cout that it is not productive to remove
iostream from header files.

16 years agoFix GUI and HUD text rendering problems.
timoore [Fri, 6 Jun 2008 19:02:17 +0000 (19:02 +0000)]
Fix GUI and HUD text rendering problems.

After the changes that moved the GUI and HUD to a slave camera, the
texture-based fonts wouldn't display. The main fixes here are making
sure that the TXF textures are all loaded into the font cache early,
and explicitly setting the active texture unit in the GUI / HUD
drawImplementation.

16 years agomake route manager input case insensitive
mfranz [Fri, 6 Jun 2008 07:49:41 +0000 (07:49 +0000)]
make route manager input case insensitive

16 years agofix path
mfranz [Wed, 4 Jun 2008 20:21:35 +0000 (20:21 +0000)]
fix path

16 years agoAnders GIDENSTAM: "only override the receive port when it isn't set already"
mfranz [Tue, 3 Jun 2008 15:57:33 +0000 (15:57 +0000)]
Anders GIDENSTAM: "only override the receive port when it isn't set already"

16 years agoFred BOUVIER & Stuart BUCHANAN: make search function case-insensitive
mfranz [Tue, 3 Jun 2008 10:25:58 +0000 (10:25 +0000)]
Fred BOUVIER & Stuart BUCHANAN: make search function case-insensitive
mf: add leading space to allow search for word boundaries (" wat")

16 years agoOne more try at the osg 2.5.1 pager fix
timoore [Tue, 3 Jun 2008 07:32:03 +0000 (07:32 +0000)]
One more try at the osg 2.5.1 pager fix

16 years agoFix typo in DatabasePager interface changes for OSG 2.4
timoore [Tue, 3 Jun 2008 05:36:19 +0000 (05:36 +0000)]
Fix typo in DatabasePager interface changes for OSG 2.4

16 years agoChanges for new DatabasePager interface in OSG 2.5.1
timoore [Mon, 2 Jun 2008 21:10:13 +0000 (21:10 +0000)]
Changes for new DatabasePager interface in OSG 2.5.1

16 years agoClean up header file use of iostream and "using" declarations
timoore [Mon, 2 Jun 2008 21:09:51 +0000 (21:09 +0000)]
Clean up header file use of iostream and "using" declarations

Replace include <iostream> with istream, ostream and/or iosfwd as
appropriate.

Remove using namespace std and using std::foo from header files.

16 years agoiostream cleanup wip
timoore [Mon, 2 Jun 2008 21:09:10 +0000 (21:09 +0000)]
iostream cleanup wip

16 years agoInclude <iostream> and using declarations as needed.
timoore [Mon, 2 Jun 2008 21:07:35 +0000 (21:07 +0000)]
Include <iostream> and using declarations as needed.

SimGear no longer includes iostream and avoids using declarations in
header files, so various fixups are needed.

16 years agoattach listener after setting the default values (of course :-)
mfranz [Mon, 2 Jun 2008 11:44:02 +0000 (11:44 +0000)]
attach listener after setting the default values (of course :-)

16 years ago- export font properties to the property tree again
mfranz [Mon, 2 Jun 2008 09:32:37 +0000 (09:32 +0000)]
- export font properties to the property tree again
- don't keep oodles of class member variables public (eek!)
- use ::hasValue() instead of ::getType() != SGPropertyNode::NONE
- consistency fixes and cosmetics

16 years agochange default font values
mfranz [Sun, 1 Jun 2008 18:16:35 +0000 (18:16 +0000)]
change default font values

16 years agoCsaba HALASZ & Syd ADAMS: make radar font configurable
mfranz [Sun, 1 Jun 2008 18:08:01 +0000 (18:08 +0000)]
Csaba HALASZ & Syd ADAMS: make radar font configurable
mf: move font color parts to the font listener

16 years agoRemove unused variables
fredb [Sun, 1 Jun 2008 14:59:20 +0000 (14:59 +0000)]
Remove unused variables

16 years agoFix Traffic Manager XML parser
fredb [Sun, 1 Jun 2008 11:56:32 +0000 (11:56 +0000)]
Fix Traffic Manager XML parser

16 years agoImplement rotation offsets for cameras.
frohlich [Mon, 26 May 2008 20:34:26 +0000 (20:34 +0000)]
Implement rotation offsets for cameras.

16 years agosync with $FG_ROOT/Docs/READEM.xmlsound:
mfranz [Wed, 21 May 2008 15:00:20 +0000 (15:00 +0000)]
sync with $FG_ROOT/Docs/READEM.xmlsound:
- <delay-sec> added
- spelling fixes
- fix mixed indentation

16 years agoUpdate MSVC 7.1 projects. Add WindowSystemAdapter
fredb [Tue, 20 May 2008 06:36:24 +0000 (06:36 +0000)]
Update MSVC 7.1 projects. Add WindowSystemAdapter

16 years agopuInitialize returns nothing.
fredb [Tue, 20 May 2008 06:35:37 +0000 (06:35 +0000)]
puInitialize returns nothing.

16 years agoClean up OSG camera setup and interface to plib PUI
timoore [Mon, 19 May 2008 21:21:03 +0000 (21:21 +0000)]
Clean up OSG camera setup and interface to plib PUI

Switch to defining PU_USE_NONE and providing our own callback
functions to pui for "get window" and "get window size." A new
WindowSystemAdapter class assigns ID numbers to windows for the
purpose of identifying them to plib; the window size can be extracted
from the osg::GraphicsContext class in all the different
implementations (osgViewer, glut, sdl).

Implement a GraphicsContextOperation that runs code in a particular
graphics context, perhaps in another thread, and provides an
isFinished() method to test if the operation has finished. This allows
us to initialize plib PUI properly if there are multiple graphics
contexts without using fgMakeCurrent(). fgMakeCurrent() can't work in
multi-threaded OSG configurations.

Eliminate fgMakeCurrent() and all its uses, either by using
GraphicsContextOperation or by seeing that it is not necessary.

Attach the GUI camera as a slave camera.

Don't manipulate the OSG state in the drawImplementation() functions
for SGHUDAndPanelDrawable and SGPuDrawable; it's not needed.

16 years ago- use fireValueChanged() instead of setBoolValue(true) (micro-optimization :-)
mfranz [Sun, 18 May 2008 21:13:25 +0000 (21:13 +0000)]
- use fireValueChanged() instead of setBoolValue(true) (micro-optimization :-)
- comment out rather pointless FDM status message

16 years agonoise--
mfranz [Sun, 18 May 2008 21:05:11 +0000 (21:05 +0000)]
noise--

16 years agofg: move most scenery-related code to simgear
timoore [Wed, 14 May 2008 22:10:07 +0000 (22:10 +0000)]
fg: move most scenery-related code to simgear

From Till Busch.

16 years agoRename FontStatus enum labels because ERROR is already a macro under Windows
fredb [Wed, 14 May 2008 09:51:11 +0000 (09:51 +0000)]
Rename FontStatus enum labels because ERROR is already a macro under Windows

16 years agoUpdate MSVC 7.1 projects. Rename ATC -> ATCDCL
fredb [Wed, 14 May 2008 09:50:05 +0000 (09:50 +0000)]
Update MSVC 7.1 projects. Rename ATC -> ATCDCL

16 years agoMake sure that the compiler knows about the new location of the ATC code.
durk [Mon, 12 May 2008 14:58:43 +0000 (14:58 +0000)]
Make sure that the compiler knows about the new location of the ATC code.

16 years agoMerging David Luff's AI/ATC code with AIModels. Part 1:
durk [Mon, 12 May 2008 10:38:04 +0000 (10:38 +0000)]
Merging David Luff's AI/ATC code with AIModels. Part 1:
  - Move Dave's original code to a new directory (ATCDCL) so we can recycle
    the original ATC directory for generic ATC functions.

16 years agoMerging David Luff's AI/ATC code with AIModels. Part 1:
durk [Mon, 12 May 2008 10:07:41 +0000 (10:07 +0000)]
Merging David Luff's AI/ATC code with AIModels. Part 1:
  - Move Dave's original code to a new directory (ATCDCL) so we can recycle
    the original ATC directory for generic ATC functions.

16 years ago- rename fgcommand "set-mouse" to "set-cursor"
mfranz [Thu, 8 May 2008 10:07:51 +0000 (10:07 +0000)]
- rename fgcommand "set-mouse" to "set-cursor"
- write new {x,y} coords to /devices/status/mice/mouse/{x,y}, so that
  they are immediately available

16 years ago - Add some DEBUG level log messages to help users in getting traffic files
durk [Thu, 8 May 2008 06:11:43 +0000 (06:11 +0000)]
 - Add some DEBUG level log messages to help users in getting traffic files
   to work.
 - Add the possibility to load only proportion of traffic in order to
   reduce some of the workload, in case of a slower computer.

16 years agoadd fgcommand "set-mouse", which sets mouse coordinates and cursor type
mfranz [Wed, 7 May 2008 21:49:35 +0000 (21:49 +0000)]
add fgcommand "set-mouse", which sets mouse coordinates and cursor type

16 years agoAdd a subclass of fntTexFont that defers font loading
timoore [Tue, 6 May 2008 21:31:01 +0000 (21:31 +0000)]
Add a subclass of fntTexFont that defers font loading

Loading is deferred until the first render so that it has a chance of
happening in the proper graphics context.

16 years agoscript to output all frequencies for an airport as well as frequencies of
mfranz [Sun, 4 May 2008 21:33:16 +0000 (21:33 +0000)]
script to output all frequencies for an airport as well as frequencies of
nearby radio navigation facilities and their distance/bearing to the airport

16 years agoread runway start offset from /sim/airport/runways/start-offset-m
mfranz [Fri, 2 May 2008 21:31:30 +0000 (21:31 +0000)]
read runway start offset from /sim/airport/runways/start-offset-m
(Defaults to 5.0, which was hard-coded before. /sim/airport/runways/
does already exist and contains the runway search parameters.)

16 years agoadd unit suffixes -nm and -deg to /sim/presets/offset-{distance,azimuth}
mfranz [Thu, 1 May 2008 21:14:02 +0000 (21:14 +0000)]
add unit suffixes -nm and -deg to /sim/presets/offset-{distance,azimuth}

16 years agocleanup after last commit
mfranz [Tue, 29 Apr 2008 15:35:09 +0000 (15:35 +0000)]
cleanup after last commit

16 years ago- improve comments (contents and spelling)
mfranz [Tue, 29 Apr 2008 14:49:44 +0000 (14:49 +0000)]
- improve comments (contents and spelling)
- fix bad indentation (mixed 2/4 spaces or tabs/spaces)

16 years agoCsaba "Jester" HALASZ:
mfranz [Mon, 28 Apr 2008 11:26:02 +0000 (11:26 +0000)]
Csaba "Jester" HALASZ:

Attached patch adds support for multiple FIXes with the same name.
Applies to both branches.
New functionality is in query_and_offset, which now returns the FIX
closest to the passed in location.
Updated route manager to take advantage of this.

Otherwise, query functions return an unspecified member from the set
of identically named FIXes. (This was previously the one occurring
last in the database file, but I don't think anybody counted on that.)

16 years agoremove sgVec3Slider.hxx use
mfranz [Sun, 27 Apr 2008 18:07:38 +0000 (18:07 +0000)]
remove sgVec3Slider.hxx use

16 years agoremove obsolete constants for hardcoded pui dialogs (after sgVec3Slider removal)
mfranz [Sun, 27 Apr 2008 18:00:21 +0000 (18:00 +0000)]
remove obsolete constants for hardcoded pui dialogs (after sgVec3Slider removal)

16 years agomove sgVec3Slider dialog to the Attic/:
mfranz [Sun, 27 Apr 2008 17:56:05 +0000 (17:56 +0000)]
move sgVec3Slider dialog to the Attic/:
- it's unused
- it's hardcoded (we already got rid of all other hardcoded dialogs)
- we'll have to consider switching to osgWidget, which is planned to
  get imported into osg. It's unlikely that we add *more* of PLIB
  in the meantime.

16 years agomove constants here so that the file is complete in the Attic/
mfranz [Sun, 27 Apr 2008 17:50:44 +0000 (17:50 +0000)]
move constants here so that the file is complete in the Attic/

16 years agoremove sgVec3Slider.cxx sgVec3Slider.hxx altogether. Files will follow.
mfranz [Sun, 27 Apr 2008 17:44:14 +0000 (17:44 +0000)]
remove sgVec3Slider.cxx sgVec3Slider.hxx altogether. Files will follow.

16 years agocomment out currently unused symbols (gui_msg_OK etc.)
mfranz [Sun, 27 Apr 2008 16:18:23 +0000 (16:18 +0000)]
comment out currently unused symbols (gui_msg_OK etc.)

16 years agocomment out unused widget. Needs to be reviewed and either actually
mfranz [Sun, 27 Apr 2008 16:16:45 +0000 (16:16 +0000)]
comment out unused widget. Needs to be reviewed and either actually
used or removed

16 years agoUpdate MSVC 7.1 projects
fredb [Sun, 27 Apr 2008 16:15:20 +0000 (16:15 +0000)]
Update MSVC 7.1 projects

16 years agoNicolas: make screenshot target dir configurable (idea and first draft)
mfranz [Sat, 26 Apr 2008 22:34:46 +0000 (22:34 +0000)]
Nicolas: make screenshot target dir configurable  (idea and first draft)
         --prop:sim/paths/screenshot-dir=/tmp

16 years agorestore NumPad translation
mfranz [Sat, 26 Apr 2008 17:01:08 +0000 (17:01 +0000)]
restore NumPad translation

16 years ago- export modifier bitmask
mfranz [Sat, 26 Apr 2008 13:25:08 +0000 (13:25 +0000)]
- export modifier bitmask
- consider negative keys returned from an event handler as invalid
  (was 0 before)
- warning--

16 years agodocument <mod-hyper>
mfranz [Fri, 25 Apr 2008 23:40:05 +0000 (23:40 +0000)]
document <mod-hyper>

16 years agoadd hyper support
mfranz [Fri, 25 Apr 2008 23:21:47 +0000 (23:21 +0000)]
add hyper support

16 years agoafter OSG 2.4 upgrade, remove modifier workaround and comment out numpad
mfranz [Fri, 25 Apr 2008 22:45:43 +0000 (22:45 +0000)]
after OSG 2.4 upgrade, remove modifier workaround and comment out numpad
workaround (we have yet to verify if the latter is really obsolete)

16 years agomake --enable-osgviewer the default
timoore [Fri, 25 Apr 2008 21:29:03 +0000 (21:29 +0000)]
make --enable-osgviewer the default

From Till Busch

16 years agoTill BUSCH:
mfranz [Fri, 25 Apr 2008 08:43:59 +0000 (08:43 +0000)]
Till BUSCH:

"the [...] patch (for fg) increases the time before invisible geometry (i.e.
geometry not inside the view frustrum) gets deleted. default was 10 seconds
which i am increasing to 2 minutes."

16 years ago- make online stats mode directly settable, rather than just in steps
mfranz [Mon, 21 Apr 2008 14:18:30 +0000 (14:18 +0000)]
- make online stats mode directly settable, rather than just in steps
- cosmetics: put each argument list member in a separate line, so that
  one doesn't have to break lines again whenever one inserts a new
  member

16 years ago- let the OSG on-screen-statistics function no longer be hard-coded
mfranz [Sun, 20 Apr 2008 18:24:52 +0000 (18:24 +0000)]
- let the OSG on-screen-statistics function no longer be hard-coded
  on the '*'-key, but allow to cycle it by setting
  /sim/rendering/on-screen-statistics to "true"
- move that function to the Debug menu (no more key assigned!)
- add "print-statistics" menu entry

16 years agoSmall patch that prevents displaying a "local echo" of one's own aircraft
durk [Sat, 19 Apr 2008 10:42:06 +0000 (10:42 +0000)]
Small patch that prevents displaying a "local echo" of one's own aircraft
under some circumstances. The history of this patch is somewhat unclear,
but was brought to my attention by Martin Spott, while preparing for the
Lelystad FSWeekend show. See also my posting on FlightGear devel, on
November 22, 2007 "(Multiplayer Local Echo Patch)", but wasn't committed
then because I/we assumed that had been superseded by other code
modifications. The local echo problem still persists, however, albeit
under specific circumstances. The current patch reportedly prevents this
from happening.

16 years agoTorsten Dreyer: Check whether a valid graphic context has been created
durk [Sat, 19 Apr 2008 10:28:07 +0000 (10:28 +0000)]
Torsten Dreyer: Check whether a valid graphic context has been created
before using a camera.

16 years agoUpdate MSVC 7.1 projects
fredb [Mon, 14 Apr 2008 06:28:31 +0000 (06:28 +0000)]
Update MSVC 7.1 projects

16 years agoFixes for compiling with gcc 4.3
timoore [Sun, 13 Apr 2008 21:12:36 +0000 (21:12 +0000)]
Fixes for compiling with gcc 4.3

Include standard header files and qualify with std:: where needed.

Qualify various char parameters and variables with const.

16 years agoSyd Adams: Enable bank limit controls with the autopilot.
durk [Sun, 6 Apr 2008 06:49:36 +0000 (06:49 +0000)]
Syd Adams: Enable bank limit controls with the autopilot.

16 years agoAdd a telnet command parser to UGear so we can feed commands remotely to
curt [Fri, 4 Apr 2008 22:34:19 +0000 (22:34 +0000)]
Add a telnet command parser to UGear so we can feed commands remotely to
be passed up to the UAS.

16 years agoAdded autopilot target values to communications link.
curt [Fri, 4 Apr 2008 06:15:05 +0000 (06:15 +0000)]
Added autopilot target values to communications link.
Pass autopilot target values to LFSGlass display so they can be properly
displayed.
Fix a gps status display bug.

16 years agoSome tweaks and finetuning made possible by the multihreaded modelloader
durk [Wed, 2 Apr 2008 19:01:48 +0000 (19:01 +0000)]
Some tweaks and finetuning made possible by the multihreaded modelloader
and the pushback code:
 - Traffic manager starts modelload requests immediately upon program
   loading
 - Only create legs 1 (push back) or five (cruise) of AI traffic.
 - AIAircraft's rather obsessive behavior to circle around a waypoint is
   largely resolved
 - More realistic ground steering for AI aircraft.

16 years agoForward port from CVS/PLIB: Use a more memory allocation efficient replay
durk [Wed, 2 Apr 2008 18:55:39 +0000 (18:55 +0000)]
Forward port from CVS/PLIB: Use a more memory allocation efficient replay
system.

16 years agoSeveral updates to implement a sequenced/verified/check summed serial
curt [Sun, 30 Mar 2008 05:34:40 +0000 (05:34 +0000)]
Several updates to implement a sequenced/verified/check summed serial
command uplink on the same port we are receiving the telemetry data.

16 years ago- UGsmooth now can send opengc packets directly rather than piping through
curt [Fri, 28 Mar 2008 22:55:42 +0000 (22:55 +0000)]
- UGsmooth now can send opengc packets directly rather than piping through
  a running copy of FlightGear (no need to have FlightGear running on weaker
  powered groundstations.)

- Add a test for "valid" gps data.

- Pretty print gps coordinates in debug output.

16 years agoautopilot filter deque fixes
timoore [Mon, 24 Mar 2008 22:46:47 +0000 (22:46 +0000)]
autopilot filter deque fixes

Thanks to Vivian Meazza for debugging this. The output deque for
FGDigitalFilter was not being kept long enough for the
doubleExponential filter. Reads from output[1] could cause a crash.

16 years agoUpdate MSVC 7.1 projects
fredb [Sat, 22 Mar 2008 12:19:07 +0000 (12:19 +0000)]
Update MSVC 7.1 projects

16 years agoWin32 fix
fredb [Sat, 22 Mar 2008 12:18:53 +0000 (12:18 +0000)]
Win32 fix

16 years agomodel paging patch from Till Busch
timoore [Sat, 22 Mar 2008 09:31:06 +0000 (09:31 +0000)]
model paging patch from Till Busch

From Till:
i started the project at the end of february with a simple idea: move all
3d-model loading to the DatabasePager-thread. my first attempts looked
promising, though they were a little too optimistic (or naive?). the patch
has evolved a lot since.

currently it does the following things:
1. revive SGModelLib, move functions for xml-model-loading there

2. replace all calls to sgLoad3dModel with calls to either
SGModelLib::loadModel() or SGModelLib::loadPagedModel()
almost all models will be loaded by the DatabasePager. the few exceptions are:
your own plane, shared models in scenery, random objects, AIBallistic models.

3. simplify mode-loading functions (avoid passing around fg_root)

4. avoid supurious MatrixTransform nodes in loaded models

5. fix some memory leaks

16 years agoFor the agRadar, initialize property nodes with defaults.
timoore [Sat, 22 Mar 2008 09:19:21 +0000 (09:19 +0000)]
For the agRadar, initialize property nodes with defaults.

Introduce a convenience member function in wxRadarBg for creating an
SGPropertyNode and initializing it in one step. Use this in
agRadar. This eliminates buggy behavior when the necessary radar
properties aren't defined.

16 years agoSmall cleanup of terrain radar
timoore [Mon, 17 Mar 2008 08:47:31 +0000 (08:47 +0000)]
Small cleanup of terrain radar

16 years agoground radar from Vivian Mezza
timoore [Mon, 17 Mar 2008 08:47:16 +0000 (08:47 +0000)]
ground radar from Vivian Mezza

16 years agoremove debug message :-)
mfranz [Sat, 15 Mar 2008 12:52:22 +0000 (12:52 +0000)]
remove debug message  :-)

16 years agoadd --version option that works something like this:
mfranz [Sat, 15 Mar 2008 12:10:44 +0000 (12:10 +0000)]
add --version option that works something like this:

  $ fgfs --version
  2.0pre-20080314
  FG_ROOT=/usr/local/share/FlightGear
  FG_HOME=/home/foo/.fgfs

... assuming that VERSION in config.h is "2.0pre-20080314". Which it isn't.
Instead it's "1.0.0" since yesterday, and was "0.9.10" before that. This
has yet to be discussed, and I'll add the option to options.xml later.

16 years agoWoohoo! FlightGear 1.0.0 released!
mfranz [Fri, 14 Mar 2008 19:49:31 +0000 (19:49 +0000)]
Woohoo! FlightGear 1.0.0 released!

16 years agoTatsuhiro NISHIOKA: "enables osgviewer version of FlightGear to show
mfranz [Wed, 12 Mar 2008 12:38:54 +0000 (12:38 +0000)]
Tatsuhiro NISHIOKA: "enables osgviewer version of FlightGear to show
                     window frame, menubar, and Docks properly" (Mac OSX)

16 years agoFrom Till Busch: use install -p if possible
timoore [Tue, 11 Mar 2008 22:53:30 +0000 (22:53 +0000)]
From Till Busch: use install -p if possible

16 years ago- require plib 1.8.5
mfranz [Tue, 11 Mar 2008 15:58:57 +0000 (15:58 +0000)]
- require plib 1.8.5
- switch puList to puaList
- drop src/GUI/puList.[ch]xx
- remove #ifdefs, FIXMEs, and workarounds that have accumulated over time
- warnings--

16 years agoremove redundant --airport-id option (OK'ed by Curt, no longer used by fgrun)
mfranz [Mon, 10 Mar 2008 17:08:37 +0000 (17:08 +0000)]
remove redundant --airport-id option (OK'ed by Curt, no longer used by fgrun)

16 years agofinal cosmetics (because I had posted the web-cvs link to the blender list/forum :-)
mfranz [Mon, 10 Mar 2008 16:31:02 +0000 (16:31 +0000)]
final cosmetics (because I had posted the web-cvs link to the blender list/forum :-)

16 years agoUpdate MSVC 7.1 projects
fredb [Sun, 9 Mar 2008 22:15:41 +0000 (22:15 +0000)]
Update MSVC 7.1 projects