123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
- // Arcane-FX for MIT Licensed Open Source version of Torque 3D from GarageGames
- // Copyright (C) 2015 Faust Logic, Inc.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //
- //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
- #include "afx/arcaneFX.h"
- #include "materials/shaderData.h"
- #include "gfx/gfxTransformSaver.h"
- #include "scene/sceneRenderState.h"
- #include "collision/concretePolyList.h"
- #include "T3D/tsStatic.h"
- #include "gfx/primBuilder.h"
- #include "afx/ce/afxZodiacMgr.h"
- #include "afx/afxZodiacGroundPlaneRenderer_T3D.h"
- //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
- const RenderInstType afxZodiacGroundPlaneRenderer::RIT_GroundPlaneZodiac("GroundPlaneZodiac");
- afxZodiacGroundPlaneRenderer* afxZodiacGroundPlaneRenderer::master = 0;
- IMPLEMENT_CONOBJECT(afxZodiacGroundPlaneRenderer);
- ConsoleDocClass( afxZodiacGroundPlaneRenderer,
- "@brief A render bin for zodiac rendering on GroundPlane objects.\n\n"
- "This bin renders instances of AFX zodiac effects onto GroundPlane surfaces.\n\n"
- "@ingroup RenderBin\n"
- "@ingroup AFX\n"
- );
- afxZodiacGroundPlaneRenderer::afxZodiacGroundPlaneRenderer()
- : RenderBinManager(RIT_GroundPlaneZodiac, 1.0f, 1.0f)
- {
- if (!master)
- master = this;
- shader_initialized = false;
- zodiac_shader = NULL;
- shader_consts = NULL;
- projection_sc = NULL;
- color_sc = NULL;
- }
- afxZodiacGroundPlaneRenderer::afxZodiacGroundPlaneRenderer(F32 renderOrder, F32 processAddOrder)
- : RenderBinManager(RIT_GroundPlaneZodiac, renderOrder, processAddOrder)
- {
- if (!master)
- master = this;
- shader_initialized = false;
- zodiac_shader = NULL;
- shader_consts = NULL;
- projection_sc = NULL;
- color_sc = NULL;
- }
- afxZodiacGroundPlaneRenderer::~afxZodiacGroundPlaneRenderer()
- {
- if (this == master)
- master = 0;
- }
- //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
- void afxZodiacGroundPlaneRenderer::initShader()
- {
- if (shader_initialized)
- return;
- shader_initialized = true;
- shader_consts = 0;
- norm_norefl_zb_SB = norm_refl_zb_SB;
- add_norefl_zb_SB = add_refl_zb_SB;
- sub_norefl_zb_SB = sub_refl_zb_SB;
- zodiac_shader = afxZodiacMgr::getGroundPlaneZodiacShader();
- if (!zodiac_shader)
- return;
- GFXStateBlockDesc d;
- d.cullDefined = true;
- d.blendDefined = true;
- d.blendEnable = true;
- d.zDefined = false;
- d.zEnable = true;
- d.zWriteEnable = false;
- d.zFunc = GFXCmpLessEqual;
- d.zSlopeBias = 0;
- d.alphaDefined = true;
- d.alphaTestEnable = true;
- d.alphaTestRef = 0;
- d.alphaTestFunc = GFXCmpGreater;
- d.samplersDefined = true;
- d.samplers[0] = GFXSamplerStateDesc::getClampLinear();
- // normal
- d.blendSrc = GFXBlendSrcAlpha;
- d.blendDest = GFXBlendInvSrcAlpha;
- //
- d.cullMode = GFXCullCCW;
- d.zBias = arcaneFX::sPolysoupZodiacZBias;
- norm_norefl_zb_SB = GFX->createStateBlock(d);
- //
- d.cullMode = GFXCullCW;
- d.zBias = arcaneFX::sPolysoupZodiacZBias;
- norm_refl_zb_SB = GFX->createStateBlock(d);
- // additive
- d.blendSrc = GFXBlendSrcAlpha;
- d.blendDest = GFXBlendOne;
- //
- d.cullMode = GFXCullCCW;
- d.zBias = arcaneFX::sPolysoupZodiacZBias;
- add_norefl_zb_SB = GFX->createStateBlock(d);
- //
- d.cullMode = GFXCullCW;
- d.zBias = arcaneFX::sPolysoupZodiacZBias;
- add_refl_zb_SB = GFX->createStateBlock(d);
- // subtractive
- d.blendSrc = GFXBlendZero;
- d.blendDest = GFXBlendInvSrcColor;
- //
- d.cullMode = GFXCullCCW;
- d.zBias = arcaneFX::sPolysoupZodiacZBias;
- sub_norefl_zb_SB = GFX->createStateBlock(d);
- //
- d.cullMode = GFXCullCW;
- d.zBias = arcaneFX::sPolysoupZodiacZBias;
- sub_refl_zb_SB = GFX->createStateBlock(d);
- shader_consts = zodiac_shader->getShader()->allocConstBuffer();
- projection_sc = zodiac_shader->getShader()->getShaderConstHandle("$modelView");
- color_sc = zodiac_shader->getShader()->getShaderConstHandle("$zodiacColor");
- }
- void afxZodiacGroundPlaneRenderer::clear()
- {
- Parent::clear();
- groundPlane_zodiacs.clear();
- }
- void afxZodiacGroundPlaneRenderer::addZodiac(U32 zode_idx, const Point3F& pos, F32 ang, const GroundPlane* gp, F32 camDist)
- {
- groundPlane_zodiacs.increment();
- GroundPlaneZodiacElem& elem = groundPlane_zodiacs.last();
- elem.gp = gp;
- elem.zode_idx = zode_idx;
- elem.ang = ang;
- elem.camDist = camDist;
- }
- afxZodiacGroundPlaneRenderer* afxZodiacGroundPlaneRenderer::getMaster()
- {
- if (!master)
- master = new afxZodiacGroundPlaneRenderer;
- return master;
- }
- //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
- GFXStateBlock* afxZodiacGroundPlaneRenderer::chooseStateBlock(U32 blend, bool isReflectPass)
- {
- GFXStateBlock* sb = 0;
-
- switch (blend)
- {
- case afxZodiacData::BLEND_ADDITIVE:
- sb = (isReflectPass) ? add_refl_zb_SB : add_norefl_zb_SB;
- break;
- case afxZodiacData::BLEND_SUBTRACTIVE:
- sb = (isReflectPass) ? sub_refl_zb_SB : sub_norefl_zb_SB;
- break;
- default: // afxZodiacData::BLEND_NORMAL:
- sb = (isReflectPass) ? norm_refl_zb_SB : norm_norefl_zb_SB;
- break;
- }
- return sb;
- }
- void afxZodiacGroundPlaneRenderer::render(SceneRenderState* state)
- {
- PROFILE_SCOPE(afxRenderZodiacGroundPlaneMgr_render);
- // Early out if no ground-plane zodiacs to draw.
- if (groundPlane_zodiacs.size() == 0)
- return;
- initShader();
- if (!zodiac_shader)
- return;
- bool is_reflect_pass = state->isReflectPass();
- // Automagically save & restore our viewport and transforms.
- GFXTransformSaver saver;
- MatrixF proj = GFX->getProjectionMatrix();
- // Set up world transform
- MatrixF world = GFX->getWorldMatrix();
- proj.mul(world);
- shader_consts->set(projection_sc, proj);
- //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//
- // RENDER EACH ZODIAC
- //
- for (S32 zz = 0; zz < groundPlane_zodiacs.size(); zz++)
- {
- GroundPlaneZodiacElem& elem = groundPlane_zodiacs[zz];
- afxZodiacMgr::ZodiacSpec* zode = &afxZodiacMgr::terr_zodes[elem.zode_idx];
- if (!zode)
- continue;
- if (is_reflect_pass)
- {
- //if ((zode->zflags & afxZodiacData::SHOW_IN_REFLECTIONS) == 0)
- continue;
- }
- else
- {
- if ((zode->zflags & afxZodiacData::SHOW_IN_NON_REFLECTIONS) == 0)
- continue;
- }
- F32 fadebias = zode->calcDistanceFadeBias(elem.camDist);
- if (fadebias < 0.01f)
- continue;
- F32 cos_ang = mCos(elem.ang);
- F32 sin_ang = mSin(elem.ang);
- GFXStateBlock* sb = chooseStateBlock(zode->zflags & afxZodiacData::BLEND_MASK, is_reflect_pass);
- GFX->setShader(zodiac_shader->getShader());
- GFX->setStateBlock(sb);
- GFX->setShaderConstBuffer(shader_consts);
- // set the texture
- GFX->setTexture(0, *zode->txr);
- LinearColorF zode_color = (LinearColorF)zode->color;
- zode_color.alpha *= fadebias;
- shader_consts->set(color_sc, zode_color);
- F32 rad_xy = zode->radius_xy;
- F32 inv_radius = 1.0f/rad_xy;
- F32 offset_xy = mSqrt(2*rad_xy*rad_xy);
- F32 zx = zode->pos.x;
- F32 zy = zode->pos.y;
- F32 z = 0.00001f;
- Point3F verts[4];
- verts[0].set(zx+offset_xy, zy+offset_xy, z);
- verts[1].set(zx-offset_xy, zy+offset_xy, z);
- verts[2].set(zx-offset_xy, zy-offset_xy, z);
- verts[3].set(zx+offset_xy, zy-offset_xy, z);
- S32 vertind[6];
- vertind[0] = 2;
- vertind[1] = 1;
- vertind[2] = 0;
- vertind[3] = 3;
- vertind[4] = 2;
- vertind[5] = 0;
- PrimBuild::begin(GFXTriangleList, 6);
- for (U32 i = 0; i < 2; i++)
- {
- for (U32 j = 0; j < 3; j++)
- {
- const Point3F& vtx = verts[vertind[i*3+j]];
- // compute UV
- F32 u1 = (vtx.x - zode->pos.x)*inv_radius;
- F32 v1 = (vtx.y - zode->pos.y)*inv_radius;
- F32 ru1 = u1*cos_ang - v1*sin_ang;
- F32 rv1 = u1*sin_ang + v1*cos_ang;
- F32 uu = (ru1 + 1.0f)/2.0f;
- F32 vv = 1.0f - (rv1 + 1.0f)/2.0f;
- PrimBuild::texCoord2f(uu, vv);
- PrimBuild::vertex3fv(vtx);
- }
- }
- PrimBuild::end(false);
- }
- }
- //~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~//~~~~~~~~~~~~~~~~~~~~~//
|