Gamestudio Links
Zorro Links
Newest Posts
Executing Trades on Next Bar Open
by Zheka. 06/20/24 14:26
Lapsa's very own thread
by rki. 06/19/24 11:27
A simple game ...
by VoroneTZ. 06/18/24 10:50
Face player all the time ...
by bbn1982. 06/18/24 10:25
Zorro Beta 2.61: PyTorch
by jcl. 06/10/24 14:42
New FXCM FIX Plugin
by flink. 06/04/24 07:30
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AndrewAMD, degenerate_762), 1,213 guests, and 7 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Mino, squik, AemStones, LucasJoshua, Baklazhan
19061 Registered Users
Previous Thread
Next Thread
Print Thread
Rating: 3
Page 1 of 2 1 2
Error importing .fx files from nvidia FX Composer #33966
09/26/04 20:56
09/26/04 20:56
Joined: Aug 2002
Posts: 791
NRW, Deutschland
inFusion Offline OP
User
inFusion  Offline OP
User

Joined: Aug 2002
Posts: 791
NRW, Deutschland
Just downloaded nvidia FX Composer and now I wanted to import one of the .fx files to 3dgs.
I created a material and loaded the "mrwiggle.fx" via effect_load(mat_wiggle,"mrwiggle.fx")
I'm starting the game and get something like this error:

In Antwort auf:


error in mrwiggle.fx
line(26)





I have the beta 6.30 Commercial and I thought it would support Dx9 HLSL ... ?

So, what have I done wrong?

Greetingz, HeLioS

PS: You can answear in german too!


"Wer nicht mit der Zeit geht, muss mit der Zeit gehen" - Bernd Stromberg
----
www.kihaki.de/reincarnation
Re: Error importing .fx files from nvidia FX Composer [Re: inFusion] #33967
09/27/04 02:28
09/27/04 02:28
Joined: Aug 2002
Posts: 791
NRW, Deutschland
inFusion Offline OP
User
inFusion  Offline OP
User

Joined: Aug 2002
Posts: 791
NRW, Deutschland
Did no one ever import something from FX Composer ???


"Wer nicht mit der Zeit geht, muss mit der Zeit gehen" - Bernd Stromberg
----
www.kihaki.de/reincarnation
Re: Error importing .fx files from nvidia FX Compo [Re: inFusion] #33968
09/27/04 02:33
09/27/04 02:33
Joined: May 2002
Posts: 2,541
Berlin
EX Citer Offline
Expert
EX Citer  Offline
Expert

Joined: May 2002
Posts: 2,541
Berlin
As far as I know you need 6.303. Thats the beta tester version for only some limited people.

Itīs too big for me to download and I am just interested into that skin shader (visible in the screenshots gallery of that tool). If someone could extract it for me


:L
Re: Error importing .fx files from nvidia FX Compo [Re: EX Citer] #33969
09/27/04 03:10
09/27/04 03:10
Joined: Jan 2002
Posts: 1,276
trapped in a paper bag
Drew Offline
Serious User
Drew  Offline
Serious User

Joined: Jan 2002
Posts: 1,276
trapped in a paper bag
As far as I see it, you cant just load .fx files, you have to convert them to work in GS...

I hope Im wrong...

Re: Error importing .fx files from nvidia FX Compo [Re: EX Citer] #33970
09/27/04 03:36
09/27/04 03:36
Joined: Aug 2002
Posts: 791
NRW, Deutschland
inFusion Offline OP
User
inFusion  Offline OP
User

Joined: Aug 2002
Posts: 791
NRW, Deutschland
Does Version A6.3.1 Support it?
tell me exactly the shader and give me your email and I could extract it for you

Greetz


"Wer nicht mit der Zeit geht, muss mit der Zeit gehen" - Bernd Stromberg
----
www.kihaki.de/reincarnation
Re: Error importing .fx files from nvidia FX Compo [Re: inFusion] #33971
09/27/04 03:42
09/27/04 03:42
Joined: Jan 2002
Posts: 1,276
trapped in a paper bag
Drew Offline
Serious User
Drew  Offline
Serious User

Joined: Jan 2002
Posts: 1,276
trapped in a paper bag
no..thats what I meant, it has to be converted I believe...
I have no idea how to do this, Im not a shader programmer.
There are a few threads on it, and one in german that explains the converstion more....here is a great one from fxcomposer, Bloom Glow....NOT converted, in case anyone want to try... Bloom is standard now in most games, especially xbox!!!!

Code:
 /*********************************************************************NVMH3****

File: $Id: Scene_bloom.fx

Copyright NVIDIA Corporation 2004
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED
*AS IS* AND NVIDIA AND ITS SUPPLIERS DISCLAIM ALL WARRANTIES, EITHER EXPRESS
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL NVIDIA OR ITS SUPPLIERS
BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT, OR CONSEQUENTIAL DAMAGES
WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS,
BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION, OR ANY OTHER PECUNIARY LOSS)
ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, EVEN IF NVIDIA HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

Comments:
Glow/bloom post processing effect
Down-samples scene first for performance (reduces size by 4)
Thresholds luminance for extra highlights
Separable filter, filters in X, then in Y
Takes advantage of bilinear filtering for blur

******************************************************************************/

float4 ClearColor : DIFFUSE = { 0.0f, 0.0f, 0.0f, 1.0f};
float ClearDepth = 1.0f;

float Script : STANDARDSGLOBAL
<
string UIWidget = "none";
string ScriptClass = "scene";
string ScriptOrder = "postprocess";
string ScriptOutput = "color";

// We just call a script in the main technique.
string Script = "Technique=Bloom;";

> = 0.8;

///////////////////////////////////////////////////////////
/////////////////////////////////////// Tweakables ////////
///////////////////////////////////////////////////////////

float SceneIntensity <
string UIName = "Scene intensity";
string UIWidget = "slider";
float UIMin = 0.0f;
float UIMax = 2.0f;
float UIStep = 0.1f;
> = 0.5f;

float GlowIntensity <
string UIName = "Glow intensity";
string UIWidget = "slider";
float UIMin = 0.0f;
float UIMax = 2.0f;
float UIStep = 0.1f;
> = 0.5f;

float HighlightThreshold <
string UIName = "Highlight threshold";
string UIWidget = "slider";
float UIMin = 0.0f;
float UIMax = 1.0f;
float UIStep = 0.1f;
> = 0.9f;

float HighlightIntensity <
string UIName = "Highlight intensity";
string UIWidget = "slider";
float UIMin = 0.0f;
float UIMax = 10.0f;
float UIStep = 0.1f;
> = 0.5f;

///////////////////////////////////////////////////////////
///////////////////////////// Render-to-Texture Data //////
///////////////////////////////////////////////////////////

float2 WindowSize : VIEWPORTPIXELSIZE;
float downsampleScale = 0.25;

float BlurWidth <
string UIName = "Blur width";
string UIWidget = "slider";
float UIMin = 0.0f;
float UIMax = 10.0f;
float UIStep = 0.5f;
> = 2.0f;

texture SceneMap : RENDERCOLORTARGET
<
float2 ViewportRatio = { 1.0, 1.0 };
int MIPLEVELS = 1;
string format = "X8R8G8B8";
>;
texture DepthMap : RENDERDEPTHSTENCILTARGET
<
float2 ViewportRatio = { 1.0, 1.0 };
string format = "D24S8";
>;

sampler SceneSampler = sampler_state
{
texture = <SceneMap>;
AddressU = CLAMP;
AddressV = CLAMP;
AddressW = CLAMP;
MIPFILTER = NONE;
MINFILTER = LINEAR;
MAGFILTER = LINEAR;
};

texture DownsampleMap : RENDERCOLORTARGET
<
float2 ViewportRatio = { 0.25, 0.25 };
int MIPLEVELS = 1;
string format = "A8R8G8B8";
>;

sampler DownsampleSampler = sampler_state
{
texture = <DownsampleMap>;
AddressU = CLAMP;
AddressV = CLAMP;
AddressW = CLAMP;
MIPFILTER = NONE;
MINFILTER = LINEAR;
MAGFILTER = LINEAR;
};

texture HBlurMap : RENDERCOLORTARGET
<
float2 ViewportRatio = { 0.25, 0.25 };
int MIPLEVELS = 1;
string format = "A8R8G8B8";
>;

sampler HBlurSampler = sampler_state
{
texture = <HBlurMap>;
AddressU = CLAMP;
AddressV = CLAMP;
AddressW = CLAMP;
MIPFILTER = NONE;
MINFILTER = LINEAR;
MAGFILTER = LINEAR;
};

texture FinalBlurMap : RENDERCOLORTARGET
<
float2 ViewportRatio = { 0.25, 0.25 };
int MIPLEVELS = 1;
string format = "A8R8G8B8";
>;

sampler FinalBlurSampler = sampler_state
{
texture = <FinalBlurMap>;
AddressU = CLAMP;
AddressV = CLAMP;
AddressW = CLAMP;
MIPFILTER = NONE;
MINFILTER = LINEAR;
MAGFILTER = LINEAR;
};

///////////////////////////////////////////////////////////
/////////////////////////////////// data structures ///////
///////////////////////////////////////////////////////////

struct VS_OUTPUT_BLUR
{
float4 Position : POSITION;
float2 TexCoord[8]: TEXCOORD0;
};

struct VS_OUTPUT
{
float4 Position : POSITION;
float2 TexCoord0 : TEXCOORD0;
float2 TexCoord1 : TEXCOORD1;
};

struct VS_OUTPUT_DOWNSAMPLE
{
float4 Position : POSITION;
float2 TexCoord[4]: TEXCOORD0;
};

////////////////////////////////////////////////////////////
////////////////////////////////// vertex shaders //////////
////////////////////////////////////////////////////////////

// generate texture coordinates to sample 4 neighbours
VS_OUTPUT_DOWNSAMPLE VS_Downsample(float4 Position : POSITION,
float2 TexCoord : TEXCOORD0)
{
VS_OUTPUT_DOWNSAMPLE OUT;
float2 texelSize = downsampleScale / WindowSize;
float2 s = TexCoord;
OUT.Position = Position;
OUT.TexCoord[0] = s;
OUT.TexCoord[1] = s + float2(2, 0)*texelSize;
OUT.TexCoord[2] = s + float2(2, 2)*texelSize;
OUT.TexCoord[3] = s + float2(0, 2)*texelSize;
return OUT;
}

// generate texcoords for blur
VS_OUTPUT_BLUR VS_Blur(float4 Position : POSITION,
float2 TexCoord : TEXCOORD0,
uniform int nsamples,
uniform float2 direction
)
{
VS_OUTPUT_BLUR OUT = (VS_OUTPUT_BLUR)0;
OUT.Position = Position;
float2 texelSize = BlurWidth / WindowSize;
float2 s = TexCoord - texelSize*(nsamples-1)*0.5*direction;
for(int i=0; i<nsamples; i++) {
OUT.TexCoord[i] = s + texelSize*i*direction;
}
return OUT;
}

VS_OUTPUT VS_Quad(float4 Position : POSITION,
float2 TexCoord : TEXCOORD0)
{
VS_OUTPUT OUT;
float2 texelSize = 1.0 / WindowSize;
OUT.Position = Position;
// don't want bilinear filtering on original scene:
OUT.TexCoord0 = TexCoord + texelSize*0.5;
OUT.TexCoord1 = TexCoord + texelSize*0.5/downsampleScale;
return OUT;
}

//////////////////////////////////////////////////////
////////////////////////////////// pixel shaders /////
//////////////////////////////////////////////////////

half luminance(half3 c)
{
return dot( c, float3(0.3, 0.59, 0.11) );
}

// this function should be baked into a texture lookup for performance
half highlights(half3 c)
{
return smoothstep(HighlightThreshold, 1.0, luminance(c.rgb));
}

half4 PS_Downsample(VS_OUTPUT_DOWNSAMPLE IN,
uniform sampler2D tex) : COLOR
{
half4 c;
#if 0
// sub sampling
c = tex2D(tex, IN.TexCoord[0]);
#else
// box filter
c = tex2D(tex, IN.TexCoord[0]) * 0.25;
c += tex2D(tex, IN.TexCoord[1]) * 0.25;
c += tex2D(tex, IN.TexCoord[2]) * 0.25;
c += tex2D(tex, IN.TexCoord[3]) * 0.25;
#endif

// store hilights in alpha
c.a = highlights(c.rgb);

return c;
}

// blur filter weights
const half weights7[7] = {
0.05,
0.1,
0.2,
0.3,
0.2,
0.1,
0.05,
};

const half weights7_Central[7] = {
0.0,
0.0,
0.2,
0.6,
0.2,
0.0,
0.0,
};

// fx doesn't support variable length arrays
// otherwise we could generalize this
half4 PS_Blur7(VS_OUTPUT_BLUR IN,
uniform sampler2D tex,
uniform half weight[7]
) : COLOR
{
half4 c = 0;
// this loop will be unrolled by compiler
for(int i=0; i<7; i++) {
c += tex2D(tex, IN.TexCoord[i]) * weight[i];
}
return c;
}


half4 PS_Display(VS_OUTPUT IN,
uniform sampler2D tex) : COLOR
{
return tex2D(tex, IN.TexCoord1);
}

half4 PS_Comp(VS_OUTPUT IN,
uniform sampler2D sceneSampler,
uniform sampler2D blurredSceneSampler) : COLOR
{
half4 orig = tex2D(sceneSampler, IN.TexCoord0);
half4 blur = tex2D(blurredSceneSampler, IN.TexCoord1);
return SceneIntensity*orig + GlowIntensity*blur + HighlightIntensity*blur.a;
}

////////////////////////////////////////////////////////////
/////////////////////////////////////// techniques /////////
////////////////////////////////////////////////////////////
technique Bloom
<
string Script = "ClearSetDepth=ClearDepth;"
"RenderColorTarget=SceneMap;"
"RenderDepthStencilTarget=DepthMap;"
"ClearSetColor=ClearColor;"
"ClearSetDepth=ClearDepth;"
"Clear=Color;"
"Clear=Depth;"
"ScriptSignature=color;"
"ScriptExternal=;"
"Pass=DownSample;"
"Pass=GlowH;"
"Pass=GlowV;"
"Pass=FinalComp;";
>
{
pass DownSample
<
string Script = "RenderColorTarget0=DownsampleMap;"
"ClearSetColor=ClearColor;"
"Clear=Color;"
"Draw=Buffer;";
>
{
cullmode = none;
ZEnable = false;
ZWriteEnable = false;
VertexShader = compile vs_2_0 VS_Downsample();
PixelShader = compile ps_2_0 PS_Downsample(SceneSampler);
}
pass GlowH
<
string Script = "RenderColorTarget0=HBlurMap;"
"ClearSetColor=ClearColor;"
"Clear=Color;"
"Draw=Buffer;";
>
{
cullmode = none;
ZEnable = false;
ZWriteEnable = false;
VertexShader = compile vs_2_0 VS_Blur(7, float2(1, 0));
// PixelShader = compile ps_2_0 PS_Blur7(SceneSampler, weights7);
PixelShader = compile ps_2_0 PS_Blur7(DownsampleSampler, weights7);
}
pass GlowV
<
string Script = "RenderColorTarget0=FinalBlurMap;"
"ClearSetColor=ClearColor;"
"Clear=color;"
"Draw=Buffer;";
>
{
cullmode = none;
ZEnable = false;
ZWriteEnable = false;
VertexShader = compile vs_2_0 VS_Blur(7, float2(0, 1));
PixelShader = compile ps_2_0 PS_Blur7(HBlurSampler, weights7);
}

pass GlowH_Central
<
string Script = "RenderColorTarget0=HBlurMap;"
"ClearSetColor=ClearColor;"
"Clear=Color;"
"Draw=Buffer;";
>
{
cullmode = none;
ZEnable = false;
ZWriteEnable = false;
VertexShader = compile vs_2_0 VS_Blur(7, float2(1, 0));
PixelShader = compile ps_2_0 PS_Blur7(DownsampleSampler, weights7_Central);
}
pass GlowV_Central
<
string Script = "RenderColorTarget0=FinalBlurMap;"
"ClearSetColor=ClearColor;"
"Clear=Color;"
"Draw=Buffer;";
>
{
cullmode = none;
ZEnable = false;
ZWriteEnable = false;
VertexShader = compile vs_2_0 VS_Blur(7, float2(0, 1));
PixelShader = compile ps_2_0 PS_Blur7(HBlurSampler, weights7_Central);
}
pass FinalComp
<
string Script = "RenderColorTarget=;"
"RenderDepthStencilTarget=;"
"Draw=Buffer;";
>
{
cullmode = none;
ZEnable = false;
ZWriteEnable = false;
VertexShader = compile vs_2_0 VS_Quad();
PixelShader = compile ps_2_0 PS_Comp(SceneSampler, FinalBlurSampler);
}
}



Re: Error importing .fx files from nvidia FX Compo [Re: Drew] #33972
09/27/04 04:49
09/27/04 04:49
Joined: Aug 2002
Posts: 791
NRW, Deutschland
inFusion Offline OP
User
inFusion  Offline OP
User

Joined: Aug 2002
Posts: 791
NRW, Deutschland
I thought a6.31 beta supports HLSL. Why can't I just load this .fx file if it's the same language...? What is then the difference between Dx9 HLSL and GS HLSL?

Greetz, HeLioS


"Wer nicht mit der Zeit geht, muss mit der Zeit gehen" - Bernd Stromberg
----
www.kihaki.de/reincarnation
Re: Error importing .fx files from nvidia FX Compo [Re: inFusion] #33973
09/27/04 04:52
09/27/04 04:52
Joined: May 2002
Posts: 7,441
ventilator Offline
Senior Expert
ventilator  Offline
Senior Expert

Joined: May 2002
Posts: 7,441
it's exactly the same hlsl. shaders just need some adaptations. matrices, textures, constants,... have to be set up in the right way for whatever 3d-engine you use.

Re: Error importing .fx files from nvidia FX Compo [Re: ventilator] #33974
09/27/04 08:02
09/27/04 08:02
Joined: Aug 2001
Posts: 2,320
Alberta, Canada
William Offline
Expert
William  Offline
Expert

Joined: Aug 2001
Posts: 2,320
Alberta, Canada
I think it would be great if there was a bloom shader posted that works with 3dgs! I really wish I could help you convert it, i'm still learning the basics right now.


Check out Silas. www.kartsilas.com

Hear my band Finding Fire - www.myspace.com/findingfire

Daily dev updates - http://kartsilas.blogspot.com/
Re: Error importing .fx files from nvidia FX Compo [Re: William] #33975
09/27/04 23:40
09/27/04 23:40
Joined: May 2002
Posts: 2,541
Berlin
EX Citer Offline
Expert
EX Citer  Offline
Expert

Joined: May 2002
Posts: 2,541
Berlin
Bloom shader: I wrote about the bloom shader when I posted the link into the forum.... See one or two pages back. I mean I wrote that the programm contains it.

SKIN SHADER: I donīt know the name. There is just written that it was also used in the dawn demo (itīs also used in poser). Itīs a shader to make a skin (human skin) look like real skin. I donīt know what it exactly is doing. Maybe it just adds some details or normalmaps. But itīs announced in the gallery as skin shader (human skin).
my Email is exciter@nearfatal.net

EX Citer


:L
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