Christoph Oelckers
30ffffd904
- fixed: Checks for poison damage were not correct.
...
SVN r2469 (trunk)
2010-07-29 06:53:20 +00:00
Christoph Oelckers
e1f06da5e3
- separated hitlist generation for texture precaching into a virtual function of DFrameBuffer.
...
SVN r2466 (trunk)
2010-07-28 21:48:24 +00:00
Christoph Oelckers
6f4ed40496
- added TIHan's ArmorFactor submission.
...
SVN r2465 (trunk)
2010-07-27 18:32:10 +00:00
Christoph Oelckers
2cf19f436a
- added Gez's dumpactors patch.
...
SVN r2463 (trunk)
2010-07-26 17:10:43 +00:00
Christoph Oelckers
35ba99ed31
- Added Gez's automap enhancements but made the new key icon optional.
...
SVN r2462 (trunk)
2010-07-25 21:46:51 +00:00
Randy Heit
1bda16cc45
- Use side_t::RightSide in IterFindPolySides() instead of the SideListHead array.
...
SVN r2461 (trunk)
2010-07-25 21:38:34 +00:00
Braden Obrzut
006fb343b0
- Added Pink Silver's DrawString/Number alignment patch (with one minor change).
...
SVN r2460 (trunk)
2010-07-25 20:46:14 +00:00
Christoph Oelckers
a373c3858e
- fixed: A_Teleport's RNG had the same name as the one used by SelectTeleDest.
...
SVN r2458 (trunk)
2010-07-25 10:17:16 +00:00
Christoph Oelckers
9ca1de6435
- added PinkSilver's APROP_MasterTid submission.
...
SVN r2456 (trunk)
2010-07-24 06:38:57 +00:00
Christoph Oelckers
2b381babed
- added DavidPH's A_JumpIfTargetInLOS extension submission.
...
SVN r2455 (trunk)
2010-07-24 06:30:52 +00:00
Christoph Oelckers
37f55c6539
- added DavidPH's A_RailAttack extension submission.
...
SVN r2454 (trunk)
2010-07-24 06:27:13 +00:00
Christoph Oelckers
a6499a6efb
- added DavidPH's A_Saw extension submission.
...
SVN r2453 (trunk)
2010-07-24 06:21:53 +00:00
Christoph Oelckers
58be666c9c
- added DavidÜH's explicit angle submission for A_CustomBulletAttack function.
...
SVN r2452 (trunk)
2010-07-24 06:15:07 +00:00
Christoph Oelckers
bc47f7133b
- Added DavidPH's A_Teleport submission but removed the now redundant GetSpotWithMinDistance functions.
...
SVN r2451 (trunk)
2010-07-23 21:55:01 +00:00
Christoph Oelckers
f430881a54
- Added DavidPH's Poison damage extension but changed it so that the metadata can be removed.
...
SVN r2450 (trunk)
2010-07-23 21:36:17 +00:00
Christoph Oelckers
545a892faa
- added Firebrand's patch to rename 'swap' due to naming conflicts in newer MSVC compilers.
...
SVN r2449 (trunk)
2010-07-23 21:19:59 +00:00
Christoph Oelckers
4ac64b6df7
- merged polyobject branch into trunk and made some adjustments for savegame compatibility.
...
SVN r2448 (trunk)
2010-07-23 05:56:25 +00:00
Braden Obrzut
921c950bad
- Release Objective-C objects (since I found out the garbage collector is opt-in).
...
SVN r2441 (trunk)
2010-07-18 09:23:33 +00:00
Braden Obrzut
1cf12693ba
- Added Cocoa IWAD picker for Mac OS X.
...
SVN r2440 (trunk)
2010-07-18 08:00:12 +00:00
Randy Heit
5b63fd0675
- Added an optional parameter to DamageScreenColor to scale the amount of damage for pain
...
flash calculations. This can range from 0.0 to 1.0.
SVN r2435 (trunk)
2010-07-16 03:46:20 +00:00
Randy Heit
c29639426f
- Sounds that define a loop no longer play looped by default. They must be started with
...
CHAN_LOOP so that the higher level sound code knows they loop and can handle them accordingly.
- Added support for a LOOP_BIDI tag. Set it to "1", "On", "True", or "Yes" to use a
bidirectional loop. This only works with sounds and not music, because music is streamed
so does not support them.
- Extended custom loop support to work with samples as well as music.
SVN r2434 (trunk)
2010-07-15 23:07:41 +00:00
Randy Heit
99a2014ead
- Added support for custom loop points for songs. This does not work with MP3 because of the
...
way MP3 obfuscates custom tags. Vorbis and FLAC are fine. (I could make it work with MP3,
but you should be using Vorbis instead.) They are:
* LOOP_START: Start time for the loop. If omitted, the song repeats from the beginning.
* LOOP_END: End time for the loop. If omitted, the song loops at the end. (If you need to specify this, why aren't you using a shorter song.)
You only need to specify one of these tags to set the custom loop. Naturally, you can set
them both, as well. The format for each tag is the same:
* If it contains a colon (:), it specifies by time. This may be of the form 00:00:00.00
(HH:MM:SS.ss) to specify by play. Various parts may be left off. e.g. To start the loop
at 20 seconds in, you can use ":20", 0:20", "00:00:20", ":20.0", etc. Values after the
decimal are fractions of a second and accurate to one millisecond.
* If you don't include a colon but just have a raw number, then it's the number of PCM
samples at which to loop.
* Any characters other than digits (0-9), colons (:), or a single decimal point for the
seconds portion will result in the tag being ignored.
SVN r2424 (trunk)
2010-07-10 02:59:34 +00:00
Randy Heit
305a03d7c8
- Fixed copy-pasta error for "give everything".
...
SVN r2420 (trunk)
2010-07-10 00:51:38 +00:00
Randy Heit
a401779715
- Fixed: FMugShotFrame::GetTexture() needs to NULL-check skin_face. (default_face might also be
...
empty. I don't know if that deserves special handling, but it doesn't crash, so I'll let blzut3
worry about it.)
SVN r2419 (trunk)
2010-07-09 03:04:43 +00:00
Randy Heit
5a4dad1205
- Don't give health for "give all".
...
- "Give artifacts" and "give puzzlepieces" now use the amount value to decide how much of each
item to give you. 0 means to give you the max. The old behavior can be obtained by explicitly
stating 1. (Since "give all" encompasses these as well, this also applies to that.)
- Added "give everything" cheat to give everything. This is like "give all" but ignores the
WIF_CHEATNOTWEAPON flag. (Note that this flag has valid uses, but that doesn't stop people
from abusing it anyway.)
SVN r2418 (trunk)
2010-07-09 01:57:46 +00:00
Randy Heit
e379658143
- Added multimonitor support, as per Tom Seddon's code. vid_adapter controls which one to use,
...
and vid_listadapters prints them.
SVN r2417 (trunk)
2010-07-08 23:59:45 +00:00
Christoph Oelckers
5bb4ca5bc6
- fixed: Hexen's melee weapons were missing some NULL pointer checks in the code that determines whether they hit something or not.
...
SVN r2415 (trunk)
2010-07-08 21:16:01 +00:00
Christoph Oelckers
ea04d2bbdf
- fixed: ZDoom aborted on old WADs containing a binary LANGUAGE lump.
...
SVN r2414 (trunk)
2010-07-06 20:32:24 +00:00
Christoph Oelckers
e1e7cebd01
- fixed: The SBARINFO parser insisted that all player classes being specified have to exist. This, however, made it impossible to redefine the player classes in Hexen.
...
SVN r2401 (trunk)
2010-07-01 20:57:11 +00:00
Christoph Oelckers
6df5e6f9cb
- added Gez's anti-crossinclude submission but made some changes. Cross-includes overriding core files will produce fatal errors but cross-includes between PWADs will be tolerated. For DECORATE a command line override switch exists so that for testing the error can be disabled.
...
SVN r2400 (trunk)
2010-07-01 09:35:39 +00:00
Christoph Oelckers
853b8f8963
- did some profiling of P_InterceptVector. Here's the results I got:
...
* the unaltered floating point version is 10% faster than the 64 bit integer version.
* using doubles instead of floats increases performance by another 25%.
* another 15% can be gained by manually optimizing the code.
- P_InterceptVector now uses the optimized floating point version which is almost twice as fast as the 64bit integer version.
SVN r2395 (trunk)
2010-06-30 15:20:18 +00:00
Braden Obrzut
9bf543af99
- Fixed: Episodes starting on a map with 8 characters in its lump name would not work.
...
SVN r2394 (trunk)
2010-06-30 06:09:49 +00:00
Randy Heit
551f0d3148
- Remove fakedblocker, since it was unused.
...
SVN r2391 (trunk)
2010-06-27 20:49:02 +00:00
Randy Heit
86b17d6d9f
- Sync debugging output between ZDBSP and ZDoom's internal node builder.
...
SVN r2389 (trunk)
2010-06-27 20:21:07 +00:00
Randy Heit
7069ea88bb
- Fixed erroneous allocation of class defaults using new to M_Malloc to match the rest of them.
...
SVN r2386 (trunk)
2010-06-21 01:49:35 +00:00
Christoph Oelckers
b8db84b6bc
- added a new dmflag to allow killing all monsters spawned by a boss brain's cubes after killing the brain (for those who like clean level statistics.)
...
SVN r2385 (trunk)
2010-06-20 17:57:32 +00:00
Randy Heit
503b934938
- Added better error messages for MIDI playback failure than just "MIDI playback failure".
...
SVN r2383 (trunk)
2010-06-20 04:41:23 +00:00
Randy Heit
e379d24388
- Fixed: The intensity scalar for building DesaturateColormaps was off by one.
...
SVN r2380 (trunk)
2010-06-18 04:10:05 +00:00
Randy Heit
141cf825cf
- Fixed: iCopyColors() should not invert the grayscale value for special colormaps, since
...
this is already handled by the GrayscaleToColor array for the one colormap that needs it.
SVN r2379 (trunk)
2010-06-18 03:52:04 +00:00
Randy Heit
34d8212d64
- Changed G_ChangeLevel()'s parameter list to match the ACS version's.
...
- Added resethealth to complement resetinventory.
SVN r2377 (trunk)
2010-06-18 03:35:41 +00:00
Randy Heit
1bbae4a8f2
- Fixed: PClass::InitializeActors() did not initialize the ActorInfo's ColorSets. Why this only caused
...
problems on PPC Macs, I do not know.
SVN r2374 (trunk)
2010-06-13 16:50:54 +00:00
Christoph Oelckers
e535b40a9e
- fixed: All melee attack functions only used the target acquired by P_AimLineAttack for all subsequent calculations, not the actual victim of the attack.
...
SVN r2373 (trunk)
2010-06-13 11:14:01 +00:00
Christoph Oelckers
6ff2abc53d
- fixed: Setting +NOCLIP for a player class did not work.
...
SVN r2371 (trunk)
2010-06-13 10:44:06 +00:00
Christoph Oelckers
e2ce20a445
- fixed: A_Print and related functions should not make a use state chain succeed.
...
- fixed: APowerIronFeet must continuously reset the player's air supply.
SVN r2370 (trunk)
2010-06-13 10:38:38 +00:00
Christoph Oelckers
32f3d00514
- fixed: Stopping music did not clear the variable used to restart the last played song.
...
SVN r2369 (trunk)
2010-06-13 10:24:56 +00:00
Christoph Oelckers
b2cef54d72
- fixed: Classes inherited from PowerScanner didn't work anymore.
...
SVN r2368 (trunk)
2010-06-13 10:11:50 +00:00
Christoph Oelckers
ec44397881
- added some options to A_CustomPunch, including calling Strife's dagger alert function.
...
SVN r2367 (trunk)
2010-06-13 09:06:12 +00:00
Christoph Oelckers
4d86ebddf9
- Added support for Risen3D/PrBoom+'s MUSINFO lump.
...
SVN r2366 (trunk)
2010-06-13 08:47:38 +00:00
Braden Obrzut
2aa7cdc5a8
- Fixed: drawbar didn't work right when scaled.
...
SVN r2361 (trunk)
2010-06-08 23:32:01 +00:00
Braden Obrzut
afd9bcb59a
- Fixed: drawstring didn't properly align itself when variable strings were used.
...
SVN r2360 (trunk)
2010-06-07 15:45:09 +00:00
Randy Heit
ed81b4718b
- Revert r2235 so that all DECORATE member accesses are consistent. It didn't work as intended
...
anyway.
SVN r2358 (trunk)
2010-06-06 05:41:09 +00:00
Randy Heit
41bd0f5369
- Fixed: "Disallow Suicide" gameplay menu option should be labeled as "Allow Suicide".
...
SVN r2356 (trunk)
2010-06-06 05:00:30 +00:00
Randy Heit
2090c03d88
- Fixed: D3DFB::GetScreenshotBuffer() must not offset the buffer pointer for letterboxed modes,
...
since the screenwipe speedup fixes also mean that this function no longer operates directly
with the front buffer, but rather with a copy that is not letterboxed.
SVN r2355 (trunk)
2010-06-06 04:53:19 +00:00
Braden Obrzut
d7686d0c26
- Added optional offset parameters to the drawshadow flag.
...
- Added character alignment parameter to font monospacing.
- Fixed: character shadows were not scaled.
- Heretic keys now have an icon associated with them so that they can be drawn through drawkeybar.
- Replaced the built in Heretic and Hexen status bars with SBarInfo equivalents.
SVN r2353 (trunk)
2010-06-02 20:26:27 +00:00
Braden Obrzut
d29123c511
- Added a HexenStrict DrawInventoryBar style due to some alignment errors I noticed with the Hexen style.
...
SVN r2352 (trunk)
2010-05-31 20:04:49 +00:00
Braden Obrzut
b8cb1f0cfb
- Fixed: The alpha property of status bars didn't work anymore.
...
- Added: alpha command to SBarInfo which allows you to increase the translucency for certain parts of the status bar.
- Added: reverse flag for drawkeybar which reverses the order in which rows are filled with keys.
- Changed a gamemode statement to an else in the Doom hud since the frag count and keys should never be shown at the same time.
SVN r2351 (trunk)
2010-05-31 07:01:04 +00:00
Christoph Oelckers
eadc539bc6
- fixed: Poison clouds spawned by the PoisonShroom should not be pushable by the Disc of Repulsion.
...
SVN r2350 (trunk)
2010-05-30 20:12:32 +00:00
Randy Heit
14b71ede11
- Added support for DRO version 2 files.
...
SVN r2349 (trunk)
2010-05-30 19:23:53 +00:00
Braden Obrzut
9716e1aea7
- Changed DrawSelectedInventory's alternateonempty flag to draw the subblock before itself. This allows an else statement to be more useful in practice.
...
- Fixed: Added offsets to the wrong variable in SBarInfo.
SVN r2348 (trunk)
2010-05-30 18:34:59 +00:00
Christoph Oelckers
5535f98218
- fixed: The code drawing the chess pieces for Hexen's finale used floating point paeameters with integer fields for drawing the texture.
...
SVN r2347 (trunk)
2010-05-30 08:00:27 +00:00
Christoph Oelckers
bdd2ebfe14
- added a new dmflag for allowing switching to weapons without ammo.
...
SVN r2346 (trunk)
2010-05-30 07:47:08 +00:00
Braden Obrzut
e848fa3c4c
- Switched SBarInfo to floating point math.
...
SVN r2345 (trunk)
2010-05-30 00:12:46 +00:00
Christoph Oelckers
cd1104e80c
- changed: Maps with missing first sidedefs no longer abort. THey now print a console warning and use the first sidedef in the map.
...
SVN r2344 (trunk)
2010-05-29 09:11:12 +00:00
Christoph Oelckers
042e913022
- added Boom's fix for finding the highest neighboring light level per sector (compatibility optioned by COMPATF_LIGHT.)
...
SVN r2343 (trunk)
2010-05-29 07:07:39 +00:00
Christoph Oelckers
862d6551bc
- fixed: Heretic's 666 lower floor must be of type LowerToHighest unlike Doom which is LowerToLowest.
...
SVN r2342 (trunk)
2010-05-28 21:29:28 +00:00
Christoph Oelckers
6c4d070095
- restored original Doom behavior for hitscans to only check actors which have their center in the blockmap cells being checked, compatibility optioned by COMPATF_HITSCAN.
...
SVN r2341 (trunk)
2010-05-28 21:07:45 +00:00
Christoph Oelckers
8f881be0fb
- added a Boom (strict) compatibility mode.
...
- Restored some original Doom behavior that received complaints from users:
* reactivated the old sliding against diagonal walls code and compatibility optioned it with COMPATF_WALLRUN.
* re-added the original hitscan checking code using a cross-section of the actor instead of the bounding box, compatibility optioned with COMPATF_HITSCAN.
SVN r2340 (trunk)
2010-05-28 11:15:05 +00:00
Braden Obrzut
9dfdf2ecdd
- Fixed some issues with high resolution status bars.
...
SVN r2339 (trunk)
2010-05-26 00:51:06 +00:00
Christoph Oelckers
2b211f99a8
- fixed: The intermission text screen background should not animate
...
SVN r2338 (trunk)
2010-05-25 20:19:09 +00:00
Randy Heit
4480a508b3
- Changed AActor::GetTag() to use language lookups for strings that start with $.
...
SVN r2337 (trunk)
2010-05-25 03:53:13 +00:00
Randy Heit
709414e606
- Fixed: Animated doors should only leave ML_BLOCKING set if the door was created with it set.
...
Otherwise, monsters will be unable to open it after it has been used once if it isn't set
for push activation.
SVN r2336 (trunk)
2010-05-25 03:40:37 +00:00
Randy Heit
61d2a808d7
- Response file improvements:
...
* Fixed: Trying to use a response file would result in infinite looping until memory was
exhausted.
* Fixed: Response files were read after coalescing file parameters, which would lead to
non-coalesced parameters if the original command line and response file both had them.
* You can now use more than one response file.
* Response files can include other response files.
SVN r2334 (trunk)
2010-05-25 02:30:05 +00:00
Braden Obrzut
adcf26d2b5
- Fixed MSVC compiler warnings in sbarinfo.cpp
...
SVN r2333 (trunk)
2010-05-22 14:00:36 +00:00
Braden Obrzut
9611e7310a
- Added resolution setting to SBarInfo.
...
- Fixed: Mug shot was not reset at the start of a new game.
SVN r2332 (trunk)
2010-05-21 19:56:13 +00:00
Christoph Oelckers
c4efbeb515
- fixed: Both Boom and MBF compatibility mode need COMPATF_MISSILECLIP set.
...
SVN r2331 (trunk)
2010-05-14 20:27:57 +00:00
Christoph Oelckers
896a77327a
- fixed fake contrast menu option.
...
SVN r2330 (trunk)
2010-05-14 20:12:21 +00:00
Randy Heit
e9bbe4f1ff
- Added more logging for D3DFB CreateDevice() attempts.
...
SVN r2329 (trunk)
2010-05-14 04:13:59 +00:00
Randy Heit
24f23718b7
- Added GetHR support to D3DFB for querying the error code when device creation fails.
...
- Should still check for a NULL device when CreateDevice() returns D3DERR_DEVICELOST.
SVN r2328 (trunk)
2010-05-14 04:06:30 +00:00
Randy Heit
30ec646ba5
- Removed spurious log warnings when retrying in CreateFrameBuffer().
...
SVN r2327 (trunk)
2010-05-14 03:58:23 +00:00
Randy Heit
b2a4ffc718
- Fixed: IDirect3D9::CreateDevice() can return D3DERR_DEVICELOST if you want exclusive mode and
...
some other application already has it. While technically this is a failure, the device is
still created, so we can continue using it anyway.
SVN r2326 (trunk)
2010-05-14 03:54:35 +00:00
Randy Heit
1c8397e86d
- Fixed: PacketGet() can receive WSAECONNRESET after startup is complete, so it needs to check
...
for a NULL before using NetMessage.
SVN r2325 (trunk)
2010-05-14 03:37:44 +00:00
Randy Heit
5a71dea746
- Added A_JumpIfTracerCloser and A_JumpIfMasterCloser, based on DavidPH's A_JumpIfCloser patch.
...
SVN r2324 (trunk)
2010-05-14 02:34:25 +00:00
Randy Heit
2d4502018a
- Added DavidPH's FBF_EXPLICITANGLE extension.
...
SVN r2323 (trunk)
2010-05-14 02:18:27 +00:00
Christoph Oelckers
d050973fa4
- added blockmap verification code.
...
SVN r2320 (trunk)
2010-05-12 10:17:08 +00:00
Christoph Oelckers
3e5a32b554
- copy-paste error in TNT stairs fix.
...
SVN r2319 (trunk)
2010-05-12 09:44:44 +00:00
Christoph Oelckers
b61b761e28
- added DavidPH's randomization patch for hitscan attacks.
...
SVN r2318 (trunk)
2010-05-12 07:11:56 +00:00
Christoph Oelckers
6a57a43277
- added DavidPH's LifeSteal patch for A_CustomPunch/A_Saw.
...
SVN r2317 (trunk)
2010-05-12 07:08:39 +00:00
Christoph Oelckers
942108f7ea
- added DavidPH's A_FaceTarget patch but modified it so that if a turn angle is set the MF_SHADOW flag is ignored.
...
SVN r2316 (trunk)
2010-05-12 07:02:23 +00:00
Christoph Oelckers
68fa08ca52
- fixed: TNT MAP30 needs the stairbuilding compatibility option.
...
SVN r2315 (trunk)
2010-05-12 06:54:59 +00:00
Christoph Oelckers
69861688dc
- expanded r_smoothlighting into a r_fakecontrast CVAR that allows to set all 3 options: off, standard and smooth.
...
SVN r2314 (trunk)
2010-05-12 06:52:03 +00:00
Braden Obrzut
24aa1abf14
- Added: else statements to SBarInfo. In addition braces are no longer required for blocks consisting of a single statement.
...
SVN r2313 (trunk)
2010-05-11 22:27:50 +00:00
Braden Obrzut
5a4be4b62b
- Added partial support for a signal based timer under Linux/Mac OS X in order to make cl_capfps effective at limiting CPU usage.
...
SVN r2310 (trunk)
2010-05-06 20:32:03 +00:00
Braden Obrzut
b7cb3ffa88
- Fixed: If a weapon didn't use ammo the result of weaponammo was accidentally negated.
...
SVN r2309 (trunk)
2010-05-01 21:17:11 +00:00
Christoph Oelckers
80f5a58e34
- fix automap cheat to avoid division by 0.
...
SVN r2308 (trunk)
2010-05-01 20:34:28 +00:00
Christoph Oelckers
1b0756e170
- added a am_showalllines cheat CVAR as countermeasure for maps that intentionally disable the full automap.
...
SVN r2307 (trunk)
2010-05-01 17:29:25 +00:00
Randy Heit
d070e04ff6
- Added Gez's patch for A_TakeInventory flag for taking ammo, with TIF_AMMO renamed to TIF_NOTAKEINFINITE.
...
SVN r2306 (trunk)
2010-04-26 02:05:11 +00:00
Randy Heit
36c4b39688
- Added DavidPH's A_FadeTo patch:
...
A_FadeTo(float target, float amount = 0.10, bool remove = false)
Alters transparency towards target by amount. If remove is true, the actor is destroyed if it reaches target.
SVN r2305 (trunk)
2010-04-26 01:56:25 +00:00
Randy Heit
4e693e1c98
- Added Gez's RandomSpawner patch: If a randomspawner is given a Z-height in the map editor, and the spawned object has a spawn height flag, it is ignored by the spawned object. This little patch fixes that.
...
SVN r2304 (trunk)
2010-04-26 01:49:29 +00:00
Christoph Oelckers
5fc654dac2
- fixed: Heretic's sludge damage sector does 4 points damage, not 5 like Doom's.
...
SVN r2303 (trunk)
2010-04-25 20:12:50 +00:00
Christoph Oelckers
bdc5d941c2
- added a new 'playeruseback' linedef trigger type that allows using lines from the bxck side.
...
SVN r2302 (trunk)
2010-04-25 07:21:35 +00:00