News | Forum | People | FAQ | Links | Search | Register | Log in
Mark V - Release 1.00
http://quakeone.com/markv/

* Nehahra support -- better and deeper link
* Mirror support, "mirror_" textures. video
* Quaddicted install via console (i.e. "install travail")
* Full external texture support DP naming convention
* Enhanced dev tools texturepointer video inspector video
* IPv6 support, enhanced server capabilities
* Enhance co-operative play (excels at this!)
* Software renderer version (WinQuake)
* "Find" information command (ex. type "find sky")

Thanks to the beta testers! NightFright, fifth, spy, gunter, pulsar, johnny law, dwere, qmaster, mfx, icaro, kinn, adib, onetruepurple, railmccoy

And thanks to the other developers who actively provided advice or assistance: Spike (!), mh, ericw, metlslime and the sw guys: mankrip and qbism.

/Mac version is not current yet ...; Linux will happen sometime in 2017
First | Previous | Next | Last
@pritchard 
Is there a particular reason that my HUD is different depending on which executable I run

Can you clarify that? Like what executable is A and what executable is B? 
 
I can understand that since you like to remodel that you probably find it quite annoying.

Well, one port being flexible won't really fix the situation as a whole, so I'm not sure how useful it will be.

Still, I imagine most custom assets were produced with the GLQuake standart in mind, so having a software port that can display them correctly would be interesting.

Or rather semi-correctly, since there's also the issue of perspective correction. 
@pritchard - Scr_scaleauto 
Mark V has automatic HUD scaling, it is enabled by default and if its value is non-zero it will ignore scr_menuscale, scr_sbarscale, scr_conscale, etc.

scr_scaleauto must be set to 0 for Mark V to honor those settings.

It's in the preferences menu, it's primary purpose of defaulting on is to avoid the microscopic HUD thing that has been prevalent in FitzQuake and derived engines. 
Mark V - Build 1010 
Temp Build ...

Build 1010

Windows: Open GL | Direct X 8 | WinQuake
http://quakeone.com/markv/mark_v_1010_windows.zip

Mac: Open GL | WinQuake
http://quakeone.com/markv/mark_v_1010_mac.zip

May take a minute before the uploads are completed. 
 
Sorry, I should have clarified in my post. The first screenshot is from mark_v_winquake.exe and the second from the regular mark_v.exe. Both are running the same config, which is why it seemed odd to me that they looked different.

I think I've figured it out though. It seems to be because I have it set to the Translucent mode, which is supposed to be GL exclusive and just makes the whole thing dissappear in winquake, which made me think it was using the minimal style instead. 
 
Ah, WinQuake Mark V doesn't support autoscale at this time.

Although in video options, you can set stretch, which in some ways has a similar result.

Mark V WinQuake doesn't have the same type of translucency that Open GL has for menu items and such. WinQuake doesn't really support translucent because is 256-colors. 
 
It also seems that interface scaling doesn't work in the Winquake version. 
I Started Typing When Baker's Post Didn't Exist Yet 
 
Curious 
Why is there a separate Winquake version? I'm trying to understand the use case or benefits of having it if it isn't feature complete anyhow. 
 
WinQuake is the software renderer, like the original Quake. 8-bit palette, pixelized rendering, chunky particles, water warping, no brush Z-fighting ever since brush models clip against world, etc.

killpixel -- and some others into the original Quake look -- is obsessed with the original software renderer ... 8-bit palette, very pixeliated rendering -- some releases like Kaahoo look obsoletely astonishing in a way that the Open GL engines can't quite do.

WinQuake/original DOS Quake don't have a way to scale 2D. But it is on my list to do so it has equivalent autoscale.

Because of the prevalence of Open GL engines in modern times, it is usually more hardcore or throwback types or those that want the "out of the box 1996-style" that tend to be aware of the software renderer.

As far as I know, when GOG site sells Quake there is a shortcut available to run original DOS Quake in DOSBox as an option.

When Sock discovered Mark V WinQuake ...

Sock tweeted: OMG! WinQuake how could I forget you! MarkV Winquake from Baker, #quake pixel heaven!

.. and included a link to Mark V WinQuake in the Arcane Dimensions readme for anyone who wanted to try it.

The WinQuake build is there for nostagia or as a "wish WinQuake could run BSP2 or modern maps".

/When time permits, there are few more things I want to do to the WinQuake renderer, but it's a short list (autoscale, masked textures, brush model .alpha). 
Bmodel Alpha 
That was one of the things I missed the most when trying my current project out in mark_v_winquake. I have quite a few windows in my map and they look absolutely awful when they're not transparent :(
I can live without coloured lighting, but not without my fancy see through brushes ;-; 
 
I wholeheartedly agree. It is something I'm not satisfied with, but also near the top of the difficulty scale to implement properly. I have 95% implementation on my hard drive, but I'm doing something wrong with 5% and I suspect a mental block is preventing me from seeing what it is -- as a result, I suspect one of these times I'll look at it and then be like "Aw hell ... how could I have forgotten that step."

But for now, lives on the to-do list. 
Temp DX8 Build Mostly For Gunter 
http://quakeone.com/markv/dx8_temp_build.zip

-dedicated fix
-txgamma fix related to lightning gun

(*) The QMB particles are intended for alpha blending. Due to this texture gamma should not be applied to them, so they no longer receive gamma correction. 
Lightning Gun Sparks Test 
video

Testing/fixing a lightning gun beam collision issue, which before fixing did not consistently generate sparks (QMB option) ...

At 28 seconds in, discovers original E1M7 bug that wakes a Shambler used for Chthon death gib chunks. 
@gunter - A+++ Bug Report On Bubbles 
qmb bubbles go away like clockwork

Mystery solved:

Original code:
#define ONE_FRAME_ONLY (0.0001)

First, 0.0001 is an irrational number in binary. Second if someone is running 10,000 frames per second in Quake, they have far worse problems than bubbles. Third, the larger the number of seconds into a map, the more that floating point is going to truncate the current time ... potentially thinking that a bubble's time has always expired.

Modified:
#define ONE_FRAME_ONLY (1.0/1024) // (0.001)

1/1024 isn't an irrational number in binary. The problem would eventually crop up again at some point (300 minutes +/- or maybe 600 or 1200 minutes+/-). It isn't uncommon for it to take 40 minutes to play a map (and some of the modern maps with 400 or 600 or more monsters ...).

There would be other ways to solve the problem, some arguably more correctly, but at the end of the day QuakeC starts getting problems with time calculations after a map has been running hundreds of minutes too.

/This is the kind of bug that could literally never get noticed. If you have QMB bubbles on, you wouldn't see them to know they weren't there. I don't think anyone ever noticed in JoeQuake. Qrack might have similar behavior. 
Baker 
could you check the main menu of the nehahra mod
i couldn't select the "quit" parm from there 
@spy - Re: Nehahra Menu 
Could you list each item in the main menu of what you are seeing?

I have
- Single Player
- Multiplayer
- Options
- Credits (which goes to help)
- Quit

And quit works for me.

But if I recall there is like a "Nehahra movies" version that lists 6 items or something and has an extra menu -- I don't know what it is labelled.

Maybe you are using "Seal of Nehahra" or something?

If you can provide me a link to the download of what you have and where you got it from .. I can take a look.

The one currently supported is the Spirit repackaged one, because it is all in one zip file and easy to install.

If I recall, before the Spirit repackage, was one heck of a mess to sort out. 
Mark V - Build 1101 - Now With Mac Build 
Download at usual location: http://quakeone.com/markv

Mac Version

- Mac Build: Open GL with QMB effects option image
- Mac Build: WinQuake software renderer image

All Versions

- Better lightning gun sparks (QMB option) video
- Improved lightning appearance @ Chthon (QMB option)
- Solved disappearing QMB bubbles (gunter)
- Solved non-lerping QMB bubbles (gunter)
- Install command returns (johnny law)
- GL -dedicated crash fix (gunter)
- Automatic saves named auto_save_0.sav, _1, _2
- DirectX 8 .alpha entities now consistent (gunter)
- Malice banshee rendering issue solved with sv_gameplayfix_setmodelrealbox 0 (dwere)
- Internal commands removed (c0burn)

Mac Note For Open GL

For the moment --- to adjust gamma typing "txgamma 0.7" in the console.

Contrast adjustment is available in the menu, haven't decided how to handle gamma slider on the Mac yet. Leaning towards 1 second delay after stop moving slider.

Mac Quaddicted Support!

In Mark V, you can type "install travail" in the console.

More important on the Mac since the Quake Injector does not run on a Mac.

/Mark V auto-completes the names of 500+ of the highest rated Quaddicted single player releases. Type install and then press Ctrl-Space (Command + space?) for list. 
Yeah 
i've got

- Single Player
- Playdemo
- Multiplayer
- Options
- Credits (which goes to help)
- Quit

- sp works just fine
- playdemo - behaves like multiplayer
- multiplayer - options
- options .. and so on 
Baker 
I dl'd the N from quaddicted as is , no movie

and just run it via batch file "mark_x -game nehahra -noserial -nojoy -noipx -nocdaudio" 
Ran 
 
These Updates... 
are coming faster than I can download them! xD 
Baker Is A Coding Machine 
just like Sock, in a good way 
And A Little Request To Baker 
to add a qqq command from S - as quit command 
Nehahra Menu 
First | Previous | Next | Last
You must be logged in to post in this thread.
Website copyright © 2002-2024 John Fitzgibbons. All posts are copyright their respective authors.