That's both impressive and terrifying. o_O
PSX Flaming Sky
Moderator: GZDoom Developers
-
-
- Posts: 17454
- Joined: Mon Oct 27, 2003 12:07 am
- Location: Kuala Lumpur, Malaysia
Re: PSX Flaming Sky
-
- Lead GZDoom+Raze Developer
- Posts: 49130
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: PSX Flaming Sky
WTF???
I hope nobody ever considers this for use in a real mod...
I hope nobody ever considers this for use in a real mod...
-
-
- Posts: 26540
- Joined: Tue Jul 15, 2003 4:58 pm
- Location: Scotland
Re: PSX Flaming Sky
That's... That's...
I mean, it's impressive but it could also be one of the grossest gross hacks ever.
I mean, it's impressive but it could also be one of the grossest gross hacks ever.
-
- Posts: 13718
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: PSX Flaming Sky
Well I can't speak for anyone here, but it is my belief that if an alternative isn't provided, the hack will be used instead, and it will end up in a mod. You know you and I agree on like ... 95% of stuff... but this is the 5% where I have to say, performance killer or not, GZDoom could benefit from this, no matter how it's implemented - even if it is GLSL only.Graf Zahl wrote:WTF???
I hope nobody ever considers this for use in a real mod...
Now, I am not saying you have to do this, or support it if it's done. But I am saying - if a feature is wanted badly enough and no support is provided for it, it usually ends up being done anyway in the form of such hacks.
-
-
- Posts: 17921
- Joined: Fri Jul 06, 2007 3:22 pm
Re: PSX Flaming Sky
Okay, so, this is done through a camera texture, with the camera looking at a "canvas" made of 4096 separate one-unit-square sectors that serve as individual texels.
That's a terrifying hack. It's kinda beautiful, in a horrible way. I can't wait for this to be done in pure ACS so that it works on Zandronum too.
That's a terrifying hack. It's kinda beautiful, in a horrible way. I can't wait for this to be done in pure ACS so that it works on Zandronum too.
-
- Posts: 300
- Joined: Thu Oct 18, 2018 2:16 pm
Re: PSX Flaming Sky
Hmm, wouldn't it be possible to avoid sector hack by hudmessaging a camera thing some "pixels" (colored with the font colorer?) and then setcameratotexture?
Or not hudmessage, but that other thing that prints stuff on the screen, that I can't remember the name of?
Or not hudmessage, but that other thing that prints stuff on the screen, that I can't remember the name of?
-
- Admin
- Posts: 6190
- Joined: Thu Feb 26, 2004 3:02 pm
- Preferred Pronouns: He/Him
Re: PSX Flaming Sky
congratulations, you just invented scripted textures, which was what this thread was discussing in the first place.gramps wrote:Hmm, wouldn't it be possible to avoid sector hack by hudmessaging a camera thing some "pixels" (colored with the font colorer?) and then setcameratotexture?
Or not hudmessage, but that other thing that prints stuff on the screen, that I can't remember the name of?
-
- Posts: 300
- Joined: Thu Oct 18, 2018 2:16 pm
Re: PSX Flaming Sky
So... you're saying that won't work, printing stuff on the screens of cameras?
-
- Admin
- Posts: 6190
- Joined: Thu Feb 26, 2004 3:02 pm
- Preferred Pronouns: He/Him
Re: PSX Flaming Sky
Have not tried, but I kind of doubt it. If it does work, then yes, that would be another (only slightly-less hacky) way of doing something like this.
-
- Posts: 13718
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: PSX Flaming Sky
If that was currently possible people would be doing it, I can promise you that.
Camera textures are pretty much the equivalent of the world view that gets drawn before the weapon sprite is put on the screen.
Camera textures are pretty much the equivalent of the world view that gets drawn before the weapon sprite is put on the screen.
-
- Posts: 300
- Joined: Thu Oct 18, 2018 2:16 pm
Re: PSX Flaming Sky
Heh, didn't realize this was such a wanted feature.
I wonder how explicit support for this would work? A new class of camera thing might make sense, then you could use all the existing cameratexture stuff. The new camera thing wouldn't really be a camera at all, it would be tied to a zscript actor with a pixel buffer and some methods to manipulate it, and maybe another virtual method to update everything, like Tick but it would only be called when the camera texture is visible.
I wonder how explicit support for this would work? A new class of camera thing might make sense, then you could use all the existing cameratexture stuff. The new camera thing wouldn't really be a camera at all, it would be tied to a zscript actor with a pixel buffer and some methods to manipulate it, and maybe another virtual method to update everything, like Tick but it would only be called when the camera texture is visible.
-
- Posts: 13718
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: PSX Flaming Sky
It's been wanted for a very long time now, and I only see the desire for it increasing as time goes on. If this feature request goes unanswered, I do honestly expect that the hacky methods like the camera texture will make its way into mainstream, if not now, at least eventually at any rate.
-
- 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: PSX Flaming Sky
So... basically what Unreal Engine 1's ScriptedTexture (the texture itself) and ClientScriptedTexture (the actor painting to the texture each tick) classes already do?gramps wrote:A new class of camera thing might make sense, then you could use all the existing cameratexture stuff. The new camera thing wouldn't really be a camera at all, it would be tied to a zscript actor with a pixel buffer and some methods to manipulate it, and maybe another virtual method to update everything, like Tick but it would only be called when the camera texture is visible.
-
- Lead GZDoom+Raze Developer
- Posts: 49130
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: PSX Flaming Sky
That doesn't change the fact that such a texture is a first grade performance killer that pretty much defeats any attempt at render optimization for a map using it, not to mention that such a grid may cause the node builder to output bad nodes.Rachael wrote:It's been wanted for a very long time now, and I only see the desire for it increasing as time goes on. If this feature request goes unanswered, I do honestly expect that the hacky methods like the camera texture will make its way into mainstream, if not now, at least eventually at any rate.
Actually, the most important thing of what would be needed is already there. The camera textures provide the needed infrastructure to create such textures so what needs to be done is a way to define what source data they use for rendering and a shader.
-
- Posts: 13718
- Joined: Tue Jan 13, 2004 1:31 pm
- Preferred Pronouns: She/Her
Re: PSX Flaming Sky
Actually - it quite literally did that, when the grid was expanded to 256x128, if I understood Phantom correctly.Graf Zahl wrote:not to mention that such a grid may cause the node builder to output bad nodes.
This was the idea I had when I originally conceived of the idea way back when. I just never got around to it.Graf Zahl wrote:Actually, the most important thing of what would be needed is already there. The camera textures provide the needed infrastructure to create such textures so what needs to be done is a way to define what source data they use for rendering and a shader.