GZDoom 2.3.2 released

News about GZDoom.

Moderator: Graf Zahl

User avatar
Rachael
Developer
Developer
Posts: 3639
Joined: Sat May 13, 2006 10:30

Re: GZDoom 2.3.2 released

Post by Rachael »

There are two families of variables you can change:
1) vid_brightness, vid_contrast, gamma
2) gl_tonemap, gl_exposure_base, gl_exposure_min, gl_exposure_speed, gl_exposure_scale
User avatar
Rachael
Developer
Developer
Posts: 3639
Joined: Sat May 13, 2006 10:30

Re: GZDoom 2.3.2 released

Post by Rachael »

There are two families of variables you can change:
1) vid_brightness, vid_contrast, gamma
2) gl_tonemap, gl_exposure_base, gl_exposure_min, gl_exposure_speed, gl_exposure_scale
User avatar
Graf Zahl
GZDoom Developer
GZDoom Developer
Posts: 7148
Joined: Wed Jul 20, 2005 9:48
Location: Germany
Contact:

Re: GZDoom 2.3.2 released

Post by Graf Zahl »

It should be noted that the ambient level was pretty efficient at destroying a map's lighting setup. Essentially it cut off at a light level of 90. Everything below was the same level.
User avatar
Boingo the Clown
Posts: 102
Joined: Sat Dec 03, 2005 17:40
Location: North of New York, West of Montreal, East of Toronto, and South of Hell
Contact:

Re: GZDoom 2.3.2 released

Post by Boingo the Clown »

Sorry to be a pain, but I have already noticed some bugs. There are also some fixes I am happy to see.

The good news is the sprites reappeared after I updated my video driver. :)

More good news is the secret walls in DeiMWolf, which are controlled by fragglescript as a holdover from Legacy, work correctly again. Each of the sectors disappears instantly instead of lowering at turbo speed. :) Thank you for fixing that.

And now for the bad news ...

A number of my sprites in DeiMWolf are now mysteriously buried in the floor, something that has never happened before.

Image

The keys in T.U.C.Q. no longer work. The text message tells me I am picking them up, but the keys do not appear in my statusbar, and will not open the doors. The keys and locks are defined in DECORATE and LOCKDEF, so GZDooM might no be playing nice with them.

The weapons in T.U.C.Q. can be picked up and used, but I can no longer be switched between. The keys in DeiMWolf do appear to work however, so it may be something I can fix myself.

Since I updated my video drivers, some of my lights have disappeared. Strangely, others are not affected.

I hope most of these problems are simply bugs in my mods, rather than GZDooM, but I thought I would pass word of them on to you.
User avatar
Graf Zahl
GZDoom Developer
GZDoom Developer
Posts: 7148
Joined: Wed Jul 20, 2005 9:48
Location: Germany
Contact:

Re: GZDoom 2.3.2 released

Post by Graf Zahl »

Hard to say what's at fault without seeing the maps . Can you also check with 2.2.0, to see if the problems appeared before or after?
User avatar
Boingo the Clown
Posts: 102
Joined: Sat Dec 03, 2005 17:40
Location: North of New York, West of Montreal, East of Toronto, and South of Hell
Contact:

Re: GZDoom 2.3.2 released

Post by Boingo the Clown »

It appears the sunken sprites are sprites using the same names as DooM.

For example, the plant in the pics above was using COL2A0, which is the short green pillar in DooM.

I suspect GZDooM is somehow using the sprite offsets from the original DooM sprites instead of the replacement sprites' offsets . I noticed in one animated sprite series that started with ELECA0 (the same as the tall tech column in DooM) had fouled up offsets for ELECA0 only, while the other two sprites in the animation were unaffected. Renaming the sprites eliminated the problem.

However ...

Because nearly all older mods reuse the same sprite names, I suspect this will be a major problem when playing older mods. Therefore this should definitely be considered a bug.

BTW: The good news is a friend of mine managed to figure out what was wrong with the weapons and the keys, and got them working again.
User avatar
Herculine
Posts: 70
Joined: Mon Feb 22, 2010 3:44
Location: Ohio
Contact:

Re: GZDoom 2.3.2 released

Post by Herculine »

A note of long overdue thanks to the creators of the ZDoom and GZDoom sourceports.

I recently had the opportunity to try the DOSBox versions of the original Doom games being offered by GoG.com. The experience made me realize that over the past few years I've forgotten what the original games are like without any enhancements and that I've become a bit complacent playing them with ZDoom and GZDoom, that I've taken the sourceports a bit for granted and never actually thanked their creators.

Thus I'm taking this opportunity to stop by the forums of both sourceports to say thank you to Randy Heit for ZDoom and to Graf Zahl for GZDoom, as well as to the DRD Team and everyone who has made these projects successful. Thank you all for all the work you've put into these sourceports that allow us to continue to enjoy Doom with functionality and visuals that keep the game a pleasure to play even on the newest of computers.

Thank you all!
emberson9000

Re: GZDoom 2.3.2 released

Post by emberson9000 »

Hello. I'm interested in getting GZDoom, but i don't know how to find the link. Your assistance would be greatly appreciated. Thank you.
User avatar
Rachael
Developer
Developer
Posts: 3639
Joined: Sat May 13, 2006 10:30

Re: GZDoom 2.3.2 released

Post by Rachael »

User avatar
theleo_ua
Posts: 34
Joined: Sun Mar 04, 2012 17:24
Contact:

Re: GZDoom 2.3.2 released

Post by theleo_ua »

New features:
- mods can define items globally for precaching in addition to per-map definitions
Are there any information how to do this? Didn't found this on the wiki
Nothing smells better than a dead Governor in the morning (c) http://www.rpgcodex.net/phpBB/viewtopic ... 026#808026
_mental_
Developer
Developer
Posts: 259
Joined: Sun Aug 07, 2011 13:36

Re: GZDoom 2.3.2 released

Post by _mental_ »

The syntax is the same as for any other string array from MAPINFO/GameInfo:

Code: Select all

precacheclasses = "<actor>", ...
precachetextures = "<texture>", ...
precachesounds = "<sound>", ...
User avatar
Tiger
Developer
Developer
Posts: 861
Joined: Thu Feb 25, 2010 3:44
Location: United States
Contact:

Re: GZDoom 2.3.2 released

Post by Tiger »

Awesome, thanks for the updates! Though, I am extremely late to the party :P
Nicholas 'Tiger' Gautier
User avatar
theleo_ua
Posts: 34
Joined: Sun Mar 04, 2012 17:24
Contact:

Re: GZDoom 2.3.2 released

Post by theleo_ua »

_mental_ wrote: Wed Mar 01, 2017 9:17 The syntax is the same as for any other string array from MAPINFO/GameInfo:

Code: Select all

precacheclasses = "<actor>", ...
precachetextures = "<texture>", ...
precachesounds = "<sound>", ...
is it possible in future to implement next possibility:

precacheclasses = ALL
precachetextures = ALL
precachesounds = ALL

(or maybe add some options to ingame menu, like "precache all actors = on/off" for example)

because it's pain in ass to copypaste all actors to such lists (especially when you adding new actors/textures/sounds to mod and should remember that you have to add it to precache lists)

Also, I tried precachesounds and GZDoom crashed, because I have a lot of randoms and aliases in my mod, so if you are interested to investigate and fix those crashes, I can report bug and attach a testmod

In addition, I found that precacheclasses doesnt work for 3d models (they still lag after such precache)

Also, as I understand, those precaches doesn't work when you load a savegame?
Nothing smells better than a dead Governor in the morning (c) http://www.rpgcodex.net/phpBB/viewtopic ... 026#808026
_mental_
Developer
Developer
Posts: 259
Joined: Sun Aug 07, 2011 13:36

Re: GZDoom 2.3.2 released

Post by _mental_ »

theleo_ua wrote: Sun Mar 19, 2017 2:12 is it possible in future to implement next possibility:

precacheclasses = ALL
precachetextures = ALL
precachesounds = ALL

(or maybe add some options to ingame menu, like "precache all actors = on/off" for example)
How will the engine figure out what textures/classes/sounds belong to your mod? Or do you want to load just everything?
theleo_ua wrote: Sun Mar 19, 2017 2:12 Also, I tried precachesounds and GZDoom crashed, because I have a lot of randoms and aliases in my mod, so if you are interested to investigate and fix those crashes, I can report bug and attach a testmod
You should always do this. It's better to have duplicate bug report than to do not have one.
theleo_ua wrote: Sun Mar 19, 2017 2:12 In addition, I found that precacheclasses doesnt work for 3d models (they still lag after such precache)

Also, as I understand, those precaches doesn't work when you load a savegame?
Don't know about those honestly, need to check.
User avatar
Graf Zahl
GZDoom Developer
GZDoom Developer
Posts: 7148
Joined: Wed Jul 20, 2005 9:48
Location: Germany
Contact:

Re: GZDoom 2.3.2 released

Post by Graf Zahl »

Precaches are done on map load. For each savegame load, first the map needs to be loaded, so it should be precached as normal.
Regarding models, that's not going to be a quick fix, because the models exist somewhere outside the system. Refactoring the model subsystem to be better integrated is on the to-do list but not with the highest priority.
Locked

Return to “News”