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: <mk...@us...> - 2003-10-22 01:45:36
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Data/Models/Mirage2000 In directory sc8-pr-cvs1:/tmp/cvs-serv29841/Mirage2000 Log Message: Directory /cvsroot/csp/APPLICATIONS/CSPSim/Data/Models/Mirage2000 added to the repository |
From: <mk...@us...> - 2003-10-22 01:21:15
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv1138 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.87 retrieving revision 1.88 diff -C2 -d -r1.87 -r1.88 *** CHANGES.current 21 Oct 2003 16:23:34 -0000 1.87 --- CHANGES.current 22 Oct 2003 01:20:58 -0000 1.88 *************** *** 2,5 **** --- 2,9 ---- =========================== 2003-10-21: onsight + * Fixed InterfaceRegistry ctor to properly initialize the registry + pointers to zero. + + 2003-10-21: onsight * Changed Packer to accept PackFile instead of FILE*. PackFile is a thin wrapper around FILE* which shouldn't affect other c++ code |
From: <mk...@us...> - 2003-10-22 01:20:32
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Source In directory sc8-pr-cvs1:/tmp/cvs-serv964/Source Modified Files: InterfaceRegistry.cpp Log Message: Index: InterfaceRegistry.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/InterfaceRegistry.cpp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** InterfaceRegistry.cpp 20 Oct 2003 15:56:15 -0000 1.12 --- InterfaceRegistry.cpp 22 Oct 2003 01:19:47 -0000 1.13 *************** *** 126,130 **** ! InterfaceRegistry::InterfaceRegistry() { } --- 126,130 ---- ! InterfaceRegistry::InterfaceRegistry(): __map(0), __id_map(0), __list(0) { } |
From: <mk...@us...> - 2003-10-22 01:20:31
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv964/Include/SimData Modified Files: LogStream.h Log Message: Index: LogStream.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/LogStream.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** LogStream.h 19 Oct 2003 23:53:56 -0000 1.10 --- LogStream.h 22 Oct 2003 01:19:46 -0000 1.11 *************** *** 46,49 **** --- 46,53 ---- #include <SimData/Export.h> + #if defined(_MSC_VER) + # pragma warning(disable: 4275) + #endif + NAMESPACE_SIMDATA |
From: <mk...@us...> - 2003-10-22 00:37:42
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim In directory sc8-pr-cvs1:/tmp/cvs-serv1947 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** CHANGES.current 21 Oct 2003 21:14:43 -0000 1.74 --- CHANGES.current 21 Oct 2003 21:55:39 -0000 1.75 *************** *** 6,9 **** --- 6,16 ---- an audio device, but a warning is written to the log. + Added a modified version of Lologramme's Mirage 2000 + model and textures to CVS. This version includes special + hooks for CSP animations. The model and textures are + under Data/Models/Mirage2000, and the including COPYING + file lists copyright information. The m2k/model.xml file + now points to this 3D model. + 2003-10-19: onsight Updated configure script to check for osg 0.9.6. Version |
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Data/Models/Mirage2000 In directory sc8-pr-cvs1:/tmp/cvs-serv29906/Models/Mirage2000 Added Files: COPYING ailed.jpg axces.jpg derive.jpg dessous.jpg fuse.jpg fuseg.jpg model.osg Log Message: --- NEW FILE: COPYING --- Mirage 2000 3D model and textures Copyright 2002 Lologramme <http://mapage.noos.fr/lologram/> Permission to redistribute this model and associated textures is soley at the discretion of the author. --- NEW FILE: ailed.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: axces.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: derive.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dessous.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fuse.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fuseg.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: model.osg --- Group { UniqueID Group_0 DataVariance DYNAMIC name "m2k2g-gearup.3ds" nodeMask 0xffffffff cullingActive TRUE num_children 1 Group { DataVariance DYNAMIC name "$$$DUMMY" nodeMask 0xffffffff cullingActive TRUE num_children 70 MatrixTransform { DataVariance DYNAMIC name "ANIM: Aircraft.LowerLeftAirbrake" nodeMask 0xffffffff cullingActive TRUE referenceFrame RELATIVE_TO_PARENTS [...23413 lines suppressed...] 0.804045 0.851298 0.839219 0.99961 0.770676 0.899062 0.829266 0.999569 0.849696 0.99447 0.818246 0.829006 0.92692 0.814044 0.95615 0.813374 0.943532 0.95531 0.883196 0.980026 0.866197 0.815373 0.902547 0.814571 0.770681 0.935783 0.824455 0.99958 0.827657 0.816214 } } } } } |
From: <mk...@us...> - 2003-10-22 00:30:48
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim In directory sc8-pr-cvs1:/tmp/cvs-serv25699 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** CHANGES.current 20 Oct 2003 06:52:12 -0000 1.73 --- CHANGES.current 21 Oct 2003 21:14:43 -0000 1.74 *************** *** 1,4 **** --- 1,9 ---- Version 0.4.0 (in progress) =========================== + 2003-10-21: onsight + Cleaned up the code that initializes the test sound. The + sim won't abort if it can't find the sound file or open + an audio device, but a warning is written to the log. + 2003-10-19: onsight Updated configure script to check for osg 0.9.6. Version |
From: <mk...@us...> - 2003-10-21 23:07:31
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Data/Models In directory sc8-pr-cvs1:/tmp/cvs-serv29776/Models Log Message: Directory /cvsroot/csp/APPLICATIONS/CSPSim/Data/Models added to the repository |
From: <mk...@us...> - 2003-10-21 17:36:31
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Source In directory sc8-pr-cvs1:/tmp/cvs-serv29162/Source Modified Files: Date.cpp FileUtility.cpp Log Message: Index: Date.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/Date.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Date.cpp 20 Oct 2003 00:37:28 -0000 1.10 --- Date.cpp 21 Oct 2003 16:23:34 -0000 1.11 *************** *** 358,362 **** if (m_time < 0.0) days--; m_time -= days * 86400.0f; - std::cout << m_time << " : " << days << std::endl; } return days; --- 358,361 ---- Index: FileUtility.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/FileUtility.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FileUtility.cpp 6 Aug 2003 06:36:25 -0000 1.3 --- FileUtility.cpp 21 Oct 2003 16:23:35 -0000 1.4 *************** *** 174,178 **** } - NAMESPACE_SIMDATA_END --- 174,177 ---- |
From: <mk...@us...> - 2003-10-21 17:36:09
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv29162/Include/SimData Modified Files: Archive.h Date.i FileUtility.h Log Message: Index: Archive.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Archive.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Archive.h 20 Oct 2003 00:38:47 -0000 1.3 --- Archive.h 21 Oct 2003 16:23:34 -0000 1.4 *************** *** 51,55 **** SIMDATA_EXCEPTION(ConstViolation); ! class Archive { bool __loading; public: --- 51,55 ---- SIMDATA_EXCEPTION(ConstViolation); ! class SIMDATA_EXPORT Archive { bool __loading; public: *************** *** 164,167 **** --- 164,190 ---- }; + + class SIMDATA_EXPORT PackFile { + FILE *_f; + bool _open; + public: + #ifndef SWIG + operator FILE*() { return _f; } + PackFile(FILE* f): _f(f), _open(false) {} + #endif + PackFile(const char *fn, const char *mode) { + _f = (FILE*) fopen(fn, mode); + assert(_f); // XXX add error handling + _open = (_f != 0); + } + void close() { + if (_open) { + fclose(_f); + _open = false; + } + } + }; + + /** Utility class for writing raw data to an object archive. * *************** *** 173,177 **** * @author Mark Rose <tm...@st...> */ ! class Packer: public Archive { FILE *_f; int _n; --- 196,200 ---- * @author Mark Rose <tm...@st...> */ ! class SIMDATA_EXPORT Packer: public Archive { FILE *_f; int _n; *************** *** 180,185 **** } public: ! Packer(FILE* f): Archive(false) { ! _f = f; resetCount(); } --- 203,209 ---- } public: ! Packer(PackFile f): Archive(false) { ! _f = static_cast<FILE*>(f); ! assert(_f != 0); resetCount(); } *************** *** 247,251 **** * @author Mark Rose <tm...@st...> */ ! class UnPacker: public Archive { const char* _d; int _n; --- 271,275 ---- * @author Mark Rose <tm...@st...> */ ! class SIMDATA_EXPORT UnPacker: public Archive { const char* _d; int _n; *************** *** 355,358 **** --- 379,383 ---- unpacker->operator()(x); } + NAMESPACE_SIMDATA_END Index: Date.i =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Date.i,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Date.i 10 Aug 2003 17:52:08 -0000 1.6 --- Date.i 21 Oct 2003 16:23:34 -0000 1.7 *************** *** 35,38 **** --- 35,50 ---- NAMESPACE_SIMDATA_END + %include exception.i + %exception { + try { + $function + } catch (SIMDATA(InvalidDate) e) { + e.clear(); + SWIG_exception(SWIG_RuntimeError, e.getError().c_str()); + } + } + %include "SimData/Date.h" + + %exception; Index: FileUtility.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/FileUtility.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FileUtility.h 19 Oct 2003 23:53:56 -0000 1.6 --- FileUtility.h 21 Oct 2003 16:23:34 -0000 1.7 *************** *** 143,146 **** --- 143,147 ---- //@} + NAMESPACE_SIMDATA_END |
From: <mk...@us...> - 2003-10-21 17:25:25
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv29162 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.86 retrieving revision 1.87 diff -C2 -d -r1.86 -r1.87 *** CHANGES.current 21 Oct 2003 13:45:07 -0000 1.86 --- CHANGES.current 21 Oct 2003 16:23:34 -0000 1.87 *************** *** 1,4 **** --- 1,19 ---- Version 0.4.0 (in progress) =========================== + 2003-10-21: onsight + * Changed Packer to accept PackFile instead of FILE*. PackFile is + a thin wrapper around FILE* which shouldn't affect other c++ code + (it allows coercion to and from FILE*), but prevents Python code + from passing file objects to Packer. The latter is necessary, + since under windows Python is currently built with MSVC 1200, and + SimData is built with MSVC 1310+. The runtime libraries for these + two versions of MSVC are incompatible with respect to certain FILE* + operations, causing segfaults. Using PackFile ensures that FILE* + are created and used only by the MSVC 1310 library when dealing + with data archives. + + * Started adding new data type unit tests. Key and some SimDate + tests so far. + 2003-10-20: onsight * Removed Pack.cpp from the vcproj file. |
From: <mk...@us...> - 2003-10-21 17:24:51
|
Update of /cvsroot/csp/APPLICATIONS/SimData/SimData/Tests In directory sc8-pr-cvs1:/tmp/cvs-serv29162/SimData/Tests Modified Files: ArchiveTests.py TypeTests.py Log Message: Index: ArchiveTests.py =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/SimData/Tests/ArchiveTests.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ArchiveTests.py 19 Oct 2003 23:53:56 -0000 1.2 --- ArchiveTests.py 21 Oct 2003 16:23:34 -0000 1.3 *************** *** 10,14 **** class ArchiveTest(TestCase): def setUp(self): ! self.f = open('__test__.dar', 'wb') self.archive = SimData.Packer(self.f) def setRead(self): --- 10,14 ---- class ArchiveTest(TestCase): def setUp(self): ! self.f = SimData.PackFile('__test__.dar', 'wb') #open('__test__.dar', 'wb') self.archive = SimData.Packer(self.f) def setRead(self): Index: TypeTests.py =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/SimData/Tests/TypeTests.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TypeTests.py 21 Oct 2003 04:34:04 -0000 1.1 --- TypeTests.py 21 Oct 2003 16:23:34 -0000 1.2 *************** *** 10,15 **** class KeyTest(TestCase): """Test functionality Key""" - def setUp(self): - pass def testComparisons(self): """Test Key comparisons""" --- 10,13 ---- *************** *** 26,33 **** self.assertEqual(key_foo.typeString(), "type::Key") ! KeySuite = makeSuite(KeyTest, 'test') ! suites = [KeySuite] --- 24,70 ---- self.assertEqual(key_foo.typeString(), "type::Key") + KeySuite = makeSuite(KeyTest, 'test') ! class DateTest(TestCase): ! """Test functionality SimDate and related classes""" ! def testRepr(self): ! """Test string and type representations""" ! d = SimData.SimDate(2003, 10, 31, 22, 51, 7) ! self.assertEqual(str(d), "2003/10/31 22:51:07z") ! d = SimData.SimDate(1903, 1, 9, 5, 6, 7) ! self.assertEqual(str(d), "1903/01/09 05:06:07z") ! self.assertEqual(d.typeString(), "type::SimDate") ! def testErrors(self): ! def catch(code, err=1): ! caught = 0 ! try: ! eval(code) ! except RuntimeError: ! caught = 1 ! if caught != err: ! if err: ! msg = "invalid" ! else: ! msg = "valid" ! self.assertEqual(code, msg) ! catch("SimData.SimDate(2003, 0, 31, 22, 51, 7)") ! catch("SimData.SimDate(2003, 13, 31, 22, 51, 7)") ! catch("SimData.SimDate(2003, 2, 29, 22, 51, 7)") ! catch("SimData.SimDate(2100, 2, 29, 22, 51, 7)") ! catch("SimData.SimDate(2004, 2, 29, 22, 51, 7)",0) ! catch("SimData.SimDate(2000, 2, 29, 22, 51, 7)",0) ! catch("SimData.SimDate(2003, 2, 0, 22, 51, 7)") ! catch("SimData.SimDate(2003, 10, 32, 22, 51, 7)") ! def testRollover(self): ! sd = SimData.SimDate ! test = self.assertEqual ! test(sd(2003, 3, 1, -1, -1, -1), sd(2003, 2, 28, 22, 58, 59)) ! test(sd(1999, 12, 31, 24, 0, 1), sd(2000, 1, 1, 0, 0, 1)) ! test(sd(1999, 12, 31, 24, 0, 61), sd(2000, 1, 1, 0, 1, 1)) ! ! DateSuite = makeSuite(DateTest, 'test') ! ! suites = [KeySuite, DateSuite] |
From: <mk...@us...> - 2003-10-21 10:07:28
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv8337/Include/SimData Modified Files: Version.h Log Message: Index: Version.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Version.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Version.h 6 Aug 2003 06:36:25 -0000 1.4 --- Version.h 21 Oct 2003 04:42:59 -0000 1.5 *************** *** 24,27 **** --- 24,29 ---- #include <SimData/Namespace.h> + #define SIMDATA_API_VERSION 4 + NAMESPACE_SIMDATA |
From: <mk...@us...> - 2003-10-21 05:44:18
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv30555 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.80 retrieving revision 1.81 diff -C2 -d -r1.80 -r1.81 *** CHANGES.current 20 Oct 2003 15:56:15 -0000 1.80 --- CHANGES.current 21 Oct 2003 03:24:08 -0000 1.81 *************** *** 2,5 **** --- 2,8 ---- =========================== 2003-10-20: onsight + * Removed Pack.cpp from the vcproj file. + + 2003-10-20: onsight * Added a log message when the interface registry is destroyed. |
From: <mk...@us...> - 2003-10-21 05:30:15
|
Update of /cvsroot/csp/APPLICATIONS/SimData/SimData/Tests In directory sc8-pr-cvs1:/tmp/cvs-serv7361/Tests Modified Files: __init__.py Added Files: TypeTests.py Log Message: --- NEW FILE: TypeTests.py --- import SimData import os from unittest import TestCase, TestSuite, makeSuite def round8(x): return long((x*1e+8)+0.5)*1e-8; def round5(x): return long((x*1e+5)+0.5)*1e-5; class KeyTest(TestCase): """Test functionality Key""" def setUp(self): pass def testComparisons(self): """Test Key comparisons""" key_foo = SimData.Key("Foo") key_bar = SimData.Key("Bar") self.assertEqual(key_foo, SimData.Key("Foo")) self.assertEqual(key_foo, "Foo") self.assertNotEqual(key_foo, key_bar) self.assertNotEqual(key_foo, "Bar") def testRepr(self): """Test string and type representations""" key_foo = SimData.Key("Foo") self.assertEqual(str(key_foo)[:6], "Key<0x") self.assertEqual(key_foo.typeString(), "type::Key") KeySuite = makeSuite(KeyTest, 'test') suites = [KeySuite] Index: __init__.py =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/SimData/Tests/__init__.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** __init__.py 19 Oct 2003 23:53:56 -0000 1.2 --- __init__.py 21 Oct 2003 04:34:04 -0000 1.3 *************** *** 8,11 **** --- 8,12 ---- addTestSuites("ArchiveTests") + addTestSuites("TypeTests") runner = unittest.TextTestRunner() |
From: <mk...@us...> - 2003-10-21 05:14:04
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv9698 Modified Files: CHANGES.current README Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.84 retrieving revision 1.85 diff -C2 -d -r1.84 -r1.85 *** CHANGES.current 21 Oct 2003 04:42:59 -0000 1.84 --- CHANGES.current 21 Oct 2003 04:53:58 -0000 1.85 *************** *** 9,12 **** --- 9,14 ---- be bumped for all backwards-incompatible API changes. + * Updated README + 2003-10-20: onsight * Added a log message when the interface registry is destroyed. Index: README =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/README,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** README 14 Aug 2003 12:19:12 -0000 1.7 --- README 21 Oct 2003 04:53:59 -0000 1.8 *************** *** 1,5 **** SimData - A library for efficient use of data XML in simulations. ! Release 0.3.4 Copyright (C) 2002, 2003 Mark Rose <mr...@st...> --- 1,5 ---- SimData - A library for efficient use of data XML in simulations. ! Release 0.4.0 Copyright (C) 2002, 2003 Mark Rose <mr...@st...> *************** *** 94,110 **** ! BUILDING: VC6/.NET Load SimDataMSVC.dsw and build it in release mode. TESTING ! As a quick test, run Python from the main SimData directory. ! Try typing "import SimData". You should see a line similar to ! "loaded @ 0x4883012". If not, something went wrong... post to ! the CSP developer's forum and we can try to find the problem. ! After you have installed SimData, the same test should work ! from any starting directory. --- 94,113 ---- ! BUILDING: VC6 Load SimDataMSVC.dsw and build it in release mode. + BUILDING: VS .NET 2003 + + Load VisualStudio2003/SimData.sln and build in release mode. + TESTING ! As a quick test, execute 'runtests.py' is the main SimData directory. ! Depending on how python is installed you may have to enter ! 'python runtests.py' at the command/shell prompt. If any of the tests ! fail, please post to the CSP developer's forum and we can try to find ! the problem. *************** *** 119,123 **** Under Windows, run 'python setup.py make_install_win'. If you ! are running Windows XP you may need to have sufficient priviledges to write to the Python directories. --- 122,126 ---- Under Windows, run 'python setup.py make_install_win'. If you ! are running Windows XP you may need to have sufficient privileges to write to the Python directories. |
From: <mk...@us...> - 2003-10-21 05:10:23
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv8337 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -d -r1.83 -r1.84 *** CHANGES.current 21 Oct 2003 04:34:15 -0000 1.83 --- CHANGES.current 21 Oct 2003 04:42:59 -0000 1.84 *************** *** 6,9 **** --- 6,12 ---- * Started a new test suite for data type functionality + * Added SIMDATA_API_VERSION define to Version.h. This number will + be bumped for all backwards-incompatible API changes. + 2003-10-20: onsight * Added a log message when the interface registry is destroyed. |
From: <mk...@us...> - 2003-10-21 04:39:59
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv7388 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** CHANGES.current 21 Oct 2003 03:24:29 -0000 1.82 --- CHANGES.current 21 Oct 2003 04:34:15 -0000 1.83 *************** *** 4,7 **** --- 4,9 ---- * Removed Pack.cpp from the vcproj file. + * Started a new test suite for data type functionality + 2003-10-20: onsight * Added a log message when the interface registry is destroyed. |
From: <mk...@us...> - 2003-10-21 04:16:02
|
Update of /cvsroot/csp/APPLICATIONS/SimData/VisualStudio2003 In directory sc8-pr-cvs1:/tmp/cvs-serv30325 Modified Files: SimData.vcproj Log Message: Index: SimData.vcproj =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/VisualStudio2003/SimData.vcproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SimData.vcproj 27 Sep 2003 16:20:43 -0000 1.3 --- SimData.vcproj 21 Oct 2003 03:22:41 -0000 1.4 *************** *** 228,234 **** </File> <File - RelativePath="..\Source\Pack.cpp"> - </File> - <File RelativePath="..\Source\Path.cpp"> </File> --- 228,231 ---- |
From: <mk...@us...> - 2003-10-21 03:46:44
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv30624 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -d -r1.81 -r1.82 *** CHANGES.current 21 Oct 2003 03:24:08 -0000 1.81 --- CHANGES.current 21 Oct 2003 03:24:29 -0000 1.82 *************** *** 146,149 **** * Tagged r0_3_4, version 0_3_5 started. * Version 0.4.0 branch started. - >>>>>>> 1.75.2.12 --- 146,148 ---- |
From: <mk...@us...> - 2003-10-20 18:22:39
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv31607 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.79 retrieving revision 1.80 diff -C2 -d -r1.79 -r1.80 *** CHANGES.current 19 Oct 2003 23:53:55 -0000 1.79 --- CHANGES.current 20 Oct 2003 15:56:15 -0000 1.80 *************** *** 1,4 **** --- 1,7 ---- Version 0.4.0 (in progress) =========================== + 2003-10-20: onsight + * Added a log message when the interface registry is destroyed. + 2003-10-19: onsight * Merged b0_4_0 into the trunk. The old head was tagged as r0_3_5, |
From: <mk...@us...> - 2003-10-20 17:31:49
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Source In directory sc8-pr-cvs1:/tmp/cvs-serv31607/Source Modified Files: InterfaceRegistry.cpp Log Message: Index: InterfaceRegistry.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Source/InterfaceRegistry.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** InterfaceRegistry.cpp 19 Oct 2003 23:53:56 -0000 1.11 --- InterfaceRegistry.cpp 20 Oct 2003 15:56:15 -0000 1.12 *************** *** 134,137 **** --- 134,138 ---- void InterfaceRegistry::__cleanup() { + SIMDATA_LOG(LOG_REGISTRY, LOG_DEBUG, "Destroying the interface registry."); if (__map) delete __map; if (__id_map) delete __id_map; |
From: <mk...@us...> - 2003-10-20 07:30:08
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim In directory sc8-pr-cvs1:/tmp/cvs-serv23593 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v retrieving revision 1.71 retrieving revision 1.72 diff -C2 -d -r1.71 -r1.72 *** CHANGES.current 20 Oct 2003 00:23:22 -0000 1.71 --- CHANGES.current 20 Oct 2003 05:16:13 -0000 1.72 *************** *** 2,5 **** --- 2,11 ---- =========================== 2003-10-19: onsight + Updated the xml files to remove the 'static' attribute (now + set in the class definition), and convert the engine thrust + tables to use simdata::Table2. Added systems.xml to + vehicles/aircraft/m2k. + + 2003-10-19: onsight Tagged r0_3_5 and started branch b0_3. Merged 'systems' branch into the trunk to start version 0.4.0. |
From: <mk...@us...> - 2003-10-20 07:08:12
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Data/XML/environment In directory sc8-pr-cvs1:/tmp/cvs-serv23200/environment Modified Files: stars.xml Log Message: Index: stars.xml =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Data/XML/environment/stars.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** stars.xml 26 Mar 2003 10:18:53 -0000 1.2 --- stars.xml 20 Oct 2003 05:13:51 -0000 1.3 *************** *** 1,5 **** <?xml version="1.0" standalone="no"?> ! <Object class="StarCatalog" static="1"> <String name="source">Yale Bright Star Catalog</String> --- 1,5 ---- <?xml version="1.0" standalone="no"?> ! <Object class="StarCatalog"> <String name="source">Yale Bright Star Catalog</String> |
From: <mk...@us...> - 2003-10-20 07:00:47
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim In directory sc8-pr-cvs1:/tmp/cvs-serv1968 Modified Files: CHANGES.current configure.in Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -d -r1.72 -r1.73 *** CHANGES.current 20 Oct 2003 05:16:13 -0000 1.72 --- CHANGES.current 20 Oct 2003 06:52:12 -0000 1.73 *************** *** 2,5 **** --- 2,12 ---- =========================== 2003-10-19: onsight + Updated configure script to check for osg 0.9.6. Version + 0.9.4 can still be used, if necessary. To do so, change + configure.in to check for 0.9.4, run autoconf, then + ./configure. Finally, edit Include/CSPSim.h and uncomment + the #define CSP_OSG_094 line. + + 2003-10-19: onsight Updated the xml files to remove the 'static' attribute (now set in the class definition), and convert the engine thrust Index: configure.in =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/configure.in,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** configure.in 20 Oct 2003 00:23:22 -0000 1.14 --- configure.in 20 Oct 2003 06:52:12 -0000 1.15 *************** *** 55,76 **** dnl check for OpenSceneGraph ! CSP_OSG_CONFIG(osg, 0.9.4, [OpenSceneGraph]) ! # osg 0.9.3 segfaults when any of these libs are linked against a ! # minimal version test script. so, no version check for now, just ! # see if the libs exist. hopefully the next osg release will fix ! # this! ! #AC_CHECK_LIB(osgGLUT, osgGLUTGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! #AC_CHECK_LIB(osgUtil, osgUtilGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! #AC_CHECK_LIB(osgText, osgTextGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! #AC_CHECK_LIB(osgParticle, osgParticleGetVersion, , ! # [AC_MSG_ERROR(OpenSceneGraph utility library not found. See http://www.openscenegraph.org)],) ! # GLUT is no longer needed. ! #CSP_OSG_CONFIG(osgGLUT, 0.9.3, [OpenSceneGraph GLUT library]) ! CSP_OSG_CONFIG(osgUtil, 0.9.4, [OpenSceneGraph Util library]) ! CSP_OSG_CONFIG(osgText, 0.9.4, [OpenSceneGraph Text library]) ! CSP_OSG_CONFIG(osgParticle, 0.9.4, [OpenSceneGraph Particle library]) dnl check for libSigC++ type-safe signal libraryy --- 55,62 ---- dnl check for OpenSceneGraph ! CSP_OSG_CONFIG(osg, 0.9.6, [OpenSceneGraph]) ! CSP_OSG_CONFIG(osgUtil, 0.9.6, [OpenSceneGraph Util library]) ! CSP_OSG_CONFIG(osgText, 0.9.6, [OpenSceneGraph Text library]) ! CSP_OSG_CONFIG(osgParticle, 0.9.6, [OpenSceneGraph Particle library]) dnl check for libSigC++ type-safe signal libraryy |