Activity
From 2012-09-18 to 2012-10-01
2012-10-01
- 09:27 Revision 06641e78 (github): Refactor: Switched lumpdirectory.c to C++
- 09:25 Revision b0d52915 (github): Refactor: Post dd_wad C++ fixups
- 09:10 Revision 986686fc (github): Refactor: Switched dd_wad.c to C++
- 08:31 Revision 4c0d3368 (github): Cleanup
- 07:39 Revision 1de07f36 (github): Refactor: Use a DFile in AudioDriver musicPlayLump()
- Instead of reading directly from the lump using F_ReadLumpSection()
when buffering the song, instead open a new DFile... - 07:07 Revision 0f59ae65 (github): Refactor: Reimplemented DFile as a C++ class
- Todo: Cleanup
Todo: Reimplement the used DFile pool. - 03:01 Revision fb7256bd (github): Refactor: Began work on turning DFile into a C++ class
- 02:00 Revision 5bf7f32f (github): Refactor: Post dfile C++ fixups
- 01:49 Revision df2f8ec1 (github): Refactor: Switched dfile.c to C++
- 01:33 Revision cf3c7e15 (github): Cleanup
2012-09-30
- 22:14 Revision fd8c2de2 (github): Refactor: Moved the Games collection into new source files
- 19:48 Revision 17b366dd (github): Cleanup: Cleaned up dd_main.c somewhat
- 19:02 Revision bdcfedc1 (github): Bumped version to 1.9.10 Unstable
- 11:58 Revision 70113dba (github): Refactor: Reimplemented FileList with QList<DFile*>
- Same usage semantics and pretty similar internals but QList wins on
performance. Into the bin goes the old FileList. - 08:39 Revision a9a3143c (github): Refactor: Moved some DFileBuilder forward declarations to dfilebuilder.h
- 07:21 Revision 3e73dce8 (github): Refactor: Switched fs_main.c to C++
2012-09-29
2012-09-28
- 08:55 Revision 9eb6d61b (github): Fixed|libcommon: Removed leftover merge artefacts in p_switch.c
- 08:19 Revision be686b8a (github): Cleanup
- 08:03 Revision 1791793e (github): Refactor: LumpFile, WadFile and ZipFile can now inherit from AbstractFile
- 07:12 Revision 4a8c27a1 (github): Refactor: Reimplemented AbstractFile as a C++ class
- 05:29 Revision 0d3eff6b (github): Refactor: Switched abstractfile.c to C++
- 05:24 Revision b926b07c (github): Refactor: Reimplemented LumpFile in C++
- 05:03 Revision 86f59c97 (github): Refactor: Switched lumpfile.c to C++
- 03:52 Revision 8541764f (github): Fixed|libcommon: Failed reading SWITCHES lumps at directory index #0
- A non-issue because a SWITCHES lump is only useful when applied to
a game and for that you first have to load an IWAD. - 03:27 Revision 35d8f2c1 (github): LumpCache: On reaquiring PU_PURGELEVEL data set the tag back to PU_APPSTATIC
- 03:16 Revision 5415a1b1 (github): Refactor|LumpCache: Replaced array void* datas with a vector of CacheRecord
- As the lump datas use Zone-allocated memory and given the need of
an address to track "user" status of said data - us... - 01:48 Revision c025cd53 (github): Refactor|LumpCache: Removed adaptive use of the "lumps" pointer in LumpCache
- Previously LumpCache would avoid allocating a vector of lump data
pointers if only a single lump might be stored in t... - 01:37 Revision 4e6168d5 (github): Add new source file lumpcache.h
- 01:35 Revision 61f692c6 (github): Refactor|ZipFile: Use an instance of LumpCache with ZipFile
- 01:35 Revision 3f7dc55f (github): Refactor: Moved LumpCache class to new source file lumpcache.h
2012-09-27
- 21:06 Revision 3013046c (github): Fixed|Window Manager: Overriding window size with command line options
- If the -width and -height (-wh) options are used with the window in
fullscreen mode, the values should not override t... - 17:26 Bug #1092: [Chex/HacX] Weapon names in Controls menu
- To throw in some similar issues, since I didn't think they were worth all opening separate reports for:
In Heretic... - 17:26 Bug #1092: [Chex/HacX] Weapon names in Controls menu
- - **labels**: menus --> Menu, HacX, Chex, Controls
- **summary**: [Doom] Shotgun control menu labels wrong way around... - 06:25 Revision be271116 (github): Refactor|WadFile: Separated the lump cache into a new class
- Todo: Completely revise the implementation for thread-safe concurrent
access to the data. Ideally utilizing a multipl... - 05:05 Revision cac666ca (github): Refactor|Zone: Removed purge level PU_CACHE
- This is in no way a cache, its a purge level like any other...
- 04:31 Revision 5a583598 (github): API: Revised lump cache interface
- The older interface was inadequate for a multithreaded architecture
where thread-safe access to the cached data is cr...
2012-09-26
- 20:38 Revision ba486edc (github): Documentation|libdeng: Added apidoc for the CPP_BOOL macro
- 19:23 Revision 158aad18 (github): Fixed: Renamed WadFile and ZipFile's LumpRecord
- Evidently the code optimizer was getting itself rather confused by
the fact that zipfile.cpp and wadfile.cpp both def... - 19:01 Revision fee09d13 (github): Refactor|ZipFile: Implemented a public C++ interface for ZipFile
- 18:05 Bug #1091 (New): No sound effect played when pressing F7 or F8
- When pressing F7 to end the game or F8 to toggle on/off messages, no switch sound is played. A switch sound played in...
- 17:16 Revision 92796d00 (github): Cleanup|WadFile: Minor post refactoring cleanup
- Todo: Apply similar refactorings to ZipFile.
- 17:01 Revision c2d180db (github): WadFile: Improved lump index out-of-range exception messages
- 16:47 Revision 7eef2fec (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 16:46 Revision 5e834c0d (github): WadFile: Implemented lastIndex() and empty() methods
- Also fixed a couple of off-by-one valid lump index ranges as quoted
in some out-of-range exception error messages. - 15:26 Revision f1ed22ef (github): Cleanup|WadFile: Unnecessary use of CPP_BOOL()
- The CPP_BOOL() macro converts a non-bool value to a C++ bool type.
In these cases the value already was a bool to beg... - 15:23 Revision e9addf74 (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 15:23 Revision 60c1c6d8 (github): Cleanup|ZipFile: Unnecessary use of CPP_BOOL()
- The CPP_BOOL() macro converts a non-bool value to a C++ bool type.
In these cases the value already was a bool to beg... - 07:13 Revision bef53750 (github): Refactor|WadFile: Implemented a public C++ interface for WadFile
- 02:38 Revision 3656f6b3 (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 02:38 Revision 58fba78a (github): Refactor: Reimplemented ZipFile in C++
- Todo: Implement a public C++ interface
2012-09-25
- 23:58 Revision edba8dea (github): Refactor: Switched zipfile.c to C++
- 21:47 Revision e1771822 (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 21:46 Revision c53954f0 (github): Fixed|Mac OS X: Crash when accessing display mode info
- Apparently the references to the display mode information may become
invalid, so let's not hang onto them for too lon... - 21:43 Revision 488d425d (github): WM|Mac OS X: Fixed transition to fullscreen mode
- The window still needs some manual extra manipulation, so fixed the
double-resizing kludge.
Todo for later: This rea... - 21:41 Revision 3c83d39f (github): Refactor: Reimplemented WadFile in C++
- Todo: Implement a public C++ interface
- 20:53 Revision f9619f74 (github): WM: Improved window placement logic
- The window now remembers both its normal-mode geometry and the current
geometry. Only the latter is affected by maxim... - 16:22 Revision 6111a859 (github): Refactor: Switched wadfile.c to C++
- 16:15 Revision 318f59b0 (github): Homepage: Tweaked the main menu text shadow color
- 12:26 Revision c3ff32ac (github): WM: Added a callback for closing a CanvasWindow
- CanvasWindow now calls a user-provided callback function
to determine whether it is ok to close the window. The callb...
2012-09-24
- 22:02 Revision 0593d71c (github): Fixed|Homepage: Homepage main menu missing "active page" stylings
- 21:25 Revision 63d502e1 (github): Fixed|Homepage: Focused links on the homepage missing visual cues
- 19:37 Revision 2a19e3c9 (github): Homepage: Detail release dates for package downloads
- 19:36 Revision 084fa02f (github): Homepage|Build Repository: Added "release_date" to the package JSON object graph
- If a release date is known for a package, include it in the JSON
object graph representation as "release_date" (strin... - 17:44 Revision 0b9db088 (github): Fixed|Homepage|Build Repository: Updated 1.9.7 package links on the homepage to the 1.9.7-1 release
- 17:41 Revision e90f87be (github): Fixed|Homepage|Build Repository: Assign correct release dates to the 1.9.7 and 1.9.8 download packages
- 17:38 Revision 8f4ec326 (github): Homepage|Build Repository: Added a releaseDate property to iDownloadable
- In the case of symbolic packages, there may be no corresponding
BuildEvent in the build repository and (thus no metad... - 16:49 Revision 2bff1583 (github): Fixed|Homepage|Build Repository: Homepage build stream widgets do not offset if no previous build
- When generating the previous|current|next build stream widgets, the
build event chain was not offset if no previous b... - 15:20 Revision 1fd4dfca (github): Homepage|Build Repository: Added static packages for Doomsday 1.9.7 and 1.9.8
- The build repository does not yet persist build events. Once they
drop out of the build event feed they will cease to...
2012-09-23
- 13:58 Revision eaba956b (github): Fixed: Missing logic for "no bright pixels" case in GL_CalcLuminance()
- This case was inadvertently removed in the previous refactoring.
- 12:33 Revision 89b3f964 (github): Fixed|DEH Reader: [CODEPTR] patches use .bex rules
- 12:31 Revision 18cf13d8 (github): Refactor|BSP Builder: Use a vector for LineDefInfos in the BSP builder
- As LineDefs have a contiguous range of indices we can use these to
accelerate the info lookups by placing them in a v...
2012-09-22
- 18:21 Revision bc51f81f (github): Fixed|GL: Grab window contents from the front (visible) buffer
- The GL default is to read from the back buffer, but screen captures
should be made using the visible, completed frames. - 02:50 Revision eb105c1e (github): Cleaned up s_environ.cpp and added a todo comment re a design fault
- 00:57 Revision c6abbd46 (github): Minor typo fixes to EntityDatabase apidocs
2012-09-21
- 21:47 Revision 4b8b3f93 (github): Fixed: Missing virtual destructor
- 21:46 Revision e964627c (github): Fixed: Warning about Str initialization
- Using a proper C++ object for the static string is better because we
don't have to manually initialize the (empty) st... - 20:56 Revision ed2ccf20 (github): Optimize: Reduced map load times by a further ~10%
- The map entity property value database and definition datasets were
reimplemented making use of a StringPool to store...
2012-09-20
- 22:34 Bug #1090 (Closed): Sv_RateDelta return code doesn't typecheck
- Sv_RateDelta of doomsday/engine/portable/src/sv_pool.c uses the following code in its return statement:
return (de...
2012-09-19
- 17:13 Revision 93ff953e (github): Fixed: Mishandling of malformed Doom-format sound lumps
- Some add-ons include malformed Doom-format (i.e., raw PCM) lump data
with the intention being that the sound should n... - 14:54 Bug #1038: [Unix] Locating resource files (wad/pk3)
- The remaining issue here is quite likely related to [#1088].
- 14:21 Bug #1038: [Unix] Locating resource files (wad/pk3)
- - **priority**: 6 --> 3
- 12:06 Bug #1038: [Unix] Locating resource files (wad/pk3)
- As far as I can see, the only unclear issue is the following:
> Re: jdoom.pk3 not found
>
> This sounds like a l... - 14:34 Bug #1072: [Snowberry] Unicode conversion in Load Order dialog
- Should be fixed as commit bbc840f6.
- 14:16 Bug #1072: [Snowberry] Unicode conversion in Load Order dialog
- This bug appeared when I click on an addon then "load order", I can not load order, I have always this error message.
- 13:33 Revision ce953001 (github): libcommon: Write a "Saved screenshot" confirmation message to the player's log
- Instead of writing the confirmation message to the console, add this
message to the console player's game message log... - 13:17 Revision 34cfc7f9 (github): Fixed|All Games: Game state change/notification messages should not be hideable
- The player has the option of hiding the game message log, however
there are times when a message "must" be shown to t... - 12:15 Bug #1086: 'recorddemo' console command seg faults
- Dang, forgot to change the 'milestone' to 1.9; it defaults to 1.8.6.
- 12:11 Bug #1055: [Mac OS X] Missing MIDI instruments
*Attachments:*
* http://sourceforge.net/p/deng/bugs/_discuss/thread/91e6e879/88f7/attachment/doomsday.out.txt
- 12:09 Bug #1053: [Render hack] Icarus Alien Vanguard: Force-fields (scrolling masked middle texture)
- Well, most of the other render hack issues where fixed, but this one still remains Open after a whole year now. It st...
- 11:55 Bug #745: [Render hack] Deep water tricks not supported
- - **labels**: Graphics --> Render hack
- **summary**: "Pool Hack" Unsupported --> [Render hack] Deep water tricks not... - 11:53 Bug #52: [Render hack] Fake/see-through bridges
- - **labels**: Graphics --> Render hack
- **milestone**: v1.7.9 --> v1.8.6
- 11:52 Bug #110: [Render hack] TNT map09: Transparent window is not transparent
- - **labels**: Graphics --> Doom, Render hack
- **summary**: [Doom] TNT map09: Transparent window --> [Render hack] TN... - 11:51 Bug #587: [Render hack] Plutonia 2 map11: 3D bridge does not construct
- - **summary**: [SelfRef trick] Plutonia2::MAP11 --> [Render hack] Plutonia2::MAP11
- **milestone**: --> v1.8.6
- *... - 11:50 Bug #514: Light decoration placement on planes if origin is incident with a sector boundary
- - **summary**: Some Visual Anomalies --> Light decoration placement on planes if origin is incident with a sector bou...
- 11:28 Feature #1202: [MP] Options for Heretic co-op
- Logged In: YES
user_id=717323
Co-op player spawning seems to work correctly in 1.7.
11/net, as does DM spawning.
... - 11:26 Feature #1290: Session-only cvars
- Logged In: YES
user_id=717323
At the moment there is no straightforward way to implement
this. The engine keeps no... - 11:25 Feature #1348: Better Mousewheel Weapon Switching
- Implemented for Doomsday 1.9.0-Beta6.10
- 11:24 Feature #1363: Update notifier
- Logged In: YES
user_id=849456
I'm not sure what it is you are requesting. Can you explain? - 11:23 Feature #1376: Externally spawned mobjs
- Logged In: YES
user_id=1249988
Yes, I'm sorry I wasn't very clear on that one - that is what I
was trying to say. - 11:23 Feature #1377: "BUILD Engine" games
- Closing as duplicate.
- 11:23 Feature #1378: DED ver 6 syntax for XG Definitions
- - **assigned_to**: Daniel Swanson --> nobody
- 11:22 Feature #1389: [InFine] Check if resource originates from an IWAD
- Logged In: YES
user_id=849456
I'd already noticed the code.
The RFE was mainly to remind me to do the necessary ... - 11:21 Feature #1399: XG plane movers vs. normal doors
- Logged In: YES
user_id=1005349
Just thought... The wait for door to open should also happen
for doors that lower f... - 11:21 Feature #1396: Turbo
- Logged In: YES
user_id=849456
There is already the -turbo command-line flag.
However a turbo multiplier would be... - 11:20 Feature #1406: Record particles and other effects in demos
- Converting to RFE as this really isn't a bug,
- 11:19 Feature #1416: [Doom] Invisible "fuzz" effect
- Logged In: YES
user_id=849456
I too would like to see this effect return. The best way to
do this would be using a... - 11:19 Feature #1427: Support for HACX
- Logged In: YES
user_id=1437996
Originator: YES
Thanks for the response! I'll follow your advice as soon as HACX be... - 11:18 Feature #1428: Support for Chex Quest
- Logged In: YES
user_id=1437996
Originator: YES
The official release was a CD-ROM with an iWAD, an already modified ... - 11:18 Feature #1434: No vsync option anywhere
- Vsync is already enabled by default in recent releases of Doomsday for Windows. However there is not currently any me...
- 11:17 Feature #1440: Vanilla Doom collision-checking mode
- Moving to feature requests as this isn't a bug.
- 11:17 Feature #1438: GUI needs some transparency effects
- Non-specific request.
- 11:14 Feature #1478: Automap: show the map number
- - **status**: open --> closed
- **Milestone**: --> Pre 2.0
- 11:12 Feature #1495: FOV cannot be set higher than 179
- Implemented for 1.9.0-Beta6.10
- 11:07 Feature #1503: [Unix] Basic command line options (e.g., help, version)
- This is a feature request not a bug report.
- 11:06 Feature #1504: cursor not captive from doomsday
- - **status**: open --> closed
- **milestone**: --> Version 1.9
2012-09-18
- 19:49 Revision 6f5cd3fe (github): Fixed: HOM before an InFine script at map start
- The finale script is not visible until at least one command has been
executed. This is because the script defines the... - 17:08 Revision 841e5e84 (github): Removed debugging artefacts left behind in the previous commit #2
- 17:04 Revision 2470328e (github): Removed debugging artefacts left behind in the previous commit
- 17:03 Revision a3e2ebde (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 17:02 Revision c96cb6f3 (github): Cleanup: Cleaned up R_ProjectSprite() somewhat
- Trying to get to the bottom of why sprites which don't fit between
the floor and ceiling visibly "jump" at the end of... - 14:30 Revision 8c3d7a08 (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 14:30 Revision f7592695 (github): Fixed|Snowberry: "Center window" option
- The option for centering the window was using an obsolete option.
Nowadays the window retains its previous positionin... - 14:00 Revision 8f063037 (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 14:00 Revision d50724c5 (github): Fixed: Categorization of "addon" textures in PWAD TEXTURE1/2 lumps
- This was the cause of the bug where hires replacements were not
being suppressed for IWAD defined textures which are ... - 13:54 Revision d0505420 (github): Multiplayer|Fixed: Workaround for getting stuck in the Help screen
- There needs to be a way for the client to locally run an Infine script.
This commit just disables the ill-behaving me... - 13:12 Revision e3f5b99a (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 13:12 Revision e5774e2a (github): Merge branch 'master' of ssh://git.code.sf.net/p/deng/code
- 13:12 Revision 359d6cd3 (github): Mac OS X: Added TextMate 2 properties for the Doomsday folder
- See: http://macromates.com
- 12:23 Revision 8e13d491 (github): Cleanup
- 12:04 Revision 9c49eeba (github): Fixed: Incorrect default origin in GL_CalcLuminance()
- The origin is defined as a multiplier of the texture dimensions, not
an absolute offset. This fixes the offset of aut... - 10:51 Bug #1089: [MP] Client cannot dismiss "Help/Info" finale
- - **Milestone**: v1.11 --> v1.12
- 10:48 Bug #1089 (Progressed): [MP] Client cannot dismiss "Help/Info" finale
- While connected to a server, if the client selects the "Info"/"Read this" option in the main menu, it is impossible t...
Also available in: Atom