EDuke32 2.0 and Polymer! "talk about the wonders of EDuke32 and the new renderer"
#3721 Posted 14 May 2013 - 04:01 AM
This post has been edited by NightFright: 14 May 2013 - 04:01 AM
#3722 Posted 14 May 2013 - 04:24 AM
TerminX, on 13 May 2013 - 12:36 PM, said:
How does that work anyway?
#3723 Posted 14 May 2013 - 06:27 PM
#3724 Posted 14 May 2013 - 06:37 PM
#3725 Posted 14 May 2013 - 06:59 PM
TerminX, on 14 May 2013 - 06:27 PM, said:
Wow, I just tried this out with my WIP DNF map, and the difference is huge! Thanks!
The sky is finally the correct orange, and the rocks have much better colour variety, making them look more interesting.
This post has been edited by Micky C: 14 May 2013 - 07:00 PM
#3726 Posted 15 May 2013 - 02:04 AM
something is wrong with my system. I will do a restart asap and will edit my post
[edit]
it was something on my end
This post has been edited by supergoofy: 15 May 2013 - 02:48 AM
#3727 Posted 15 May 2013 - 08:09 AM
Quote
Author: terminx
Message: Remove md4 library, since we aren't using it anywhere anymore
#3728 Posted 15 May 2013 - 08:58 AM
#3730 Posted 15 May 2013 - 10:51 AM
#3731 Posted 15 May 2013 - 01:30 PM
Fox, on 01 May 2013 - 07:40 AM, said:
Any light on this? I don't want to sound like a douche, but since the source code already perform a ud check on this, I think it shouldn't be too hard to implement.
#3732 Posted 15 May 2013 - 01:42 PM
#3734 Posted 15 May 2013 - 06:44 PM
#3735 Posted 15 May 2013 - 07:00 PM
Please test the new mode, guys... I plan on making it the default sometime soon (just like the one in Polymer is default now), assuming major problems with it don't crop up.
#3736 Posted 15 May 2013 - 07:57 PM
They´re both dreamlike. There are some minor problems with each one, but most of those are known problems that have been happening long before.
It´s important to remark that the relevance of these issues in comparision to the improvements is so small that it almost makes no sense to mention them. With the exception of a few polymer specific issues, which should be IMO high priority.
Visibility in polymost may need some minor tweaking:
Here you can see that in both 32bits renderers vertical offset in viewalligned sprites is mirrored:
Some gradient ramps in duke´s palette have poor shadetables transitions, this is more noticeable in Polymost now since the visibility is based on open-gl´s regular shading system, no big deal, just pointing it out (I don´t consider it worth being fixed):
Here you can see how Polymer still has problems when rendering maskwalls that are inside a double-parallaxed sector:
FORGOT TO UPLOAD THOSE SCREENS
Here you can see how both 32bit renderers draw non-square-of-2 textures wrong (old problem anywway):
Here you can see how in Polymer decal sprites still clip their background;
Not pictured problems: Grills fences and other sprites with alhpa parts become thick and blur on a relatively short distance.
#3737 Posted 15 May 2013 - 08:01 PM
TerminX, on 15 May 2013 - 01:42 PM, said:
I only intend to read it, but I suppose anyone should use it at their own risk.
By the way, is ud.config.MusicDevice even used in Eduke today?
This post has been edited by Fox: 15 May 2013 - 08:08 PM
#3738 Posted 15 May 2013 - 10:03 PM
Gambini, on 15 May 2013 - 07:57 PM, said:
Yeah, to fix this I suggest implementing a way to define tiles as nomipmap, maybe in a separate file that could then be included with EDuke32 (just like tiles.cfg).
The bad thing about the other issues is that fixing them will probably break existing Polymer maps (since they have been done with those deficiencies being present). I guess, however, that fixing thousands of non-polymer usermaps and Duke itself is more important
While I'm at this, now that it seems like the priority is to get all renderers to look like classic as much as possible, may I ask that r_usenewshading value of 1 is never removed. Pretty pretty please, it would break all I've done so far
This post has been edited by Diaz: 15 May 2013 - 10:11 PM
#3739 Posted 15 May 2013 - 11:27 PM
#3740 Posted 15 May 2013 - 11:50 PM
#3741 Posted 16 May 2013 - 12:40 AM
Plagman, on 15 May 2013 - 11:27 PM, said:
Mmmmm, you're right. I don't notice grates becoming blurry with anisotropic filtering indeed. I mentioned the nomip thing off the top of my head because that's how it used to be in the past, with the Q2 and Q3 engines (might still be useful for those with videocards not fast enough to handle aniso)
#3742 Posted 16 May 2013 - 11:58 AM
Can we have an option for guns to prevent flash lights from fireing guns?
In huge areas that flash can ruin all the atmosphere.
This would be an great option (for me )
#3743 Posted 16 May 2013 - 12:08 PM
Shadows seem to decrease performance even if the SE they come from is not in view, so maybe the SE's could have cstat 64 added (so they won't cast shadows) when they are not within the player's PVS. This would help shadow performance tremendously.
#3744 Posted 16 May 2013 - 12:24 PM
Mia Max, on 16 May 2013 - 11:58 AM, said:
Can we have an option for guns to prevent flash lights from fireing guns?
In huge areas that flash can ruin all the atmosphere.
This would be an great option (for me )
Yes, you would need to add flag 256 to WEAPONx_ FLAGS.
#3745 Posted 16 May 2013 - 12:54 PM
Fox, on 16 May 2013 - 12:24 PM, said:
He wants the option to be in the EDuke32 menu. I think it's reasonable to want a menu option, since the flashing looks bad in many vanilla maps (e.g. where fog is used).
#3746 Posted 16 May 2013 - 01:13 PM
// EDuke32 mutator to prevent the pistol from lighting up the scene. // EVENT_RESETWEPONS runs from G_EnterLevel() for each player. onevent EVENT_RESETWEAPONS // NOTE: we use the predefined 'gs' global to avoid defining our own // gamevars. // pistol setvarvar gs WEAPON1_FLAGS orvar gs 256 // WEAPON_NOVISIBLE setvarvar WEAPON1_FLAGS gs endevent
Edit: the point being, it's a bit arbitrary to pick one particular "game tweak" to be included into the EDuke32 executable, especially if it can be replicated with little effort with CON.
#3747 Posted 16 May 2013 - 01:18 PM
Trooper Dan, on 16 May 2013 - 12:54 PM, said:
That's true, but it has always been like that.
This post has been edited by Fox: 16 May 2013 - 01:19 PM
#3748 Posted 17 May 2013 - 06:25 AM
Plagman, on 15 May 2013 - 11:27 PM, said:
Plagman, you must really hate guys like me. LOL! I just wanted to say that the flashlight effect I was experiencing within Eduke and not in Mapster was a rendering setting among other visual renderer settings that were something other than their default values. This was really screwing me up when I was trying to map. I think perhaps maybe a custom user map may have been responsible for altering my settings. After resetting back to defaults and lowering some values in the shading rendering menus I don't have that visual problem I was experiencing in Polymer. Sorry to burden you with a non issue but I sorta have a feeling you already knew that. =)
Take care,
Paul
#3749 Posted 17 May 2013 - 12:19 PM
*EDIT*
Disregard, seems it was happening because I was having a screenshot from a groupfile I had already deleted. Caused problems for some reason until I restarted EDuke32.
This post has been edited by NightFright: 17 May 2013 - 12:23 PM
#3750 Posted 17 May 2013 - 03:29 PM
(support for high DPI in the startup window)