Commit Log (Page 1 of 255)

back to main page

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>

Summary Period: 2003-07-11 to 2003-07-05 (Commits 12695-12744 of 12744)

cbayle 2003-07-11 20:29

Remove extra @ that make fail install

1 lines of code changed in:

res2002 2003-07-11 14:58

Fixed a bug in the GetLongPathName() replacement for Win9x/NT:
an array was allocated on the stack at runtime, but was almost
immediately overwritten, causing the function to not work at all.
The issue was unnoticed as the behaviour didn't occur with MSVC.

10 lines of code changed in:

sunshine 2003-07-11 09:47

Project-wide spelling corrections:

conveniance --> convenience
conveniant --> convenient

27 lines of code changed in:

sunshine 2003-07-11 09:28

Spelling correction: conveniance -> convenience

18 lines of code changed in:

jorrit 2003-07-11 08:51

Renamed csPolygonMeshCube -> csPolygonMeshBox.

9 lines of code changed in:

jorrit 2003-07-11 07:41

- Jorrit added a conveniance csPolygonMeshCube class which represents
an easy way to make a cube collider.
- In addition Jorrit did the following:
- Simplified walktest a bit by using this new csPolygonMeshCube
class. So it no longer has to make dummy cube things for the
actor.
- Also use csPolygonMeshCube in csparser instead of the custom
cube mesh that was implemented there.

133 lines of code changed in:

reed 2003-07-10 22:29

>Fixed cxXWindow::SetTitle()
>

1 lines of code changed in:

res2002 2003-07-10 21:23

Fixed a memory leak in csPluginPaths::AddOnce().
Fixed a memory leak when using csStringHashIterator - upon
construction a new csGlobalHashIterator was created, but not deleted
on destruction (more exactly, csStringHashIterator lacked a
destructor.)

12 lines of code changed in:

reed 2003-07-10 19:42

Fixed cxXWindow::SetTitle()

2 lines of code changed in:

sunshine 2003-07-10 17:00

Eric Sunshine fixed the default plugin install macro in install.mak so
that it only installs the .csplugin file if present. This is a
convenience for platforms which bundle the meta-information directly into
the plugin module rather than maintaining it in a separate .csplugin file.
It allows such platforms to utilize the default macro rather than creating
a custom one. This also fixes the "install" target for Windows, since
meta-information is bundled into the .dll on Windows. Finally, as a
side-effect, it fixes the problem where installation of the Python plugin
_cspace.so (.dll) caused the "install" target to fail because no .csplugin
file was present (lack of .csplugin is correct since this is a Python
plugin, not a CS plugin). This is not a "clean" solution to the
_cspace.so problem, and it we should devise a better one, but it works
well enough for the interim.

24 lines of code changed in:

sunshine 2003-07-10 14:07

Eric Sunshine fixed cssys/win32/csosdefs.h so that CS_WIN32_ARGC and
CS_WIN32_ARGV are defined always (previously they were not defined for
Cygwin). This fixes problem on Cygwin where win32.cpp was utilizing these
macros.

8 lines of code changed in:

jorrit 2003-07-10 12:07

- Jorrit fixed two wrong message id's in the csparser. It was
complaining about 'addon' while it had nothing to do with that.

4 lines of code changed in:

jorrit 2003-07-10 09:25

- Jorrit added a test in csColliderWrapper::Collide() so that
csColliderWrapper can be used in cases where there is no
collider. This means one can use csColliderWrapper to remember
the fact that there is no collider.

10 lines of code changed in:

sunshine 2003-07-10 09:15

Eric Sunshine augmented the -fvtable-thunks check in configure.ac so that
it is also performed on Cygwin since this flag is needed with the 2.x
compiler on Cygwin. (Previously, it was performed only for Mingw).

19 lines of code changed in:

jorrit 2003-07-10 08:46

pysimp is for the python plugin. NOT for the ode plugin. Updated
comment accordingly.

1 lines of code changed in:

sunshine 2003-07-10 08:45

Fixed incorrect comment.

3 lines of code changed in:

cbayle 2003-07-09 23:12

Various changes for debian packaging

55 lines of code changed in:

jorrit 2003-07-09 09:07

- Jorrit fixed PlaceMesh() so that it now uses
engine->GetNearbyObjects(). That makes it a lot more efficient
then the old implementation which simply traversed all objects
in the current sector.
- Jorrit added iMeshWrapperIterator to iterate over meshes.
- Jorrit added three new functions to iEngine: GetNearbyMeshes()
and two versions of GetVisibleMeshes(). These functions complement
the already existing GetNearbyObjects() and GetVisibleObjects().
Instead of returning an iObjectIterator they return an
iMeshWrapperIterator. This avoids the need to do SCF_QUERY_INTERFACE
to get the iMeshWrapper in the code using the iterator so this
can be a significant optimization.
The Get...Objects() functions will not be removed because in the
future they will also return lights.
Side note: GetVisibleObjects() and GetVisibleMeshes() are not
implemented yet.
- Jorrit changed PlaceMesh() so it uses GetNearbyMeshes() now.
- Jorrit changed Walktest collision detection code so it uses
GetNearbyMeshes().

286 lines of code changed in:

res2002 2003-07-08 13:47

Fixed a usage of GetLongPath() in instpath.cpp. Replaced it with
a call to csExpandPath().

14 lines of code changed in:

res2002 2003-07-08 13:26

Worked around the 'double keypad key event' problem on Win32.
Upon reception of a 'keydown' message for such keys, CS enqueues a
key event; however, Windows generates another message containing the
keycode translated to a character.
Attempted to update & fix cs-config on win32.

24 lines of code changed in:

sunshine 2003-07-08 11:53

Minor correction to last revision.

1 lines of code changed in:

sunshine 2003-07-08 11:46

Eric Sunshine reverted the reversion of glrender.mak and applied a small
patch so that it can build files from the renderer/common directory. Also
patched gl_render3d.mak.

34 lines of code changed in:

jorrit 2003-07-08 11:41

- Jorrit fixed win32.cpp for cygwin so that it uses the correct
argc and argv (i.e. with two underscores instead of one).

5 lines of code changed in:

jorrit 2003-07-08 08:23

Fix to correctly annotated rejected guestbook entries.

6 lines of code changed in:

jorrit 2003-07-08 08:20

Removed weird char in name of someone.

1 lines of code changed in:

jorrit 2003-07-08 08:20

- Jorrit reverted the change to glrender.mak that was made yesterday.
This change breaks compilation of the OpenGL plugin. With revision
1.52 of glrender.mak the following errors occur:
gcc: out/WIN32/X86/debug/plugins/video/renderer/opengl/txtmgr.o:
No such file or directory
gcc: out/WIN32/X86/debug/plugins/video/renderer/opengl/dtmesh.o:
No such file or directory
...
Jorrit didn't test new renderer makefile where a similar change
was made.

27 lines of code changed in:

matzebraun 2003-07-07 15:42

added note about python to jamtodo

3 lines of code changed in:

sunshine 2003-07-07 14:04

Fixed problem introduced in last revision. Backslashes in metafile path
were causing Perl regex engine to throw a fit (it was trying to interpret
them as special tokens, rather than simple literals).

4 lines of code changed in:

sunshine 2003-07-07 13:43

Eric Sunshine fixed bug in msvcgen.pl where the prefixes specified via
--strip-paths were not being applied to the value of the %metafile%
pseudo-variable.

24 lines of code changed in:

res2002 2003-07-07 13:33

Fixed a copy'n'paste bug in the rain mesh object, pointed out
by Jochen M�nch <powermonk@users.sourceforge.net>

4 lines of code changed in:

sunshine 2003-07-07 10:29

Eric Sunshine upgraded glrender.mak and gl_render3d.mak so that they store
their build files in distinct subdirectories of $(OUT). This works around
conflicts caused by both modules having source files of the same name.

49 lines of code changed in:

sunshine 2003-07-07 09:13

Eric Sunshine removed some errant DecRef() invocations from the "pixmap"
how-to which were pointed out by JacobGostylo
<jgostylo@users.sourceforge.net>.

73 lines of code changed in:

tetron 2003-07-07 09:00

csPolygon3D::GetObjectPlane() is correctly updated now.

5 lines of code changed in:

tetron 2003-07-07 08:57

Fix so that the object plane (polygon normal) is updated if necessary
when csPolygon::GetObjectPlane() is called.

14 lines of code changed in:

tetron 2003-07-07 08:54

update for iDataBuffer change

3 lines of code changed in:

tetron 2003-07-07 01:13

Small change to constructor to allow specifying to NOT delete[]
the internal data buffer. Won't affect the behavior of any existing code.

15 lines of code changed in:

sunshine 2003-07-06 10:03

Automated Visual-C++ SLN and VCPROJ project file repair.

2 lines of code changed in:

sunshine 2003-07-06 10:03

Automated Visual-C++ DSW and DSP project file repair.

0 lines of code changed in:

tetron 2003-07-06 08:57

clarified documentation for Delete() method.

6 lines of code changed in:

matzebraun 2003-07-06 02:03

fixed several wrong SCF usages and a memory leak in the texture manager

24 lines of code changed in:

matzebraun 2003-07-06 01:34

fixed some wrong SCF usage and converted scfiEventHandler to csRef

8 lines of code changed in:

matzebraun 2003-07-06 01:04

removed an unneccesary if around a delete

1 lines of code changed in:

matzebraun 2003-07-06 00:56

fixed 2 more wrong casts and some warnings

8 lines of code changed in:

matzebraun 2003-07-06 00:53

another gcc warning fixed

1 lines of code changed in:

matzebraun 2003-07-06 00:51

fixed several gcc warnings

14 lines of code changed in:

matzebraun 2003-07-06 00:44

fixed some warnings and wrong casts

5 lines of code changed in:

matzebraun 2003-07-06 00:34

fixed mismatching new[]/delete

8 lines of code changed in:

matzebraun 2003-07-05 22:53

genmesh needs to be linked with cstool

2 lines of code changed in:

matzebraun 2003-07-05 21:34

added missing #include

1 lines of code changed in:

matzebraun 2003-07-05 21:08

Link CG plugin with CG libs, unfortunately we have no configure test for this lib yet

5 lines of code changed in:

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 Next >>


Generated by StatCvs v0.2-dev