You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(47) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(140) |
Feb
(98) |
Mar
(152) |
Apr
(104) |
May
(71) |
Jun
(94) |
Jul
(169) |
Aug
(83) |
Sep
(47) |
Oct
(134) |
Nov
(7) |
Dec
(20) |
| 2004 |
Jan
(41) |
Feb
(14) |
Mar
(42) |
Apr
(47) |
May
(68) |
Jun
(143) |
Jul
(65) |
Aug
(29) |
Sep
(40) |
Oct
(34) |
Nov
(33) |
Dec
(97) |
| 2005 |
Jan
(29) |
Feb
(30) |
Mar
(9) |
Apr
(37) |
May
(13) |
Jun
(31) |
Jul
(22) |
Aug
(23) |
Sep
|
Oct
(37) |
Nov
(34) |
Dec
(117) |
| 2006 |
Jan
(48) |
Feb
(6) |
Mar
(2) |
Apr
(71) |
May
(10) |
Jun
(16) |
Jul
(7) |
Aug
(1) |
Sep
(14) |
Oct
(17) |
Nov
(25) |
Dec
(26) |
| 2007 |
Jan
(8) |
Feb
(2) |
Mar
(7) |
Apr
(26) |
May
|
Jun
(12) |
Jul
(30) |
Aug
(14) |
Sep
(9) |
Oct
(4) |
Nov
(7) |
Dec
(6) |
| 2008 |
Jan
(10) |
Feb
(10) |
Mar
(6) |
Apr
(8) |
May
|
Jun
(10) |
Jul
(18) |
Aug
(15) |
Sep
(16) |
Oct
(5) |
Nov
(3) |
Dec
(10) |
| 2009 |
Jan
(11) |
Feb
(2) |
Mar
|
Apr
(15) |
May
(31) |
Jun
(18) |
Jul
(11) |
Aug
(26) |
Sep
(52) |
Oct
(17) |
Nov
(4) |
Dec
|
| 2010 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <min...@us...> - 2009-05-13 19:40:28
|
Revision: 2358
http://csp.svn.sourceforge.net/csp/?rev=2358&view=rev
Author: minaultm
Date: 2009-05-13 19:40:14 +0000 (Wed, 13 May 2009)
Log Message:
-----------
Added a new example to test the handling of SDL joystick events within an osg::viewer native Windows
Modified Paths:
--------------
trunk/csp/SConstruct
Added Paths:
-----------
trunk/csp/examples/__init__.py
trunk/csp/examples/osgviewer_sdlinput/
trunk/csp/examples/osgviewer_sdlinput/SConscript
trunk/csp/examples/osgviewer_sdlinput/__init__.py
trunk/csp/examples/osgviewer_sdlinput/main.cpp
trunk/csp/examples/osgviewer_sdlinput/main.h
trunk/csp/examples/osgviewer_sdlinput/main.py
trunk/csp/examples/osgviewer_sdlinput/osgviewer_sdlinput.i
trunk/csp/examples/osgviewer_sdlinput/readme.txt
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-05-13 19:31:12
|
Revision: 2357
http://csp.svn.sourceforge.net/csp/?rev=2357&view=rev
Author: minaultm
Date: 2009-05-13 19:31:07 +0000 (Wed, 13 May 2009)
Log Message:
-----------
Replaced all SceneView from csp::VirtualScene, by osg::Camera. This is now a part of the osgViewer rendering loop.
This breaks some functionalities:
- Stat are no more rendered. This could probably be fixed by rendering them in their own camera (like csp::wf::WindowManagerViewerNode)
- Demeter terrain seems to have some incompatibilities with osgViewer. To avoid strange Z-buffer glitch, I moved temporarily the csp::VirtualScene::m_TerrainGroup to it's own camera, but this imply that we can now see through the terrain. I hope the new terrain will fix this.
- TODO: rewrite csp::VirtualScene::pick
Modified Paths:
--------------
trunk/csp/cspsim/CSPSim.cpp
trunk/csp/cspsim/CSPSim.h
trunk/csp/cspsim/VirtualScene.cpp
trunk/csp/cspsim/VirtualScene.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-05-09 15:57:38
|
Revision: 2356
http://csp.svn.sourceforge.net/csp/?rev=2356&view=rev
Author: minaultm
Date: 2009-05-09 15:57:29 +0000 (Sat, 09 May 2009)
Log Message:
-----------
Fixed a warning with Microsoft Visual Studio 2005: mixing float and double in cspwf.
Modified Paths:
--------------
trunk/csp/cspwf/Container.cpp
trunk/csp/cspwf/Rectangle.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-05-09 15:55:12
|
Revision: 2355
http://csp.svn.sourceforge.net/csp/?rev=2355&view=rev
Author: minaultm
Date: 2009-05-09 15:54:57 +0000 (Sat, 09 May 2009)
Log Message:
-----------
Fixed a warning with Microsoft Visual Studio 2005: _USE_MATH_DEFINES is already defined in SConstruct.
(tested only for Windows)
Modified Paths:
--------------
trunk/csp/modules/chunklod/ChunkLod.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-05-09 15:51:46
|
Revision: 2354
http://csp.svn.sourceforge.net/csp/?rev=2354&view=rev
Author: minaultm
Date: 2009-05-09 15:51:30 +0000 (Sat, 09 May 2009)
Log Message:
-----------
Added a default constructor to csp::callback to avoid the use of the keyword "this" in the member initializer list of constructors.
Modified Paths:
--------------
trunk/csp/csplib/util/Callback.h
trunk/csp/cspsim/GameScreen.cpp
trunk/csp/cspsim/f16/F16GearDynamics.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-05-09 15:45:00
|
Revision: 2353
http://csp.svn.sourceforge.net/csp/?rev=2353&view=rev
Author: minaultm
Date: 2009-05-09 15:44:52 +0000 (Sat, 09 May 2009)
Log Message:
-----------
Fixed some warnings with Microsoft Visual Studio 2005.
Modified Paths:
--------------
trunk/csp/csplib/util/Boolean.h
trunk/csp/csplib/util/StringTools.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-05-08 18:36:00
|
Revision: 2352
http://csp.svn.sourceforge.net/csp/?rev=2352&view=rev
Author: minaultm
Date: 2009-05-08 18:35:48 +0000 (Fri, 08 May 2009)
Log Message:
-----------
Adding files generated by scons vcproj to the svn ignore list.
Property Changed:
----------------
trunk/csp/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-05-08 18:24:06
|
Revision: 2351
http://csp.svn.sourceforge.net/csp/?rev=2351&view=rev
Author: minaultm
Date: 2009-05-08 18:23:49 +0000 (Fri, 08 May 2009)
Log Message:
-----------
Fixed scons dependencies rules that caused some files to be always rebuilt.
Modified Paths:
--------------
trunk/csp/tools/build/builders.py
trunk/csp/tools/build/rules.py
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-05-07 20:05:46
|
Revision: 2350
http://csp.svn.sourceforge.net/csp/?rev=2350&view=rev
Author: nsmoooose
Date: 2009-05-07 20:05:37 +0000 (Thu, 07 May 2009)
Log Message:
-----------
Removed since the branch has been merged to the trunk.
Removed Paths:
-------------
branches/osg_2.6_vs2008/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-05-07 20:05:08
|
Revision: 2349
http://csp.svn.sourceforge.net/csp/?rev=2349&view=rev
Author: nsmoooose
Date: 2009-05-07 20:04:17 +0000 (Thu, 07 May 2009)
Log Message:
-----------
Removed WindowManagerSceneView since it is no longer in use.
Modified Paths:
--------------
trunk/csp/cspsim/GameScreen.h
trunk/csp/cspsim/MenuScreen.cpp
trunk/csp/cspsim/MenuScreen.h
trunk/csp/cspsim/VirtualScene.cpp
trunk/csp/cspsim/VirtualScene.h
Removed Paths:
-------------
trunk/csp/cspwf/WindowManagerSceneView.cpp
trunk/csp/cspwf/WindowManagerSceneView.h
Property Changed:
----------------
trunk/csp/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-29 16:03:13
|
Revision: 2348
http://csp.svn.sourceforge.net/csp/?rev=2348&view=rev
Author: nsmoooose
Date: 2009-04-29 16:02:57 +0000 (Wed, 29 Apr 2009)
Log Message:
-----------
Merged the osg_2.6_vs2008 branch to trunk.
Modified Paths:
--------------
trunk/csp/SConstruct
trunk/csp/bin/sim.ini
trunk/csp/bin/sim.py
trunk/csp/csplib/data/InterfaceProxy.h
trunk/csp/csplib/data/Matrix3.h
trunk/csp/csplib/data/Quat.h
trunk/csp/csplib/data/Vector3.h
trunk/csp/csplib/data/test/test_Quat.cpp
trunk/csp/csplib/data/test/test_Vector3.cpp
trunk/csp/csplib/util/Math.h
trunk/csp/csplib/util/Modules.cpp
trunk/csp/csplib/util/StringTools.cpp
trunk/csp/csplib/util/StringTools.h
trunk/csp/csplib/util/Testing.h
trunk/csp/cspsim/AircraftObject.h
trunk/csp/cspsim/Animation.cpp
trunk/csp/cspsim/Animation.h
trunk/csp/cspsim/BaseScreen.cpp
trunk/csp/cspsim/BaseScreen.h
trunk/csp/cspsim/CSPSim.cpp
trunk/csp/cspsim/CSPSim.h
trunk/csp/cspsim/ChannelMirror.h
trunk/csp/cspsim/ChunkLodTerrain.h
trunk/csp/cspsim/CockpitInterface.cpp
trunk/csp/cspsim/CockpitInterface.h
trunk/csp/cspsim/DoubleChannelMirror.cpp
trunk/csp/cspsim/DynamicObject.cpp
trunk/csp/cspsim/DynamicObject.h
trunk/csp/cspsim/FlightControlSystem.cpp
trunk/csp/cspsim/GameScreen.cpp
trunk/csp/cspsim/GameScreen.h
trunk/csp/cspsim/MenuScreen.cpp
trunk/csp/cspsim/MenuScreen.h
trunk/csp/cspsim/SConscript
trunk/csp/cspsim/System.h
trunk/csp/cspsim/SystemsModel.cpp
trunk/csp/cspsim/SystemsModel.h
trunk/csp/cspsim/VirtualScene.cpp
trunk/csp/cspsim/VirtualScene.h
trunk/csp/cspsim/cspsim.i
trunk/csp/cspsim/f16/F16INS.cpp
trunk/csp/cspsim/f16/F16System.cpp
trunk/csp/cspsim/f16/FLCS.cpp
trunk/csp/cspsim/f16/FuelSystem.cpp
trunk/csp/cspsim/f16/MultiFunctionDisplay.cpp
trunk/csp/cspsim/f16/SpecialFonts.cpp
trunk/csp/cspsim/f16/SpecialFonts.h
trunk/csp/cspsim/f16/UpFrontControls.cpp
trunk/csp/cspsim/hud/DisplayTools.cpp
trunk/csp/cspsim/sky/Colorspace.cpp
trunk/csp/cspsim/sky/SkyShader.cpp
trunk/csp/cspsim/sound/Sample.cpp
trunk/csp/cspsim/sound/SoundEngine.cpp
trunk/csp/cspsim/swig/CSPSim.i
trunk/csp/cspsim/swig/Screens.i
trunk/csp/cspsim/systems/AircraftInputSystem.cpp
trunk/csp/cspsim/systems/AircraftInputSystem.h
trunk/csp/cspsim/test/test_PhysicsModel.cpp
trunk/csp/cspwf/ControlGeometryBuilder.cpp
trunk/csp/cspwf/ResourceLocator.cpp
trunk/csp/cspwf/ResourceLocator.h
trunk/csp/cspwf/SConscript
trunk/csp/cspwf/Serialization.cpp
trunk/csp/cspwf/Serialization.h
trunk/csp/cspwf/Style.h
trunk/csp/cspwf/WindowManager.cpp
trunk/csp/cspwf/WindowManager.h
trunk/csp/cspwf/WindowManagerViewer.cpp
trunk/csp/cspwf/WindowManagerViewer.h
trunk/csp/cspwf/cspwf.i
trunk/csp/data/ui/scripts/gamescreenmanager.py
trunk/csp/data/ui/scripts/startup.py
trunk/csp/data/ui/scripts/windows/mainmenu.py
trunk/csp/data/ui/tutorials/takeoff/takeoff.py
trunk/csp/examples/README
trunk/csp/examples/wf-window/Program.cpp
trunk/csp/modules/chunklod/SConscript
trunk/csp/modules/demeter/SConscript
trunk/csp/modules/demeter/Terrain.h
trunk/csp/tools/build/libconf.py
trunk/csp/tools/layout2/layout.py
trunk/csp/tools/layout2/scripts/ui/controls/DocumentNotebook.py
Added Paths:
-----------
trunk/csp/bin/sim2.py
trunk/csp/cspsim/CSPViewer.cpp
trunk/csp/cspsim/CSPViewer.h
trunk/csp/cspsim/FlightControlSystem.h
trunk/csp/cspsim/RegisterObjectInterfaces.cpp
trunk/csp/cspsim/RegisterObjectInterfaces.h
trunk/csp/cspsim/SDLViewer.cpp
trunk/csp/cspsim/SDLViewer.h
trunk/csp/cspsim/ScreenInfoNode.cpp
trunk/csp/cspsim/ScreenInfoNode.h
trunk/csp/cspsim/f16/F16INS.h
trunk/csp/cspsim/f16/FLCS.h
trunk/csp/cspsim/f16/FuelSystem.h
trunk/csp/cspsim/f16/RegisterF16Objects.cpp
trunk/csp/cspsim/f16/RegisterF16Objects.h
trunk/csp/cspsim/input/
trunk/csp/cspsim/input/EventMapIndex.cpp
trunk/csp/cspsim/input/EventMapIndex.h
trunk/csp/cspsim/input/EventMapping.cpp
trunk/csp/cspsim/input/EventMapping.h
trunk/csp/cspsim/input/HID.cpp
trunk/csp/cspsim/input/HID.h
trunk/csp/cspsim/input/InputEvent.cpp
trunk/csp/cspsim/input/InputEvent.h
trunk/csp/cspsim/input/InputEventChannel.h
trunk/csp/cspsim/input/InputInterface.cpp
trunk/csp/cspsim/input/InputInterface.h
trunk/csp/cspsim/input/InputInterfaceWfAdapter.cpp
trunk/csp/cspsim/input/InputInterfaceWfAdapter.h
trunk/csp/cspsim/input/MapEvent.h
trunk/csp/cspsim/swig/CSPViewer.i
trunk/csp/cspwf/WindowManagerEventHandler.cpp
trunk/csp/cspwf/WindowManagerEventHandler.h
trunk/csp/cspwf/WindowManagerViewerNode.cpp
trunk/csp/cspwf/WindowManagerViewerNode.h
trunk/csp/examples/sdl-viewer/
trunk/csp/examples/sdl-viewer/Program.cpp
trunk/csp/examples/sdl-viewer/SConscript
trunk/csp/examples/sdl-viewer/SDLViewer.cpp
trunk/csp/examples/sdl-viewer/SDLViewer.h
trunk/csp/examples/sdl-viewer/SkyGroup.cpp
trunk/csp/examples/sdl-viewer/SkyGroup.h
trunk/csp/examples/sdl-viewer/readme
trunk/csp/examples/sdl-viewer/sdl-viewer.ini
trunk/csp/examples/wf-python/
trunk/csp/examples/wf-python/hello_world.xml
trunk/csp/examples/wf-python/wf-python.py
trunk/csp/modules/chunklod/Module.cpp
trunk/csp/modules/demeter/Module.cpp
Removed Paths:
-------------
trunk/csp/cspsim/EventMapIndex.cpp
trunk/csp/cspsim/EventMapIndex.h
trunk/csp/cspsim/EventMapping.cpp
trunk/csp/cspsim/EventMapping.h
trunk/csp/cspsim/HID.cpp
trunk/csp/cspsim/HID.h
trunk/csp/cspsim/InputEvent.cpp
trunk/csp/cspsim/InputEvent.h
trunk/csp/cspsim/InputEventChannel.h
trunk/csp/cspsim/InputInterface.cpp
trunk/csp/cspsim/InputInterface.h
trunk/csp/cspsim/InputInterfaceWfAdapter.cpp
trunk/csp/cspsim/InputInterfaceWfAdapter.h
trunk/csp/cspsim/MapEvent.h
trunk/csp/cspsim/input/EventMapIndex.cpp
trunk/csp/cspsim/input/EventMapIndex.h
trunk/csp/cspsim/input/EventMapping.cpp
trunk/csp/cspsim/input/EventMapping.h
trunk/csp/cspsim/input/HID.cpp
trunk/csp/cspsim/input/HID.h
trunk/csp/cspsim/input/InputEvent.cpp
trunk/csp/cspsim/input/InputEvent.h
trunk/csp/cspsim/input/InputEventChannel.h
trunk/csp/cspsim/input/InputInterface.cpp
trunk/csp/cspsim/input/InputInterface.h
trunk/csp/cspsim/input/InputInterfaceWfAdapter.cpp
trunk/csp/cspsim/input/InputInterfaceWfAdapter.h
trunk/csp/cspsim/input/MapEvent.h
trunk/csp/examples/sdl-viewer/Program.cpp
trunk/csp/examples/sdl-viewer/SConscript
trunk/csp/examples/sdl-viewer/SDLViewer.cpp
trunk/csp/examples/sdl-viewer/SDLViewer.h
trunk/csp/examples/sdl-viewer/SkyGroup.cpp
trunk/csp/examples/sdl-viewer/SkyGroup.h
trunk/csp/examples/sdl-viewer/readme
trunk/csp/examples/sdl-viewer/sdl-viewer.ini
trunk/csp/examples/wf-python/hello_world.xml
trunk/csp/examples/wf-python/wf-python.py
Property Changed:
----------------
trunk/csp/
trunk/csp/examples/
trunk/csp/examples/clouds/
trunk/csp/examples/objectmodel/
trunk/csp/examples/sky/
trunk/csp/examples/terrain-demeter/
trunk/csp/examples/wf-window/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-04-26 20:02:07
|
Revision: 2347
http://csp.svn.sourceforge.net/csp/?rev=2347&view=rev
Author: minaultm
Date: 2009-04-26 20:01:53 +0000 (Sun, 26 Apr 2009)
Log Message:
-----------
Removed unneeded references to osgUtil::SceneView.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/GameScreen.cpp
branches/osg_2.6_vs2008/csp/cspsim/GameScreen.h
branches/osg_2.6_vs2008/csp/cspwf/WindowManager.cpp
branches/osg_2.6_vs2008/csp/cspwf/WindowManager.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-04-26 19:57:02
|
Revision: 2346
http://csp.svn.sourceforge.net/csp/?rev=2346&view=rev
Author: minaultm
Date: 2009-04-26 19:56:57 +0000 (Sun, 26 Apr 2009)
Log Message:
-----------
Fix some warnings with Microsoft Visual Studio 2005.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/csplib/data/Quat.h
branches/osg_2.6_vs2008/csp/csplib/data/Vector3.h
branches/osg_2.6_vs2008/csp/csplib/data/test/test_Quat.cpp
branches/osg_2.6_vs2008/csp/csplib/data/test/test_Vector3.cpp
branches/osg_2.6_vs2008/csp/csplib/util/Testing.h
branches/osg_2.6_vs2008/csp/cspsim/sky/Colorspace.cpp
branches/osg_2.6_vs2008/csp/cspsim/sky/SkyShader.cpp
branches/osg_2.6_vs2008/csp/cspsim/test/test_PhysicsModel.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-04-26 19:55:00
|
Revision: 2345
http://csp.svn.sourceforge.net/csp/?rev=2345&view=rev
Author: minaultm
Date: 2009-04-26 19:54:49 +0000 (Sun, 26 Apr 2009)
Log Message:
-----------
Fix the clipping of the far view.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/VirtualScene.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-04-24 23:48:38
|
Revision: 2344
http://csp.svn.sourceforge.net/csp/?rev=2344&view=rev
Author: minaultm
Date: 2009-04-24 23:48:25 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Fix the compilation of WindowManagerViewerNode under Windows.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerViewerNode.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 22:26:52
|
Revision: 2343
http://csp.svn.sourceforge.net/csp/?rev=2343&view=rev
Author: nsmoooose
Date: 2009-04-24 22:26:37 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Removed the SceneView that handles the info view with framerate and other textual information. This is now a part of the osgViewer rendering loop.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/CSPSim.cpp
branches/osg_2.6_vs2008/csp/cspsim/CSPSim.h
branches/osg_2.6_vs2008/csp/cspsim/GameScreen.cpp
branches/osg_2.6_vs2008/csp/cspsim/SConscript
branches/osg_2.6_vs2008/csp/cspsim/VirtualScene.cpp
branches/osg_2.6_vs2008/csp/cspsim/VirtualScene.h
Added Paths:
-----------
branches/osg_2.6_vs2008/csp/cspsim/ScreenInfoNode.cpp
branches/osg_2.6_vs2008/csp/cspsim/ScreenInfoNode.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 21:16:23
|
Revision: 2342
http://csp.svn.sourceforge.net/csp/?rev=2342&view=rev
Author: nsmoooose
Date: 2009-04-24 21:16:21 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Removed the scene view implementation of the window manager since it is no longer in use.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspwf/SConscript
Removed Paths:
-------------
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerSceneView.cpp
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerSceneView.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 20:55:17
|
Revision: 2341
http://csp.svn.sourceforge.net/csp/?rev=2341&view=rev
Author: nsmoooose
Date: 2009-04-24 20:55:10 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Removed more WindowManagerSceneView code.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/GameScreen.cpp
branches/osg_2.6_vs2008/csp/cspsim/GameScreen.h
branches/osg_2.6_vs2008/csp/cspsim/VirtualScene.cpp
branches/osg_2.6_vs2008/csp/cspsim/VirtualScene.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 20:54:48
|
Revision: 2340
http://csp.svn.sourceforge.net/csp/?rev=2340&view=rev
Author: nsmoooose
Date: 2009-04-24 20:54:42 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Fixed compiler error in example.
Fixed compiler error in example.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/examples/sdl-viewer/Program.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 20:54:24
|
Revision: 2339
http://csp.svn.sourceforge.net/csp/?rev=2339&view=rev
Author: nsmoooose
Date: 2009-04-24 20:54:22 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Replaced all user interface with an osgViewer based window manager.
Replaced all user interface with an osgViewer based window manager.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/CSPSim.cpp
branches/osg_2.6_vs2008/csp/cspsim/CSPSim.h
branches/osg_2.6_vs2008/csp/cspsim/GameScreen.cpp
branches/osg_2.6_vs2008/csp/cspsim/GameScreen.h
branches/osg_2.6_vs2008/csp/cspsim/MenuScreen.cpp
branches/osg_2.6_vs2008/csp/cspsim/MenuScreen.h
branches/osg_2.6_vs2008/csp/cspsim/swig/CSPSim.i
branches/osg_2.6_vs2008/csp/cspsim/swig/Screens.i
branches/osg_2.6_vs2008/csp/cspwf/WindowManager.cpp
branches/osg_2.6_vs2008/csp/cspwf/WindowManager.h
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerSceneView.cpp
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerViewer.cpp
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerViewer.h
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerViewerNode.cpp
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerViewerNode.h
branches/osg_2.6_vs2008/csp/data/ui/scripts/gamescreenmanager.py
branches/osg_2.6_vs2008/csp/data/ui/scripts/startup.py
branches/osg_2.6_vs2008/csp/data/ui/tutorials/takeoff/takeoff.py
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 20:53:37
|
Revision: 2338
http://csp.svn.sourceforge.net/csp/?rev=2338&view=rev
Author: nsmoooose
Date: 2009-04-24 20:53:28 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Added a window manager to the osgViewer.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/CSPSim.cpp
branches/osg_2.6_vs2008/csp/cspwf/SConscript
branches/osg_2.6_vs2008/csp/examples/sdl-viewer/Program.cpp
branches/osg_2.6_vs2008/csp/examples/sdl-viewer/SConscript
Added Paths:
-----------
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerViewerNode.cpp
branches/osg_2.6_vs2008/csp/cspwf/WindowManagerViewerNode.h
Removed Paths:
-------------
branches/osg_2.6_vs2008/csp/examples/sdl-viewer/WindowManagerViewerNode.cpp
branches/osg_2.6_vs2008/csp/examples/sdl-viewer/WindowManagerViewerNode.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 20:52:52
|
Revision: 2336
http://csp.svn.sourceforge.net/csp/?rev=2336&view=rev
Author: nsmoooose
Date: 2009-04-24 20:52:34 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Added a osgViewer as the last step of the rendering loop.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/CSPSim.cpp
branches/osg_2.6_vs2008/csp/cspsim/CSPSim.h
branches/osg_2.6_vs2008/csp/cspsim/SConscript
Added Paths:
-----------
branches/osg_2.6_vs2008/csp/cspsim/SDLViewer.cpp
branches/osg_2.6_vs2008/csp/cspsim/SDLViewer.h
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <nsm...@us...> - 2009-04-24 20:52:52
|
Revision: 2337
http://csp.svn.sourceforge.net/csp/?rev=2337&view=rev
Author: nsmoooose
Date: 2009-04-24 20:52:50 +0000 (Fri, 24 Apr 2009)
Log Message:
-----------
Turned off the clear mask of the new SDLViewer so it is drawn on top of the existing SceneViews.
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/cspsim/SDLViewer.cpp
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-04-13 17:53:06
|
Revision: 2335
http://csp.svn.sourceforge.net/csp/?rev=2335&view=rev
Author: minaultm
Date: 2009-04-13 17:53:01 +0000 (Mon, 13 Apr 2009)
Log Message:
-----------
Layout2 tool: Added manual registration of all ObjectInterface classes into the InterfaceRegistry.
This due to a deadlock problem when cspsim.dll was loaded on windows.
(cf. commit #2294)
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/tools/layout2/layout.py
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <min...@us...> - 2009-04-13 17:44:58
|
Revision: 2334
http://csp.svn.sourceforge.net/csp/?rev=2334&view=rev
Author: minaultm
Date: 2009-04-13 17:44:47 +0000 (Mon, 13 Apr 2009)
Log Message:
-----------
Layout2 tool: Fix a bug related to tab management in DocumentNotebook (on Windows platform).
Modified Paths:
--------------
branches/osg_2.6_vs2008/csp/tools/layout2/scripts/ui/controls/DocumentNotebook.py
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|