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-07-22 21:17:46
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Tools/Terrain/tile
In directory sc8-pr-cvs1:/tmp/cvs-serv13782
Modified Files:
tile.cpp
Log Message:
Index: tile.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Tools/Terrain/tile/tile.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tile.cpp 21 Jul 2003 08:04:57 -0000 1.1
--- tile.cpp 22 Jul 2003 21:17:41 -0000 1.2
***************
*** 29,32 ****
--- 29,33 ----
#include <SimData/Random.h>
#include <SimData/Math.h>
+ #include <SimData/FileUtility.h>
#include <cstdio>
#include <string>
***************
*** 284,288 ****
* @lo longitude contained in the quad (in degrees)
*/
! DEM(double la, double lo): zero(true) {
DEM_count++;
//std::cout << DEM_count << "\n";
--- 285,289 ----
* @lo longitude contained in the quad (in degrees)
*/
! DEM(double la, double lo, std::string const &datpath): zero(true) {
DEM_count++;
//std::cout << DEM_count << "\n";
***************
*** 297,304 ****
bool show = false;
//std::cout << fn << "\n";
! filename = fn;
! gzFile fp = gzopen(fn, "rb");
if (fp==0) {
! fprintf(LOG, "missing quad %s (%f %f)\n", fn, la, lo);
return;
}
--- 298,305 ----
bool show = false;
//std::cout << fn << "\n";
! filename = simdata::ospath::join(datpath, fn);
! gzFile fp = gzopen(filename.c_str(), "rb");
if (fp==0) {
! fprintf(LOG, "missing quad %s (%f %f)\n", filename.c_str(), la, lo);
return;
}
***************
*** 349,356 ****
READI(n);
if (n > 10000) {
! std::cout << d.E << " " << d.N << " " << n << "\n";
! std::cout << i << " of " << n_col << "\n";
! std::cout << fn << "\n";
! std::cout << res.x << " " << res.y << " " << res.z << "\n";
}
if (n > 0) {
--- 350,358 ----
READI(n);
if (n > 10000) {
! std::cout << "Column count exceeds 10000\n";
! std::cout << " > " << d.E << " " << d.N << " " << n << "\n";
! std::cout << " > " << i << " of " << n_col << "\n";
! std::cout << " > " << filename << "\n";
! std::cout << " > " << res.x << " " << res.y << " " << res.z << "\n";
}
if (n > 0) {
***************
*** 376,380 ****
gscale = 1.0;
if (gnd_units == 1) gscale *= 12 * 0.0254;
! assert(fabs(cols.begin()->E - cor0.x) < 500.0);
}
~DEM() {
--- 378,388 ----
gscale = 1.0;
if (gnd_units == 1) gscale *= 12 * 0.0254;
! if (fabs(cols.begin()->E - cor0.x) >= 500.0) {
! std::cout << "Problem with DAT input for quad " << filename << "\n";
! std::cout << "Corner0.x = " << cor0.x << "\n";
! std::cout << "Cols[0].E = " << cols.begin()->E << "\n";
! std::cout << "Differ by more than 500 m, possible zone mismatch?\n";
! ::exit(1);
! }
}
~DEM() {
***************
*** 675,679 ****
if (fp) {
fprintf(fp, "P6 %d %d %d\n", _num_rows, _num_cols, 255);
! fwrite(_image, _size, 3, fp);
fclose(fp);
}
--- 683,705 ----
if (fp) {
fprintf(fp, "P6 %d %d %d\n", _num_rows, _num_cols, 255);
! //fwrite(_image, _size, 3, fp);
! _idx = _image;
! unsigned char *buffer = new unsigned char[_size*3];
! assert(buffer != 0);
! unsigned char *out = buffer;
! bool warned = false;
! for (int n = _size; --n >=0; ) {
! int v = *_idx++;
! if (v<0 && !warned) {
! std::cerr << "WARNING: negative elevations not supported by Demeter.\n";
! warned = true;
! }
! if (v<0) v = 0; // XXX
! *out++ = (v>>16) & 0xff;
! *out++ = (v>>8) & 0xff;
! *out++ = v & 0xff;
! }
! fwrite(buffer, _size*3, 1, fp);
! delete[] buffer;
fclose(fp);
}
***************
*** 726,731 ****
--- 752,765 ----
OutputBT() {
_size = 0;
+ _buffer_size = 32768;
+ _buffer = new short[_buffer_size];
+ assert(_buffer);
+ _bindex = 0;
}
~OutputBT() {
+ if (_buffer != 0) {
+ delete[] _buffer;
+ _buffer = 0;
+ }
finish();
}
***************
*** 760,763 ****
--- 794,801 ----
void finish() {
if (_fp == 0) return;
+ if (_bindex > 0) {
+ fwrite(_buffer, sizeof(short), _bindex, _fp);
+ _bindex = 0;
+ }
fclose(_fp);
_fp = 0;
***************
*** 765,774 ****
void setSample(double z) {
assert(++_count <= _size);
! short v = static_cast<short>(z*_z_scale + _z_offset);
! fwrite(&v, sizeof(short), 1, _fp);
}
protected:
int _size, _count;
FILE *_fp;
};
--- 803,819 ----
void setSample(double z) {
assert(++_count <= _size);
! //short v = static_cast<short>(z*_z_scale + _z_offset);
! //fwrite(&v, sizeof(short), 1, _fp);
! _buffer[_bindex] = static_cast<short>(z*_z_scale + _z_offset);
! if (++_bindex >= _buffer_size) {
! fwrite(_buffer, sizeof(short), _bindex, _fp);
! _bindex = 0;
! }
}
protected:
int _size, _count;
FILE *_fp;
+ short *_buffer;
+ int _bindex, _buffer_size;
};
***************
*** 811,815 ****
* Read configuration setting from an ini file.
*/
! bool initialize(char const *fn) {
if (fn == 0) return false;
FILE *f = (FILE*) fopen(fn, "rt");
--- 856,862 ----
* Read configuration setting from an ini file.
*/
! bool initialize(char const *fn, char const *datpath, bool quiet=true) {
! _datpath = datpath;
! _quiet = quiet;
if (fn == 0) return false;
FILE *f = (FILE*) fopen(fn, "rt");
***************
*** 1002,1010 ****
//output->setExtentDegrees(left, right, bottom, top);
output->setExtentMeters(-width*0.5, +width*0.5, -height*0.5, height*0.5);
for (i = 0; i < x_tiles; i++) {
for (j = 0; j < y_tiles; j++) {
output->start(prefix, i, j);
//output->setExtent();
! generateTile(i, j, output);
output->finish();
/*
--- 1049,1061 ----
//output->setExtentDegrees(left, right, bottom, top);
output->setExtentMeters(-width*0.5, +width*0.5, -height*0.5, height*0.5);
+ bool verbose = (n < 9) && !_quiet;
for (i = 0; i < x_tiles; i++) {
for (j = 0; j < y_tiles; j++) {
+ if (!_quiet) {
+ std::cout << "generating tile " << (idx+1) << " of " << n << std::endl;
+ }
output->start(prefix, i, j);
//output->setExtent();
! generateTile(i, j, output, verbose);
output->finish();
/*
***************
*** 1025,1029 ****
*/
idx++;
- std::cout << "tile " << idx << " of " << n << std::endl;
}
}
--- 1076,1079 ----
***************
*** 1083,1087 ****
*out++ = v & 0xff;
}
! fwrite(buffer, n, 3, fp);
fclose(fp);
delete[] buffer;
--- 1133,1137 ----
*out++ = v & 0xff;
}
! fwrite(buffer, n*3, 1, fp);
fclose(fp);
delete[] buffer;
***************
*** 1147,1151 ****
used.pop_back();
}
! DEM *d = new DEM(lat, lon);
dem[index] = d;
return d;
--- 1197,1201 ----
used.pop_back();
}
! DEM *d = new DEM(lat, lon, _datpath);
dem[index] = d;
return d;
***************
*** 1177,1180 ****
--- 1227,1231 ----
}
if (finder.getElevation() == 10000.0) {
+ std::cout << "Got elevation = 10000.0\n";
std::cout << quads << "\n";
std::cout << utm.asString() << "\n";
***************
*** 1188,1192 ****
* Generate the projected elevation data for one tile.
*/
! void generateTile(int tx, int ty, OutputHeightMap *output) {
int i, j;
double x, y, z;
--- 1239,1243 ----
* Generate the projected elevation data for one tile.
*/
! void generateTile(int tx, int ty, OutputHeightMap *output, bool verbose) {
int i, j;
double x, y, z;
***************
*** 1199,1203 ****
output->getLineStride(dx0, dy0);
output->getCounts(lines, samples_per_line);
! while (--lines >= 0) {
x = x0;
y = y0;
--- 1250,1254 ----
output->getLineStride(dx0, dy0);
output->getCounts(lines, samples_per_line);
! for (int line=0; line < lines; line++) {
x = x0;
y = y0;
***************
*** 1219,1222 ****
--- 1270,1276 ----
x0 += dx0;
y0 += dy0;
+ if (verbose && ((line+1) % 10 == 0)) {
+ std::cout << " line " << (line+1) << " of " << lines << std::endl;
+ }
}
}
***************
*** 1265,1268 ****
--- 1319,1324 ----
Matrix3 R_center;
+ std::string _datpath;
+ bool _quiet;
short *tile;
int x_tiles, y_tiles;
***************
*** 1290,1293 ****
--- 1346,1353 ----
};
+ void usage() {
+ std::cerr << "Usage: tile [--help] [--datpath=path] [--quiet] [ini]\n";
+ }
+
void help() {
std::cerr << "\n";
***************
*** 1301,1304 ****
--- 1361,1370 ----
std::cerr << "secant gnomonic projection.\n";
std::cerr << "\n";
+ usage();
+ std::cerr << "\n";
+ std::cerr << "Options:\n";
+ std::cerr << " --help Display this message\n";
+ std::cerr << " --datpath=path Path to the input quads\n";
+ std::cerr << "\n";
std::cerr << "The ini file contains lines of the form 'option = value'. Options include:\n";
std::cerr << " center_latitude (in degrees)\n";
***************
*** 1316,1319 ****
--- 1382,1386 ----
std::cerr << " overlap (0 or 1)\n";
std::cerr << " subsamples (integer)\n";
+ std::cerr << " dat_path (path to input dat files)\n";
std::cerr << " prefix (the base name for output files)\n";
std::cerr << " restrict (latitude and longitude restrictions, in degrees)\n";
***************
*** 1322,1331 ****
}
- void usage() {
- std::cerr << "Usage: tile [--help] [ini]\n";
- ::exit(1);
- }
-
int main(int argc, char **argv) {
LOG = (FILE*) fopen("tile.log", "wt");
char *ini = 0;
--- 1389,1395 ----
}
int main(int argc, char **argv) {
+ const char *datpath = ".";
+ bool quiet = false;
LOG = (FILE*) fopen("tile.log", "wt");
char *ini = 0;
***************
*** 1336,1341 ****
--- 1400,1414 ----
help();
::exit(0);
+ } else
+ if (!strncmp(arg, "--datpath=", 10)) {
+ datpath = arg+10;
+ continue;
+ } else
+ if (!strcmp(arg, "--quiet")) {
+ quiet = true;
+ continue;
}
usage();
+ ::exit(1);
} else {
ini = arg;
***************
*** 1343,1351 ****
}
if (ini == 0) {
! help();
::exit(0);
}
Tiler tiler;
! if (tiler.initialize(ini)) {
tiler.run();
}
--- 1416,1424 ----
}
if (ini == 0) {
! usage();
::exit(0);
}
Tiler tiler;
! if (tiler.initialize(ini, datpath, quiet)) {
tiler.run();
}
|
|
From: <mk...@us...> - 2003-07-22 18:41:33
|
Update of /cvsroot/csp/APPLICATIONS/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv15341
Modified Files:
CHANGES.current setup.py
Log Message:
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** CHANGES.current 22 Jul 2003 07:50:34 -0000 1.48
--- CHANGES.current 22 Jul 2003 18:41:29 -0000 1.49
***************
*** 2,5 ****
--- 2,16 ----
===========================
+ 2003-07-22: onsight
+ Added a patch by VI to setup.py which improves the
+ installation path handling under Linux. This changes the
+ default static library path from /usr/local/lib to
+ {PYTHONLIBPATH}/site-packages/SimData. The install
+ currently depends on Python, but one goal of SimData is
+ that it should be able to operate as a standalone library
+ independent of Python. Subsequent changes to the Makefile
+ installation will be needed to achieve this, probably
+ involving a new install target such as install_nopython.
+
2003-07-21: onsight
COPYING now correctly contains the GPL license, not the
Index: setup.py
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/setup.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** setup.py 18 Jul 2003 20:41:08 -0000 1.24
--- setup.py 22 Jul 2003 18:41:29 -0000 1.25
***************
*** 32,38 ****
min_python_version = "2.2.0"
- # this is the default path used by make_install under linux to install the
- # shared and static libraries. it can be changed with --prefix=XYZ
- default_libpath = "/usr/local/lib"
if len(sys.argv) == 2:
--- 32,35 ----
***************
*** 87,96 ****
incpath = os.path.join(inc, "SimData")
localinc = os.path.normpath("Include/SimData")
! libpath = default_libpath
verbose = 0
warnings = 0
for arg in args:
if arg.startswith("--prefix="):
! libpath = arg[9:]
elif arg=='-v' or arg=='--verbose':
verbose = 1
--- 84,97 ----
incpath = os.path.join(inc, "SimData")
localinc = os.path.normpath("Include/SimData")
! libpath = modpath
! prefix = ""
verbose = 0
warnings = 0
for arg in args:
if arg.startswith("--prefix="):
! prefix = arg[9:]
! modpath = os.path.normpath(prefix+modpath)
! incpath = os.path.normpath(prefix+incpath)
! libpath = os.path.normpath(prefix+libpath)
elif arg=='-v' or arg=='--verbose':
verbose = 1
|
|
From: <mk...@us...> - 2003-07-22 17:23:46
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim
In directory sc8-pr-cvs1:/tmp/cvs-serv22698
Modified Files:
CHANGES.current
Log Message:
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v
retrieving revision 1.51
retrieving revision 1.52
diff -C2 -d -r1.51 -r1.52
*** CHANGES.current 22 Jul 2003 15:57:51 -0000 1.51
--- CHANGES.current 22 Jul 2003 16:22:58 -0000 1.52
***************
*** 37,41 ****
Removed Include/OGLText.h, which seemed to have been
misplaced (part of TerrainTools?).
-
2003-07-21: onsight
--- 37,40 ----
|
|
From: <mk...@us...> - 2003-07-22 16:39:54
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim
In directory sc8-pr-cvs1:/tmp/cvs-serv25366
Modified Files:
CHANGES.current
Log Message:
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** CHANGES.current 22 Jul 2003 16:30:41 -0000 1.53
--- CHANGES.current 22 Jul 2003 16:39:51 -0000 1.54
***************
*** 12,15 ****
--- 12,19 ----
FlightDynamics.cpp to Makefile.in
+ LogoScreen now throws a DataError if the splashscreen
+ image can not be found. This provides an early catch
+ for missing Data/*, and a somewhat useful error message.
+
2003-07-21: onsight
Moved a couple accessor methods in Theater and
|
|
From: <mk...@us...> - 2003-07-22 16:38:14
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source
In directory sc8-pr-cvs1:/tmp/cvs-serv25160/Source
Modified Files:
LogoScreen.cpp
Log Message:
Index: LogoScreen.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/LogoScreen.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** LogoScreen.cpp 26 Jun 2003 09:25:23 -0000 1.10
--- LogoScreen.cpp 22 Jul 2003 16:38:10 -0000 1.11
***************
*** 33,36 ****
--- 33,37 ----
#include "LogoScreen.h"
+ #include "Exception.h"
#include "Config.h"
***************
*** 59,65 ****
std::string path = simdata::ospath::join(image_path, "CSPLogo.bmp");
m_image = SDL_LoadBMP(path.c_str());
! if (m_image == NULL)
! {
! std::cout << "Unable to load bitmap " << path << std::endl;
}
}
--- 60,65 ----
std::string path = simdata::ospath::join(image_path, "CSPLogo.bmp");
m_image = SDL_LoadBMP(path.c_str());
! if (m_image == NULL) {
! throw csp::DataError("Unable to load bitmap " + path);
}
}
***************
*** 67,101 ****
void LogoScreen::onExit()
{
! SDL_FreeSurface(m_image);
}
void LogoScreen::onRender()
{
! if (!m_image)
! return;
!
! SDL_Rect src, dest;
! src.x = 0;
! src.y = 0;
! src.w = m_image->w;
! src.h = m_image->h;
! dest.x = 0;
! dest.y = 0;
! dest.w = m_image->w;
! dest.h = m_image->h;
! glViewport(0, 0, m_width, m_height);
! glMatrixMode(GL_PROJECTION);
! glLoadIdentity();
! glOrtho(0.0, m_width, 0.0, m_height, -1.0, 1.0);
! // this centers the bitmap in case its a different size then the screen.
! glRasterPos2i( ((m_width - m_image->w) >> 1),
! m_height - ((m_height - m_image->h) >> 1) );
! glPixelZoom(1.0,-1.0);
! glDrawPixels(m_image->w, m_image->h, GL_RGB, GL_UNSIGNED_BYTE, m_image->pixels);
}
--- 67,102 ----
void LogoScreen::onExit()
{
! if (m_image) {
! SDL_FreeSurface(m_image);
! }
}
void LogoScreen::onRender()
{
! if (!m_image) return;
! SDL_Rect src, dest;
! src.x = 0;
! src.y = 0;
! src.w = m_image->w;
! src.h = m_image->h;
! dest.x = 0;
! dest.y = 0;
! dest.w = m_image->w;
! dest.h = m_image->h;
! glViewport(0, 0, m_width, m_height);
! glMatrixMode(GL_PROJECTION);
! glLoadIdentity();
! glOrtho(0.0, m_width, 0.0, m_height, -1.0, 1.0);
! // this centers the bitmap in case its a different size then the screen.
! glRasterPos2i( ((m_width - m_image->w) >> 1),
! m_height - ((m_height - m_image->h) >> 1) );
! glPixelZoom(1.0,-1.0);
!
! glDrawPixels(m_image->w, m_image->h, GL_RGB, GL_UNSIGNED_BYTE, m_image->pixels);
}
|
|
From: <mk...@us...> - 2003-07-22 16:30:43
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim
In directory sc8-pr-cvs1:/tmp/cvs-serv23958
Modified Files:
CHANGES.current
Log Message:
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -d -r1.52 -r1.53
*** CHANGES.current 22 Jul 2003 16:22:58 -0000 1.52
--- CHANGES.current 22 Jul 2003 16:30:41 -0000 1.53
***************
*** 9,12 ****
--- 9,15 ----
checks for GNU CC++ are now in place but commented.
+ Added Animation.cpp, FlightModel.cpp, and
+ FlightDynamics.cpp to Makefile.in
+
2003-07-21: onsight
Moved a couple accessor methods in Theater and
|
|
From: <mk...@us...> - 2003-07-22 16:29:58
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source In directory sc8-pr-cvs1:/tmp/cvs-serv23774/Source Modified Files: Makefile.in Log Message: Index: Makefile.in =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/Makefile.in,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Makefile.in 22 Jul 2003 16:03:27 -0000 1.19 --- Makefile.in 22 Jul 2003 16:29:55 -0000 1.20 *************** *** 26,29 **** --- 26,30 ---- AircraftObject.cpp \ AircraftPhysicsModel.cpp \ + Animation.cpp \ Atmosphere.cpp \ base.cpp \ *************** *** 45,48 **** --- 46,51 ---- Exception.cpp \ F16Model.cpp \ + FlightDynamics.cpp \ + FlightModel.cpp \ GameScreen.cpp \ HID.cpp \ |
|
From: <mk...@us...> - 2003-07-22 16:18:49
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source In directory sc8-pr-cvs1:/tmp/cvs-serv21649/Source Modified Files: PhysicsModel.cpp Log Message: Index: PhysicsModel.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/PhysicsModel.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PhysicsModel.cpp 19 Jul 2003 14:08:03 -0000 1.2 --- PhysicsModel.cpp 22 Jul 2003 16:18:45 -0000 1.3 *************** *** 34,40 **** m_qOrientation(simdata::Quaternion(1.0,0.0,0.0,0.0)), m_ForcesBody(simdata::Vector3::ZERO), m_AngularAccelBody(simdata::Vector3::ZERO), m_LinearAccelBody(simdata::Vector3::ZERO), - m_MomentsBody(simdata::Vector3::ZERO), m_NearGround(false), m_Height(0.0), --- 34,40 ---- m_qOrientation(simdata::Quaternion(1.0,0.0,0.0,0.0)), m_ForcesBody(simdata::Vector3::ZERO), + m_MomentsBody(simdata::Vector3::ZERO), m_AngularAccelBody(simdata::Vector3::ZERO), m_LinearAccelBody(simdata::Vector3::ZERO), m_NearGround(false), m_Height(0.0), |
|
From: <mk...@us...> - 2003-07-22 16:03:30
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source In directory sc8-pr-cvs1:/tmp/cvs-serv17437/Source Modified Files: Makefile.in Log Message: Index: Makefile.in =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/Makefile.in,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Makefile.in 2 Jul 2003 10:12:41 -0000 1.18 --- Makefile.in 22 Jul 2003 16:03:27 -0000 1.19 *************** *** 52,56 **** MenuScreen.cpp \ Message.cpp \ - mmgr.cpp \ NumericalMethod.cpp \ ObjectModel.cpp \ --- 52,55 ---- |
|
From: <mk...@us...> - 2003-07-22 15:57:54
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim
In directory sc8-pr-cvs1:/tmp/cvs-serv16489
Modified Files:
CHANGES.current
Log Message:
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/CHANGES.current,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -d -r1.50 -r1.51
*** CHANGES.current 22 Jul 2003 07:43:26 -0000 1.50
--- CHANGES.current 22 Jul 2003 15:57:51 -0000 1.51
***************
*** 2,5 ****
--- 2,12 ----
===========================
+ 2003-07-22: onsight
+ Actually checked in a bunch of changes from the last
+ changelog entry that I had forgotten to commit.
+
+ Slight tweaks to acinclude.m4 and configure.in. The
+ checks for GNU CC++ are now in place but commented.
+
2003-07-21: onsight
Moved a couple accessor methods in Theater and
|
|
From: <mk...@us...> - 2003-07-22 15:55:11
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source In directory sc8-pr-cvs1:/tmp/cvs-serv16030/Source Modified Files: SimpleConfig.cpp Log Message: Index: SimpleConfig.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/SimpleConfig.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** SimpleConfig.cpp 12 Apr 2003 00:55:04 -0000 1.6 --- SimpleConfig.cpp 22 Jul 2003 15:55:08 -0000 1.7 *************** *** 43,51 **** #include <vector> #include <iostream> #include <fstream> #include <cassert> - - #include "compiler.h" - #include STL_SSTREAM #include <SimData/FileUtility.h> --- 43,49 ---- #include <vector> #include <iostream> + #include <sstream> #include <fstream> #include <cassert> #include <SimData/FileUtility.h> |
|
From: <mk...@us...> - 2003-07-22 15:53:14
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim In directory sc8-pr-cvs1:/tmp/cvs-serv15632 Modified Files: configure.in Log Message: Index: configure.in =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/configure.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** configure.in 23 Apr 2003 11:13:29 -0000 1.12 --- configure.in 22 Jul 2003 15:53:11 -0000 1.13 *************** *** 33,37 **** dnl check for Simple Direct Media Library ! CSP_LIB_CONFIG([SDL], [sdl], [1.2.5], [Simple Direct Media Library], [http://www.libsdl.org/]) dnl check for SDL Image Library --- 33,37 ---- dnl check for Simple Direct Media Library ! CSP_LIB_CONFIG([SDL], [sdl], [1.2.5], [--cflags], [Simple Direct Media Library], [http://www.libsdl.org/]) dnl check for SDL Image Library *************** *** 71,74 **** --- 71,76 ---- CSP_OSG_CONFIG(osgText, 0.9.4, [OpenSceneGraph Text library]) CSP_OSG_CONFIG(osgParticle, 0.9.4, [OpenSceneGraph Particle library]) + + #CSP_LIB_CONFIG([CCGNU2], [ccgnu2], [1.0.6], [--flags], [GNU Common C++ Library], [http://www.gnu.org/software/commonc++/]) CSP_PYTHON(2.2.0) |
|
From: <mk...@us...> - 2003-07-22 15:49:44
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim
In directory sc8-pr-cvs1:/tmp/cvs-serv14948
Modified Files:
acinclude.m4
Log Message:
Index: acinclude.m4
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/acinclude.m4,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** acinclude.m4 12 Apr 2003 01:25:31 -0000 1.7
--- acinclude.m4 22 Jul 2003 15:49:41 -0000 1.8
***************
*** 38,41 ****
--- 38,42 ----
AC_DEFUN(CSP_LIB_CONFIG, [
lib_min_version=$3
+ lib_flags_opt=$4
lib=yes
AC_PATH_PROG($1[]_CONFIG, $2-config, no)
***************
*** 61,65 ****
if test "$lib_version_proper" = "1" ; then
AC_MSG_RESULT(yes)
! $1[]_FLAGS=`$$1[]_CONFIG --cflags`
$1[]_LIBS=`$$1[]_CONFIG --libs`
else
--- 62,66 ----
if test "$lib_version_proper" = "1" ; then
AC_MSG_RESULT(yes)
! $1[]_FLAGS=`$$1[]_CONFIG $lib_flags_opt`
$1[]_LIBS=`$$1[]_CONFIG --libs`
else
***************
*** 69,73 ****
fi
if test "$no_lib" = "yes"; then
! CSP_LIB_ERROR($4,$3,$5,$1[]_CONFIG)
fi
AC_SUBST($1[]_FLAGS)
--- 70,74 ----
fi
if test "$no_lib" = "yes"; then
! CSP_LIB_ERROR($5,$3,$6,$1[]_CONFIG)
fi
AC_SUBST($1[]_FLAGS)
|
|
From: <mk...@us...> - 2003-07-22 15:48:54
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include/Theater
In directory sc8-pr-cvs1:/tmp/cvs-serv14821/Include/Theater
Modified Files:
FeatureLayout.h
Log Message:
Index: FeatureLayout.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/Theater/FeatureLayout.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FeatureLayout.h 26 Jun 2003 09:25:45 -0000 1.1
--- FeatureLayout.h 22 Jul 2003 15:48:51 -0000 1.2
***************
*** 74,78 ****
* Get the FeatureModel.
*/
! simdata::Ref<FeatureModel const> getFeatureModel() const { return m_FeatureModel; }
/**
--- 74,78 ----
* Get the FeatureModel.
*/
! simdata::Ref<FeatureModel const> getFeatureModel() const;
/**
|
|
From: <mk...@us...> - 2003-07-22 15:48:54
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv14821/Include
Modified Files:
Theater.h
Log Message:
Index: Theater.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/Theater.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Theater.h 30 Jun 2003 22:29:15 -0000 1.5
--- Theater.h 22 Jul 2003 15:48:51 -0000 1.6
***************
*** 90,94 ****
* Get the TerrainObject used by the theater.
*/
! inline simdata::Ref<TerrainObject> getTerrain() { return m_Terrain; }
virtual void postCreate();
--- 90,94 ----
* Get the TerrainObject used by the theater.
*/
! simdata::Ref<TerrainObject> getTerrain();
virtual void postCreate();
|
|
From: <mk...@us...> - 2003-07-22 15:48:09
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source
In directory sc8-pr-cvs1:/tmp/cvs-serv14660/Source
Modified Files:
Theater.cpp
Log Message:
Index: Theater.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/Theater.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Theater.cpp 18 Jul 2003 21:18:16 -0000 1.4
--- Theater.cpp 22 Jul 2003 15:48:06 -0000 1.5
***************
*** 60,61 ****
--- 60,65 ----
}
+ simdata::Ref<TerrainObject> Theater::getTerrain() {
+ return m_Terrain;
+ }
+
|
|
From: <mk...@us...> - 2003-07-22 15:48:09
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source/Theater
In directory sc8-pr-cvs1:/tmp/cvs-serv14660/Source/Theater
Modified Files:
FeatureLayout.cpp
Log Message:
Index: FeatureLayout.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/Theater/FeatureLayout.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** FeatureLayout.cpp 26 Jun 2003 09:25:23 -0000 1.1
--- FeatureLayout.cpp 22 Jul 2003 15:48:06 -0000 1.2
***************
*** 56,57 ****
--- 56,61 ----
+ simdata::Ref<FeatureModel const> FeatureLayout::getFeatureModel() const {
+ return m_FeatureModel;
+ }
+
|
|
From: <mk...@us...> - 2003-07-22 15:47:15
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source
In directory sc8-pr-cvs1:/tmp/cvs-serv14494/Source
Modified Files:
main.cpp
Log Message:
Index: main.cpp
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/main.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** main.cpp 24 Mar 2003 10:37:02 -0000 1.7
--- main.cpp 22 Jul 2003 15:47:12 -0000 1.8
***************
*** 1,6 ****
#include "Config.h"
#include "CSPSim.h"
-
int main(int argc, char *argv[])
{
--- 1,24 ----
+ // Combat Simulator Project - CSPSim
+ // Copyright (C) 2002 The Combat Simulator Project
+ // http://csp.sourceforge.net
+ //
+ // This program is free software; you can redistribute it and/or
+ // modify it under the terms of the GNU General Public License
+ // as published by the Free Software Foundation; either version 2
+ // of the License, or (at your option) any later version.
+ //
+ // This program is distributed in the hope that it will be useful,
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ // GNU General Public License for more details.
+ //
+ // You should have received a copy of the GNU General Public License
+ // along with this program; if not, write to the Free Software
+ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+
#include "Config.h"
#include "CSPSim.h"
int main(int argc, char *argv[])
{
***************
*** 16,17 ****
--- 34,36 ----
return 0;
}
+
|
|
From: <mk...@us...> - 2003-07-22 15:46:45
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Source In directory sc8-pr-cvs1:/tmp/cvs-serv14397/Source Modified Files: Colorspace.cpp Log Message: Index: Colorspace.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Source/Colorspace.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Colorspace.cpp 23 Apr 2003 09:51:38 -0000 1.8 --- Colorspace.cpp 22 Jul 2003 15:46:42 -0000 1.9 *************** *** 1,2 **** --- 1,21 ---- + // Combat Simulator Project - CSPSim + // Copyright (C) 2002 The Combat Simulator Project + // http://csp.sourceforge.net + // + // This program is free software; you can redistribute it and/or + // modify it under the terms of the GNU General Public License + // as published by the Free Software Foundation; either version 2 + // of the License, or (at your option) any later version. + // + // This program is distributed in the hope that it will be useful, + // but WITHOUT ANY WARRANTY; without even the implied warranty of + // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + // GNU General Public License for more details. + // + // You should have received a copy of the GNU General Public License + // along with this program; if not, write to the Free Software + // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + /** * @file Colorspace.cpp |
|
From: <mk...@us...> - 2003-07-22 15:46:08
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim
In directory sc8-pr-cvs1:/tmp/cvs-serv14273
Added Files:
COPYING
Log Message:
--- NEW FILE: COPYING ---
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have. You must make sure that they, too, receive or can get the
source code. And you must show them these terms so they know their
rights.
We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software. If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.
Finally, any free program is threatened constantly by software
patents. We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary. To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language. (Hereinafter, translation is included without limitation in
the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.
You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) You must cause the modified files to carry prominent notices
stating that you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in
whole or in part contains or is derived from the Program or any
part thereof, to be licensed as a whole at no charge to all third
parties under the terms of this License.
c) If the modified program normally reads commands interactively
when run, you must cause it, when started running for such
interactive use in the most ordinary way, to print or display an
announcement including an appropriate copyright notice and a
notice that there is no warranty (or else, saying that you provide
a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this
License. (Exception: if the Program itself is interactive but
does not normally print such an announcement, your work based on
the Program is not required to print an announcement.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.
In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable
source code, which must be distributed under the terms of Sections
1 and 2 above on a medium customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three
years, to give any third party, for a charge no more than your
cost of physically performing source distribution, a complete
machine-readable copy of the corresponding source code, to be
distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer
to distribute corresponding source code. (This alternative is
allowed only for noncommercial distribution and only if you
received the program in object code or executable form with such
an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.
If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.
4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License. Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.
5. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Program or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.
7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all. For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.
If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded. In such case, this License incorporates
the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation. If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.
10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission. For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
|
|
From: <mk...@us...> - 2003-07-22 15:42:25
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Tools/Terrain/tile In directory sc8-pr-cvs1:/tmp/cvs-serv13652/tile Added Files: Makefile Log Message: --- NEW FILE: Makefile --- all: tile tile: tile.cpp g++ -O2 -g tile.cpp -o tile -I/usr/include/python2.2 -lSimData -lz |
|
From: <mk...@us...> - 2003-07-22 15:42:25
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Tools/Terrain/dem2dat In directory sc8-pr-cvs1:/tmp/cvs-serv13652/dem2dat Added Files: quads.california.gz quads.nevada.gz Log Message: --- NEW FILE: quads.california.gz --- (This appears to be a binary file; contents omitted.) --- NEW FILE: quads.nevada.gz --- (This appears to be a binary file; contents omitted.) |
|
From: <mk...@us...> - 2003-07-22 07:50:37
|
Update of /cvsroot/csp/APPLICATIONS/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv4942 Modified Files: CHANGES.current Log Message: Index: CHANGES.current =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** CHANGES.current 19 Jul 2003 14:01:49 -0000 1.47 --- CHANGES.current 22 Jul 2003 07:50:34 -0000 1.48 *************** *** 2,5 **** --- 2,13 ---- =========================== + 2003-07-21: onsight + COPYING now correctly contains the GPL license, not the + LGPL licence. + + Moved PTS copyright/license notice back to ObjectRegistry.h + where the code actually resides. Added a GPL notice to + PTS.h. + 2003-07-19: delta Merged Onsight changes. |
|
From: <mk...@us...> - 2003-07-22 07:48:41
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv4669/Include/SimData Modified Files: PTS.h Log Message: Index: PTS.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/PTS.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PTS.h 22 Jul 2003 07:47:05 -0000 1.2 --- PTS.h 22 Jul 2003 07:48:38 -0000 1.3 *************** *** 1,2 **** --- 1,23 ---- + /* SimDataCSP: Data Infrastructure for Simulations + * Copyright (C) 2002 Mark Rose <tm...@st...> + * + * This file is part of SimDataCSP. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + + /* * Simulated Partial Template Specialization |
|
From: <mk...@us...> - 2003-07-22 07:47:10
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv4436/Include/SimData
Modified Files:
PTS.h ObjectInterface.h
Log Message:
Index: PTS.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/PTS.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PTS.h 18 Jul 2003 19:43:26 -0000 1.1
--- PTS.h 22 Jul 2003 07:47:05 -0000 1.2
***************
*** 2,18 ****
* Simulated Partial Template Specialization
*
- * Adapted from: metactrl.h
- * by Krzysztof Czarnecki & Ulrich Eisenecker
- */
-
- /* The following functions come from chapter 10 of the indispensable book
- * Generative Programming by Krzysztof Czarnecki & Ulrich Eisenecker
- * (C) Copyright Krzysztof Czarnecki & Ulrich Eisenecker 1998-2000.
- * Permission to copy, use, modify, sell and distribute this software is
- * granted provided this copyright notice appears in all copies. In case of
- * modification, the modified files should carry a notice stating that
- * you changed the files.
- * This software is provided "as is" without express or implied
- * warranty, and with no claim as to its suitability for any purpose.
*/
--- 2,5 ----
Index: ObjectInterface.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/ObjectInterface.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** ObjectInterface.h 18 Jul 2003 19:47:17 -0000 1.20
--- ObjectInterface.h 22 Jul 2003 07:47:05 -0000 1.21
***************
*** 378,381 ****
--- 378,399 ----
#ifdef __PTS_SIM__
+ /*
+ * Simulated Partial Template Specialization
+ *
+ * Adapted from: metactrl.h
+ * by Krzysztof Czarnecki & Ulrich Eisenecker
+ */
+
+ /* The following functions come from chapter 10 of the indispensable book
+ * Generative Programming by Krzysztof Czarnecki & Ulrich Eisenecker
+ * (C) Copyright Krzysztof Czarnecki & Ulrich Eisenecker 1998-2000.
+ * Permission to copy, use, modify, sell and distribute this software is
+ * granted provided this copyright notice appears in all copies. In case of
+ * modification, the modified files should carry a notice stating that
+ * you changed the files.
+ * This software is provided "as is" without express or implied
+ * warranty, and with no claim as to its suitability for any purpose.
+ */
+
namespace PTS {
|