Gamestudio Links
Zorro Links
Newest Posts
New FXCM FIX Plugin
by flink. 06/04/24 07:30
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/22/24 13:41
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (AndrewAMD), 1,454 guests, and 9 spiders.
Key: Admin, Global Mod, Mod
Newest Members
AemStones, LucasJoshua, Baklazhan, Hanky27, firatv
19058 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
Shader Collection #231229
10/12/08 23:44
10/12/08 23:44
Joined: Apr 2008
Posts: 235
TEXCOORD3
Foxfire Offline OP
Member
Foxfire  Offline OP
Member

Joined: Apr 2008
Posts: 235
TEXCOORD3
hey, Next week I will release a small collection of the shaders I have written for GS so far.

Rasterization:
-Normal Mapping with unlimited ppl (store light coords in a texture)
-Relief mapping with radiosity and phong illumination (1 light, Dyn. Sunlight)

Shadows:
-Projective sunlight shadow mapping
-Projective multishadowing (handles up to 4 shadows at once per surface)

Misc:
-Single pass, Single stage volumetric rendering (assumes volume to be infinite, clamps density to a specific value).
-SSAO shader
-Sapphire ray tracer (requires an NVIDIA GeForce 8 series and at least 512mb of video card memory (note: this is experimental, results WILL differ on different machines. DON'T use this shader on slower machines, it CAN CAUSE SERIOUS HARDWARE DAMAGE! I'm not responcible for any damages. As long as you have the correct preformance, your gpu is perfectley safe).
-utilizes CUDA technology.

Demos (if I get around to it :P)
-real-time ray-traced room using Sapphire. I still need to tweak the preformance.

These examples and shaders cannot be used in commercial projects*



If you guys like these shaders, I will sell my other works.
I will only release a couple of shaders as examples.
hope you enjoy these next week, Mike

*I will offer commercial versions of these shaders to anyone for a small fee.


http://www.groundtacticsgame.com/
Alienware m17x R Custom laptop
specs:
Intel Core 2 Extreme Quad CPU Q9300
2x Nvidia 280GTX 2GB vram
6GB ddr3 memory@ 1333Mhz
512GB SSD
1200p 17' screen
runs Crysis Warhead on max settings at 1200p at 90 fps
Re: Shader Collection [Re: Foxfire] #231230
10/12/08 23:46
10/12/08 23:46
Joined: Apr 2008
Posts: 235
TEXCOORD3
Foxfire Offline OP
Member
Foxfire  Offline OP
Member

Joined: Apr 2008
Posts: 235
TEXCOORD3
please let me know which of these shaders you guys want for free. I also have a bunch more that I can release so let me know if there is anything you want that I didn't mention. I'll pick 3 or 4 of them.
Just make a quick post here, I'll check back later.


http://www.groundtacticsgame.com/
Alienware m17x R Custom laptop
specs:
Intel Core 2 Extreme Quad CPU Q9300
2x Nvidia 280GTX 2GB vram
6GB ddr3 memory@ 1333Mhz
512GB SSD
1200p 17' screen
runs Crysis Warhead on max settings at 1200p at 90 fps
Re: Shader Collection [Re: Foxfire] #231252
10/13/08 07:32
10/13/08 07:32
Joined: Oct 2002
Posts: 8,939
planet.earth
ello Offline
Senior Expert
ello  Offline
Senior Expert

Joined: Oct 2002
Posts: 8,939
planet.earth
no screenie? :P

Re: Shader Collection [Re: ello] #231263
10/13/08 09:22
10/13/08 09:22
Joined: Oct 2004
Posts: 150
Germany
T
tkunze Offline
Member
tkunze  Offline
Member
T

Joined: Oct 2004
Posts: 150
Germany
as casting shadows is for me still the main weakness of 3dgs i am interested in
everything in regards of shadow mapping, soft shadow...

Re: Shader Collection [Re: tkunze] #231266
10/13/08 10:12
10/13/08 10:12
Joined: May 2005
Posts: 2,713
Lübeck
Slin Offline
Expert
Slin  Offline
Expert

Joined: May 2005
Posts: 2,713
Lübeck
Why do you always tell us what you are going to do? Just post your shaders...

Quote:

Shadows:
-Projective sunlight shadow mapping

Shadowmapping for the sun which can be used in a big environment, with still a high resolution? Are they soft? How do you make sure that the shadows are highres all the time?
I am just curious as I am just getting to a stage where I am quite happy with my own shadowmapping results wink

Quote:

Rasterization:
-Normal Mapping with unlimited ppl (store light coords in a texture)

Doesn´t that mean that there can only be one light per pixel?

Re: Shader Collection [Re: Slin] #231309
10/13/08 17:22
10/13/08 17:22
Joined: Apr 2008
Posts: 235
TEXCOORD3
Foxfire Offline OP
Member
Foxfire  Offline OP
Member

Joined: Apr 2008
Posts: 235
TEXCOORD3
I don't want to post them all, I want to know which ones you guys want to have for free.

I use a ray tracer for percentage closer soft sunligh shadows.

I also have a projective sunlight shadow mapper that uses cubic coord interpolation with partially derivced boundries for increasing quality. Only one additional camera rendering the depth of each SS pixel is required. This is based off of my SSAO shader with a modified comparison position and a few mods.

Obviously the larger the area you cover the lower the quality or preformance. You can adjust these paremeters to your liking. By using calculus, I greatly improved the conventional meathod. It can cover about 8,000 quants with the quality of 1,000 quants in a traditional shader.

Yes, there is a limit to the number of lights. But I can't imagine using more than 10 lights let alone 2048x2048/2 or whatever your GPU tex limit is anyway.

-I use a linear search to apply every other pixel value (representing a light pos and color, 2 pixels per light) to every rendered pixel (PPL). You can have about 25 lights per surface with 60 fps (on my laptop at least).

Last edited by Foxfire; 10/13/08 17:23.

http://www.groundtacticsgame.com/
Alienware m17x R Custom laptop
specs:
Intel Core 2 Extreme Quad CPU Q9300
2x Nvidia 280GTX 2GB vram
6GB ddr3 memory@ 1333Mhz
512GB SSD
1200p 17' screen
runs Crysis Warhead on max settings at 1200p at 90 fps
Re: Shader Collection [Re: Foxfire] #231326
10/13/08 18:23
10/13/08 18:23
Joined: Apr 2008
Posts: 650
Sajeth Offline
User
Sajeth  Offline
User

Joined: Apr 2008
Posts: 650
Why should we consider using your (commercial) shaders, as long as theres Shade-C out for free?
Without any demo level or screenshots/vids we wont be able to tell you wether you should consider releasing them ;-)


Teleschrott-Fan.
Re: Shader Collection [Re: Sajeth] #231338
10/13/08 19:56
10/13/08 19:56
Joined: Oct 2002
Posts: 8,939
planet.earth
ello Offline
Senior Expert
ello  Offline
Senior Expert

Joined: Oct 2002
Posts: 8,939
planet.earth
you should definately create a demo so one can see them in action. thats fact

Re: Shader Collection [Re: ello] #231396
10/14/08 09:05
10/14/08 09:05
Joined: Mar 2006
Posts: 2,252
Hummel Offline
Expert
Hummel  Offline
Expert

Joined: Mar 2006
Posts: 2,252
...or some screenshots at first -.-

Re: Shader Collection [Re: Hummel] #231469
10/14/08 17:49
10/14/08 17:49

F
Fear411
Unregistered
Fear411
Unregistered
F



i am also interested in shadowmapping shaders.

And whats with you ocean shader, you said you will also post?

Page 1 of 2 1 2

Moderated by  Blink, Hummel, Superku 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1