Project

General

Profile

Activity

From 2009-06-02 to 2009-06-15

2009-06-14

22:45 Revision e2be2056 (github): Further fix to the player message log (messages truncated one character short).
danij
22:17 Revision 23ecab92 (github): Fixed jDoom: "A_SkelMissile not taking vertical offset into account" (see here http://sourceforge.net/tracker/?func=detail&aid=2796729&group_id=74815&atid=542099).
danij
22:02 Revision ee3e0d8f (github): Fixed: "Position of particles spawned using the spherical method" (see here http://sourceforge.net/tracker/?func=detail&aid=2480726&group_id=74815&atid=542099).
Fixed: Inaccuracy in particle bounce vector calculation. danij
16:42 Revision b27f6279 (github): Fixed: "on screen text error" (see here http://sourceforge.net/tracker/?func=detail&aid=2794337&group_id=74815&atid=542099).
danij
16:13 Revision 0254b8f2 (github): Increment highest ordinal in doomsday.def
danij
16:11 Revision 9b9561da (github): Implemented dd_snprintf to standardize the differences between the MSVC and C99 implementations. The output buffer is always terminated. Return value is as per the MSVC specification: Number of characters written to the output buffer if lower than or equal to the size of the output buffer (minus the terminating NULL), else -1.
Replaced all instances of snprintf with dd_snprintf.
Exported both dd_vsnprintf and dd_snprintf via the public API.
A...
danij
15:30 Revision 1e92cf8c (github): Implemented dd_vsnprintf to standardize the differences between the MSVC and C99 implementations. The output buffer is always terminated. Return value is as per the MSVC specification: Number of characters written to the output buffer if lower than or equal to the size of the output buffer, else -1.
Replaced all instances of vsnprintf with dd_vsnprintf. danij
14:25 Revision 5d5344a2 (github): Use an appropriate release name for the trunk.
skyjake
14:17 Revision 63b8483e (github): Allow configuring CPU archs with CMake variables.
skyjake
14:05 Revision e961d6b2 (github): Replacing the current trunk with the 1.9.0-beta6 branch.
skyjake
13:43 Bug #691: on screen text error
Fixed in svn for 1.9.0-beta6.4 danij
13:04 Bug #691: on screen text error
> I have one comment about your commit... ...Since vsnprintf() returns the number of characters without the null, if ... danij
13:02 Bug #691: on screen text error
Oh, and you should be able to see the HUD log message last character truncation problem now on Windows as well. skyjake
13:00 Bug #691: on screen text error
An exported public implementation of dd_vsprintf() sounds fine.
I have one comment about your commit:
#ifdef WI...
skyjake
12:51 Bug #691: on screen text error
There is one final decision to make regarding these; do we want an engine-side, exported, public implementation of dd... danij
12:21 Bug #691: on screen text error
Ok, will do. danij
12:16 Bug #691: on screen text error
I think we should go the dd_vsnprintf() route because otherwise the return value thing is a bit ugly and error prone ... skyjake
12:14 Bug #691: on screen text error
I think that is going to be our best option. Either that or sort out our headers... danij
12:12 Bug #691: on screen text error
Well, one option is to make it something like dd_vsnprintf() and use find/replace on all the instances of where it's ... skyjake
12:08 Bug #691: on screen text error
That is what I've been trying to do but I'm hitting a brick wall because of the way our headers are setup (there are ... danij
12:04 Bug #691: on screen text error
How about that earlier suggestion about naming it win32_vsnprintf() and using a #define from vsnprintf to that? skyjake
11:51 Bug #691: on screen text error
That sounds OK to me though we will naturally have to ensure we don't use the return value or where we do, we account... danij
11:13 Bug #691: on screen text error
On the bright side, I don't think the return value is used anywhere in the engine. It is vastly more important that t... skyjake
11:05 Bug #691: on screen text error
Clearly I need another coffee. On re-reading the definitions again, yes I agree that the Windows varient is indeed be... danij
10:51 Bug #691: on screen text error
I disagree. The difference is that the Windows version will return -1 if truncation occurs. The C99 returns -1 only i... skyjake
10:46 Bug #691: on screen text error
Here is the definition for vsnprintf from MSDN:
"vsnprintf, _vsnprintf, and _vsnwprintf return the number of chara...
danij
10:42 Bug #691: on screen text error
Here's the definition from the C99 (draft) for vsnprintf(): [n is the size of the output buffer]
"The vsnprintf fu...
skyjake
10:34 Bug #691: on screen text error
Well, from that man page I interpret that the C99 standard defines the behavior like that: the return value is the nu... skyjake
10:19 Bug #691: on screen text error
Looking at the function header comments you've added for snprintf and vsnprintf in dd_share.h I would like to clarify... danij
02:23 Revision 1e2e79b0 (github): Fixed jDoom: Graphic patch for five character '5' drawn instead of that for a six '6' when using FONTB.
danij

2009-06-13

21:37 Bug #691: on screen text error
Yeah I can finish this (I expect I'll be commiting tomorrow as I don't feel much like coding right now). danij
10:18 Bug #691: on screen text error
I committed the functions in rev 6668. Danij, I trust you can finish the implementation on Windows?
However, if vs...
skyjake
08:55 Bug #691: on screen text error
Agreed. That sounds like the best course of action to me. danij
08:39 Bug #691: on screen text error
The problem seems to be that the (nonstandard) snprintf() function is defined a bit differently in Windows and Unix. ... skyjake
13:15 Revision e780e38a (github): Wrappers for (v)snprintf() on Windows.
Since I don't have a win32 build environment set up, I can't really implement this fully. Currently vsnprintf() just ... skyjake
13:11 Revision cb6403ae (github): Encoding issues.
skyjake
12:02 Revision 7a0633ca (github): Cleaned up s_cache.c
danij
08:16 Revision 256eb5a5 (github): Fixed a couple of comments.
danij
08:10 Revision 889d3e44 (github): Various interwoven fixes:
* Fixed several instances of lump cache abuse (writing back to cached lump memory).
* Fixed 64bit portability issues ...
danij
07:36 Revision 107a7276 (github): Fixed: Particle generators not being spawned even if the maximum number of active generators had not been reached.
danij

2009-06-12

07:47 Revision e41e76a2 (github): Further clean up of r_extres.c Also, don't prepend a redundant delimiter at the end of the class data path in initClassDataPaths.
danij
06:39 Revision 97104bcb (github): Allow using the resource locator to finger files in the base path without returning their name.
danij
06:31 Revision ffe7e2d8 (github): Reworked tryLocateResource to represent paths with ddstring rather than filename_t.
danij
06:03 Revision e5e9f100 (github): Cleaned up redundant, garbage code in R_PrependDataPath.
danij
05:54 Revision 44ecd379 (github): Optimize: Pruned redundant code in R_RegisterSkin; we now use the resource locator for searching a model's local directory and will also handle trying each supported graphic file format in said location.
danij
04:31 Revision f75854e9 (github): Fixed: SIGSEGV when attempting to draw surface reflections if the textures for which had not been located.
danij
03:38 Revision 062300af (github): Further improved M_FindFileExtension to not be fooled by paths with trailing directory seperators or file names that end with a period '.' character.
danij
02:45 Revision 8b3d1cf9 (github): Various changes to the resource locator:
* Fixed: Resource locator unable to find the shinemaps and associated masks when using the mod "jDRP Reflections v1.2... danij

2009-06-11

06:09 Bug #719 (Closed): Windowed resolutions wider than primary monitor do not work
If Doomsday is launched in windowed mode with a resolution larger than that of the primary monitor, the window shrink... leapo

2009-06-10

12:04 Bug #718 (Closed): Heretic: Chicken auto movement
When the player is turned into a chicken, Dday seems to lack the random movement that occurs when you are stationary.... vermil
10:14 Bug #717 (Closed): Heretic/HeXen: MF_Ripper Blood
In the original Heretic and HeXen (i.e powered the up Dragon Claw or Mages wand) individual blood splats caused by mi... vermil
09:23 Bug #491: Tiny blood splat editing bug
I'll also throw in that the Doom players punch and chainsaw actions are similarly affected by this behaviour, except ... vermil
00:11 Bug #674: Segmentation violation: semi-transparent wall texture (bars)
I'm sorry to say this problem persists in version 1.9.0-beta6.3 Jun 8 2009 (DGL). mittens
00:10 Bug #674: Segmentation violation: semi-transparent wall texture (bars)
Output from version 1.9.0-beta6.3 Jun 8 2009 (DGL).
*Attachments:*
* http://sourceforge.net/p/deng/bugs/_discuss/th...
mittens

2009-06-09

09:14 Revision 0fa4141e (github): Continued work on cleaning up the texture manager.
Redesigned management of color palettes for use with textures:
* DGL is no longer dependant upon a color palette (onl...
danij

2009-06-08

15:31 Bug #716: Compatible Dehacked file not loading
The problem here is the completely bizarre way in which DeHackED choose to represent Text in its patch format. Rather... danij
14:37 Bug #716 (Closed): Compatible Dehacked file not loading
I was doing some more testing of Doomsday beta 6.3, and decided to load Alien Vendetta, along with its dehacked file ... sonicdoommario
03:21 Revision 7ccccf2c (github): Fixed: Model loading issues.
danij
03:13 Revision 6e9388fa (github): Fixed serious issue in FileHash_Create which could potentially result in heap corruption.
danij
02:34 Revision 70c87f13 (github): Ensure paths passed to R_AddClassDataPath are formed correctly (don't add empty paths or paths containing nothing but a directory separator character to the path list).
danij
01:34 Feature #1496 (Closed): Aspect correct scaling of UI and HUD elements/interfaces
Game HUDs stretch to the same aspect ratio as the current resolution, resulting in horizontally stretched HUD graphic... leapo
01:31 Feature #1495 (Closed): FOV cannot be set higher than 179
The FOV in Doomsday cannot be set higher than 179, making a proper FOV impossible to obtain on very wide aspect ratio... leapo

2009-06-07

22:52 Revision 1fad2991 (github): Copy skyjake's fix for the missing UI textures issue to the WinAPI window manager.
danij
20:14 Revision 55760c90 (github): Explicitly unload and reload UI textures when changing the video mode. Seems to fix the problem of the disappearing UI textures (OS X, jHeretic).
skyjake
19:36 Revision 8eaa5506 (github): OpenGL must be accessed only in the main thread. A crash was caused by OpenGL textures being deleted in the busy worker thread.
skyjake
14:09 Revision 0dd1cc78 (github): Fixed model path registration. It's not a particularly good idea to shuffle around function parameters, especially when they end up in the wrong order...
Restored original order of parameters. skyjake
14:07 Revision b38351e6 (github): Slight visual adjustment for busy indicator. The dashed ring is now in the middle of the two other rings.
skyjake
14:07 Revision 23166dd9 (github): Fixed Unix build.
There was a couple of strncpy() and other calls missing the len argument. Revised Dir_ExpandHome() to use ddstring. skyjake

2009-06-05

22:30 Revision 7affb534 (github): Fixed (jHexen): "HeXen: Melee weapons not drawing blood" (see here http://sourceforge.net/tracker/?func=detail&aid=2801021&group_id=74815&atid=542099).
danij
21:56 Revision 4ccad05b (github): Fixed (jHexen): HeXen: Telefog has no Z offset (see here http://sourceforge.net/tracker/?func=detail&aid=2801002&group_id=74815&atid=542099).
danij
21:45 Revision f0c15d86 (github): Fixed (jHeretic): "Heretic: No teleporter sparkles" (see here http://sourceforge.net/tracker/?func=detail&aid=2800843&group_id=74815&atid=542099).
danij
19:58 Revision a8142260 (github): Fixed (All games): "Load menu skull cursor initial position" (see here http://sourceforge.net/tracker/?func=detail&aid=2801229&group_id=74815&atid=542099).
danij
19:18 Revision a94fb65a (github): Fixed (jHeretic): "Heretic: Incorrect menu and door sounds" (see here http://sourceforge.net/tracker/?func=detail&aid=2800844&group_id=74815&atid=542099).
danij
19:16 Revision 1d60402b (github): Fixed (jHeretic): "Heretic: Incorrect menu and door sounds" (see here http://sourceforge.net/tracker/?func=detail&aid=2800844&group_id=74815&atid=542099).
danij
17:53 Revision 3710357a (github): Fixed (jHexen): "HeXen: Centaur two shields" (see here http://sourceforge.net/tracker/?func=detail&aid=2800847&group_id=74815&atid=542099).
danij
16:54 Revision 30105d8c (github): Various menu enhancements/fixes:
* Fixed jHexen: "HeXen: Incorrect Menu sounds" (see here http://sourceforge.net/tracker/?func=detail&aid=2801269&grou... danij
14:57 Bug #710: [Heretic/Hexen] Savegame menu boxes offset too far left
If you are referring to the position of the menu cursor then yes, it is overlapping the save/load file box. This will... danij
12:16 Bug #710: [Heretic/Hexen] Savegame menu boxes offset too far left
They are centered horizontally, to the middle of the screen. danij
03:47 Revision 100e7405 (github): Fixed: "HeXen: Cleric Poison clouds move" (see here http://sourceforge.net/tracker/?func=detail&aid=2800845&group_id=74815&atid=542099).
danij
03:41 Revision 4d6c65bd (github): Fixed jHexen: Quicksave confirmation disabled by default (should be enabled) (see here http://sourceforge.net/tracker/?func=detail&aid=2801027&group_id=74815&atid=542099).
danij
03:35 Revision 8b76d4d4 (github): Fixed: "Bad guys slow to wake up" (see here http://sourceforge.net/tracker/?func=detail&aid=2801233&group_id=74815&atid=542099).
danij
02:47 Revision 1a6db4b9 (github): Big ol' character array clean up.
* Fixed: Removed countless character array size assumptions and revised our public API to suite.
* Fixed: Numerous fi...
danij
02:02 Revision 4f85aa4d (github): Fixed: Heap corruption due to a (single byte) buffer overflow in the console history buffer. Minor optimization tweaks resulting in slightly more efficient writes. Clean up.
danij

2009-06-04

21:43 Bug #715 (Closed): HeXen: Corrupted save games
In Beta6.3, saving a game on the Guardian of Ice while either of the ice moving scripts in the Steel Key area are act... vermil
17:41 Bug #714 (Closed): HeXen: Incorrect Menu sounds
In HeXen in Beta6.3, all the menu sounds are incorrect, though many are simply the wrong way around rather than compl... vermil
16:42 Revision ecdf7e38 (github): Fixed jHeretic: Attempting to cache non-existent ammo icon patches due to a wayward for{} construct.
danij
16:19 Bug #713 (Closed): Bad guys slow to wake up
In Beta6.3 a fix was made to the bad guy sight code to stop the very fair occurrence of one activating when it couldn... vermil
16:10 Bug #712 (Closed): Load menu skull cursor initial position
If you haven't ever saved a game and open the load menu, the skull cursor is placed below the bottom save slot instea... vermil
14:03 Bug #711 (Closed): Heretic: Intermission counter offsets
The slashes on the intermission screen need to be shifted about 10 unit's leftward to avoid overlapping the numbers t... vermil
11:09 Bug #710 (Closed): [Heretic/Hexen] Savegame menu boxes offset too far left
Nuff said.
*Labels:* Graphics
vermil
11:04 Bug #709 (Closed): HeXen: No quick save confirmation
In Beta6.3 HeXen doesn't have a confirmation when the original game and earlier versions of Dday do.
*Labels:* jHexen
vermil
10:52 Bug #708 (Closed): HeXen: Melee weapons not drawing blood
In Beta6.3, no melee HeXen weapon occasionally draws blood when you land a successful hit.
In the original game, y...
vermil
10:31 Bug #664: Heretic Maulotaur attack behaviour incorrect
Following on from this. Since the destruction of the Maulotaurs floor fire became done by code rather than by an inte... vermil
10:22 Bug #707 (Closed): HeXen: Telefog has no Z offset
The telefog in Hexen appears on the floor when it should have a vertical offset of about 32 unit's.
*Labels:* jHexen
vermil
02:43 Bug #706 (Closed): Heretic: Linetype 100
It seems that using Linetype 100 which is a walk over trigger that opens tagged sectors like a turbo door and then cl... vermil
02:29 Bug #705 (Closed): Heretic/HeXen: Minor inventory glitches
Emptying your supply of any item in HeXen leaves a blank spot in the left most panel in your inventory when you next ... vermil
02:22 Bug #704 (Closed): HeXen: Centaur two shields
Gibbed Centaur currently spawn two shields instead of a sword and shield. Probably just a typo.
*Labels:* jHexen
vermil
02:21 Bug #703 (Closed): HeXen: Maulotaur charge attack
When a Maulotaur finishes it's charge attack in HeXen it re-fades in sans smoke cloud, as if it has just been summone... vermil
02:19 Bug #702 (Closed): HeXen: Cleric Poison clouds move
Cleric Poison clouds move eastward at a fairly fast speed when they are spawned. They should remain completely statio... vermil
02:17 Bug #701 (Closed): Heretic: Incorrect menu and door sounds
Heretic's menu's should be playing "dorcls" when you select something or close the main menu. Currently they play "ch... vermil
02:13 Bug #700 (Closed): Heretic: No teleporter sparkles
The summary says all. The red or blue sparkles mobjs that are placed on every teleporter don't seem to be working. vermil

2009-06-03

23:39 Revision 58f25fca (github): Changed: Allow any material on any world surface when loading DOOM/Hexen format maps.
danij
23:36 Revision 10b20eff (github): Clean up.
danij
23:34 Revision 1c7ea50f (github): Fixed: SIGSEGV when attempting to create states from incomplete definitions or which reference unknown sprite frames.
danij
23:30 Revision 55627471 (github): Fixed: Server-side buffer overflow when trying to transmit a "huge" InFine script to clients.
Improved: Added some rudimentary mod authoring, debug aids to InFine scripts. If a referenced graphic is missing, it ... danij

2009-06-02

21:41 Bug #699 (Closed): Call it noclip without cheat
if you want to know what i mean, watch my youtube video
http://www.youtube.com/watch?v=BToXYsQpsVw
it's annoyin...
omegacoolsterdx
 

Also available in: Atom