1
0
Fork 0
Commit graph

52 commits

Author SHA1 Message Date
timoore
b1ea517fc9 AIGroundVehicle from Vivian Meazza 2009-08-25 12:48:16 +02:00
timoore
3bce312213 Get fgviewer working as a part of fgfs
Move fgviewer code into fgfs binary. Its osgViewer-style main function is
called from bootstrap.cxx if the --fgviewer argument is passed to fgfs.

Use fgfs initialization functions in fgviewer codepath. Read
command-line arguments and autosave.xml.
2009-08-12 23:45:54 +02:00
fredb
2c3f12698a Update MSVC 7.1 projects - Put PLIB and FLTK in 3rdParty 2009-07-02 08:59:16 +02:00
fredb
86c1c3945a Update MSVC 7.1 projects - Get rid of GLUT 2009-07-02 08:59:16 +02:00
frohlich
05a0a1f231 Remove ViewPartitionNode that is obviously superseeded by the
CameraGroup implementation and that is not used by flightgear.

Modified Files:
	FlightGear.dsp configure.ac projects/VC7.1/FlightGear.vcproj
 	src/FDM/Makefile.am src/Main/Makefile.am
Removed Files:
	src/Main/ViewPartitionNode.cxx src/Main/ViewPartitionNode.hxx
2009-07-02 08:59:16 +02:00
fredb
5c12248888 Update MSVC 7.1 projects 2009-06-25 10:20:24 +02:00
fredb
40586c77fd X-Plane 850 airport file format parsing. 810 is still supported and may be mixed with new format.
Ground radar updated to display new pavements.
2009-06-15 10:29:45 +02:00
fredb
a1c8c2c8af Update MSVC 7.1 projects 2009-06-11 16:05:20 +02:00
fredb
9a24270f4a Update MSVC 7.1 projects - Remove useless directories in link command 2009-06-03 00:18:55 +02:00
fredb
5fad5ce1c2 Update MSVC 7.1 projects 2009-05-18 12:24:17 +02:00
fredb
9e52e8ddb8 Update MSVC 7.1 projects - add ridge lift 2009-05-02 00:44:21 +02:00
frohlich
183b871b48 Fix a problem with two concurent 'round to multiple of basic simulation
time' code paths. The problem may lead to skipped fdm updates at very high
frame rates. The most visible effect of that was that the aircraft
slips backwards wrt the forward moving carrier.
Remove unused stuff.

Modified Files:
	configure.ac projects/VC7.1/FlightGear.vcproj
	projects/VC8/FlightGearLib.vcproj src/Cockpit/cockpit.cxx
 	src/FDM/Makefile.am src/FDM/flight.cxx src/FDM/flight.hxx
 	src/FDM/SP/Balloon.cxx src/FDM/SP/BalloonSim.cpp
 	src/FDM/SP/BalloonSim.h src/Main/Makefile.am
 	src/Main/fg_init.cxx src/Main/main.cxx src/Time/Makefile.am
Removed Files:
 	src/Time/fg_timer.cxx src/Time/fg_timer.hxx
2009-03-18 08:00:09 +01:00
fredb
391e81f819 Update MSVC 7.1 projects 2009-03-18 08:00:07 +01:00
fredb
12efd9615c Update MSVC 7.1 projects - Generate all Release binaries in the same directory 2009-02-22 23:52:18 +01:00
fredb
8766be0fb1 Update MSVC 7.1 projects - Remove pthreads dependency (2) 2009-01-26 09:48:31 +01:00
fredb
a325eea0c7 Update MSVC 7.1 projects - Remove pthreads dependency 2009-01-26 09:48:24 +01:00
fredb
35db06a4d6 Update MSVC 7.1 project - AV400Sim added 2009-01-21 09:55:33 +01:00
fredb
0a8e4173a1 Update MSVC 7.1 projects 2009-01-07 10:33:31 +01:00
fredb
3f83a915c0 Update MSVC 7.1 project 2009-01-04 00:22:24 +01:00
fredb
c396ba8784 Update MSVC 7.1 projects. Add Boost 2008-11-22 11:26:57 +00:00
fredb
146d2b5f9c Update MSVC 7.1 project 2008-09-08 19:52:34 +00:00
fredb
fbdc0962dd Update MSVC 7.1 projects 2008-08-31 12:35:18 +00:00
fredb
9620f3ae00 Update MSVC 7.1 projects 2008-08-17 18:58:17 +00:00
fredb
444de56679 Update MSVC 7.1 projects - Adapt to OSG 2.6.0-rc1 : location of header files should now be searched in the install directory, here ..\..\..\install\msvc71\OpenSceneGraph\include
3dconvert not built anymore. Use osgconv
2008-08-02 11:31:17 +00:00
mfranz
b68b751fd4 get rid of mouse.cxx and pu{Show|Hide}Cursor() 2008-07-27 09:39:10 +00:00
fredb
1823dc3677 Update MSVC 7.1 projects - Balloon, BalloonSim and MagicCarpet not build anymore 2008-07-25 21:57:53 +00:00
fredb
d826026726 Update MSVC 7.1 projects - new JSBsim 2008-07-20 07:40:16 +00:00
fredb
504b74ee47 Update MSVC 7.1 projects. Add WindowSystemAdapter 2008-05-20 06:36:24 +00:00
timoore
580ebf637b 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.
2008-05-19 21:21:03 +00:00
timoore
4dea9807f6 fg: move most scenery-related code to simgear
From Till Busch.
2008-05-14 22:10:07 +00:00
fredb
4db30b5abb Update MSVC 7.1 projects. Rename ATC -> ATCDCL 2008-05-14 09:50:05 +00:00
timoore
6cd9794b0c 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.
2008-05-06 21:31:01 +00:00
fredb
3947a58e3d Update MSVC 7.1 projects 2008-04-27 16:15:20 +00:00
fredb
575320c325 Update MSVC 7.1 projects 2008-03-22 12:19:07 +00:00
fredb
17739729be Update MSVC 7.1 projects 2008-03-09 22:09:31 +00:00
fredb
0923158138 Update MSVC 7.1 projects 2008-02-29 07:27:09 +00:00
fredb
cb44d7c132 Update MSVC 7.1 projects 2008-02-28 21:27:09 +00:00
fredb
d15229a835 Update MSVC 7.1 projects 2008-01-17 21:42:56 +00:00
timoore
a1f268f2df add ViewPartitionNode to VS project 2008-01-04 08:46:01 +00:00
fredb
c00ab2588e Update MSVC 7.1 projects - compile with osgViewer instead of glut 2007-12-19 07:35:59 +00:00
timoore
f105f47e91 Added copyright to SceneryPager. Removed FGTileLoader 2007-12-15 06:01:24 +00:00
fredb
04b0650bed Update MSVC 7.1 projects 2007-08-12 13:40:00 +00:00
fredb
0aab8f68f4 Stay with fg_os.cxx for now 2007-06-16 16:41:17 +00:00
fredb
c5a3f570f8 Update MSVC 7.1 projects 2007-06-16 16:16:27 +00:00
fredb
a93c996888 Update MSVC 7.1 projects 2007-04-03 11:36:20 +00:00
fredb
106215f39a Update MSVC 7.1 project file : annunciator removed 2007-02-03 07:36:36 +00:00
fredb
9eab3442d3 Update MSVC 7.1 projects 2007-01-21 10:32:57 +00:00
fredb
a1895381d7 MSVC 7.1 project file update for new JSBSim 2007-01-15 14:37:28 +00:00
fredb
9f49baa00d Remove ssg leftover 2007-01-10 20:13:44 +00:00
fredb
f9f2144d7d Update MSVC 7.1 project files 2007-01-06 18:44:25 +00:00