#584 posted by Adib on 2015/04/03 08:11:11
Looks like we're double-posting here and at QuakeOne. My bad :( Hope it's all useful.
Anyway, I just downloaded the two textures you posted to ID1/textures folder. Here is another hideous screenshot for you:
http://i3.photobucket.com/albums/y80/amurad/Games/scrn_zps1e3wcnqi.jpg
It's your texture pointer showing Mark V is loading sfloor4_2.pcx, but not sfloor4_2_glow.pcx.
Are you sure we're running the same version? Mine is 05:49:41 Jul 13 2014
#585 posted by Adib on 2015/04/03 08:17:23
And here is the fence-like alpha blended working like a charm (on the background, sfloor4_2 fullbright not working):
http://i3.photobucket.com/albums/y80/amurad/Games/scrn2_zps9l2ffkid.jpg
Alpha Transparent
#586 posted by anonymous user on 2015/04/03 08:54:08
The screenshot above is a world brush, not an entity. So your engine alpha blends world geometry as well.
It's showing void where the brush touches the floor, wich makes perfect sense: the world brush subdivided the floor and the surface it hides was removed by the bsp compiler. Thing is, you can see thru this world brush, so you can see the hole the removed surface left.
I just tied the brush to a func_wall entity and recompiled the map. No void showing anymore. I'm gonna use it!
#587 posted by Baker on 2015/04/03 14:06:17
I'm using the October 10 beta build which is known to have issues with drawing the sky on Nvidia cards due to a stencil operation and may have a couple of other things like that (which is why it was marked as a beta). The download is buried in the thread.
Words: It is unfortunate that work alpha gets used for everything but I do want to point out that no blending is occurring for "fence textures". Blending means it is combining 2 colors, fence textures are an alpha mask and isn't blending.
Baker
#588 posted by starbuck on 2015/04/03 14:20:05
sorry if I've it's been mentioned and I haven't noticed - is there any support (or planned support ;) )for Alpha masks on external textures?
Thanks for all your work on this so far, it's awesome.
@starbuck
#589 posted by Baker on 2015/04/03 15:22:55
I don't remember if there is external texture support for the masked textures.
I would guess "no", but I can't remember because normally this is something I would do.
I think a roadblock was external textures for masked textures and the possibility of the masked texture having a fullbright component.
That is a complicated scenario to draw for external textures because fullbright is an additive blend but should only affect the masked area.
Which is quite a headache to devise the drawing for when almost no one even uses external textures, let alone masked textures.
#590 posted by metlslime on 2015/04/03 17:46:18
for alpha masked fence textures and fullbrights, you could process it at load time:
for the main texture, keep track of which pixels are < 0.666 alpha. On the glow map, set those pixels to pure black. This way the glowmap won't be visible on any screen pixels where the main texture is masked out.
I'm not sure if this will still cause tiny bleed overs where the glow slightly overhangs the hard edge of the mask, but it could be tweaked, maybe by raising the alpha threshold or something.
But at least this doesn't affect render code at all.
External Alpha Mask
#591 posted by adib on 2015/04/03 18:15:40
In that screenshot I posted above, that transparent wall with yellow balls is a brush with an external TGA type 2 with an alpha channel, where white makes a pixel visible and anything else makes it invisible. So I would say yes, Mark V seem to support external alpha masked textures.
Tried the three EXE of the October beta. The WinQuake version wouldn't show external stuff anyway. The other two don't even have the r_texprefix_fence cvar :o
Please Baker, don't rip the transparency off the engine, I need it! Didn't follow the discussion, but a security solution can't be to cripple the engine.
#592 posted by Baker on 2015/04/03 21:27:04
r_texprefix_fence cvar is gone because since Quakespasm adopted fence textures ported from Mark V with exclusively the prefix "{", it is no longer an option to pick a prefix. This is consistent with Half-Life and The Remake Quake engine and FTEQW. [Yeah, the WinQuake build doesn't seem to work].
#593 posted by Baker on 2015/04/03 21:42:32
@metslime. No doubt that work and I likely devised something like it.
I think the situation that was aggravating is the possibility of the regular texture and the glow texture replacement not being the same size and factoring in possible rescaling in the (rare) absence of power of 2 textures.
With normal _glow textures, this isn't a factor since there isn't a dependent relationship between the regular texture and the _glow one.
#594 posted by metlslime on 2015/04/03 21:57:27
baker: good point about the different resolutions. While it's still solvable, it's clearly more work to correctly sample one texture and lookup the correct alpha value for the other one.
Fences+fullbrights
#595 posted by Spike on 2015/04/04 03:58:43
fullbrights have the same issues that lightmaps have in a single-tmu environment.
you need to use glDepthFunc(GL_EQUAL) for both your lightmap and your fullbrights, which prevents either additional pass from breaking anything.
with multitexture you just have to ensure your fullbrights don't harm the fragment alpha, so that your alphatest can still discard the fragment correctly.
if you're doing glsl-less bumpmapping and need to use the fragment alpha for some dotproduct values, you can just use glColorMask and specify the masked depth as an initial pass. this of course means that the fence and diffusemap don't have to have any correlation to each other whatsoever, if you're doing weird effects or whatever.
alpha-test has a specfic cut-off point somewhere between 1 and 0. this means that even internal fullbrights can bleed if you don't handle them properly (half-life didn't do fullbrights at all).
if it was blended then you'd have a point, along with other quirks.
there are still problems with coplanar surfaces, of course, but there's nothing you can really do about those.
#596 posted by metlslime on 2015/04/04 04:07:01
GL_EQUAL sounds like a good solution for multipass rendering.
And alpha shouldn't be an issue with fullbrights as fitzquake uses additive blending starting in 0.85.
Tested The October 2014 Build
#597 posted by adib on 2015/04/04 06:04:45
Just to keep track, I posted my test with October 2014 build at Quakeone. No fullbrights showing. Here is the test:
https://drive.google.com/open?id=0B3Ww0W8WFfq7SDdxMmxweVotRUU&authuser=0
#598 posted by Baker on 2015/04/04 19:43:38
@adib
Assume the problem is solved for the moment.
I have been procrastinating on polishing up the Mark V beta mostly because there are 4 or 5 tedious issues that are unrewarding to work through.
But I think I've waiting long enough.
Within a week, there will be a polished Mark V non-beta I will ensure this inconsistency is gone.
Fullbrights
#599 posted by mh on 2015/04/04 20:03:14
I'm of the opinion that the equivalent of glBlendEquation (GL_MAX) and glBlendFunc (GL_ONE, GL_ONE) is the most appropriate way of handling fullbrights.
The reason why is that there are areas in maps where (diffuse * light * 2) is actually brighter than the fullbright on it's own. This shouldn't be too hard to conceptualize; it's going to happen if the light is brighter than 0.5 (or 128 on a 0 to 255 scale).
The result is that you get a weird transition between normally lit texels and fullbright texels (and the brighter the light the weirder the transition).
This is easily visible on e.g the right-hand lit arrow leading into the e1 entrance in the Start map, and while using a GL_MAX blend doesn't replicate software Quake with precise fidelity, it is much more visually pleasing. (Other examples of the same concept include some lights in Quake which saturate even with 2x overbrighting, particularly if you add dynamics (although some even rarer areas don't even need that); not such a big problem for FQ as it doesn't create coloured dynamics, but very observable if you add them to it).
As a bonus you don't have to remove the fullbright texels from the source image using this method.
Unfortunately neither GL_COMBINE modes nor D3D SetTextureStageState support a maximum blend, so the only ways to do it are to multipass it or do it in a shader.
@Baker
#600 posted by adib on 2015/04/04 20:47:50
I asked you so many questions and forgot to thank you for this awesome work. Hope I could help someway.
Here is another one: does Mark V load external sky textures? There is a sky_mb1.pcx (already tried TGA and PNG as well) in my textures folder, but the engine goes on loading the internal BSP texture. How can I make it load the external one?
#601 posted by Baker on 2015/04/05 01:10:03
Just skybox support.
None of the FitzQuake/Quakespasm family of engines loads actual replacements for the 256x128 scrolling sky textures. DarkPlaces is the only engine I know offering the ability to replace the scrolling sky with a hi-res version.
[FitzQuake/Quakespasm don't + won't support PNG, just like Q3 doesn't support PNG.]
#602 posted by Baker on 2015/04/05 01:17:38
Extra info: PNG serves no purpose for replacement textures because when the set is compressed into a .zip file, it gets compressed. The only thing PNG does is require the engine to increase map load times by decompressing the textures every single time.
#603 posted by adib on 2015/04/05 01:47:47
TGA already have alpha channel, so screw PNG :)
Your skybox works neat, just tested it. So, screw iD's moving PCX.
Regarding My Issue (posts #514/533)
#604 posted by NightFright on 2015/04/10 16:02:26
I checked the vs2008 build in the 20141010 package again and noticed that liquids look fine again on my nvidia card if you use r_oldwater "1".
Dunno if that helps with solving the problem - still waiting and hoping for a fixed release.
#605 posted by Baker on 2015/04/10 23:22:38
Interesting, thanks for info. Could be involved in this somehow.
Mark V Beta 2
#606 posted by Baker on 2015/04/10 23:28:25
Anyone with sky issue (NVidia only) will still have sky issue. Still working on that as I do not have a Nvidia card available. And does not yet have the DX improvements.
http://quakeone.com/proquake/interims/mark_v_20150410.zip
This is a much nicer release than the previous one, but more to go.
The WinQuake version should work and these are proper builds. The glow textures should work.
New feature: Select text using SHIFT in the console and copy, cut and paste with CTRL+X, CTRL+V, CTRL+C, SHIFT+INS, SHIFT+DEL
More versions will follow as I eliminate the known issues. Next one might not be until Monday or Tuesday.
@NightFright Re:nvidia
#607 posted by Baker on 2015/04/11 00:02:04
How does the sky look with r_oldwater 0 and r_oldwater 1?
Does the sky look correct with r_oldwater 1?
Does the sky look wrong with r_oldwater 0?
Nightfright
#608 posted by ericw on 2015/04/11 00:48:41
also do you get any issues with "r_oldwater 0" with Fiitzquake 0.85 or Quakespasm?
|