Module CS/apps/import/md32spr/

back to main page

Summary Period: 2002-10-29 to 2003-06-15

Modules

[root]/CS/apps/import/md32spr

Lines Of Code


Total Lines Of Code: 1698 (2003-07-11 20:29)

Authors

Author Changes Lines of code Lines per change
Totals 30 (100.0%) 1904 (100.0%) 63.4
norman 13 (43.3%) 1722 (90.4%) 132.4
philwyett 4 (13.3%) 83 (4.4%) 20.7
jorrit 3 (10.0%) 51 (2.7%) 17.0
frumpel 2 (6.7%) 22 (1.2%) 11.0
matzebraun 2 (6.7%) 11 (0.6%) 5.5
sunshine 4 (13.3%) 9 (0.5%) 2.2
duhprey 1 (3.3%) 6 (0.3%) 6.0
ab031ns 1 (3.3%) 0 (0.0%) 0.0

Most Recent Commits

philwyett 2003-06-15 23:39

Eliminated the link errors in the apps on Linux.

1 lines of code changed in:

jorrit 2003-05-29 08:07

Replaced NULL with 0.

50 lines of code changed in:

sunshine 2003-04-27 11:33

Eric Sunshine made the following changes:

-*- Modified configure.ac so that it emits a SRCDIR property to
config.mak. This value represents the --srcdir argument given to the
configure script (or "." if --srcdir is omitted). This points at the
directory containing the CS source code (which may differ from the
build directory, which is typically the current working directory).

-*- Modified makefiles and build scripts throughout the project so that
they respect $(SRCDIR). This allows the project to be built in a
directory other than the source directory, thus it is possible to
place the source directory on a readonly filesystem (such as a
CD-ROM), or to share a single NFS-mounted source directory among
different builds, where each build inhabits its own directory. For
example, if CS resides at /home/CS and you wish to build the project
in /home/build:

% cd /home/build
% ../CS/configure
% make -k all
% make install

(Note that the Jam-base build system already supports this build
paradigm.)

-*- Modified configure.ac so that it emits EXTENSIVE_MEMDEBUG to
config.mak since this variable is used by Makefile.in for the
`showconfig' target.

-*- Modified configure.ac so that it emits MONITOR_MAKEFILE_CACHE when the
value is either "yes" or "no", instead of emitting it only when the
value is "yes". This was necessary because CS/mk/cache.mak prints the
value of this variable as part of $(SYSMODIFIER).

3 lines of code changed in:

jorrit 2003-04-18 14:50

Fixed several application makefiles to also link with CSSYS
at the end now. This is needed because of the new csMutex
dependencies.

1 lines of code changed in:

sunshine 2003-04-10 17:56

Eric Sunshine made the following changes to the makefiles:

-*- Converted the remaining "application" makefiles so that they place
their generated files in a personalized subdirectory of $(OUT), rather
than placing them directly in $(OUT). This lifts the monolithic
restriction that all applications must use distinct names for their
source files.

-*- Converted the application makefiles to augment OUTDIRS with their
personalized output directories, rather than each having a custom
directory creation rule. Not only does this simplify the makefiles
slightly, but it also fixes a problem where the personalized output
directories of plugin modules were not created when an application
makefile target (such as "make walktest") was invoked explicitly and
when the project had been configured with --disable-plugins.

-*- Updated CS/mk/template.mak to reflect the aforementioned changes.

-*- Fixed formatting of help messages emitted by "make help" for several
makefiles.

3 lines of code changed in:

matzebraun 2003-04-08 20:16

added the Jamfiles

10 lines of code changed in:

matzebraun 2003-04-03 15:43

cleaned up csutil as proposed in the crystal-develop list

1 lines of code changed in:

frumpel 2003-03-03 02:02

Rudolf Potucek updated makefiles in apps/ directory to
remove vpath and generate the object files in separate
subdirectories of $(OUT). THis should allow identical
filenames to coexist in different directories of the
build tree. Also added a rm command for the *.txt console
output files generated on the windows platform. The following
files may generate problems:
apps/demo/demo.mak
apps/tests/netmtst/netmtst.mak
apps/tests/perl5tst/perl5tst.mak
apps/tools/tbconv/tbconv.mak
apps/video/video.mak
as the filename and the internal build name differ and I cannot
test which name the *.txt file will be given.

1 lines of code changed in:

frumpel 2003-03-02 00:16

Removed vpath and converted output directory as per Eric Sunshine's
changes to blocks.mak.

21 lines of code changed in:

sunshine 2003-01-15 21:06

Fixed bugs in md32spr.mak.

2 lines of code changed in:

ab031ns 2003-01-04 12:16

removed duplicate #include line

0 lines of code changed in:

philwyett 2002-12-22 05:40

- Added ability for people with GCC 3.0 or above to specify 'athlon' at config time.

e.g. make linux CPU=athlon ARCH=athlon MODE=debug

- Eliminated some compiler warnings under optimize build.

39 lines of code changed in:

philwyett 2002-12-21 04:25

- Eliminated some un-initialized variables in cscomp.cpp

- Cleaned md32spr code so that MSVC does not warn against it.

43 lines of code changed in:

sunshine 2002-12-20 12:27

Removed the unmaintained OS/2 port. Tagged the following files and
directories with "OS2_OBSOLETE" in order to simplify the task of
recovering them from the Attic if necessary.

docs/texinfo/build/platform/os2.txi
docs/texinfo/internal/platform/os2.txi
include/cssys/os2 libs/cssys/os2
plugins/video/canvas/common/os2-keys.h
plugins/video/canvas/csdive
plugins/video/canvas/openglos2

1 lines of code changed in:

norman 2002-12-06 19:45

This fixes an out of bound memory error that would prevent loading of
certain models. Now you don't have to remove the line in animation.cfg.

2 lines of code changed in:

norman 2002-12-01 21:35

submitted by Manju:
There was a bug in which some files would come up with negative numbered
frames. That has been fixed.

7 lines of code changed in:

norman 2002-11-08 21:23

news from manju:
Here are the new md32spr files. The reading of animation files and
writing it into XML has been redone completely.
- The animation ordering problem has been fixed.
- And more fixes to player model writing.

73 lines of code changed in:

norman 2002-11-05 21:07

manju writes:
I have fixed some bugs in the md32spr.cpp and moved the <key> tags to a
new file. This way the model is now "politically correct" CS wise. Also
there was some error with floating point values, now if the number is less
than a small threshold I make it 0. This was way the model behavious is
more consistent.

45 lines of code changed in:

duhprey 2002-11-01 20:32

Commit from Manju to check for null

6 lines of code changed in:

norman 2002-10-29 22:33

a quake3 model (md3) converter kindly provided by Manjunath Sripadarao
<msripada@evl.uic.edu>

1595 lines of code changed in:


Generated by StatCvs v0.2-dev