QZDoom - ZDoom with True-Color (Version 1.3.0 released!)
Forum rules
The Projects forums are ONLY for YOUR PROJECTS! If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.
Got a cool project idea but nothing else? Put it in the project ideas thread instead!
Projects for any Doom-based engine are perfectly acceptable here too.
Please read the full rules for more details.
The Projects forums are ONLY for YOUR PROJECTS! If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.
Got a cool project idea but nothing else? Put it in the project ideas thread instead!
Projects for any Doom-based engine are perfectly acceptable here too.
Please read the full rules for more details.
-
-
- Posts: 1384
- Joined: Sun Oct 14, 2012 1:43 am
- Location: Ukraine
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
Eh? GZDoom already translates voxels to models. And it works.
-
- Posts: 1268
- Joined: Wed Jul 20, 2011 4:24 pm
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
Hmm, does it work with giant models like 512x512x256?
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
No, the KVX format has a hard limit of 256x256x256 because too many fields are bytes.
-
- Posts: 93
- Joined: Tue Apr 23, 2013 4:33 pm
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
As long as the new netcode still allows for online multiplayer saving/loading, i'm happy.Rachael wrote:QZDoom will start to experiment with more risky features. Like this one - plus netcode changes, if I get anywhere with that. (I don't know if I'll have anything as robust as Carnevil's system for Skulltag but it should hopefully be at least as usable - but time will tell for that)
-
- Admin
- Posts: 6190
- Joined: Thu Feb 26, 2004 3:02 pm
- Preferred Pronouns: He/Him
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
I'm curious about this as well. Anecdotally (not somewhere I can do a 1:1 visual comparison) I seem to recall voxels look nicer and more "believable" in the SW renderer, while in GL they look more like the object is built of legos, which I find less desirable (Happy to be proven wrong if there's actually no visual difference, BTW).ibm5155 wrote:EDIT2: Idk how that worked, but can't gpus render voxels as voxels with raycasting?
-
- Posts: 13737
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
@Caligari87: You are not wrong. Each voxel slab (that is, one column) is drawn based on the center of its distance from the viewer, no matter what part of it you are looking at. Essentially, voxel slabs can each be thought of as sprites, themselves, except they are rendered differently.
GZDoom cannot do it this way because, obviously that prevents you from being able to look down on voxels from the top of them. You either would have to convert each individual voxlette into its own sprite - or do what GZDoom does - convert them into cubes. And converting them into cubes is a lot faster because then you don't have to reposition/recalculate based on camera angles.
That being said, it would be possible to use the 2D buffer from the SWRenderer that is presently used to draw voxels in OpenGL, but it would not look good.
GZDoom cannot do it this way because, obviously that prevents you from being able to look down on voxels from the top of them. You either would have to convert each individual voxlette into its own sprite - or do what GZDoom does - convert them into cubes. And converting them into cubes is a lot faster because then you don't have to reposition/recalculate based on camera angles.
That being said, it would be possible to use the 2D buffer from the SWRenderer that is presently used to draw voxels in OpenGL, but it would not look good.
-
- Posts: 13737
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
I reset my master yet again - this time, it was to clean up all the merge conflicts which probably didn't really belong there to begin with. When updating (if compiling from my repo) remember to issue "git reset --hard".
-
-
- Posts: 1384
- Joined: Sun Oct 14, 2012 1:43 am
- Location: Ukraine
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
Probably can be done with drawing points instead of cubes with large glPointSize. No idea why this wasn't done — might look like shit as well.Rachael wrote:You either would have to convert each individual voxlette into its own sprite - or do what GZDoom does - convert them into cubes.
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
This wasn't done because it's crap. OpenGL is 3D so the voxel also needs to be 3D or it looks like shit when moving the camera around. It's also a lot more complex to get right than just making a model out of cubes.
What could be done to make voxels look better is to smooth the edges, but I've yet to find some ready-to-use code for that.
What could be done to make voxels look better is to smooth the edges, but I've yet to find some ready-to-use code for that.
-
- Posts: 412
- Joined: Fri Nov 25, 2016 7:17 am
- Location: some northern german shithole
Re: QZDoom - ZDoom with True-Color (WIP)
Isn't that what zdoom always was?Nash wrote:So this is basically "GZDoom for people who can't run the latest OpenGL", am I understanding this correctly... ?
-
-
- Posts: 1384
- Joined: Sun Oct 14, 2012 1:43 am
- Location: Ukraine
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
"GZDoom for people who can't run the latest OpenGL" is the GZDoom GL2.0 compatibility mode.
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
People may use the software renderer as a matter of preference.
But those using the software renderer because they cannot run OpenGL are hopeless cases to begin with, you'd need a computer from the beginning of the millennium, not to have GL 2.0. Anyone seriously trying to use ZDoom on such a system should stick with a version more concurrent with their hardware.
But those using the software renderer because they cannot run OpenGL are hopeless cases to begin with, you'd need a computer from the beginning of the millennium, not to have GL 2.0. Anyone seriously trying to use ZDoom on such a system should stick with a version more concurrent with their hardware.
-
- Posts: 41
- Joined: Wed Mar 01, 2017 1:58 pm
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
Well, there are more corner case situations. Chromebooks or small single board computers that only support GLES for instance. Also, I use qzdoom on a laptop that can run gzdoom, however the software renderer in qzdoom outperforms the hardware renderer (integrated intel graphics). I'm picking up an exta stick of ram for it though, so we'll see if that helps (sharing more ram with the igpu)Graf Zahl wrote:People may use the software renderer as a matter of preference.
But those using the software renderer because they cannot run OpenGL are hopeless cases to begin with, you'd need a computer from the beginning of the millennium, not to have GL 2.0. Anyone seriously trying to use ZDoom on such a system should stick with a version more concurrent with their hardware.
-
- Posts: 3886
- Joined: Fri Feb 08, 2008 9:15 am
- Preferred Pronouns: She/Her
- Operating System Version (Optional): (btw I use) Arch
- Graphics Processor: nVidia with Vulkan support
- Location: Vigo, Galicia
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
I wouldn't really say "beginning of the millennium. The first Intel GPU to support 2.x on all platforms was the GMA 4500, released in 2008. Anything from the current decade (that is, starting from when the "Intel HD" brand started) will have guaranteed 2.1 support minimum, though, but it'll still have subpar performance. Not even the "Iris Pro" line seems to be any good either. I don't know who at Intel came up with that statement about them being on par with dedicated GPUs, but I call bullshit.
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: QZDoom - ZDoom with True-Color (Version 1.2.2 released!)
True, but back then Intel's graphics hardware was so bad that almost nobody used it outside of office computers.MarisaKirisame wrote:I wouldn't really say "beginning of the millennium. The first Intel GPU to support 2.x on all platforms was the GMA 4500, released in 2008.
Today the number of such systems that are in use by people who play games can be considered infinitesimally low.
What I'd really like to see one of these days is some actual benchmarks with suitable maps from various Intel chipsets to decide if they are actually worth supporting or better left relegated to some legacy GZDoom version. I know that the Geforce 6800 in my old 2004 computer is way too slow to run anything exceeding vanilla complexity at decent frame rates.