|
Posted by Baker on 2012/06/29 11:38:17 |
I wasn't planning on doing this mini-project, it started as an effort to address some Fitzquake issues, fix them the right way up to Fitzquake standards (i.e. do it right, once and properly versus continual releases) and donate it back.
FitzQuake Mark V Download:
http://quake-1.com/docs/utils/fitzquake_mark_v.zip
Short version: Eliminated most issues in FitzQuake thread, most issues I can even remember hearing of ever and marked every single one clearly with a very minimal implementation.
It may be the case that only metlslime and Quakespasm and engine coders may find this engine upgrade of interest.
Features: 5 button mouse support, single pass video mode, external mdl textures, alpha textures (like RMQ), record demo at any time, rotation support, video capture (bind "capturevideo toggle"), console to clipboard, screenshot to clipboard, entities to clipboard, tool_texturepointer, tool_inspector (change weapons to see different info), clock fix, contrast support, fov does not affect gun, gun displays onscreen, Quakespasm wrong content protection, external ent support, session-to-session history and .. (see readme). |
|
|
Mh:
#107 posted by metlslime on 2012/11/06 20:55:43
first, thanks for pointing out various bugs that i didn't know about :)
second,
if (strstr (gl_extensions, "GL_ARB_do_domething "))
Won't this fail if the desired extension is the last one in the list? Or is there always a space as the last character of gl_extensions?
#108 posted by mh on 2012/11/06 22:24:15
Won't this fail if the desired extension is the last one in the list? Or is there always a space as the last character of gl_extensions?
I've honestly got no idea.
Reading between the lines I'd guess that this might be a reason why the new glGetStringi method was introduced (see http://www.opengl.org/wiki/Get_Context_Info#Extension_list) but I really don't know.
One to check with various drivers I suppose.
Re: Extensions Parsing
#109 posted by szo on 2012/11/07 08:56:28
#110 posted by mh on 2012/11/07 11:14:05
Yeah, that would work.
I'd be more inclined to emulate the glGetStringi method by first parsing into a char** then just iterating through that, but that's academic - so long as it works it's fine.
Incidentally, just remembered to check for space-termination on the entire string, and yes - the string isn't space-terminated, so either of checking with or without a space at the end of the extension name is bugged.
I think this engine is playing ambient sounds incorrectly.
Example: Run Contract Revoked and load the start map, and then stand in the pentagram in the middle. You can hear the sound cue from the Nightmare selection hall clearly and loudly, which is not the intended behavior at all.
To Clarify
The hall is right beneath the pentagram, but shouldn't be heard. It's as if Fitz Mark 5 does something to the attenuation...
Woukdn't Be The First Port To Do That
#113 posted by negke on 2012/12/01 12:03:50
DirectQ changes this as well, I think, and DP even more. Sometimes you can even hear the spike shooters from logic gates if they are too close...
#114 posted by necros on 2012/12/01 16:49:46
I hate that DP did that, but at least it provides a console command to fix it.
Jesus
What is the reasoning in the first place??
#116 posted by necros on 2012/12/01 18:05:08
in DP's case, I believe it was something along the lines of 'I like it better this way'. :\
Re: Sound
#117 posted by Baker on 2012/12/01 19:16:26
Interesting ...
The sound cut-off distance was brought on par with a couple of other engines. Unaware of the above.
Back in the day, ProQuake raised the sound cut-off distance "to match DOS Quake" to keep fairness against a DOS client in multiplayer (i.e. not fair if DOS client can hear sounds a bit further away) -- although some recent discussion @ Inside3D explores this in more detail. This change found its way into DarkPlaces maybe 5 years when it was noticed DarkPlaces could hear sounds other clients could, and of course found its way into DirectQ (these aren't only clients).
Wasn't looking to alter the intended designs of any single player maps ... and I thought this change was innocent enough but seems not.
Furtunately
#118 posted by mh on 2012/12/03 01:25:38
It's easy to just cvar-ize this value (I use "snd_clipdist").
My own use of it dates back to QuakeSrc.org days when it came up originally, and where (as I recall) evidence was presented that this was the original value but had been subsequently changed in a patch. Unfortunately QuakeSrc.org is long dead and it's not possible to provide links, but that's where things stand so far as my recollection is concerned.
It opens an interesting question so far as the topic of "fixing up Quake" is concerned, and I believe that it's similar to the question posed by supporting fullbrights and overbrights - to what extent do you draw the line between "this is the way things are supposed to be" on one hand versus "this is the way mappers/other content creators prefer it" on the other? We're all aware that content exists where using fullbrights and overbrights causes problems with the original design (e.g. using palette entries from the fullbright range for textures which never caused problems in GLQuake), but should this be treated the same or is it something that it's better to keep away from?
Resurrecting FOV
#119 posted by mh on 2012/12/03 01:32:09
I've been hacking some on the Doom 3 BFG code, and was interested to note that it uses the same method as mine for widescreen FOV: first calculate fov_y based on an ideal aspect (16:9 for D3, 4:3 for mine, although I adjust height for sb_lines too), then calculate fov_x based on the true aspect.
#120 posted by necros on 2012/12/03 01:38:08
It opens an interesting question so far as the topic of "fixing up Quake" is concerned
For myself, as far as sound attenuation is concerned, as long as there is a cvar to revert it to default values, then engines can default to whatever they want. Like I said, DP has that option and now I know your engines do so it's a simple matter of including them in config files that run before a mod is loaded.
It's more problematic if you aren't making a mod, but at least the option is there to fix it.
In fact, providing a cvar offers interesting new possibilities for messing with sounds such as fading them out gradually for dramatic effect.
Next Time An Update Happens ...
#121 posted by Baker on 2012/12/03 02:26:30
I'll just use the original sound distance if the single player scoreboard is showing (single player + coop) and if the deathmatch scoreboard is showing I'll use the other value.
Not looking at the source, I'm not 100% sure if the value is client (likely) or server (doesn't seem likely, but I'm not looking @ the source).
I don't like cvars and settings (except for features that help developers tune stuff).
There's a bug in my map that has a unique component only in Fitzquake. The first room has a pretty large bsp model for some pesky vertex saving. It seems that only RMQ actually allows collision with the model (DP/DirectQ/Fitz don't collide with it at all so I guess this bit is definitely my fault).
However in fitzquake if you move to the far side of the room away from the model it disappears, which no other engine does:
Model rendering properly
Taking a step backward
fyi the model entity is positioned just to the left of the healthpacks near the middle of the screen, so is definitely inside the room.
#124 posted by necros on 2012/12/09 04:16:58
1. ALL engines should handle external bsp collision. Unless you rotated it.
2. You can't fix this unless you can find a way to change the size of the entity's bbox to be smaller. :(
#125 posted by necros on 2012/12/09 04:18:41
bleh. '2' is referring to the disappearing bmodel.
This is due to the bmodel's bbox being linked to too many visiblility 'areas'. the problem is that the engine has a limited number of links to visible areas and when that list fills up, it just starts removing other links and replacing them.
Ah, hopefully won't be a problem with a full vis then? :/
ZQF
#127 posted by Fern on 2012/12/09 05:16:26
I noticed that dropout in the beta but didn't think anything of it specifically because lots of the bmodels in my map did that and yes it got better after fullvis.
#128 posted by necros on 2012/12/09 15:37:31
In my experience, it tends to get worse with a full vis, but you won't know for sure until it's done.
BSP Models Suck
#129 posted by mh on 2012/12/10 03:19:28
As well as the problem with it's size (which would affect any brush model type) try this:
gl_flashblend 0
Fire a rocket at it.
Ugly, isn't it?
Luma ?
#130 posted by mechtech on 2013/01/05 00:42:03
Does Mark V support luma on skin textures?
Yes
#131 posted by Baker on 2013/01/05 02:08:08
Model replacement textures use the DarkPlaces external texture naming convention (so replacement textures for models go in the progs folder).
You can call them _glow or _luma (_glow is what Quake 3 uses.)
|
|
This thread has been closed by a moderator.
|
Website copyright © 2002-2024 John Fitzgibbons. All posts are copyright their respective authors.
|
|