]> git.mxchange.org Git - flightgear.git/log
flightgear.git
15 years agoignore SIGPIPE. If we pipe our output to another application, let's say
mfranz [Tue, 15 Jul 2008 16:55:23 +0000 (16:55 +0000)]
ignore SIGPIPE. If we pipe our output to another application, let's say
to kst, and kst is closed, this does *not* mean that we want FlightGear
to "abort".

15 years agoinclude cstring for memset() (necessary for gcc 4.3.*; backported
mfranz [Tue, 15 Jul 2008 13:08:03 +0000 (13:08 +0000)]
include cstring for memset() (necessary for gcc 4.3.*; backported
from JSBSim/cvs)

15 years agoMSVC doesn't have a round function
fredb [Mon, 14 Jul 2008 09:48:09 +0000 (09:48 +0000)]
MSVC doesn't have a round function

15 years agoRemoval of depricated version of Airports/trafficcontrol.[ch]xx
durk [Sun, 13 Jul 2008 12:57:06 +0000 (12:57 +0000)]
Removal of depricated version of Airports/trafficcontrol.[ch]xx
(See src/ATC for it's new location)

15 years agoInitial attempt to establish a better integration between AI and ATC code.
durk [Sun, 13 Jul 2008 12:51:06 +0000 (12:51 +0000)]
Initial attempt to establish a better integration between AI and ATC code.
Various other patches that have been lingering around for a while:
 * Moved trafficcontrol.[ch]xx from the Airports directory to ATC, where
   it really belongs.
 * AI aircraft will request startup clearance, and ground control will
   approve.
 * Starting AI Aircraft will be pushed back to a predefined holding point
   on the ground network, and wait a while before taxiing out to the runway

15 years ago- Added the ATC directory again, in it's new incarnation as the storage
durk [Sun, 13 Jul 2008 12:38:01 +0000 (12:38 +0000)]
- Added the ATC directory again, in it's new incarnation as the storage
  location for general purpose ATC functions, meant to be compatible with
  the AIModels code.

16 years agos/offset/offsets/
mfranz [Sat, 12 Jul 2008 21:13:48 +0000 (21:13 +0000)]
s/offset/offsets/

16 years agothe usual copy from $FG_ROOT/Docs/
mfranz [Sat, 12 Jul 2008 14:13:22 +0000 (14:13 +0000)]
the usual copy from $FG_ROOT/Docs/

16 years ago"load"/"save" flight: enforce ".sav" extension
mfranz [Fri, 11 Jul 2008 20:55:43 +0000 (20:55 +0000)]
"load"/"save" flight: enforce ".sav" extension

16 years agouse same path validation process for fgcommands "load", "save",
mfranz [Fri, 11 Jul 2008 16:36:54 +0000 (16:36 +0000)]
use same path validation process for fgcommands "load", "save",
"loadxml", ans "savexml" as is used for io.open(). This is still
Nasal based for now. See $FG_ROOT/Nasal/io.nas.

16 years agoadd a reference for memset()
ehofman [Fri, 11 Jul 2008 14:11:54 +0000 (14:11 +0000)]
add a reference for memset()

16 years agoUpdate to the latest version of JSBSim which supports Lighter Than Air craft
ehofman [Thu, 10 Jul 2008 17:23:02 +0000 (17:23 +0000)]
Update to the latest version of JSBSim which supports Lighter Than Air craft
(like Airships) and external forces.

16 years agoreturn attribute mask as unsigned
mfranz [Thu, 10 Jul 2008 11:36:10 +0000 (11:36 +0000)]
return attribute mask as unsigned

16 years agolet n.getAttribute("last") return SGPropertyNode::LAST_USED_ATTRIBUTE
mfranz [Thu, 10 Jul 2008 10:58:06 +0000 (10:58 +0000)]
let n.getAttribute("last") return SGPropertyNode::LAST_USED_ATTRIBUTE
(this is the same constant value for all properties)

16 years agodon't run the help browser from a property that a user could have
mfranz [Wed, 9 Jul 2008 19:35:53 +0000 (19:35 +0000)]
don't run the help browser from a property that a user could have
changed to something evil, but rather make sure that the browser
string can be trusted. (TODO: change system() to vfork()/execvp() ?)

16 years agolet the --prop: option overwrite write-protected properties
mfranz [Wed, 9 Jul 2008 15:09:23 +0000 (15:09 +0000)]
let the --prop: option overwrite write-protected properties
("The user is always right, but not always bright.")

16 years agoremove depreciated and unused src/GUI/trackball.*
mfranz [Wed, 9 Jul 2008 12:44:32 +0000 (12:44 +0000)]
remove depreciated and unused src/GUI/trackball.*

16 years agoremove depreciated and unused src/GUI/trackball.*
mfranz [Wed, 9 Jul 2008 12:37:54 +0000 (12:37 +0000)]
remove depreciated and unused src/GUI/trackball.*

16 years agoremove depreciated gui_local.[ch]xx:
mfranz [Wed, 9 Jul 2008 12:22:33 +0000 (12:22 +0000)]
remove depreciated gui_local.[ch]xx:
- drop unused parts (MouseQuat/GuiQuat)
- move "old-reinit-dialog" fgcommand to fg_command.cxx under new name
  "reset" for now. (May later get merged with fgcommand "reinit".)
- move reInit() to fg_init.cxx: This was used by Shift-Esc and
  Menu->File-Reset (via fgcommand "old-reinit-dialog"). We have already
  a similar function fgReInitSubsystems() in fg_init.cxx, so these two
  functions will probably get merged later.)

16 years agorename attributes write/read to writable/readable (The original names
mfranz [Mon, 7 Jul 2008 10:23:24 +0000 (10:23 +0000)]
rename attributes write/read to writable/readable (The original names
where chosen to match the SGPropertyNode::WRITE/READ symbol names and
should make it more consistent, but this isn't really something that
should be exposed to the Nasal developer.)

16 years ago* reorganize the code to be able to skip comment sections
ehofman [Sun, 6 Jul 2008 11:34:50 +0000 (11:34 +0000)]
* reorganize the code to be able to skip comment sections
* depreciate __xmlFindNextElement and use __xmlGetNode instead
* xmlGetNextElement now returns char* instead of void* for furute use
* add preliminary support for wildcards in the search path ('*' and '?')

16 years ago * fix a problem caused by removing the last unnecessary alloc
ehofman [Tue, 1 Jul 2008 12:15:46 +0000 (12:15 +0000)]
 * fix a problem caused by removing the last unnecessary alloc
 * strip leading-, and trailing spaces from the string before comparing
 * fix a problem where trailing spaces weren't removed

16 years agomove[1] icons to source dir, from where the respective installers can copy
mfranz [Mon, 30 Jun 2008 14:02:26 +0000 (14:02 +0000)]
move[1] icons to source dir, from where the respective installers can copy
them to the final place depending on OS and Desktop Environment (just
like man pages and binaries). Otherwise the installer would need access to
$FG_ROOT only for the icons, which is an undesirable dependency.

[1] there's a lock on the $FG_ROOT/icons/ dir, so I'll remove
them later from the old place.

16 years agowhoops, my bad
ehofman [Mon, 30 Jun 2008 12:05:26 +0000 (12:05 +0000)]
whoops, my bad

16 years agoRemove the last unnecessary alloc from the library
ehofman [Mon, 30 Jun 2008 12:00:40 +0000 (12:00 +0000)]
Remove the last unnecessary alloc from the library

16 years agoSome small updates; fix typo's and fix a small memory leak
ehofman [Mon, 30 Jun 2008 07:30:02 +0000 (07:30 +0000)]
Some small updates; fix typo's and fix a small memory leak
Improve the documentation in README

16 years agoErik HOFMAN: add documentation/changelog
mfranz [Sun, 29 Jun 2008 13:33:26 +0000 (13:33 +0000)]
Erik HOFMAN: add documentation/changelog

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