ZDoom 2.2.0

News about ZDoom, its child ports, or any closely related projects.
[ZDoom Home] [Documentation (Wiki)] [Official News] [Downloads] [Discord]
[🔎 Google This Site]

Moderator: GZDoom Developers

User avatar
randi
Site Admin
Posts: 7746
Joined: Wed Jul 09, 2003 10:30 pm
Contact:

ZDoom 2.2.0

Post by randi »

After far too long, ZDoom 2.2.0 has finally been released. There have been a lot of changes—too many for me to list here—that can be found in the changelog. This release is also accompanied by a new version of ACC, which I quietly uploaded last night. Both are available from the standard place on the downloads page.

Short list of new features:
  • Custom damage types
  • Custom pain chances for custom damage types
  • Custom damage effectiveness to make monsters stronger/weaker against custom damage types
  • Custom state labels. Actors are no longer bound to Spawn, See, Death, etc. Users can define their own states.
  • User Constructable Statusbars
  • Custom Skill settings to modify or add user definable skill settings to the skill selection menu
  • most thing functions treat a tid of 0 as an activator tid.
  • Many things ported from skulltag including powerups and flags for increased port compatability
  • New D3D display code for better Vista support
  • Startup screens that mimic the MS-DOS versions of all games
  • ENDOOM lump support for displaying dos graphic lumps once zdoom quits
Long list of more additions, in approximate chronological order:
  • Custom blood on an actor by actor basis into decorate
  • Smart autoaim code to prevent the targeting of friendly monsters.
  • Skulltag-type armor bonus that increases the max amount that can be given by other armor items.
  • New flag that prevents bleeding actors from spawning blood decals.
  • Customizable border textures. They are defined with the MAPINFO keyword 'bordertexture' and are settable per map.
  • Custom label support for A_Chase and A_VileChase
  • r_maxparticles CVAR from Skulltag
  • Added Skulltag's REDMAP and GREENMAP
  • Player.RunHealth property to expose the StrifePlayer's behavior of not being able to run when its health is below 10.
  • Customizable gravity per actor
  • Summonfoe console command, which is analagous to summonfriend but forces the summoned creature to be hostile instead.
  • Damage-specific player pain sounds
  • Added two new MAPINFO flags to control what actor activates impact lines:
    • MissileShootersActivateImpactLines - the current behavior
    • MissilesActivateImpactLines - the original Hexen behavior
  • Damage-specific player death sounds, in the same fashion as the
    damage-specific player pain sounds. The game looks for a sound with a name like
    "*death-damagetype" first and then "*death" if the first sound didn't exist.
  • More player water sounds:
    • *dive - Played when your head goes below water
    • *surface - Played when your head goes back above water
    • *gasp - Played when you were drowning and get your air back
  • Using "*" with ACS's music commands will play the level's default music set in MAPINFO
  • Two new cvars (win_x and win_y) that keep track of the window position when not playing in fullscreen mode
  • Key bindings can now be printed with ACS
  • KEEPDEPLETED flag for inventory items to keep them in the player's inventory even when they have been used up. If the item also has an inventory bar icon, it will be drawn darkened while it is depleted.
  • IGNORESKILL flag for ammo that prevents the given quantity from being modified by the skill level
  • AttackZOffset for PlayerPawn. This is the offset from the center of the player at which their attacks are fired and scales according to their crouched height.
  • Added a new SetActorState ACS function:

    Code: Select all

    int SetActorState (int tid, str statename, optional bool exact);
    If tid is 0, it affects the script activator, otherwise it affects all the matching actors. Statename is the name of the state you want to put the actor in. The final parameter, exact, specifies whether or not partial state name matches are accepted. If you don't specify it or set it to false, if you try to do something like:

    Code: Select all

    SetActorState (0, "Foo.Bar");
    And the actor has a Foo state but no Foo.Bar state, it will enter the Foo state. If you set exact to true:

    Code: Select all

    SetActorState (0, "Foo.Bar", true);
    Then the actor must have a Foo.Bar state, or it will not change state at all, even if it has a Foo state. The return value for this function is the number of actors that successfully changed state. Note that you should refrain from using this function to enter special states such as Death, or unpredictable results could occur.
  • CANUSEWALLS flag which allows a monster to activate 'use' specials like doors. This flag is on by default for any monster, which was the previous behavior.
  • Thing_Stop action special
  • Skulltag's Drain and Regeneration runes as powerups and used specific player sounds for their sound effects
  • Skulltag's PowerQuadDamage and PowerQuarterDamage as more customizable PowerDamage and PowerProtection. These new powerups allow free customization of the damage modification per damage type by inheriting from these classes and setting specific values. Such derived damage/protection powerups will be considered as separate powers so that for example a QuadDamage and a DoubleDamage item can be stacked which would result in 8x damage.
  • Skulltag's high jump rune as a powerup
  • Skulltag's custom F1 help screen MAPINFO option
  • New flag that allows exploding items to hurt boss monsters
  • New flag that allows using things to execute their specials
  • Compatibility option to restore the original behavior of the Invisibility powerup
  • Telefrag option added to A_SpawnItemEx.
  • Added option to A_Chase that prevents the monster from moving.
  • Skill definitions from MAPINFO
  • 'Allowrespawn' MAPINFO option
  • New scoreboards
  • IWAD-based [*.Autoload] ini support for games that have more than one IWAD. They are:
    • [Doom1.Autoload]
    • [Doom2.Autoload]
    • [Plutonia.Autoload]
    • [TNT.Autoload]
    • [HexenDK.Autoload]
  • Custom status bars through the SBARINFO lump
  • New A_LookEx function
  • Customizable teams through the TEAMINFO lump
  • 'Take' console command to do the opposite of 'give'
  • UseInventory/UseActorInventory ACS functions
  • New A_CustomBulletAttack aimfacing parameter
  • New A_PlaySoundEx attenuation parameter
  • Automap markers are stored in savegames now
  • 'No respawn' DMFlag2 which prevents a player from respawning after they have died
  • 'Keep frags gained' DMFlag2 which allows you to choose whether you want to reset the frags of each player next level or not
  • Sector_Outside sector type which forces outside fog regardless of ceiling texture
  • User-defined crosshairs in the Display Options menu. See xhairs.txt in zdoom.pk3.
  • Skulltag's SAME_SPAWN_SPOT flag
  • Skulltag's pickup sprite for the pistol
  • Gneric log display that can show Strife's log messages in all games regardless of the current game, active status bar and HUD mode
  • GZDoom's alternate HUD.
  • Support for stencilling actors
  • .TXT files can now be loaded by simply dragging-and-dropping them on top of zdoom.exe
  • 'Ice' translation is accessible from DECORATE
  • Teamplay MAPINFO option.
  • Custom damage color per player class.
  • ACS script type "return". These are executed by players who return to a map they've previously been to.
Last edited by randi on Mon Feb 18, 2008 8:07 pm, edited 2 times in total.
Reason: Added change lists
RazTK
Posts: 245
Joined: Mon Jul 11, 2005 2:50 am
Location: Israel

Re: ZDoom 2.2.0

Post by RazTK »

The most stable version ever released? :)
User avatar
MasterOFDeath
... in rememberance ...
Posts: 2024
Joined: Sat Apr 03, 2004 10:58 am

Re: ZDoom 2.2.0

Post by MasterOFDeath »

Its about time. :P
User avatar
Enjay
 
 
Posts: 26516
Joined: Tue Jul 15, 2003 4:58 pm
Location: Scotland
Contact:

Re: ZDoom 2.2.0

Post by Enjay »

Thank you kindly. :D
User avatar
Necromage
Posts: 484
Joined: Thu Feb 10, 2005 3:13 pm
Location: NJ
Contact:

Re: ZDoom 2.2.0

Post by Necromage »

Awesome :D
User avatar
randi
Site Admin
Posts: 7746
Joined: Wed Jul 09, 2003 10:30 pm
Contact:

Re: ZDoom 2.2.0

Post by randi »

RazTK wrote:The most stable version ever released? :)
Well, there haven't been any new bugs reported in the last few days, so I'm hoping it's good enough to last a while.
User avatar
Wills
Posts: 1446
Joined: Mon Jan 10, 2005 7:01 pm
Location: The Well of Wishes

Re: ZDoom 2.2.0

Post by Wills »

A very balanced version number! My OCD impulses are calmed... for now. If I hadn't seen Enjy's link to this thread I would have never known ZDoom had been updated.
User avatar
Shadelight
Posts: 5113
Joined: Fri May 20, 2005 11:16 am
Location: Labrynna

Re: ZDoom 2.2.0

Post by Shadelight »

Awesome, a new version after so long..and a new ACC too! :D
User avatar
Zippy
Posts: 3302
Joined: Wed Mar 23, 2005 5:31 pm
Location: New Jersey

Re: ZDoom 2.2.0

Post by Zippy »

Yoink.
Sodaholic
Posts: 1959
Joined: Sat Nov 03, 2007 4:13 pm

Re: ZDoom 2.2.0

Post by Sodaholic »

KICKASS. 8-) :D
User avatar
DoomRater
Posts: 8265
Joined: Wed Jul 28, 2004 8:21 am
Preferred Pronouns: He/Him
Location: WATR HQ
Contact:

Re: ZDoom 2.2.0

Post by DoomRater »

That downloads link is busted, rofl.
User avatar
Unknown_Assassin
Posts: 2468
Joined: Wed Apr 12, 2006 5:17 pm
Location: Where dead carcasses lie
Contact:

Re: ZDoom 2.2.0

Post by Unknown_Assassin »

:shock: YYYYYYYYYYYYYYYYYYYYYYYYYEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEESSSSSSSSSSSSSSSSSSSSSSSS!!!!!!

*Downloading*
DoomRater wrote:That downloads link is busted, rofl.
Heh. I noticed that, too.
User avatar
Csonicgo
Posts: 1193
Joined: Thu Apr 15, 2004 3:28 pm
Location: Leeds

Re: ZDoom 2.2.0

Post by Csonicgo »

YAAAAAAY

amazing how much Zdoom has changed from 2.1.7 to 2.2.0. Sadly, I'm used to the changes since I've been using the SVN's for months.
User avatar
zwouth
Posts: 72
Joined: Wed Oct 31, 2007 5:57 pm

Re: ZDoom 2.2.0

Post by zwouth »

Valentine's Day Edition even :D
User avatar
Isle
Posts: 687
Joined: Fri Nov 21, 2003 1:30 am
Location: Arizona, USA

Re: ZDoom 2.2.0

Post by Isle »

thanks for the birthday present randy!
Post Reply

Return to “ZDoom (and related) News”