Browse logs with clarity: filter by type/year, search text, and inspect parsed commit details.

2100Total Files
2088SVN Logs
12Git Changelogs
301Filtered Results

Detail

2011.12.21.Log0395.txt

📄SVN 📅2011-12-21 💾3,7 KB 11 Parsed entries CON BUILD FIX

Revision r2194

Fix out-of-bounds write when passing a map filename to Mapster32.

Revision r2193

Lunatic: actor.  (Needs SAMESIZE_ACTOR_T, which is not yet enabled)

Revision r2192

misc. beautifying some game code...

Revision r2191

some more clearbuf -> memset in gamedef.c plus add a forgotten keystatus
reset in the editor

Revision r2190

savegame.c: minor cleanup and crash prevention in doloadplayer2
if loading directly from file to state.

Revision r2189

CON parser cleanup: In C_Compile, initially clear three arrays with
Bmemset(..., 0, sizeof(...)) instead of clearbuf(..., MAX..., 0),
because the latter would clear only half of the data on 64-bit platforms.

Revision r2188

In EDuke32 loading/saving menus, when finding old version savegame, display
some information about it instead of simply omitting it.
Internally, struct savegame --> struct savegame_ for easier grepping.

Revision r2187

actor t_data commoning: forgot do add a #define in duke3d.h

Revision r2186

animvpx loop: do at least on input device poll each frame (i.e. even if we're
lagging) to be able to cancel the movie in any case.

Revision r2185

Preliminary commoning of actor[].t_data[10] to an array of int32's on both
32- and 64-bit platforms. Also, make struct type actor_t also have a common
size of 128 bytes. New code currently disabled and #ifdef'd for comparison.

This requires certain t_data[] entries ([1]: move ptr, [4]: action ptr and
[5]: ai ptr with actors) to be converted to script offsets instead of pointers,
breaking savegame and net packet compatibility (we could in theory try hard not
to, but it would be too much trouble).

Revision r2184

Add new actor[].flags flag 2048 (SPRITE_NOCLIP), for 'spriteflags' CON usage.

Actors are always moved such that _they_ clip against blocking sprites, even
if their blocking bit is clear. Setting the new bit make them not clip against
anything.  The promary use of this is for decorative moving sprites that are
spawned in masses, such as rain or snow.
------------------------------------------------------------------------
Raw Content
------------------------------------------------------------------------
r2195 | helixhorned | 2011-12-21 10:43:39 -0800 (Wed, 21 Dec 2011) | 1 line

minor cosmetic tweaks in sector.[ch] and a off-by-one limit correction there
------------------------------------------------------------------------
r2194 | helixhorned | 2011-12-21 10:43:24 -0800 (Wed, 21 Dec 2011) | 1 line

Fix out-of-bounds write when passing a map filename to Mapster32.
------------------------------------------------------------------------
r2193 | helixhorned | 2011-12-21 10:43:08 -0800 (Wed, 21 Dec 2011) | 1 line

Lunatic: actor.  (Needs SAMESIZE_ACTOR_T, which is not yet enabled)
------------------------------------------------------------------------
r2192 | helixhorned | 2011-12-21 10:42:49 -0800 (Wed, 21 Dec 2011) | 1 line

misc. beautifying some game code...
------------------------------------------------------------------------
r2191 | helixhorned | 2011-12-21 10:42:32 -0800 (Wed, 21 Dec 2011) | 2 lines

some more clearbuf -> memset in gamedef.c plus add a forgotten keystatus
reset in the editor
------------------------------------------------------------------------
r2190 | helixhorned | 2011-12-21 10:42:12 -0800 (Wed, 21 Dec 2011) | 2 lines

savegame.c: minor cleanup and crash prevention in doloadplayer2
if loading directly from file to state.
------------------------------------------------------------------------
r2189 | helixhorned | 2011-12-21 10:41:55 -0800 (Wed, 21 Dec 2011) | 3 lines

CON parser cleanup: In C_Compile, initially clear three arrays with
Bmemset(..., 0, sizeof(...)) instead of clearbuf(..., MAX..., 0),
because the latter would clear only half of the data on 64-bit platforms.
------------------------------------------------------------------------
r2188 | helixhorned | 2011-12-21 10:41:38 -0800 (Wed, 21 Dec 2011) | 3 lines

In EDuke32 loading/saving menus, when finding old version savegame, display
some information about it instead of simply omitting it.
Internally, struct savegame --> struct savegame_ for easier grepping.
------------------------------------------------------------------------
r2187 | helixhorned | 2011-12-21 10:41:17 -0800 (Wed, 21 Dec 2011) | 1 line

actor t_data commoning: forgot do add a #define in duke3d.h
------------------------------------------------------------------------
r2186 | helixhorned | 2011-12-21 10:41:03 -0800 (Wed, 21 Dec 2011) | 2 lines

animvpx loop: do at least on input device poll each frame (i.e. even if we're
lagging) to be able to cancel the movie in any case.
------------------------------------------------------------------------
r2185 | helixhorned | 2011-12-21 10:40:47 -0800 (Wed, 21 Dec 2011) | 8 lines

Preliminary commoning of actor[].t_data[10] to an array of int32's on both
32- and 64-bit platforms. Also, make struct type actor_t also have a common
size of 128 bytes. New code currently disabled and #ifdef'd for comparison.

This requires certain t_data[] entries ([1]: move ptr, [4]: action ptr and
[5]: ai ptr with actors) to be converted to script offsets instead of pointers,
breaking savegame and net packet compatibility (we could in theory try hard not
to, but it would be too much trouble).
------------------------------------------------------------------------
r2184 | helixhorned | 2011-12-17 10:51:50 -0800 (Sat, 17 Dec 2011) | 6 lines

Add new actor[].flags flag 2048 (SPRITE_NOCLIP), for 'spriteflags' CON usage.

Actors are always moved such that _they_ clip against blocking sprites, even
if their blocking bit is clear. Setting the new bit make them not clip against
anything.  The promary use of this is for decorative moving sprites that are
spawned in masses, such as rain or snow.
------------------------------------------------------------------------