danij's activity
From 2011-06-10 to 2011-06-23
2011-06-22
-
17:31 Doomsday Engine Revision 9065f22a (github): Fixed: Do not interpolate the resizing of the view window when initializing
- dimensions for the first time.
-
14:49 Doomsday Engine Revision 95bb598c (github): Changed: Added default Patch Replacement definitions for the DOOM intermission
- screens to values.ded and added a SkipIf -nodefaultfx check so that they can
be excluded from the command line. -
01:02 Doomsday Engine Revision 48879587 (github): Fixed: Font renderer did not factor in tracking when calculating the visible
- x offset when a text block is split into two fragments.
-
00:59 Doomsday Engine Revision e0fde6a4 (github): Changed: Moved the built-in patch replacement strings for the DOOM game menu into values.ded
2011-06-19
-
10:31 Doomsday Engine Revision 6bf2972b (github): Refactor: Relocated view window interpolation into the engine as it makes no
- sense to keep this on game side now.
2011-06-18
-
20:10 Doomsday Engine Revision 7df4ba5b (github): Changed: When cvar "rend-dev-wireframe"=1 the text decorations (i.e., shadow
- and glitter) are now drawn in wireframe as well as the text itself.
-
19:27 Doomsday Engine Revision bf4c5e80 (github): Added cvar "inlude-patch-replacement" to control patch replacement in
- the intermission. Usage is analogous to "menu-patch-replacement" except
scoped to patches drawn in the intermission. -
18:38 Doomsday Engine Revision 2142e3a8 (github): Refactor: Specify the patch replacement mode as an argument to Hu_ChoosePatchReplacement*
-
15:50 Doomsday Engine Revision b1c333c5 (github): Refactor: Removed last remnants of font renderer state configuration from the
- WI_DrawPatch* family of functions.
-
15:29 Doomsday Engine Revision 5404c12a (github): Improved API symmetry between the GL_DrawPatch* and FR_DrawText*/WI_DrawPatch function families.
-
15:23 Doomsday Engine Revision 8edb3802 (github): Use WI_DrawPatch* argument defaults when applicable.
-
15:14 Doomsday Engine Revision 4e950b3e (github): Improved API symmetry between the WI_DrawPatch* and FR_DrawText* function families.
-
15:06 Doomsday Engine Revision 48c12630 (github): Refactor: Removed WI_DrawPatch3. Current font is a member of the font renderer
- state and is assumed to be configured prior to calling any of the WI_DrawPatch*
family of functions. -
14:51 Doomsday Engine Revision 05625e51 (github): Refactor: Removed WI_DrawPatch4. Text color and alpha are now members of the
- font renderer state and are assumed to be configured prior to calling any of
the WI_DrawPatch* family of functions.
2011-06-17
-
13:54 Doomsday Engine Revision abfe72a9 (github): Refactor: Removed WI_DrawPatch5. The text shadow and glitter strengths are now
- members of the font renderer state and are assumed to be configured prior to
calling any of the WI_DrawPatch* family ... -
13:48 Doomsday Engine Revision 3a99a59f (github): Fixed FR_DrawChar3 called FR_DrawText instead of FR_DrawText3
-
12:21 Doomsday Engine Revision 54724e99 (github): Refactor: Removed the now unnecessary menu-specific MN_DrawText* family of functions.
2011-06-16
-
13:57 Doomsday Engine Revision bfc25c95 (github): Added current color to the font renderer attribute stack.
2011-06-14
-
03:07 Doomsday Engine Revision b58b5a71 (github): Font renderer cleanup.
-
01:52 Doomsday Engine Revision e239f4bb (github): Refactor: Removed distinction between text blocks and text fragments
- at font renderer API level. This distinction need only exist within
the engine. -
00:49 Doomsday Engine Revision a046e700 (github): Remove unnecessary temporary buffer in FR_DrawText
2011-06-13
-
23:05 Doomsday Engine Revision a3b1e5af (github): Whitespace changes in doomsday.def
-
22:59 Doomsday Engine Revision c58db312 (github): Refactor: Improved symmetry of the font renderer API - all text draw
- commands (block, fragment and character) now use the same argument list.
Also added some further documentation about ... -
19:41 Doomsday Engine Revision d1e97e7c (github): Commented the interfaces for the font renderer's text drawing commands.
2011-06-12
-
14:17 Doomsday Engine Revision 52591c87 (github): Cleanup.
-
14:05 Doomsday Engine Revision da19811b (github): Refactor: Turned the caseScale argument for FR_DrawText into a
- font renderer state attribute.
-
12:16 Doomsday Engine Revision d9cfd2b7 (github): Implemented font renderer current attribute getter methods for querying
- shadowOffset shadowStrength and glitterStrength to complete the set.
-
11:38 Doomsday Engine Revision 91376c74 (github): Refactor: Renamed FR_SafeFontIdForName to FR_FindFontForName
- Refactor: Renamed FR_FontIdForName to R_MustFindFontForName and
moved out of the engine into plugins/common/src/g_game.c -
11:09 Doomsday Engine Revision 39441156 (github): Renamed api/dd_bitmapfont.h to api/dd_fontrenderer.h
-
11:02 Doomsday Engine Revision 30f0bc89 (github): Renamed include guard strings for dd_bitmapfont.h and gl_font.h to reflect
- their current roles.
-
10:59 Doomsday Engine Revision 0bace5c0 (github): Refactor: Renamed FR_Font to FR_BitmapFontForId and FR_GetCurrentId to FR_Font
-
10:20 Doomsday Engine Revision 067dcdc3 (github): Refactor: Removed all arguments from FR_DrawText that are now in the font
- renderer attribute stack. Refactored callers to configure attribute state.
Fixed: Map name displayed while the autom... -
09:09 Doomsday Engine Revision fac91315 (github): Refactor: Removed the color+alpha arguments for FR_DrawText and replaced
- with the current GL color+alpha values.
-
08:17 Doomsday Engine Revision 4fad5518 (github): Added "leading" to the font renderer attribute stack.
-
07:01 Doomsday Engine Revision f975ae6c (github): Refactor: Added a drawTextFlags argument to the WI_DrawPatch family of functions.
- Moved the MN_MergeMenuEffectWithDrawTextFlags logic out and made this the
responsibility of the caller.
As of this c... -
06:11 Doomsday Engine Revision 3e97cfa6 (github): Refactor: Removed alignment flags from drawTextFlags and replaced their
- usage with the general purpose alignmentFlags defined in dd_share.h
-
05:07 Doomsday Engine Revision df9171f4 (github): Refactor: Dropped the "initial count" argument from the font renderer's
- draw-text-fragment argument list. Callers should not be manipulating
this value; the engine will do so according to t... -
04:46 Doomsday Engine Revision afd697f0 (github): Refactor: Glitter strength is now a font renderer state attribute.
-
04:08 Doomsday Engine Revision af859e1e (github): Refactor: Shadow strength is now a font renderer state attribute.
-
03:11 Doomsday Engine Revision 1fda008d (github): Switched values for DTF_ALIGN_TOP and DTF_ALIGN_BOTTOM to match alignmentFlags
-
03:09 Doomsday Engine Revision 898ad8ed (github): Refactor: Implemented an attribute stack (max depth=4)for the engine's
- font renderer and added the tracking and shadow offset properties to it.
Note that the current font is NOT a member o...
2011-06-11
-
17:38 Doomsday Engine Revision 25779031 (github): Refactor: "Tracking" is now a font renderer state property rather than
- a draw text/text-fragment argument.
Also available in: Atom