Activity
From 2008-10-12 to 2008-10-25
2008-10-25
- 22:37 Revision c514873c (github): Fixed All Games: Due to the different approach taken by Doomsday and DOOM.exe in defining texture/flat animations and the numerous PWADS which exist that exploit DOOM.exe behaviour; it is not possible to use Group definitions to externalize the IWAD animations. All default Group definitions have been removed and instead the default animations are registered by each game during startup (and engine reset) in P_InitPicAnims. This fixes the long-standing problem of PWADS which abused the DOOM.exe behaviour not working correctly when played with jDoom/jHeretic.
- Note: This fix depends upon an assumption that will need to be resolved; Materials for textures defined in TEXTURE(1)...
2008-10-24
- 19:24 Revision fa34c3fe (github): Fixed All Games: A kludge in P_MobjMoveXY prevented missiles from exploding against skyhack ceilings but they would still explode if they crossed a skyhack floor.
- Handful of minor optimizations in p_map.c to avoid unnecessary DMU calls.
Clean up. - 15:59 Revision 45b13d12 (github): Fixed compilation error with jDoom64.
- 15:55 Revision 8d9e1164 (github): Fixed All Games: PTR_ShootTraverse would check for sky hack ceilings but not sky hack floors when looking to suppress hits.
- 15:52 Revision bbbf010d (github): Fixed problem in calcSSecReverb which always considered flat #0 as an unknown material.
- 15:51 Revision cc215191 (github): Fixed fakeradio bug which failed to determine that a side should be considered fully open if the neighbor linedef is twosided with a middle texture that fills the gap between floor and ceiling.
- 15:48 Revision 235ada09 (github): Fixed bug in Rend_DoesMidTextureFillGap which used the surface material X offset in place of the Y offset.
- Fixed problem of wall surfaces using flat #0 always being marked as potentially visible in Rend_MarkSegSectionsPVisible.
- 15:43 Revision b1654ef2 (github): Fixed problem of surfaces textured with flat #0 being misinterpreted as glowing surfaces (and thus fakeradio was disabled and other glitches).
- 15:41 Revision e268e422 (github): Fixed problem of glowing wall surfaces not working.
- 15:39 Revision b116dca9 (github): Fixed problem of rockets exploding and bullet puffs being spawned when a sky surface is hit. Caused by Doomsday returning of the material ofTypeID rather than the material num when querying DD_SKYMASKMATERIAL_NUM.
- 14:00 Revision d5c0a4de (github): Fixed problem of the first flat being given the MATF_NO_DRAW flag. This flag was implemented to support the DOOM.exe bug where the first texture is never drawn. However the same problem is not present with flats.
- 04:53 Revision df9598f8 (github): Fixed jHexen problem of frozen things not dying either by timeout or when hit with a non-icedamage weapon.
- 04:51 Revision 15f465ec (github): Fixed jHexen: HUD icons like the spinning Wings of Wrath are offset to the right to avoid overlaying the mana icons in the fullscreen HUD. However they were also offset when the view mode was statusbar-overlay.
- 03:10 Revision 61f4f1ca (github): Renamed jHexen's SB_ChangePlayerClass to P_PlayerChangeClass and moved to plugins/common/src/p_player.c
- Removed jHeretic's SB_ChangePlayerClass as it is currently unused.
Changed jHexen's version cheat to simply call the ... - 00:17 Revision adcc9cdb (github): Fixed jHexen: Numerous problems with weapon piece display on the statusbar when semi-translucent.
- Fixed jHexen: In deathmatch, the statusbar Kills label patch was not drawn if the statusbar was NOT semi-translucent....
- 00:09 Revision 33a8e42a (github): Fixed jHeretic: When the statusbar is completely transparent the health marker chain would disappear.
2008-10-23
- 20:52 Revision 069ebaa4 (github): Fixed problems with the incorrect lifegem being use with the jHexen statusbar when the player class was not fighter.
- 00:30 Revision 43129f70 (github): Changed jHeretic: Revised method for drawing the chain on the jHeretic statusbar; now drawn in two sections when needed (left and right of the gem) so as to maintain a uniform alpha value for the whole chain.
- Fixed jHeretic: The colour of the glowing gem on the statusbar did not change to match the player's colour (as the ge...
2008-10-22
- 18:52 Revision 2b9b91e2 (github): Fixed bug #1673770: Problems with bouncing mobjs (flag2 MF2_FLOORBOUNCE) their Z momentum was being reduced to zero on first impact with the floor. In jHeretic this caused the firemace projectiles to explode instantly.
- Also fixed a problem in jHeretic's P_SpawnMissile which wasn't determining the angle correctly if the source of the s...
- 07:08 Revision e0e2ef3d (github): Fixed jHexen: The statusbar graphic features a copy of the fighter's chain which was visible behind the animated chain. Fixed by way of a kludge that cuts out that section of the statusbar and draws a near-black solid rectangle to fill the hole.
- Fixed jHexen: The colour of the glowing gem on the statusbar did not change to match the player's colour (as the gem ...
2008-10-20
- 17:00 Revision 805c1271 (github): jHexen: All patches used by both the statusbar and fullscreen HUD are now precached at startup and during an engine reset in ST_loadGraphics.
- 16:54 Revision 3fb100cf (github): jHexen: Fixed bug in the inventory which led to the wrong artifact use function being called if P_InventoryUse was passed a artitype_e id greater than AFT_SUPERHEALTH.
- 16:50 Revision 64b3d8ef (github): All games: Added the following default control bindings
- * key-e = fly up
* key-q = fly down
* key-f = fall down
jHexen: Changed the default bindings for inventory left/right... - 16:44 Revision d09937be (github): Changed dpatch_t->lump to lumpnum_t (was int).
2008-10-19
- 19:24 Revision d7922977 (github): This seems to fix the view bobbing issues. The interpolation was not done between consecutive sharp views, leading to stuttering back and forth (i.e., up and down).
- Pro Tip: This kind of issues are easiest to spot and debug with a low value for "settics" (in other words, in slow mo...
- 19:22 Revision 706bcc9e (github): IDE settings.
- 16:37 Revision 2bd44e55 (github): Update.
- 16:37 Revision a94e1668 (github): Fixed memory zone corruption due to out-of-bounds access of content->buffer. This occurred when texture content was being uploaded without deferring. GL_UploadTextureContent() assumed that content->buffer was modifiable, which is only the case when the content has been deferred and copied to a separate buffer. Non-deferred content is still in the zone.
2008-10-18
- 20:39 Revision 48580fe6 (github): jHexen-changed; ANIMDEFS and SNDINFO lumps are no longer required.
- jHexen: SC_OpenLump now takes a lumpnum_t rather than lump name string to force the caller to implement the required ...
- 20:26 Revision 4038f61d (github): Fixed a couple of messages output during map load which reported incorrect linedef and sector indices (off by one errors). Updated file author details.
- 20:26 Revision 423b3ded (github): Resolved OS X Intel compilation issues.
- 20:04 Revision ad45883f (github): No need to resolve an xlinedef in XL_Thinker if this is a client (shouldn't reach here anyway).
- 20:04 Revision f4325a74 (github): Handle NULL sector ptr in XS_Gravity
- 19:13 Revision 63c91a95 (github): Resolving OS X compilation issues.
- 19:10 Revision b7003dca (github): Switched to CMake 2.6 to resolve OS X compilation issues.
- 04:55 Revision 63aabacd (github): Fixed bug in the DED reader which failed to read the iparams of XG Line Type definitions correctly due to the flag prefix name strings (part of the game-side xgClassLinks array) being defined as zero-length strings rather than NULL ptrs.
- 04:46 Revision edc0505e (github): Swapped the dest and src paramaters of P_CopyLine and P_CopySector to match convention.
- 04:41 Revision 186b7475 (github): Protected the pointer based, public DMU interface from passed NULL pointers.
- 03:21 Revision 120510ae (github): Fixed bug #1832045; If a map number is not set in an XG end_level line type the exit would take the player to the first map (instead of the next as defined by the map progression).
- 02:17 Revision eb9c6607 (github): Fixed problem in the vs build options. Rather than generate a manifest every time, use the one in engine/win32/res
- 00:00 Revision d790a438 (github): Moved the (unused) overlapping linedef detection algorithm out of the bsp generation and into edit_map.c Moved the remnants of bsp_analyze.c into more appropriate locations. Deleted the now empty bsp_analyze.c/h
2008-10-17
- 19:29 Revision ecb6f9a2 (github): Continued work on the map loader and BSP generation:
- * Revised the algorithm used to detect "one-way windows" to remove use of the glbsp concept of edgetips and instead u...
2008-10-16
2008-10-15
- 19:32 Revision 20a0413c (github): Fixed a handful of rendering glitches that would occur with segs on twosided linedefs when the back sector floor height was higher than the back sector ceiling height. In this instance we now lower the high floor to the ceiling.
- 19:27 Revision aa9bea6c (github): Now that we arn't culling sectors with no linedefs during map load, protect P_Iterate from trying to walk the sector object lists as they might not be present.
- 03:45 Revision 89be26da (github): Pruning of redundant map data objects cannot yet be done, due to the problem of their original indices being used as references to them in several ways, which have not been updated accordingly. As this is quite a lot of work I've simply disabled the pruning for now.
- 03:40 Revision 84ee19f3 (github): Fixed blue locked doors not showing in the automap in jDoom, jDoom64 and WolfTC.
Also available in: Atom