Eric Sunshine | 1 Sep 2003 16:19
Picon

CVS update: cel/docs

Date:	Monday September 1, 2003  <at>  7:19
Author:	sunshine

Update of /cvsroot/cel/cel/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv22472/docs

Modified Files:
	history.txt 
Log Message:
Eric Sunshine added ranlib check to configure.ac; needed for MacOS/X.

Eric Sunshine | 1 Sep 2003 16:19
Picon

CVS update: cel

Date:	Monday September 1, 2003  <at>  7:19
Author:	sunshine

Update of /cvsroot/cel/cel
In directory sc8-pr-cvs1:/tmp/cvs-serv22472

Modified Files:
	configure configure.ac 
Log Message:
Eric Sunshine added ranlib check to configure.ac; needed for MacOS/X.

sunshine | 1 Sep 2003 17:04
Picon

cel/docs history.txt,1.235,1.236

Update of /cvsroot/cel/cel/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv31480/docs

Modified Files:
	history.txt 
Log Message:
Minor whitespace cleanup.

Index: history.txt
===================================================================
RCS file: /cvsroot/cel/cel/docs/history.txt,v
retrieving revision 1.235
retrieving revision 1.236
diff -u -d -r1.235 -r1.236
--- history.txt	1 Sep 2003 14:19:27 -0000	1.235
+++ history.txt	1 Sep 2003 15:04:04 -0000	1.236
 <at>  <at>  -7,26 +7,26  <at>  <at> 
 	- Eric Sunshine added ranlib check to configure.ac; needed for MacOS/X.
 27-Aug-2003
 	- Jorrit moved the apps/celtest/data directory to data so that the
-	  python scripts don't have to fetch stuff inside celtest directory.
-	- Jorrit extended the python behaviour layer so that you can now
-	  call CreateBehaviour with a path in front of the behaviour name.
-	  That way you can place scripts inside other directories.
+	  Python scripts don't have to fetch stuff inside celtest directory.
+	- Jorrit extended the python behaviour layer so that you can now call
+	  CreateBehaviour with a path in front of the behaviour name.  That way
+	  you can place scripts inside other directories.
 	- Jorrit moved the physicstest script inside scripts/physicstest. Run
 	  it with:
(Continue reading)

matzebraun | 2 Sep 2003 10:58
Picon

cel/mk/jam swig.jam,1.4,1.5

Update of /cvsroot/cel/cel/mk/jam
In directory sc8-pr-cvs1:/tmp/cvs-serv11916/mk/jam

Modified Files:
	swig.jam 
Log Message:
changed swig rules to NOT respect dependencies. Warning: Note that the build is unreliable yet, you might
have to clean and rebuild the python plugin from time to time.

Index: swig.jam
===================================================================
RCS file: /cvsroot/cel/cel/mk/jam/swig.jam,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- swig.jam	27 Jun 2003 10:02:05 -0000	1.4
+++ swig.jam	2 Sep 2003 08:58:03 -0000	1.5
 <at>  <at>  -32,6 +32,9  <at>  <at> 
   }
   RegisterFileType SimpleSwig : .i ;

-  SWIG.HDRPATTERN = "^[ 	]*[%#][ 	]*include[ 	]*[<\"]([^\">]*)[\">].*$" ;
+# disabled to avoid long waiting times. XXX Warning the build is not reliable
+# anymore now.
+# SWIG.HDRPATTERN = "^[ 	]*[%#][ 	]*include[ 	]*[<\"]([^\">]*)[\">].*$" ;
+  SWIG.HDRPATTERN = "" ;
   RegisterHeaderRule HeaderRule : $(SWIG.HDRPATTERN) : .i ;
 }

(Continue reading)

jorrit | 5 Sep 2003 14:15
Picon

cel/docs history.txt,1.236,1.237

Update of /cvsroot/cel/cel/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv19060/docs

Modified Files:
	history.txt 
Log Message:
	- Jorrit fixed CEL for latest CS change (python plugin still broken).

Index: history.txt
===================================================================
RCS file: /cvsroot/cel/cel/docs/history.txt,v
retrieving revision 1.236
retrieving revision 1.237
diff -u -d -r1.236 -r1.237
--- history.txt	1 Sep 2003 15:04:04 -0000	1.236
+++ history.txt	5 Sep 2003 12:15:43 -0000	1.237
 <at>  <at>  -3,6 +3,8  <at>  <at> 

 The history order is reversed so that new features are at the top.

+5-Sep-2003
+	- Jorrit fixed CEL for latest CS change (python plugin still broken).
 1-Sep-2003
 	- Eric Sunshine added ranlib check to configure.ac; needed for MacOS/X.
 27-Aug-2003

jorrit | 5 Sep 2003 14:15
Picon

cel/plugins/propclass/move movefact.cpp,1.9,1.10

Update of /cvsroot/cel/cel/plugins/propclass/move
In directory sc8-pr-cvs1:/tmp/cvs-serv19060/plugins/propclass/move

Modified Files:
	movefact.cpp 
Log Message:
	- Jorrit fixed CEL for latest CS change (python plugin still broken).

Index: movefact.cpp
===================================================================
RCS file: /cvsroot/cel/cel/plugins/propclass/move/movefact.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- movefact.cpp	3 Aug 2003 06:25:57 -0000	1.9
+++ movefact.cpp	5 Sep 2003 12:15:44 -0000	1.10
 <at>  <at>  -384,6 +384,7  <at>  <at> 
   csVector3 vertices[3];
   csMeshedPolygon polygons[1];
   int vertex_indices[3];
+  csFlags flags;

 public:
   celPolygonMeshTriangle (const csVector3& start, const csVector3& end)
 <at>  <at>  -397,6 +398,7  <at>  <at> 
     vertex_indices[0] = 0;
     vertex_indices[1] = 1;
     vertex_indices[2] = 2;
+    flags.Set (CS_POLYMESH_CONVEX);
   }
(Continue reading)

jorrit | 5 Sep 2003 15:51
Picon

cel/plugins/behaviourlayer/python blcel.cpp,1.25,1.26

Update of /cvsroot/cel/cel/plugins/behaviourlayer/python
In directory sc8-pr-cvs1:/tmp/cvs-serv2893/plugins/behaviourlayer/python

Modified Files:
	blcel.cpp 
Log Message:
Fixed python plugin.

Index: blcel.cpp
===================================================================
RCS file: /cvsroot/cel/cel/plugins/behaviourlayer/python/blcel.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- blcel.cpp	27 Aug 2003 09:19:37 -0000	1.25
+++ blcel.cpp	5 Sep 2003 13:51:07 -0000	1.26
 <at>  <at>  -692,10 +692,10  <at>  <at> 
 #define  SWIGTYPE_p_iSkeletonBone swig_types[35] 
 #define  SWIGTYPE_p_p_iSector swig_types[36] 
 #define  SWIGTYPE_p_csStringSet swig_types[37] 
-#define  SWIGTYPE_p_iVisibilityCullerListner swig_types[38] 
-#define  SWIGTYPE_p_iBallState swig_types[39] 
-#define  SWIGTYPE_p_iLightList swig_types[40] 
-#define  SWIGTYPE_p_iSoundListener swig_types[41] 
+#define  SWIGTYPE_p_iBallState swig_types[38] 
+#define  SWIGTYPE_p_iLightList swig_types[39] 
+#define  SWIGTYPE_p_iSoundListener swig_types[40] 
+#define  SWIGTYPE_p_iVisibilityCullerListener swig_types[41] 
[...5933 lines suppressed...]
+{ SWIG_PY_STRING,  (char*)"CS_MATERIAL_VARNAME_AMBIENT", 0, 0, (void *)"mat ambient", 0},
(Continue reading)

jorrit | 8 Sep 2003 14:45
Picon

cel/scripts blcelc.py,1.22,1.23

Update of /cvsroot/cel/cel/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv11234/scripts

Modified Files:
	blcelc.py 
Log Message:
	- Jorrit fixed CEL for latest iPolygonMesh change in CS.

Index: blcelc.py
===================================================================
RCS file: /cvsroot/cel/cel/scripts/blcelc.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- blcelc.py	27 Aug 2003 09:10:00 -0000	1.22
+++ blcelc.py	8 Sep 2003 12:45:15 -0000	1.23
 <at>  <at>  -355,6 +355,8  <at>  <at> 
         try:
             if self.thisown: destroy(self)
         except: pass
+    def __getitem__(*args): return apply(_blcelc.iString___getitem__,args)
+    def __setitem__(*args): return apply(_blcelc.iString___setitem__,args)
     def __init__(self): raise RuntimeError, "No constructor defined"
     def __repr__(self):
         return "<C iString instance at %s>" % (self.this,)
 <at>  <at>  -427,6 +429,9  <at>  <at> 
     def __ne__(*args): return apply(_blcelc.csString___ne__,args)
     def Detach(*args): return apply(_blcelc.csString_Detach,args)
     def strlwr(*args): return apply(_blcelc.csString_strlwr,args)
+    def __getitem__(*args): return apply(_blcelc.csString___getitem__,args)
(Continue reading)

jorrit | 8 Sep 2003 14:45
Picon

cel/docs history.txt,1.237,1.238

Update of /cvsroot/cel/cel/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv11234/docs

Modified Files:
	history.txt 
Log Message:
	- Jorrit fixed CEL for latest iPolygonMesh change in CS.

Index: history.txt
===================================================================
RCS file: /cvsroot/cel/cel/docs/history.txt,v
retrieving revision 1.237
retrieving revision 1.238
diff -u -d -r1.237 -r1.238
--- history.txt	5 Sep 2003 12:15:43 -0000	1.237
+++ history.txt	8 Sep 2003 12:45:15 -0000	1.238
 <at>  <at>  -3,6 +3,8  <at>  <at> 

 The history order is reversed so that new features are at the top.

+8-Sep-2003
+	- Jorrit fixed CEL for latest iPolygonMesh change in CS.
 5-Sep-2003
 	- Jorrit fixed CEL for latest CS change (python plugin still broken).
 1-Sep-2003

jorrit | 8 Sep 2003 14:45
Picon

cel/plugins/propclass/move movefact.cpp,1.10,1.11

Update of /cvsroot/cel/cel/plugins/propclass/move
In directory sc8-pr-cvs1:/tmp/cvs-serv11234/plugins/propclass/move

Modified Files:
	movefact.cpp 
Log Message:
	- Jorrit fixed CEL for latest iPolygonMesh change in CS.

Index: movefact.cpp
===================================================================
RCS file: /cvsroot/cel/cel/plugins/propclass/move/movefact.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- movefact.cpp	5 Sep 2003 12:15:44 -0000	1.10
+++ movefact.cpp	8 Sep 2003 12:45:15 -0000	1.11
 <at>  <at>  -408,6 +408,8  <at>  <at> 
   virtual csVector3* GetVertices () { return vertices; }
   virtual int GetPolygonCount () { return 1; }
   virtual csMeshedPolygon* GetPolygons () { return polygons; }
+  virtual int GetTriangleCount () { return 1; }
+  virtual csTriangle* GetTriangles () { return (csTriangle*)vertex_indices; }
   virtual void Cleanup () { }
   virtual csFlags& GetFlags () { return flags; }
   virtual uint32 GetChangeNumber () const { return 0; }


Gmane