shadowvolumes.cpp 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940
  1. /*
  2. * Copyright 2013-2014 Dario Manesku. All rights reserved.
  3. * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
  4. */
  5. #include <string>
  6. #include <vector>
  7. #include <map>
  8. #include <tinystl/allocator.h>
  9. #include <tinystl/unordered_map.h>
  10. namespace stl = tinystl;
  11. #include "common.h"
  12. #include "bgfx_utils.h"
  13. #include <bgfx/bgfx.h>
  14. #include <bx/timer.h>
  15. #include <bx/allocator.h>
  16. #include <bx/hash.h>
  17. #include <bx/simd_t.h>
  18. #include <bx/fpumath.h>
  19. #include <bx/crtimpl.h>
  20. #include "entry/entry.h"
  21. #include "camera.h"
  22. #include "imgui/imgui.h"
  23. namespace bgfx
  24. {
  25. int32_t read(bx::ReaderI* _reader, bgfx::VertexDecl& _decl, bx::Error* _err = NULL);
  26. }
  27. namespace
  28. {
  29. #define SV_USE_SIMD 1
  30. #define MAX_INSTANCE_COUNT 25
  31. #define MAX_LIGHTS_COUNT 5
  32. #define VIEWID_RANGE1_PASS0 1
  33. #define VIEWID_RANGE1_RT_PASS1 2
  34. #define VIEWID_RANGE15_PASS2 3
  35. #define VIEWID_RANGE1_PASS3 20
  36. struct PosNormalTexcoordVertex
  37. {
  38. float m_x;
  39. float m_y;
  40. float m_z;
  41. uint32_t m_normal;
  42. float m_u;
  43. float m_v;
  44. static void init()
  45. {
  46. ms_decl
  47. .begin()
  48. .add(bgfx::Attrib::Position, 3, bgfx::AttribType::Float)
  49. .add(bgfx::Attrib::Normal, 4, bgfx::AttribType::Uint8, true, true)
  50. .add(bgfx::Attrib::TexCoord0, 2, bgfx::AttribType::Float)
  51. .end();
  52. }
  53. static bgfx::VertexDecl ms_decl;
  54. };
  55. bgfx::VertexDecl PosNormalTexcoordVertex::ms_decl;
  56. static const float s_texcoord = 50.0f;
  57. static PosNormalTexcoordVertex s_hplaneVertices[] =
  58. {
  59. { -1.0f, 0.0f, 1.0f, encodeNormalRgba8(0.0f, 1.0f, 0.0f), s_texcoord, s_texcoord },
  60. { 1.0f, 0.0f, 1.0f, encodeNormalRgba8(0.0f, 1.0f, 0.0f), s_texcoord, 0.0f },
  61. { -1.0f, 0.0f, -1.0f, encodeNormalRgba8(0.0f, 1.0f, 0.0f), 0.0f, s_texcoord },
  62. { 1.0f, 0.0f, -1.0f, encodeNormalRgba8(0.0f, 1.0f, 0.0f), 0.0f, 0.0f },
  63. };
  64. static PosNormalTexcoordVertex s_vplaneVertices[] =
  65. {
  66. { -1.0f, 1.0f, 0.0f, encodeNormalRgba8(0.0f, 0.0f, -1.0f), 1.0f, 1.0f },
  67. { 1.0f, 1.0f, 0.0f, encodeNormalRgba8(0.0f, 0.0f, -1.0f), 1.0f, 0.0f },
  68. { -1.0f, -1.0f, 0.0f, encodeNormalRgba8(0.0f, 0.0f, -1.0f), 0.0f, 1.0f },
  69. { 1.0f, -1.0f, 0.0f, encodeNormalRgba8(0.0f, 0.0f, -1.0f), 0.0f, 0.0f },
  70. };
  71. static const uint16_t s_planeIndices[] =
  72. {
  73. 0, 1, 2,
  74. 1, 3, 2,
  75. };
  76. static bool s_oglNdc = false;
  77. static float s_texelHalf = 0.0f;
  78. static uint32_t s_viewMask = 0;
  79. static bgfx::UniformHandle s_texColor;
  80. static bgfx::UniformHandle s_texStencil;
  81. static bgfx::FrameBufferHandle s_stencilFb;
  82. void setViewClearMask(uint32_t _viewMask, uint8_t _flags, uint32_t _rgba, float _depth, uint8_t _stencil)
  83. {
  84. for (uint32_t view = 0, viewMask = _viewMask, ntz = bx::uint32_cnttz(_viewMask); 0 != viewMask; viewMask >>= 1, view += 1, ntz = bx::uint32_cnttz(viewMask) )
  85. {
  86. viewMask >>= ntz;
  87. view += ntz;
  88. bgfx::setViewClear( (uint8_t)view, _flags, _rgba, _depth, _stencil);
  89. }
  90. }
  91. void setViewTransformMask(uint32_t _viewMask, const void* _view, const void* _proj)
  92. {
  93. for (uint32_t view = 0, viewMask = _viewMask, ntz = bx::uint32_cnttz(_viewMask); 0 != viewMask; viewMask >>= 1, view += 1, ntz = bx::uint32_cnttz(viewMask) )
  94. {
  95. viewMask >>= ntz;
  96. view += ntz;
  97. bgfx::setViewTransform( (uint8_t)view, _view, _proj);
  98. }
  99. }
  100. void setViewRectMask(uint32_t _viewMask, uint16_t _x, uint16_t _y, uint16_t _width, uint16_t _height)
  101. {
  102. for (uint32_t view = 0, viewMask = _viewMask, ntz = bx::uint32_cnttz(_viewMask); 0 != viewMask; viewMask >>= 1, view += 1, ntz = bx::uint32_cnttz(viewMask) )
  103. {
  104. viewMask >>= ntz;
  105. view += ntz;
  106. bgfx::setViewRect( (uint8_t)view, _x, _y, _width, _height);
  107. }
  108. }
  109. void mtxBillboard(float* __restrict _result
  110. , const float* __restrict _view
  111. , const float* __restrict _pos
  112. , const float* __restrict _scale
  113. )
  114. {
  115. _result[ 0] = _view[0] * _scale[0];
  116. _result[ 1] = _view[4] * _scale[0];
  117. _result[ 2] = _view[8] * _scale[0];
  118. _result[ 3] = 0.0f;
  119. _result[ 4] = _view[1] * _scale[1];
  120. _result[ 5] = _view[5] * _scale[1];
  121. _result[ 6] = _view[9] * _scale[1];
  122. _result[ 7] = 0.0f;
  123. _result[ 8] = _view[2] * _scale[2];
  124. _result[ 9] = _view[6] * _scale[2];
  125. _result[10] = _view[10] * _scale[2];
  126. _result[11] = 0.0f;
  127. _result[12] = _pos[0];
  128. _result[13] = _pos[1];
  129. _result[14] = _pos[2];
  130. _result[15] = 1.0f;
  131. }
  132. void planeNormal(float* __restrict _result
  133. , const float* __restrict _v0
  134. , const float* __restrict _v1
  135. , const float* __restrict _v2
  136. )
  137. {
  138. float vec0[3], vec1[3];
  139. float cross[3];
  140. vec0[0] = _v1[0] - _v0[0];
  141. vec0[1] = _v1[1] - _v0[1];
  142. vec0[2] = _v1[2] - _v0[2];
  143. vec1[0] = _v2[0] - _v1[0];
  144. vec1[1] = _v2[1] - _v1[1];
  145. vec1[2] = _v2[2] - _v1[2];
  146. bx::vec3Cross(cross, vec0, vec1);
  147. bx::vec3Norm(_result, cross);
  148. _result[3] = -bx::vec3Dot(_result, _v0);
  149. }
  150. struct Uniforms
  151. {
  152. void init()
  153. {
  154. m_params.m_ambientPass = 1.0f;
  155. m_params.m_lightingPass = 1.0f;
  156. m_params.m_texelHalf = 0.0f;
  157. m_ambient[0] = 0.05f;
  158. m_ambient[1] = 0.05f;
  159. m_ambient[2] = 0.05f;
  160. m_ambient[3] = 0.0f; //unused
  161. m_diffuse[0] = 0.8f;
  162. m_diffuse[1] = 0.8f;
  163. m_diffuse[2] = 0.8f;
  164. m_diffuse[3] = 0.0f; //unused
  165. m_specular_shininess[0] = 1.0f;
  166. m_specular_shininess[1] = 1.0f;
  167. m_specular_shininess[2] = 1.0f;
  168. m_specular_shininess[3] = 25.0f; //shininess
  169. m_fog[0] = 0.0f; //color
  170. m_fog[1] = 0.0f;
  171. m_fog[2] = 0.0f;
  172. m_fog[3] = 0.0055f; //density
  173. m_color[0] = 1.0f;
  174. m_color[1] = 1.0f;
  175. m_color[2] = 1.0f;
  176. m_color[3] = 1.0f;
  177. m_time = 0.0f;
  178. m_lightPosRadius[0] = 0.0f;
  179. m_lightPosRadius[1] = 0.0f;
  180. m_lightPosRadius[2] = 0.0f;
  181. m_lightPosRadius[3] = 1.0f;
  182. m_lightRgbInnerR[0] = 0.0f;
  183. m_lightRgbInnerR[1] = 0.0f;
  184. m_lightRgbInnerR[2] = 0.0f;
  185. m_lightRgbInnerR[3] = 1.0f;
  186. m_virtualLightPos_extrusionDist[0] = 0.0f;
  187. m_virtualLightPos_extrusionDist[1] = 0.0f;
  188. m_virtualLightPos_extrusionDist[2] = 0.0f;
  189. m_virtualLightPos_extrusionDist[3] = 100.0f;
  190. u_params = bgfx::createUniform("u_params", bgfx::UniformType::Vec4);
  191. u_svparams = bgfx::createUniform("u_svparams", bgfx::UniformType::Vec4);
  192. u_ambient = bgfx::createUniform("u_ambient", bgfx::UniformType::Vec4);
  193. u_diffuse = bgfx::createUniform("u_diffuse", bgfx::UniformType::Vec4);
  194. u_specular_shininess = bgfx::createUniform("u_specular_shininess", bgfx::UniformType::Vec4);
  195. u_fog = bgfx::createUniform("u_fog", bgfx::UniformType::Vec4);
  196. u_color = bgfx::createUniform("u_color", bgfx::UniformType::Vec4);
  197. u_lightPosRadius = bgfx::createUniform("u_lightPosRadius", bgfx::UniformType::Vec4);
  198. u_lightRgbInnerR = bgfx::createUniform("u_lightRgbInnerR", bgfx::UniformType::Vec4);
  199. u_virtualLightPos_extrusionDist = bgfx::createUniform("u_virtualLightPos_extrusionDist", bgfx::UniformType::Vec4);
  200. }
  201. //call this once at initialization
  202. void submitConstUniforms()
  203. {
  204. bgfx::setUniform(u_ambient, &m_ambient);
  205. bgfx::setUniform(u_diffuse, &m_diffuse);
  206. bgfx::setUniform(u_specular_shininess, &m_specular_shininess);
  207. bgfx::setUniform(u_fog, &m_fog);
  208. }
  209. //call this before each draw call
  210. void submitPerDrawUniforms()
  211. {
  212. bgfx::setUniform(u_params, &m_params);
  213. bgfx::setUniform(u_svparams, &m_svparams);
  214. bgfx::setUniform(u_color, &m_color);
  215. bgfx::setUniform(u_lightPosRadius, &m_lightPosRadius);
  216. bgfx::setUniform(u_lightRgbInnerR, &m_lightRgbInnerR);
  217. bgfx::setUniform(u_virtualLightPos_extrusionDist, &m_virtualLightPos_extrusionDist);
  218. }
  219. void destroy()
  220. {
  221. bgfx::destroyUniform(u_params);
  222. bgfx::destroyUniform(u_svparams);
  223. bgfx::destroyUniform(u_ambient);
  224. bgfx::destroyUniform(u_diffuse);
  225. bgfx::destroyUniform(u_specular_shininess);
  226. bgfx::destroyUniform(u_fog);
  227. bgfx::destroyUniform(u_color);
  228. bgfx::destroyUniform(u_lightPosRadius);
  229. bgfx::destroyUniform(u_lightRgbInnerR);
  230. bgfx::destroyUniform(u_virtualLightPos_extrusionDist);
  231. }
  232. struct Params
  233. {
  234. float m_ambientPass;
  235. float m_lightingPass;
  236. float m_texelHalf;
  237. float m_unused00;
  238. };
  239. struct SvParams
  240. {
  241. float m_useStencilTex;
  242. float m_dfail;
  243. float m_unused10;
  244. float m_unused11;
  245. };
  246. Params m_params;
  247. SvParams m_svparams;
  248. float m_ambient[4];
  249. float m_diffuse[4];
  250. float m_specular_shininess[4];
  251. float m_fog[4];
  252. float m_color[4];
  253. float m_time;
  254. float m_lightPosRadius[4];
  255. float m_lightRgbInnerR[4];
  256. float m_virtualLightPos_extrusionDist[4];
  257. /**
  258. * u_params.x - u_ambientPass
  259. * u_params.y - u_lightingPass
  260. * u_params.z - u_texelHalf
  261. * u_params.w - unused
  262. * u_svparams.x - u_useStencilTex
  263. * u_svparams.y - u_dfail
  264. * u_svparams.z - unused
  265. * u_svparams.w - unused
  266. */
  267. bgfx::UniformHandle u_params;
  268. bgfx::UniformHandle u_svparams;
  269. bgfx::UniformHandle u_ambient;
  270. bgfx::UniformHandle u_diffuse;
  271. bgfx::UniformHandle u_specular_shininess;
  272. bgfx::UniformHandle u_fog;
  273. bgfx::UniformHandle u_color;
  274. bgfx::UniformHandle u_lightPosRadius;
  275. bgfx::UniformHandle u_lightRgbInnerR;
  276. bgfx::UniformHandle u_virtualLightPos_extrusionDist;
  277. };
  278. static Uniforms s_uniforms;
  279. struct RenderState
  280. {
  281. enum Enum
  282. {
  283. ShadowVolume_UsingStencilTexture_DrawAmbient = 0,
  284. ShadowVolume_UsingStencilTexture_BuildDepth,
  285. ShadowVolume_UsingStencilTexture_CraftStencil_DepthPass,
  286. ShadowVolume_UsingStencilTexture_CraftStencil_DepthFail,
  287. ShadowVolume_UsingStencilTexture_DrawDiffuse,
  288. ShadowVolume_UsingStencilBuffer_DrawAmbient,
  289. ShadowVolume_UsingStencilBuffer_CraftStencil_DepthPass,
  290. ShadowVolume_UsingStencilBuffer_CraftStencil_DepthFail,
  291. ShadowVolume_UsingStencilBuffer_DrawDiffuse,
  292. Custom_Default,
  293. Custom_BlendLightTexture,
  294. Custom_DrawPlaneBottom,
  295. Custom_DrawShadowVolume_Lines,
  296. Count
  297. };
  298. uint64_t m_state;
  299. uint32_t m_blendFactorRgba;
  300. uint32_t m_fstencil;
  301. uint32_t m_bstencil;
  302. };
  303. static void setRenderState(const RenderState& _renderState)
  304. {
  305. bgfx::setStencil(_renderState.m_fstencil, _renderState.m_bstencil);
  306. bgfx::setState(_renderState.m_state, _renderState.m_blendFactorRgba);
  307. }
  308. static RenderState s_renderStates[RenderState::Count] =
  309. {
  310. { // ShadowVolume_UsingStencilTexture_DrawAmbient
  311. BGFX_STATE_RGB_WRITE
  312. | BGFX_STATE_ALPHA_WRITE
  313. | BGFX_STATE_DEPTH_WRITE
  314. | BGFX_STATE_DEPTH_TEST_LESS
  315. | BGFX_STATE_CULL_CCW
  316. | BGFX_STATE_MSAA
  317. , UINT32_MAX
  318. , BGFX_STENCIL_NONE
  319. , BGFX_STENCIL_NONE
  320. },
  321. { // ShadowVolume_UsingStencilTexture_BuildDepth
  322. BGFX_STATE_DEPTH_WRITE
  323. | BGFX_STATE_DEPTH_TEST_LESS
  324. | BGFX_STATE_CULL_CCW
  325. | BGFX_STATE_MSAA
  326. , UINT32_MAX
  327. , BGFX_STENCIL_NONE
  328. , BGFX_STENCIL_NONE
  329. },
  330. { // ShadowVolume_UsingStencilTexture_CraftStencil_DepthPass
  331. BGFX_STATE_RGB_WRITE
  332. | BGFX_STATE_ALPHA_WRITE
  333. | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_ONE, BGFX_STATE_BLEND_ONE)
  334. | BGFX_STATE_DEPTH_TEST_LEQUAL
  335. | BGFX_STATE_MSAA
  336. , UINT32_MAX
  337. , BGFX_STENCIL_NONE
  338. , BGFX_STENCIL_NONE
  339. },
  340. { // ShadowVolume_UsingStencilTexture_CraftStencil_DepthFail
  341. BGFX_STATE_RGB_WRITE
  342. | BGFX_STATE_ALPHA_WRITE
  343. | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_ONE, BGFX_STATE_BLEND_ONE)
  344. | BGFX_STATE_DEPTH_TEST_GEQUAL
  345. | BGFX_STATE_MSAA
  346. , UINT32_MAX
  347. , BGFX_STENCIL_NONE
  348. , BGFX_STENCIL_NONE
  349. },
  350. { // ShadowVolume_UsingStencilTexture_DrawDiffuse
  351. BGFX_STATE_RGB_WRITE
  352. | BGFX_STATE_ALPHA_WRITE
  353. | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_ONE, BGFX_STATE_BLEND_ONE)
  354. | BGFX_STATE_DEPTH_WRITE
  355. | BGFX_STATE_DEPTH_TEST_EQUAL
  356. | BGFX_STATE_CULL_CCW
  357. | BGFX_STATE_MSAA
  358. , UINT32_MAX
  359. , BGFX_STENCIL_NONE
  360. , BGFX_STENCIL_NONE
  361. },
  362. { // ShadowVolume_UsingStencilBuffer_DrawAmbient
  363. BGFX_STATE_RGB_WRITE
  364. | BGFX_STATE_ALPHA_WRITE
  365. | BGFX_STATE_DEPTH_WRITE
  366. | BGFX_STATE_DEPTH_TEST_LESS
  367. | BGFX_STATE_CULL_CCW
  368. | BGFX_STATE_MSAA
  369. , UINT32_MAX
  370. , BGFX_STENCIL_NONE
  371. , BGFX_STENCIL_NONE
  372. },
  373. { // ShadowVolume_UsingStencilBuffer_CraftStencil_DepthPass
  374. BGFX_STATE_DEPTH_TEST_LEQUAL
  375. | BGFX_STATE_MSAA
  376. , UINT32_MAX
  377. , BGFX_STENCIL_TEST_ALWAYS
  378. | BGFX_STENCIL_FUNC_REF(1)
  379. | BGFX_STENCIL_FUNC_RMASK(0xff)
  380. | BGFX_STENCIL_OP_FAIL_S_KEEP
  381. | BGFX_STENCIL_OP_FAIL_Z_KEEP
  382. | BGFX_STENCIL_OP_PASS_Z_DECR
  383. , BGFX_STENCIL_TEST_ALWAYS
  384. | BGFX_STENCIL_FUNC_REF(1)
  385. | BGFX_STENCIL_FUNC_RMASK(0xff)
  386. | BGFX_STENCIL_OP_FAIL_S_KEEP
  387. | BGFX_STENCIL_OP_FAIL_Z_KEEP
  388. | BGFX_STENCIL_OP_PASS_Z_INCR
  389. },
  390. { // ShadowVolume_UsingStencilBuffer_CraftStencil_DepthFail
  391. BGFX_STATE_DEPTH_TEST_LEQUAL
  392. | BGFX_STATE_MSAA
  393. , UINT32_MAX
  394. , BGFX_STENCIL_TEST_ALWAYS
  395. | BGFX_STENCIL_FUNC_REF(1)
  396. | BGFX_STENCIL_FUNC_RMASK(0xff)
  397. | BGFX_STENCIL_OP_FAIL_S_KEEP
  398. | BGFX_STENCIL_OP_FAIL_Z_INCR
  399. | BGFX_STENCIL_OP_PASS_Z_KEEP
  400. , BGFX_STENCIL_TEST_ALWAYS
  401. | BGFX_STENCIL_FUNC_REF(1)
  402. | BGFX_STENCIL_FUNC_RMASK(0xff)
  403. | BGFX_STENCIL_OP_FAIL_S_KEEP
  404. | BGFX_STENCIL_OP_FAIL_Z_DECR
  405. | BGFX_STENCIL_OP_PASS_Z_KEEP
  406. },
  407. { // ShadowVolume_UsingStencilBuffer_DrawDiffuse
  408. BGFX_STATE_RGB_WRITE
  409. | BGFX_STATE_ALPHA_WRITE
  410. | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_ONE, BGFX_STATE_BLEND_ONE)
  411. | BGFX_STATE_DEPTH_TEST_EQUAL
  412. | BGFX_STATE_CULL_CCW
  413. | BGFX_STATE_MSAA
  414. , UINT32_MAX
  415. , BGFX_STENCIL_TEST_EQUAL
  416. | BGFX_STENCIL_FUNC_REF(0)
  417. | BGFX_STENCIL_FUNC_RMASK(0xff)
  418. | BGFX_STENCIL_OP_FAIL_S_KEEP
  419. | BGFX_STENCIL_OP_FAIL_Z_KEEP
  420. | BGFX_STENCIL_OP_PASS_Z_KEEP
  421. , BGFX_STENCIL_NONE
  422. },
  423. { // Custom_Default
  424. BGFX_STATE_RGB_WRITE
  425. | BGFX_STATE_ALPHA_WRITE
  426. | BGFX_STATE_DEPTH_WRITE
  427. | BGFX_STATE_DEPTH_TEST_LESS
  428. | BGFX_STATE_CULL_CCW
  429. | BGFX_STATE_MSAA
  430. , UINT32_MAX
  431. , BGFX_STENCIL_NONE
  432. , BGFX_STENCIL_NONE
  433. },
  434. { // Custom_BlendLightTexture
  435. BGFX_STATE_RGB_WRITE
  436. | BGFX_STATE_ALPHA_WRITE
  437. | BGFX_STATE_DEPTH_WRITE
  438. | BGFX_STATE_DEPTH_TEST_LESS
  439. | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_SRC_COLOR, BGFX_STATE_BLEND_INV_SRC_COLOR)
  440. | BGFX_STATE_CULL_CCW
  441. | BGFX_STATE_MSAA
  442. , UINT32_MAX
  443. , BGFX_STENCIL_NONE
  444. , BGFX_STENCIL_NONE
  445. },
  446. { // Custom_DrawPlaneBottom
  447. BGFX_STATE_RGB_WRITE
  448. | BGFX_STATE_ALPHA_WRITE
  449. | BGFX_STATE_DEPTH_WRITE
  450. | BGFX_STATE_CULL_CW
  451. | BGFX_STATE_MSAA
  452. , UINT32_MAX
  453. , BGFX_STENCIL_NONE
  454. , BGFX_STENCIL_NONE
  455. },
  456. { // Custom_DrawShadowVolume_Lines
  457. BGFX_STATE_RGB_WRITE
  458. | BGFX_STATE_DEPTH_TEST_LESS
  459. | BGFX_STATE_BLEND_FUNC(BGFX_STATE_BLEND_FACTOR, BGFX_STATE_BLEND_SRC_ALPHA)
  460. | BGFX_STATE_PT_LINES
  461. | BGFX_STATE_MSAA
  462. , 0x0f0f0fff
  463. , BGFX_STENCIL_NONE
  464. , BGFX_STENCIL_NONE
  465. }
  466. };
  467. struct ViewState
  468. {
  469. ViewState(uint32_t _width = 0, uint32_t _height = 0)
  470. : m_width(_width)
  471. , m_height(_height)
  472. {
  473. }
  474. uint32_t m_width;
  475. uint32_t m_height;
  476. float m_view[16];
  477. float m_proj[16];
  478. };
  479. struct ClearValues
  480. {
  481. uint32_t m_clearRgba;
  482. float m_clearDepth;
  483. uint8_t m_clearStencil;
  484. };
  485. void submit(uint8_t _id, bgfx::ProgramHandle _handle, int32_t _depth = 0)
  486. {
  487. bgfx::submit(_id, _handle, _depth);
  488. // Keep track of submited view ids.
  489. s_viewMask |= 1 << _id;
  490. }
  491. void touch(uint8_t _id)
  492. {
  493. bgfx::ProgramHandle handle = BGFX_INVALID_HANDLE;
  494. ::submit(_id, handle);
  495. }
  496. struct Aabb
  497. {
  498. float m_min[3];
  499. float m_max[3];
  500. };
  501. struct Obb
  502. {
  503. float m_mtx[16];
  504. };
  505. struct Sphere
  506. {
  507. float m_center[3];
  508. float m_radius;
  509. };
  510. struct Primitive
  511. {
  512. uint32_t m_startIndex;
  513. uint32_t m_numIndices;
  514. uint32_t m_startVertex;
  515. uint32_t m_numVertices;
  516. Sphere m_sphere;
  517. Aabb m_aabb;
  518. Obb m_obb;
  519. };
  520. typedef std::vector<Primitive> PrimitiveArray;
  521. struct Face
  522. {
  523. uint16_t m_i[3];
  524. float m_plane[4];
  525. };
  526. typedef std::vector<Face> FaceArray;
  527. struct Edge
  528. {
  529. bool m_faceReverseOrder[2];
  530. uint8_t m_faceIndex;
  531. uint16_t m_i0, m_i1;
  532. };
  533. struct Plane
  534. {
  535. float m_plane[4];
  536. };
  537. struct HalfEdge
  538. {
  539. #define INVALID_EDGE_INDEX UINT16_MAX
  540. uint16_t m_secondIndex;
  541. bool m_marked;
  542. };
  543. struct HalfEdges
  544. {
  545. HalfEdges()
  546. : m_data()
  547. , m_offsets()
  548. , m_endPtr()
  549. {
  550. }
  551. void init(uint16_t* _indices, uint32_t _numIndices)
  552. {
  553. m_data = (HalfEdge*)malloc(2 * _numIndices * sizeof(HalfEdge) );
  554. stl::unordered_map<uint16_t, std::vector<uint16_t> > edges;
  555. for (uint32_t ii = 0; ii < _numIndices; ii+=3)
  556. {
  557. uint16_t idx0 = _indices[ii];
  558. uint16_t idx1 = _indices[ii+1];
  559. uint16_t idx2 = _indices[ii+2];
  560. edges[idx0].push_back(idx1);
  561. edges[idx1].push_back(idx2);
  562. edges[idx2].push_back(idx0);
  563. }
  564. uint32_t numRows = (uint32_t)edges.size();
  565. m_offsets = (uint32_t*)malloc(numRows * sizeof(uint32_t) );
  566. HalfEdge* he = m_data;
  567. for (uint16_t ii = 0; ii < numRows; ++ii)
  568. {
  569. m_offsets[ii] = uint32_t(he - m_data);
  570. std::vector<uint16_t>& row = edges[ii];
  571. for (uint32_t jj = 0, size = (uint32_t)row.size(); jj < size; ++jj)
  572. {
  573. he->m_secondIndex = row[jj];
  574. he->m_marked = false;
  575. ++he;
  576. }
  577. he->m_secondIndex = INVALID_EDGE_INDEX;
  578. ++he;
  579. }
  580. he->m_secondIndex = 0;
  581. m_endPtr = he;
  582. }
  583. void destroy()
  584. {
  585. free(m_data);
  586. m_data = NULL;
  587. free(m_offsets);
  588. m_offsets = NULL;
  589. }
  590. void mark(uint16_t _firstIndex, uint16_t _secondIndex)
  591. {
  592. HalfEdge* ptr = &m_data[m_offsets[_firstIndex]];
  593. while (INVALID_EDGE_INDEX != ptr->m_secondIndex)
  594. {
  595. if (ptr->m_secondIndex == _secondIndex)
  596. {
  597. ptr->m_marked = true;
  598. break;
  599. }
  600. ++ptr;
  601. }
  602. }
  603. bool unmark(uint16_t _firstIndex, uint16_t _secondIndex)
  604. {
  605. bool ret = false;
  606. HalfEdge* ptr = &m_data[m_offsets[_firstIndex]];
  607. while (INVALID_EDGE_INDEX != ptr->m_secondIndex)
  608. {
  609. if (ptr->m_secondIndex == _secondIndex && ptr->m_marked)
  610. {
  611. ptr->m_marked = false;
  612. ret = true;
  613. break;
  614. }
  615. ++ptr;
  616. }
  617. return ret;
  618. }
  619. inline HalfEdge* begin() const
  620. {
  621. return m_data;
  622. }
  623. inline HalfEdge* end() const
  624. {
  625. return m_endPtr;
  626. }
  627. HalfEdge* m_data;
  628. uint32_t* m_offsets;
  629. HalfEdge* m_endPtr;
  630. };
  631. struct WeldedVertex
  632. {
  633. uint16_t m_v;
  634. bool m_welded;
  635. };
  636. inline float sqLength(const float _a[3], const float _b[3])
  637. {
  638. const float xx = _a[0] - _b[0];
  639. const float yy = _a[1] - _b[1];
  640. const float zz = _a[2] - _b[2];
  641. return xx*xx + yy*yy + zz*zz;
  642. }
  643. uint16_t weldVertices(WeldedVertex* _output, const bgfx::VertexDecl& _decl, const void* _data, uint16_t _num, float _epsilon)
  644. {
  645. const uint32_t hashSize = bx::uint32_nextpow2(_num);
  646. const uint32_t hashMask = hashSize-1;
  647. const float epsilonSq = _epsilon*_epsilon;
  648. uint16_t numVertices = 0;
  649. const uint32_t size = sizeof(uint16_t)*(hashSize + _num);
  650. uint16_t* hashTable = (uint16_t*)alloca(size);
  651. bx::memSet(hashTable, 0xff, size);
  652. uint16_t* next = hashTable + hashSize;
  653. for (uint16_t ii = 0; ii < _num; ++ii)
  654. {
  655. float pos[4];
  656. vertexUnpack(pos, bgfx::Attrib::Position, _decl, _data, ii);
  657. uint32_t hashValue = bx::hashMurmur2A(pos, 3*sizeof(float) ) & hashMask;
  658. uint16_t offset = hashTable[hashValue];
  659. for (; UINT16_MAX != offset; offset = next[offset])
  660. {
  661. float test[4];
  662. vertexUnpack(test, bgfx::Attrib::Position, _decl, _data, _output[offset].m_v);
  663. if (sqLength(test, pos) < epsilonSq)
  664. {
  665. _output[ii].m_v = _output[offset].m_v;
  666. _output[ii].m_welded = true;
  667. break;
  668. }
  669. }
  670. if (UINT16_MAX == offset)
  671. {
  672. _output[ii].m_v = ii;
  673. _output[ii].m_welded = false;
  674. next[ii] = hashTable[hashValue];
  675. hashTable[hashValue] = ii;
  676. numVertices++;
  677. }
  678. }
  679. return numVertices;
  680. }
  681. struct Group
  682. {
  683. Group()
  684. {
  685. reset();
  686. }
  687. void reset()
  688. {
  689. m_vbh.idx = bgfx::kInvalidHandle;
  690. m_ibh.idx = bgfx::kInvalidHandle;
  691. m_numVertices = 0;
  692. m_vertices = NULL;
  693. m_numIndices = 0;
  694. m_indices = NULL;
  695. m_numEdges = 0;
  696. m_edges = NULL;
  697. m_edgePlanesUnalignedPtr = NULL;
  698. m_prims.clear();
  699. }
  700. typedef struct { float f[6]; } f6_t;
  701. struct EdgeAndPlane
  702. {
  703. EdgeAndPlane(uint16_t _i0, uint16_t _i1)
  704. : m_faceIndex(0)
  705. , m_i0(_i0)
  706. , m_i1(_i1)
  707. {
  708. }
  709. bool m_faceReverseOrder[2];
  710. uint8_t m_faceIndex;
  711. uint16_t m_i0, m_i1;
  712. Plane m_plane[2];
  713. };
  714. void fillStructures(const bgfx::VertexDecl& _decl)
  715. {
  716. uint16_t stride = _decl.getStride();
  717. m_faces.clear();
  718. m_halfEdges.destroy();
  719. //Init halfedges.
  720. m_halfEdges.init(m_indices, m_numIndices);
  721. //Init faces and edges.
  722. m_faces.reserve(m_numIndices/3); //1 face = 3 indices
  723. m_edges = (Edge*)malloc(m_numIndices * sizeof(Edge) ); //1 triangle = 3 indices = 3 edges.
  724. m_edgePlanesUnalignedPtr = (Plane*)malloc(m_numIndices * sizeof(Plane) + 15);
  725. m_edgePlanes = (Plane*)bx::alignPtr(m_edgePlanesUnalignedPtr, 0, 16);
  726. typedef std::map<std::pair<uint16_t, uint16_t>, EdgeAndPlane> EdgeMap;
  727. EdgeMap edgeMap;
  728. //Get unique indices.
  729. WeldedVertex* uniqueVertices = (WeldedVertex*)malloc(m_numVertices*sizeof(WeldedVertex) );
  730. ::weldVertices(uniqueVertices, _decl, m_vertices, m_numVertices, 0.0001f);
  731. uint16_t* uniqueIndices = (uint16_t*)malloc(m_numIndices*sizeof(uint16_t) );
  732. for (uint32_t ii = 0; ii < m_numIndices; ++ii)
  733. {
  734. uint16_t index = m_indices[ii];
  735. if (uniqueVertices[index].m_welded)
  736. {
  737. uniqueIndices[ii] = uniqueVertices[index].m_v;
  738. }
  739. else
  740. {
  741. uniqueIndices[ii] = index;
  742. }
  743. }
  744. free(uniqueVertices);
  745. for (uint32_t ii = 0, size = m_numIndices/3; ii < size; ++ii)
  746. {
  747. const uint16_t* indices = &m_indices[ii*3];
  748. uint16_t i0 = indices[0];
  749. uint16_t i1 = indices[1];
  750. uint16_t i2 = indices[2];
  751. const float* v0 = (float*)&m_vertices[i0*stride];
  752. const float* v1 = (float*)&m_vertices[i1*stride];
  753. const float* v2 = (float*)&m_vertices[i2*stride];
  754. float plane[4];
  755. planeNormal(plane, v0, v2, v1);
  756. Face face;
  757. face.m_i[0] = i0;
  758. face.m_i[1] = i1;
  759. face.m_i[2] = i2;
  760. bx::memCopy(face.m_plane, plane, 4*sizeof(float) );
  761. m_faces.push_back(face);
  762. //Use unique indices for EdgeMap.
  763. const uint16_t* uindices = &uniqueIndices[ii*3];
  764. i0 = uindices[0];
  765. i1 = uindices[1];
  766. i2 = uindices[2];
  767. const uint16_t triangleEdge[3][2] =
  768. {
  769. { i0, i1 },
  770. { i1, i2 },
  771. { i2, i0 },
  772. };
  773. for (uint8_t jj = 0; jj < 3; ++jj)
  774. {
  775. const uint16_t ui0 = triangleEdge[jj][0];
  776. const uint16_t ui1 = triangleEdge[jj][1];
  777. std::pair<uint16_t, uint16_t> key = std::make_pair(ui0, ui1);
  778. std::pair<uint16_t, uint16_t> keyInv = std::make_pair(ui1, ui0);
  779. EdgeMap::iterator iter = edgeMap.find(keyInv);
  780. if (iter != edgeMap.end() )
  781. {
  782. EdgeAndPlane& ep = iter->second;
  783. bx::memCopy(ep.m_plane[ep.m_faceIndex].m_plane, plane, 4*sizeof(float) );
  784. ep.m_faceReverseOrder[ep.m_faceIndex] = true;
  785. }
  786. else
  787. {
  788. std::pair<EdgeMap::iterator, bool> result = edgeMap.insert(std::make_pair(key, EdgeAndPlane(ui0, ui1) ) );
  789. EdgeAndPlane& ep = result.first->second;
  790. bx::memCopy(ep.m_plane[ep.m_faceIndex].m_plane, plane, 4*sizeof(float) );
  791. ep.m_faceReverseOrder[ep.m_faceIndex] = false;
  792. ep.m_faceIndex++;
  793. }
  794. }
  795. }
  796. free(uniqueIndices);
  797. uint32_t index = 0;
  798. for (EdgeMap::const_iterator iter = edgeMap.begin(), end = edgeMap.end(); iter != end; ++iter)
  799. {
  800. Edge* edge = &m_edges[m_numEdges];
  801. Plane* plane = &m_edgePlanes[index];
  802. bx::memCopy(edge, iter->second.m_faceReverseOrder, sizeof(Edge) );
  803. bx::memCopy(plane, iter->second.m_plane, 2 * sizeof(Plane) );
  804. m_numEdges++;
  805. index += 2;
  806. }
  807. }
  808. void unload()
  809. {
  810. bgfx::destroyVertexBuffer(m_vbh);
  811. if (bgfx::kInvalidHandle != m_ibh.idx)
  812. {
  813. bgfx::destroyIndexBuffer(m_ibh);
  814. }
  815. free(m_vertices);
  816. m_vertices = NULL;
  817. free(m_indices);
  818. m_indices = NULL;
  819. free(m_edges);
  820. m_edges = NULL;
  821. free(m_edgePlanesUnalignedPtr);
  822. m_edgePlanesUnalignedPtr = NULL;
  823. m_halfEdges.destroy();
  824. }
  825. bgfx::VertexBufferHandle m_vbh;
  826. bgfx::IndexBufferHandle m_ibh;
  827. uint16_t m_numVertices;
  828. uint8_t* m_vertices;
  829. uint32_t m_numIndices;
  830. uint16_t* m_indices;
  831. Sphere m_sphere;
  832. Aabb m_aabb;
  833. Obb m_obb;
  834. PrimitiveArray m_prims;
  835. uint32_t m_numEdges;
  836. Edge* m_edges;
  837. Plane* m_edgePlanesUnalignedPtr;
  838. Plane* m_edgePlanes;
  839. FaceArray m_faces;
  840. HalfEdges m_halfEdges;
  841. };
  842. typedef std::vector<Group> GroupArray;
  843. struct Mesh
  844. {
  845. void load(const void* _vertices, uint16_t _numVertices, const bgfx::VertexDecl _decl, const uint16_t* _indices, uint32_t _numIndices)
  846. {
  847. Group group;
  848. const bgfx::Memory* mem;
  849. uint32_t size;
  850. //vertices
  851. group.m_numVertices = _numVertices;
  852. size = _numVertices*_decl.getStride();
  853. group.m_vertices = (uint8_t*)malloc(size);
  854. bx::memCopy(group.m_vertices, _vertices, size);
  855. mem = bgfx::makeRef(group.m_vertices, size);
  856. group.m_vbh = bgfx::createVertexBuffer(mem, _decl);
  857. //indices
  858. group.m_numIndices = _numIndices;
  859. size = _numIndices*2;
  860. group.m_indices = (uint16_t*)malloc(size);
  861. bx::memCopy(group.m_indices, _indices, size);
  862. mem = bgfx::makeRef(group.m_indices, size);
  863. group.m_ibh = bgfx::createIndexBuffer(mem);
  864. m_groups.push_back(group);
  865. }
  866. void load(const char* _filePath)
  867. {
  868. #define BGFX_CHUNK_MAGIC_VB BX_MAKEFOURCC('V', 'B', ' ', 0x1)
  869. #define BGFX_CHUNK_MAGIC_IB BX_MAKEFOURCC('I', 'B', ' ', 0x0)
  870. #define BGFX_CHUNK_MAGIC_PRI BX_MAKEFOURCC('P', 'R', 'I', 0x0)
  871. bx::FileReaderI* reader = entry::getFileReader();
  872. bx::open(reader, _filePath);
  873. Group group;
  874. uint32_t chunk;
  875. while (4 == bx::read(reader, chunk) )
  876. {
  877. switch (chunk)
  878. {
  879. case BGFX_CHUNK_MAGIC_VB:
  880. {
  881. bx::read(reader, group.m_sphere);
  882. bx::read(reader, group.m_aabb);
  883. bx::read(reader, group.m_obb);
  884. bgfx::read(reader, m_decl);
  885. uint16_t stride = m_decl.getStride();
  886. bx::read(reader, group.m_numVertices);
  887. const uint32_t size = group.m_numVertices*stride;
  888. group.m_vertices = (uint8_t*)malloc(size);
  889. bx::read(reader, group.m_vertices, size);
  890. const bgfx::Memory* mem = bgfx::makeRef(group.m_vertices, size);
  891. group.m_vbh = bgfx::createVertexBuffer(mem, m_decl);
  892. }
  893. break;
  894. case BGFX_CHUNK_MAGIC_IB:
  895. {
  896. bx::read(reader, group.m_numIndices);
  897. const uint32_t size = group.m_numIndices*2;
  898. group.m_indices = (uint16_t*)malloc(size);
  899. bx::read(reader, group.m_indices, size);
  900. const bgfx::Memory* mem = bgfx::makeRef(group.m_indices, size);
  901. group.m_ibh = bgfx::createIndexBuffer(mem);
  902. }
  903. break;
  904. case BGFX_CHUNK_MAGIC_PRI:
  905. {
  906. uint16_t len;
  907. bx::read(reader, len);
  908. std::string material;
  909. material.resize(len);
  910. bx::read(reader, const_cast<char*>(material.c_str() ), len);
  911. uint16_t num;
  912. bx::read(reader, num);
  913. for (uint32_t ii = 0; ii < num; ++ii)
  914. {
  915. bx::read(reader, len);
  916. std::string name;
  917. name.resize(len);
  918. bx::read(reader, const_cast<char*>(name.c_str() ), len);
  919. Primitive prim;
  920. bx::read(reader, prim.m_startIndex);
  921. bx::read(reader, prim.m_numIndices);
  922. bx::read(reader, prim.m_startVertex);
  923. bx::read(reader, prim.m_numVertices);
  924. bx::read(reader, prim.m_sphere);
  925. bx::read(reader, prim.m_aabb);
  926. bx::read(reader, prim.m_obb);
  927. group.m_prims.push_back(prim);
  928. }
  929. m_groups.push_back(group);
  930. group.reset();
  931. }
  932. break;
  933. default:
  934. DBG("%08x at %d", chunk, bx::seek(reader) );
  935. abort();
  936. break;
  937. }
  938. }
  939. bx::close(reader);
  940. for (GroupArray::iterator it = m_groups.begin(), itEnd = m_groups.end(); it != itEnd; ++it)
  941. {
  942. it->fillStructures(m_decl);
  943. }
  944. }
  945. void unload()
  946. {
  947. for (GroupArray::iterator it = m_groups.begin(), itEnd = m_groups.end(); it != itEnd; ++it)
  948. {
  949. it->unload();
  950. }
  951. m_groups.clear();
  952. }
  953. bgfx::VertexDecl m_decl;
  954. GroupArray m_groups;
  955. };
  956. struct Model
  957. {
  958. Model()
  959. {
  960. m_program.idx = bgfx::kInvalidHandle;
  961. m_texture.idx = bgfx::kInvalidHandle;
  962. }
  963. void load(const void* _vertices, uint16_t _numVertices, const bgfx::VertexDecl _decl, const uint16_t* _indices, uint32_t _numIndices)
  964. {
  965. m_mesh.load(_vertices, _numVertices, _decl, _indices, _numIndices);
  966. }
  967. void load(const char* _meshFilePath)
  968. {
  969. m_mesh.load(_meshFilePath);
  970. }
  971. void unload()
  972. {
  973. m_mesh.unload();
  974. }
  975. void submit(uint8_t _viewId, float* _mtx, const RenderState& _renderState)
  976. {
  977. for (GroupArray::const_iterator it = m_mesh.m_groups.begin(), itEnd = m_mesh.m_groups.end(); it != itEnd; ++it)
  978. {
  979. const Group& group = *it;
  980. // Set uniforms
  981. s_uniforms.submitPerDrawUniforms();
  982. // Set transform
  983. bgfx::setTransform(_mtx);
  984. // Set buffers
  985. bgfx::setIndexBuffer(group.m_ibh);
  986. bgfx::setVertexBuffer(0, group.m_vbh);
  987. // Set textures
  988. if (bgfx::kInvalidHandle != m_texture.idx)
  989. {
  990. bgfx::setTexture(0, s_texColor, m_texture);
  991. }
  992. bgfx::setTexture(1, s_texStencil, bgfx::getTexture(s_stencilFb) );
  993. // Apply render state
  994. ::setRenderState(_renderState);
  995. // Submit
  996. BX_CHECK(bgfx::kInvalidHandle != m_program, "Error, program is not set.");
  997. ::submit(_viewId, m_program);
  998. }
  999. }
  1000. Mesh m_mesh;
  1001. bgfx::ProgramHandle m_program;
  1002. bgfx::TextureHandle m_texture;
  1003. };
  1004. struct Instance
  1005. {
  1006. Instance()
  1007. : m_svExtrusionDistance(150.0f)
  1008. {
  1009. m_color[0] = 1.0f;
  1010. m_color[1] = 1.0f;
  1011. m_color[2] = 1.0f;
  1012. }
  1013. void submit(uint8_t _viewId, const RenderState& _renderState)
  1014. {
  1015. bx::memCopy(s_uniforms.m_color, m_color, 3*sizeof(float) );
  1016. float mtx[16];
  1017. bx::mtxSRT(mtx
  1018. , m_scale[0]
  1019. , m_scale[1]
  1020. , m_scale[2]
  1021. , m_rotation[0]
  1022. , m_rotation[1]
  1023. , m_rotation[2]
  1024. , m_pos[0]
  1025. , m_pos[1]
  1026. , m_pos[2]
  1027. );
  1028. BX_CHECK(NULL != m_model, "Instance model cannot be NULL!");
  1029. m_model->submit(_viewId, mtx, _renderState);
  1030. }
  1031. float m_scale[3];
  1032. float m_rotation[3];
  1033. float m_pos[3];
  1034. float m_color[3];
  1035. float m_svExtrusionDistance;
  1036. Model* m_model;
  1037. };
  1038. #define SV_INSTANCE_MEM_SIZE (1500 << 10)
  1039. #define SV_INSTANCE_COUNT ( (25 > MAX_INSTANCE_COUNT) ? 25 : MAX_INSTANCE_COUNT)
  1040. #define SV_PAGE_SIZE (SV_INSTANCE_MEM_SIZE * SV_INSTANCE_COUNT * MAX_LIGHTS_COUNT)
  1041. struct ShadowVolumeAllocator
  1042. {
  1043. ShadowVolumeAllocator()
  1044. {
  1045. m_mem = (uint8_t*)malloc(SV_PAGE_SIZE*2);
  1046. m_ptr = m_mem;
  1047. m_firstPage = true;
  1048. }
  1049. ~ShadowVolumeAllocator()
  1050. {
  1051. free(m_mem);
  1052. }
  1053. void* alloc(uint32_t _size)
  1054. {
  1055. void* ret = (void*)m_ptr;
  1056. m_ptr += _size;
  1057. BX_CHECK(m_ptr - m_mem < (m_firstPage ? SV_PAGE_SIZE : 2 * SV_PAGE_SIZE), "Buffer overflow!");
  1058. return ret;
  1059. }
  1060. void swap()
  1061. {
  1062. m_ptr = m_firstPage ? m_mem + SV_PAGE_SIZE : m_mem;
  1063. m_firstPage = !m_firstPage;
  1064. }
  1065. uint8_t* m_mem;
  1066. uint8_t* m_ptr;
  1067. bool m_firstPage;
  1068. };
  1069. static ShadowVolumeAllocator s_svAllocator;
  1070. struct ShadowVolumeImpl
  1071. {
  1072. enum Enum
  1073. {
  1074. DepthPass,
  1075. DepthFail,
  1076. };
  1077. };
  1078. struct ShadowVolumeAlgorithm
  1079. {
  1080. enum Enum
  1081. {
  1082. FaceBased,
  1083. EdgeBased,
  1084. };
  1085. };
  1086. struct ShadowVolume
  1087. {
  1088. bgfx::VertexBufferHandle m_vbSides;
  1089. bgfx::IndexBufferHandle m_ibSides;
  1090. bgfx::IndexBufferHandle m_ibFrontCap;
  1091. bgfx::IndexBufferHandle m_ibBackCap;
  1092. uint32_t m_numVertices;
  1093. uint32_t m_numIndices;
  1094. const float* m_mtx;
  1095. const float* m_lightPos;
  1096. bool m_cap;
  1097. };
  1098. void shadowVolumeLightTransform(float* __restrict _outLightPos
  1099. , const float* __restrict _scale
  1100. , const float* __restrict _rotate
  1101. , const float* __restrict _translate
  1102. , const float* __restrict _lightPos // world pos
  1103. )
  1104. {
  1105. /**
  1106. * Instead of transforming all the vertices, transform light instead:
  1107. * mtx = pivotTranslate -> rotateZYX -> invScale
  1108. * light = mtx * origin
  1109. */
  1110. float pivot[16];
  1111. bx::mtxTranslate(pivot
  1112. , _lightPos[0] - _translate[0]
  1113. , _lightPos[1] - _translate[1]
  1114. , _lightPos[2] - _translate[2]
  1115. );
  1116. float mzyx[16];
  1117. bx::mtxRotateZYX(mzyx
  1118. , -_rotate[0]
  1119. , -_rotate[1]
  1120. , -_rotate[2]
  1121. );
  1122. float invScale[16];
  1123. bx::mtxScale(invScale
  1124. , 1.0f / _scale[0]
  1125. , 1.0f / _scale[1]
  1126. , 1.0f / _scale[2]
  1127. );
  1128. float tmp0[16];
  1129. bx::mtxMul(tmp0, pivot, mzyx);
  1130. float mtx[16];
  1131. bx::mtxMul(mtx, tmp0, invScale);
  1132. float origin[3] = { 0.0f, 0.0f, 0.0f };
  1133. bx::vec3MulMtx(_outLightPos, origin, mtx);
  1134. }
  1135. void shadowVolumeCreate(ShadowVolume& _shadowVolume
  1136. , Group& _group
  1137. , uint16_t _stride
  1138. , const float* _mtx
  1139. , const float* _light // in model space
  1140. , ShadowVolumeImpl::Enum _impl = ShadowVolumeImpl::DepthPass
  1141. , ShadowVolumeAlgorithm::Enum _algo = ShadowVolumeAlgorithm::FaceBased
  1142. , bool _textureAsStencil = false
  1143. )
  1144. {
  1145. const uint8_t* vertices = _group.m_vertices;
  1146. const FaceArray& faces = _group.m_faces;
  1147. const Edge* edges = _group.m_edges;
  1148. const Plane* edgePlanes = _group.m_edgePlanes;
  1149. const uint32_t numEdges = _group.m_numEdges;
  1150. HalfEdges& halfEdges = _group.m_halfEdges;
  1151. struct VertexData
  1152. {
  1153. VertexData()
  1154. {
  1155. }
  1156. VertexData(const float* _v3, float _extrude = 0.0f, float _k = 1.0f)
  1157. {
  1158. bx::memCopy(m_v, _v3, 3*sizeof(float) );
  1159. m_extrude = _extrude;
  1160. m_k = _k;
  1161. }
  1162. float m_v[3];
  1163. float m_extrude;
  1164. float m_k;
  1165. };
  1166. bool cap = (ShadowVolumeImpl::DepthFail == _impl);
  1167. VertexData* verticesSide = (VertexData*) s_svAllocator.alloc(20000 * sizeof(VertexData) );
  1168. uint16_t* indicesSide = (uint16_t*) s_svAllocator.alloc(20000 * 3*sizeof(uint16_t) );
  1169. uint16_t* indicesFrontCap = 0;
  1170. uint16_t* indicesBackCap = 0;
  1171. if (cap)
  1172. {
  1173. indicesFrontCap = (uint16_t*)s_svAllocator.alloc(80000 * 3*sizeof(uint16_t) );
  1174. indicesBackCap = (uint16_t*)s_svAllocator.alloc(80000 * 3*sizeof(uint16_t) );
  1175. }
  1176. uint32_t vsideI = 0;
  1177. uint32_t sideI = 0;
  1178. uint32_t frontCapI = 0;
  1179. uint32_t backCapI = 0;
  1180. uint16_t indexSide = 0;
  1181. if (ShadowVolumeAlgorithm::FaceBased == _algo)
  1182. {
  1183. for (FaceArray::const_iterator iter = faces.begin(), end = faces.end(); iter != end; ++iter)
  1184. {
  1185. const Face& face = *iter;
  1186. bool frontFacing = false;
  1187. float f = bx::vec3Dot(face.m_plane, _light) + face.m_plane[3];
  1188. if (f > 0.0f)
  1189. {
  1190. frontFacing = true;
  1191. uint16_t triangleEdges[3][2] =
  1192. {
  1193. { face.m_i[0], face.m_i[1] },
  1194. { face.m_i[1], face.m_i[2] },
  1195. { face.m_i[2], face.m_i[0] },
  1196. };
  1197. for (uint8_t ii = 0; ii < 3; ++ii)
  1198. {
  1199. uint16_t first = triangleEdges[ii][0];
  1200. uint16_t second = triangleEdges[ii][1];
  1201. if (!halfEdges.unmark(second, first) )
  1202. {
  1203. halfEdges.mark(first, second);
  1204. }
  1205. }
  1206. }
  1207. if (cap)
  1208. {
  1209. if (frontFacing)
  1210. {
  1211. indicesFrontCap[frontCapI++] = face.m_i[0];
  1212. indicesFrontCap[frontCapI++] = face.m_i[1];
  1213. indicesFrontCap[frontCapI++] = face.m_i[2];
  1214. }
  1215. else
  1216. {
  1217. indicesBackCap[backCapI++] = face.m_i[0];
  1218. indicesBackCap[backCapI++] = face.m_i[1];
  1219. indicesBackCap[backCapI++] = face.m_i[2];
  1220. }
  1221. /**
  1222. * if '_useFrontFacingFacesAsBackCap' is needed, implement it as such:
  1223. *
  1224. * bool condition0 = frontFacing && _useFrontFacingFacesAsBackCap;
  1225. * bool condition1 = !frontFacing && !_useFrontFacingFacesAsBackCap;
  1226. * if (condition0 || condition1)
  1227. * {
  1228. * indicesBackCap[backCapI++] = face.m_i[0];
  1229. * indicesBackCap[backCapI++] = face.m_i[1+condition0];
  1230. * indicesBackCap[backCapI++] = face.m_i[2-condition0];
  1231. * }
  1232. */
  1233. }
  1234. }
  1235. // Fill side arrays.
  1236. uint16_t firstIndex = 0;
  1237. HalfEdge* he = halfEdges.begin();
  1238. while (halfEdges.end() != he)
  1239. {
  1240. if (he->m_marked)
  1241. {
  1242. he->m_marked = false;
  1243. const float* v0 = (float*)&vertices[firstIndex*_stride];
  1244. const float* v1 = (float*)&vertices[he->m_secondIndex*_stride];
  1245. verticesSide[vsideI++] = VertexData(v0, 0.0f);
  1246. verticesSide[vsideI++] = VertexData(v0, 1.0f);
  1247. verticesSide[vsideI++] = VertexData(v1, 0.0f);
  1248. verticesSide[vsideI++] = VertexData(v1, 1.0f);
  1249. indicesSide[sideI++] = indexSide+0;
  1250. indicesSide[sideI++] = indexSide+1;
  1251. indicesSide[sideI++] = indexSide+2;
  1252. indicesSide[sideI++] = indexSide+2;
  1253. indicesSide[sideI++] = indexSide+1;
  1254. indicesSide[sideI++] = indexSide+3;
  1255. indexSide += 4;
  1256. }
  1257. ++he;
  1258. if (INVALID_EDGE_INDEX == he->m_secondIndex)
  1259. {
  1260. ++he;
  1261. ++firstIndex;
  1262. }
  1263. }
  1264. }
  1265. else // ShadowVolumeAlgorithm::EdgeBased:
  1266. {
  1267. {
  1268. uint32_t ii = 0;
  1269. #if SV_USE_SIMD
  1270. uint32_t numEdgesRounded = numEdges & (~0x1);
  1271. using namespace bx;
  1272. const simd128_t lx = simd_splat(_light[0]);
  1273. const simd128_t ly = simd_splat(_light[1]);
  1274. const simd128_t lz = simd_splat(_light[2]);
  1275. for (; ii < numEdgesRounded; ii+=2)
  1276. {
  1277. const Edge& edge0 = edges[ii];
  1278. const Edge& edge1 = edges[ii+1];
  1279. const Plane* edgePlane0 = &edgePlanes[ii*2];
  1280. const Plane* edgePlane1 = &edgePlanes[ii*2 + 2];
  1281. const simd128_t reverse =
  1282. simd_ild(edge0.m_faceReverseOrder[0]
  1283. , edge1.m_faceReverseOrder[0]
  1284. , edge0.m_faceReverseOrder[1]
  1285. , edge1.m_faceReverseOrder[1]
  1286. );
  1287. const simd128_t p00 = simd_ld(edgePlane0[0].m_plane);
  1288. const simd128_t p10 = simd_ld(edgePlane1[0].m_plane);
  1289. const simd128_t p01 = simd_ld(edgePlane0[1].m_plane);
  1290. const simd128_t p11 = simd_ld(edgePlane1[1].m_plane);
  1291. const simd128_t xxyy0 = simd_shuf_xAyB(p00, p01);
  1292. const simd128_t zzww0 = simd_shuf_zCwD(p00, p01);
  1293. const simd128_t xxyy1 = simd_shuf_xAyB(p10, p11);
  1294. const simd128_t zzww1 = simd_shuf_zCwD(p10, p11);
  1295. const simd128_t vX = simd_shuf_xAyB(xxyy0, xxyy1);
  1296. const simd128_t vY = simd_shuf_zCwD(xxyy0, xxyy1);
  1297. const simd128_t vZ = simd_shuf_xAyB(zzww0, zzww1);
  1298. const simd128_t vW = simd_shuf_zCwD(zzww0, zzww1);
  1299. const simd128_t r0 = simd_mul(vX, lx);
  1300. const simd128_t r1 = simd_mul(vY, ly);
  1301. const simd128_t r2 = simd_mul(vZ, lz);
  1302. const simd128_t dot = simd_add(r0, simd_add(r1, r2) );
  1303. const simd128_t f = simd_add(dot, vW);
  1304. const simd128_t zero = simd_zero();
  1305. const simd128_t mask = simd_cmpgt(f, zero);
  1306. const simd128_t onef = simd_splat(1.0f);
  1307. const simd128_t tmp0 = simd_and(mask, onef);
  1308. const simd128_t tmp1 = simd_ftoi(tmp0);
  1309. const simd128_t tmp2 = simd_xor(tmp1, reverse);
  1310. const simd128_t tmp3 = simd_sll(tmp2, 1);
  1311. const simd128_t onei = simd_isplat(1);
  1312. const simd128_t tmp4 = simd_isub(tmp3, onei);
  1313. BX_ALIGN_DECL_16(int32_t res[4]);
  1314. simd_st(&res, tmp4);
  1315. for (uint16_t jj = 0; jj < 2; ++jj)
  1316. {
  1317. int32_t kk = res[jj] + res[jj+2];
  1318. if (kk != 0)
  1319. {
  1320. float* v0 = (float*)&vertices[edges[ii+jj].m_i0*_stride];
  1321. float* v1 = (float*)&vertices[edges[ii+jj].m_i1*_stride];
  1322. verticesSide[vsideI++] = VertexData(v0, 0.0f, float(kk) );
  1323. verticesSide[vsideI++] = VertexData(v0, 1.0f, float(kk) );
  1324. verticesSide[vsideI++] = VertexData(v1, 0.0f, float(kk) );
  1325. verticesSide[vsideI++] = VertexData(v1, 1.0f, float(kk) );
  1326. kk = _textureAsStencil ? 1 : kk;
  1327. uint16_t winding = uint16_t(kk > 0);
  1328. for (int32_t ll = 0, end = abs(kk); ll < end; ++ll)
  1329. {
  1330. indicesSide[sideI++] = indexSide;
  1331. indicesSide[sideI++] = indexSide + 2 - winding;
  1332. indicesSide[sideI++] = indexSide + 1 + winding;
  1333. indicesSide[sideI++] = indexSide + 2;
  1334. indicesSide[sideI++] = indexSide + 3 - winding*2;
  1335. indicesSide[sideI++] = indexSide + 1 + winding*2;
  1336. }
  1337. indexSide += 4;
  1338. }
  1339. }
  1340. }
  1341. #endif
  1342. for (; ii < numEdges; ++ii)
  1343. {
  1344. const Edge& edge = edges[ii];
  1345. const Plane* edgePlane = &edgePlanes[ii*2];
  1346. int16_t s0 = ( (vec3Dot(edgePlane[0].m_plane, _light) + edgePlane[0].m_plane[3]) > 0.0f) ^ edge.m_faceReverseOrder[0];
  1347. int16_t s1 = ( (vec3Dot(edgePlane[1].m_plane, _light) + edgePlane[1].m_plane[3]) > 0.0f) ^ edge.m_faceReverseOrder[1];
  1348. int16_t kk = ( (s0 + s1) << 1) - 2;
  1349. if (kk != 0)
  1350. {
  1351. float* v0 = (float*)&vertices[edge.m_i0*_stride];
  1352. float* v1 = (float*)&vertices[edge.m_i1*_stride];
  1353. verticesSide[vsideI++] = VertexData(v0, 0.0f, kk);
  1354. verticesSide[vsideI++] = VertexData(v0, 1.0f, kk);
  1355. verticesSide[vsideI++] = VertexData(v1, 0.0f, kk);
  1356. verticesSide[vsideI++] = VertexData(v1, 1.0f, kk);
  1357. kk = _textureAsStencil ? 1 : kk;
  1358. uint16_t winding = uint16_t(kk > 0);
  1359. for (int32_t jj = 0, end = abs(kk); jj < end; ++jj)
  1360. {
  1361. indicesSide[sideI++] = indexSide;
  1362. indicesSide[sideI++] = indexSide + 2 - winding;
  1363. indicesSide[sideI++] = indexSide + 1 + winding;
  1364. indicesSide[sideI++] = indexSide + 2;
  1365. indicesSide[sideI++] = indexSide + 3 - winding*2;
  1366. indicesSide[sideI++] = indexSide + 1 + winding*2;
  1367. }
  1368. indexSide += 4;
  1369. }
  1370. }
  1371. }
  1372. if (cap)
  1373. {
  1374. // This could/should be done on GPU!
  1375. for (FaceArray::const_iterator iter = faces.begin(), end = faces.end(); iter != end; ++iter)
  1376. {
  1377. const Face& face = *iter;
  1378. float f = bx::vec3Dot(face.m_plane, _light) + face.m_plane[3];
  1379. bool frontFacing = (f > 0.0f);
  1380. for (uint8_t ii = 0, num = 1 + uint8_t(!_textureAsStencil); ii < num; ++ii)
  1381. {
  1382. if (frontFacing)
  1383. {
  1384. indicesFrontCap[frontCapI++] = face.m_i[0];
  1385. indicesFrontCap[frontCapI++] = face.m_i[1];
  1386. indicesFrontCap[frontCapI++] = face.m_i[2];
  1387. }
  1388. else
  1389. {
  1390. indicesBackCap[backCapI++] = face.m_i[0];
  1391. indicesBackCap[backCapI++] = face.m_i[1];
  1392. indicesBackCap[backCapI++] = face.m_i[2];
  1393. }
  1394. }
  1395. }
  1396. }
  1397. }
  1398. bgfx::VertexDecl decl;
  1399. decl.begin()
  1400. .add(bgfx::Attrib::Position, 3, bgfx::AttribType::Float)
  1401. .add(bgfx::Attrib::TexCoord0, 2, bgfx::AttribType::Float)
  1402. .end();
  1403. //fill the structure
  1404. _shadowVolume.m_numVertices = vsideI;
  1405. _shadowVolume.m_numIndices = sideI + frontCapI + backCapI;
  1406. _shadowVolume.m_mtx = _mtx;
  1407. _shadowVolume.m_lightPos = _light;
  1408. _shadowVolume.m_cap = cap;
  1409. const bgfx::Memory* mem;
  1410. //sides
  1411. uint32_t vsize = vsideI * 5*sizeof(float);
  1412. uint32_t isize = sideI * sizeof(uint16_t);
  1413. mem = bgfx::makeRef(verticesSide, vsize);
  1414. _shadowVolume.m_vbSides = bgfx::createVertexBuffer(mem, decl);
  1415. mem = bgfx::makeRef(indicesSide, isize);
  1416. _shadowVolume.m_ibSides = bgfx::createIndexBuffer(mem);
  1417. // bgfx::destroy*Buffer doesn't actually destroy buffers now.
  1418. // Instead, these bgfx::destroy*Buffer commands get queued to be executed after the end of the next frame.
  1419. bgfx::destroyVertexBuffer(_shadowVolume.m_vbSides);
  1420. bgfx::destroyIndexBuffer(_shadowVolume.m_ibSides);
  1421. if (cap)
  1422. {
  1423. //front cap
  1424. isize = frontCapI * sizeof(uint16_t);
  1425. mem = bgfx::makeRef(indicesFrontCap, isize);
  1426. _shadowVolume.m_ibFrontCap = bgfx::createIndexBuffer(mem);
  1427. //gets destroyed after the end of the next frame
  1428. bgfx::destroyIndexBuffer(_shadowVolume.m_ibFrontCap);
  1429. //back cap
  1430. isize = backCapI * sizeof(uint16_t);
  1431. mem = bgfx::makeRef(indicesBackCap, isize);
  1432. _shadowVolume.m_ibBackCap = bgfx::createIndexBuffer(mem);
  1433. //gets destroyed after the end of the next frame
  1434. bgfx::destroyIndexBuffer(_shadowVolume.m_ibBackCap);
  1435. }
  1436. }
  1437. void createNearClipVolume(float* __restrict _outPlanes24f
  1438. , float* __restrict _lightPos
  1439. , float* __restrict _view
  1440. , float _fovy
  1441. , float _aspect
  1442. , float _near
  1443. )
  1444. {
  1445. float (*volumePlanes)[4] = (float(*)[4])_outPlanes24f;
  1446. float mtxViewInv[16];
  1447. float mtxViewTrans[16];
  1448. bx::mtxInverse(mtxViewInv, _view);
  1449. bx::mtxTranspose(mtxViewTrans, _view);
  1450. float lightPosV[4];
  1451. bx::vec4MulMtx(lightPosV, _lightPos, _view);
  1452. const float delta = 0.1f;
  1453. float nearNormal[4] = { 0.0f, 0.0f, 1.0f, _near };
  1454. float d = bx::vec3Dot(lightPosV, nearNormal) + lightPosV[3] * nearNormal[3];
  1455. // Light is:
  1456. // 1.0f - in front of near plane
  1457. // 0.0f - on the near plane
  1458. // -1.0f - behind near plane
  1459. float lightSide = float( (d > delta) - (d < -delta) );
  1460. float t = bx::ftan(bx::toRad(_fovy)*0.5f) * _near;
  1461. float b = -t;
  1462. float r = t * _aspect;
  1463. float l = -r;
  1464. float cornersV[4][3] =
  1465. {
  1466. { r, t, _near },
  1467. { l, t, _near },
  1468. { l, b, _near },
  1469. { r, b, _near },
  1470. };
  1471. float corners[4][3];
  1472. bx::vec3MulMtx(corners[0], cornersV[0], mtxViewInv);
  1473. bx::vec3MulMtx(corners[1], cornersV[1], mtxViewInv);
  1474. bx::vec3MulMtx(corners[2], cornersV[2], mtxViewInv);
  1475. bx::vec3MulMtx(corners[3], cornersV[3], mtxViewInv);
  1476. float planeNormals[4][3];
  1477. for (uint8_t ii = 0; ii < 4; ++ii)
  1478. {
  1479. float* normal = planeNormals[ii];
  1480. float* plane = volumePlanes[ii];
  1481. float planeVec[3];
  1482. bx::vec3Sub(planeVec, corners[ii], corners[(ii-1)%4]);
  1483. float light[3];
  1484. float tmp[3];
  1485. bx::vec3Mul(tmp, corners[ii], _lightPos[3]);
  1486. bx::vec3Sub(light, _lightPos, tmp);
  1487. bx::vec3Cross(normal, planeVec, light);
  1488. normal[0] *= lightSide;
  1489. normal[1] *= lightSide;
  1490. normal[2] *= lightSide;
  1491. float lenInv = 1.0f / bx::fsqrt(bx::vec3Dot(normal, normal) );
  1492. plane[0] = normal[0] * lenInv;
  1493. plane[1] = normal[1] * lenInv;
  1494. plane[2] = normal[2] * lenInv;
  1495. plane[3] = -bx::vec3Dot(normal, corners[ii]) * lenInv;
  1496. }
  1497. float nearPlaneV[4] =
  1498. {
  1499. 0.0f * lightSide,
  1500. 0.0f * lightSide,
  1501. 1.0f * lightSide,
  1502. _near * lightSide,
  1503. };
  1504. bx::vec4MulMtx(volumePlanes[4], nearPlaneV, mtxViewTrans);
  1505. float* lightPlane = volumePlanes[5];
  1506. float lightPlaneNormal[3] = { 0.0f, 0.0f, -_near * lightSide };
  1507. float tmp[3];
  1508. bx::vec3MulMtx(tmp, lightPlaneNormal, mtxViewInv);
  1509. bx::vec3Sub(lightPlaneNormal, tmp, _lightPos);
  1510. float lenInv = 1.0f / bx::fsqrt(bx::vec3Dot(lightPlaneNormal, lightPlaneNormal) );
  1511. lightPlane[0] = lightPlaneNormal[0] * lenInv;
  1512. lightPlane[1] = lightPlaneNormal[1] * lenInv;
  1513. lightPlane[2] = lightPlaneNormal[2] * lenInv;
  1514. lightPlane[3] = -bx::vec3Dot(lightPlaneNormal, _lightPos) * lenInv;
  1515. }
  1516. bool clipTest(const float* _planes, uint8_t _planeNum, const Mesh& _mesh, const float* _scale, const float* _translate)
  1517. {
  1518. float (*volumePlanes)[4] = (float(*)[4])_planes;
  1519. float scale = bx::fmax(bx::fmax(_scale[0], _scale[1]), _scale[2]);
  1520. const GroupArray& groups = _mesh.m_groups;
  1521. for (GroupArray::const_iterator it = groups.begin(), itEnd = groups.end(); it != itEnd; ++it)
  1522. {
  1523. const Group& group = *it;
  1524. Sphere sphere = group.m_sphere;
  1525. sphere.m_center[0] = sphere.m_center[0] * scale + _translate[0];
  1526. sphere.m_center[1] = sphere.m_center[1] * scale + _translate[1];
  1527. sphere.m_center[2] = sphere.m_center[2] * scale + _translate[2];
  1528. sphere.m_radius *= (scale+0.4f);
  1529. bool isInside = true;
  1530. for (uint8_t ii = 0; ii < _planeNum; ++ii)
  1531. {
  1532. const float* plane = volumePlanes[ii];
  1533. float positiveSide = bx::vec3Dot(plane, sphere.m_center) + plane[3] + sphere.m_radius;
  1534. if (positiveSide < 0.0f)
  1535. {
  1536. isInside = false;
  1537. break;
  1538. }
  1539. }
  1540. if (isInside)
  1541. {
  1542. return true;
  1543. }
  1544. }
  1545. return false;
  1546. }
  1547. struct ShadowVolumeProgramType
  1548. {
  1549. enum Enum
  1550. {
  1551. Blank = 0,
  1552. Color,
  1553. Tex1,
  1554. Tex2,
  1555. Count
  1556. };
  1557. };
  1558. struct ShadowVolumePart
  1559. {
  1560. enum Enum
  1561. {
  1562. Back = 0,
  1563. Side,
  1564. Front,
  1565. Count
  1566. };
  1567. };
  1568. enum LightPattern
  1569. {
  1570. LightPattern0 = 0,
  1571. LightPattern1
  1572. };
  1573. enum MeshChoice
  1574. {
  1575. BunnyHighPoly = 0,
  1576. BunnyLowPoly
  1577. };
  1578. enum Scene
  1579. {
  1580. Scene0 = 0,
  1581. Scene1,
  1582. SceneCount
  1583. };
  1584. class ExampleShadowVolumes : public entry::AppI
  1585. {
  1586. public:
  1587. ExampleShadowVolumes(const char* _name, const char* _description)
  1588. : entry::AppI(_name, _description)
  1589. {
  1590. }
  1591. void init(int32_t _argc, const char* const* _argv, uint32_t _width, uint32_t _height) BX_OVERRIDE
  1592. {
  1593. Args args(_argc, _argv);
  1594. m_viewState = ViewState(_width, _height);
  1595. m_clearValues = { 0x00000000, 1.0f, 0 };
  1596. m_debug = BGFX_DEBUG_NONE;
  1597. m_reset = BGFX_RESET_VSYNC;
  1598. bgfx::init(args.m_type, args.m_pciId);
  1599. bgfx::reset(m_viewState.m_width, m_viewState.m_height, m_reset);
  1600. // Enable debug text.
  1601. bgfx::setDebug(m_debug);
  1602. const bgfx::Caps* caps = bgfx::getCaps();
  1603. s_oglNdc = caps->homogeneousDepth;
  1604. s_texelHalf = bgfx::RendererType::Direct3D9 == caps->rendererType ? 0.5f : 0.0f;
  1605. // Imgui
  1606. imguiCreate();
  1607. PosNormalTexcoordVertex::init();
  1608. s_uniforms.init();
  1609. m_figureTex = loadTexture("textures/figure-rgba.dds");
  1610. m_flareTex = loadTexture("textures/flare.dds");
  1611. m_fieldstoneTex = loadTexture("textures/fieldstone-rgba.dds");
  1612. bgfx::TextureHandle fbtextures[] =
  1613. {
  1614. bgfx::createTexture2D(uint16_t(m_viewState.m_width), uint16_t(m_viewState.m_height), false, 1, bgfx::TextureFormat::BGRA8, BGFX_TEXTURE_U_CLAMP | BGFX_TEXTURE_V_CLAMP | BGFX_TEXTURE_RT),
  1615. bgfx::createTexture2D(uint16_t(m_viewState.m_width), uint16_t(m_viewState.m_height), false, 1, bgfx::TextureFormat::D16, BGFX_TEXTURE_RT_WRITE_ONLY),
  1616. };
  1617. s_stencilFb = bgfx::createFrameBuffer(BX_COUNTOF(fbtextures), fbtextures, true);
  1618. s_texColor = bgfx::createUniform("s_texColor", bgfx::UniformType::Int1);
  1619. s_texStencil = bgfx::createUniform("s_texStencil", bgfx::UniformType::Int1);
  1620. m_programTextureLighting = loadProgram("vs_shadowvolume_texture_lighting", "fs_shadowvolume_texture_lighting");
  1621. m_programColorLighting = loadProgram("vs_shadowvolume_color_lighting", "fs_shadowvolume_color_lighting" );
  1622. m_programColorTexture = loadProgram("vs_shadowvolume_color_texture", "fs_shadowvolume_color_texture" );
  1623. m_programTexture = loadProgram("vs_shadowvolume_texture", "fs_shadowvolume_texture" );
  1624. m_programBackBlank = loadProgram("vs_shadowvolume_svback", "fs_shadowvolume_svbackblank" );
  1625. m_programSideBlank = loadProgram("vs_shadowvolume_svside", "fs_shadowvolume_svsideblank" );
  1626. m_programFrontBlank = loadProgram("vs_shadowvolume_svfront", "fs_shadowvolume_svfrontblank");
  1627. m_programBackColor = loadProgram("vs_shadowvolume_svback", "fs_shadowvolume_svbackcolor" );
  1628. m_programSideColor = loadProgram("vs_shadowvolume_svside", "fs_shadowvolume_svsidecolor" );
  1629. m_programFrontColor = loadProgram("vs_shadowvolume_svfront", "fs_shadowvolume_svfrontcolor");
  1630. m_programSideTex = loadProgram("vs_shadowvolume_svside", "fs_shadowvolume_svsidetex" );
  1631. m_programBackTex1 = loadProgram("vs_shadowvolume_svback", "fs_shadowvolume_svbacktex1" );
  1632. m_programBackTex2 = loadProgram("vs_shadowvolume_svback", "fs_shadowvolume_svbacktex2" );
  1633. m_programFrontTex1 = loadProgram("vs_shadowvolume_svfront", "fs_shadowvolume_svfronttex1" );
  1634. m_programFrontTex2 = loadProgram("vs_shadowvolume_svfront", "fs_shadowvolume_svfronttex2" );
  1635. bgfx::ProgramHandle svProgs[ShadowVolumeProgramType::Count][ShadowVolumePart::Count] =
  1636. {
  1637. { m_programBackBlank, m_programSideBlank, m_programFrontBlank }, // Blank
  1638. { m_programBackColor, m_programSideColor, m_programFrontColor }, // Color
  1639. { m_programBackTex1, m_programSideTex, m_programFrontTex1 }, // Tex1
  1640. { m_programBackTex2, m_programSideTex, m_programFrontTex2 }, // Tex2
  1641. };
  1642. bx::memCopy(m_svProgs, svProgs, sizeof(svProgs));
  1643. m_bunnyHighPolyModel.load("meshes/bunny_patched.bin");
  1644. m_bunnyHighPolyModel.m_program = m_programColorLighting;
  1645. m_bunnyLowPolyModel.load("meshes/bunny_decimated.bin");
  1646. m_bunnyLowPolyModel.m_program = m_programColorLighting;
  1647. m_columnModel.load("meshes/column.bin");
  1648. m_columnModel.m_program = m_programColorLighting;
  1649. m_platformModel.load("meshes/platform.bin");
  1650. m_platformModel.m_program = m_programTextureLighting;
  1651. m_platformModel.m_texture = m_figureTex;
  1652. m_cubeModel.load("meshes/cube.bin");
  1653. m_cubeModel.m_program = m_programTextureLighting;
  1654. m_cubeModel.m_texture = m_figureTex;
  1655. m_hplaneFieldModel.load(s_hplaneVertices
  1656. , BX_COUNTOF(s_hplaneVertices)
  1657. , PosNormalTexcoordVertex::ms_decl
  1658. , s_planeIndices
  1659. , BX_COUNTOF(s_planeIndices)
  1660. );
  1661. m_hplaneFieldModel.m_program = m_programTextureLighting;
  1662. m_hplaneFieldModel.m_texture = m_fieldstoneTex;
  1663. m_hplaneFigureModel.load(s_hplaneVertices
  1664. , BX_COUNTOF(s_hplaneVertices)
  1665. , PosNormalTexcoordVertex::ms_decl
  1666. , s_planeIndices
  1667. , BX_COUNTOF(s_planeIndices)
  1668. );
  1669. m_hplaneFigureModel.m_program = m_programTextureLighting;
  1670. m_hplaneFigureModel.m_texture = m_figureTex;
  1671. m_vplaneModel.load(s_vplaneVertices
  1672. , BX_COUNTOF(s_vplaneVertices)
  1673. , PosNormalTexcoordVertex::ms_decl
  1674. , s_planeIndices
  1675. , BX_COUNTOF(s_planeIndices)
  1676. );
  1677. m_vplaneModel.m_program = m_programColorTexture;
  1678. m_vplaneModel.m_texture = m_flareTex;
  1679. // Setup lights.
  1680. const float rgbInnerR[MAX_LIGHTS_COUNT][4] =
  1681. {
  1682. { 1.0f, 0.7f, 0.2f, 0.0f }, //yellow
  1683. { 0.7f, 0.2f, 1.0f, 0.0f }, //purple
  1684. { 0.2f, 1.0f, 0.7f, 0.0f }, //cyan
  1685. { 1.0f, 0.4f, 0.2f, 0.0f }, //orange
  1686. { 0.7f, 0.7f, 0.7f, 0.0f }, //white
  1687. };
  1688. for (uint8_t ii = 0, jj = 0; ii < MAX_LIGHTS_COUNT; ++ii, ++jj)
  1689. {
  1690. const uint8_t index = jj%MAX_LIGHTS_COUNT;
  1691. m_lightRgbInnerR[ii][0] = rgbInnerR[index][0];
  1692. m_lightRgbInnerR[ii][1] = rgbInnerR[index][1];
  1693. m_lightRgbInnerR[ii][2] = rgbInnerR[index][2];
  1694. m_lightRgbInnerR[ii][3] = rgbInnerR[index][3];
  1695. }
  1696. m_profTime = 0;
  1697. m_timeOffset = bx::getHPCounter();
  1698. m_numShadowVolumeVertices = 0;
  1699. m_numShadowVolumeIndices = 0;
  1700. m_oldWidth = 0;
  1701. m_oldHeight = 0;
  1702. // Imgui.
  1703. m_showHelp = false;
  1704. m_updateLights = true;
  1705. m_updateScene = true;
  1706. m_mixedSvImpl = true;
  1707. m_useStencilTexture = false;
  1708. m_drawShadowVolumes = false;
  1709. m_numLights = 1;
  1710. m_instanceCount = 9;
  1711. m_shadowVolumeImpl = ShadowVolumeImpl::DepthFail;
  1712. m_shadowVolumeAlgorithm = ShadowVolumeAlgorithm::EdgeBased;
  1713. m_lightPattern = LightPattern0;
  1714. m_currentMesh = BunnyLowPoly;
  1715. m_currentScene = Scene0;
  1716. // Set view matrix
  1717. cameraCreate();
  1718. float initialPos[3] = { 3.0f, 20.0f, -58.0f };
  1719. cameraSetPosition(initialPos);
  1720. cameraSetVerticalAngle(-0.25f);
  1721. cameraGetViewMtx(m_viewState.m_view);
  1722. }
  1723. virtual int shutdown() BX_OVERRIDE
  1724. {
  1725. // Cleanup
  1726. m_bunnyLowPolyModel.unload();
  1727. m_bunnyHighPolyModel.unload();
  1728. m_columnModel.unload();
  1729. m_cubeModel.unload();
  1730. m_platformModel.unload();
  1731. m_hplaneFieldModel.unload();
  1732. m_hplaneFigureModel.unload();
  1733. m_vplaneModel.unload();
  1734. s_uniforms.destroy();
  1735. bgfx::destroyUniform(s_texColor);
  1736. bgfx::destroyUniform(s_texStencil);
  1737. bgfx::destroyFrameBuffer(s_stencilFb);
  1738. bgfx::destroyTexture(m_figureTex);
  1739. bgfx::destroyTexture(m_fieldstoneTex);
  1740. bgfx::destroyTexture(m_flareTex);
  1741. bgfx::destroyProgram(m_programTextureLighting);
  1742. bgfx::destroyProgram(m_programColorLighting);
  1743. bgfx::destroyProgram(m_programColorTexture);
  1744. bgfx::destroyProgram(m_programTexture);
  1745. bgfx::destroyProgram(m_programBackBlank);
  1746. bgfx::destroyProgram(m_programSideBlank);
  1747. bgfx::destroyProgram(m_programFrontBlank);
  1748. bgfx::destroyProgram(m_programBackColor);
  1749. bgfx::destroyProgram(m_programSideColor);
  1750. bgfx::destroyProgram(m_programFrontColor);
  1751. bgfx::destroyProgram(m_programSideTex);
  1752. bgfx::destroyProgram(m_programBackTex1);
  1753. bgfx::destroyProgram(m_programBackTex2);
  1754. bgfx::destroyProgram(m_programFrontTex1);
  1755. bgfx::destroyProgram(m_programFrontTex2);
  1756. cameraDestroy();
  1757. imguiDestroy();
  1758. // Shutdown bgfx.
  1759. bgfx::shutdown();
  1760. return 0;
  1761. }
  1762. bool update() BX_OVERRIDE
  1763. {
  1764. if (!entry::processEvents(m_viewState.m_width, m_viewState.m_height, m_debug, m_reset, &m_mouseState) )
  1765. {
  1766. s_uniforms.submitConstUniforms();
  1767. // Set projection matrices.
  1768. const float fov = 60.0f;
  1769. const float aspect = float(m_viewState.m_width)/float(m_viewState.m_height);
  1770. const float nearPlane = 1.0f;
  1771. const float farPlane = 1000.0f;
  1772. // Respond properly on resize.
  1773. if (m_oldWidth != m_viewState.m_width
  1774. || m_oldHeight != m_viewState.m_height)
  1775. {
  1776. m_oldWidth = m_viewState.m_width;
  1777. m_oldHeight = m_viewState.m_height;
  1778. bgfx::destroyFrameBuffer(s_stencilFb);
  1779. bgfx::TextureHandle fbtextures[] =
  1780. {
  1781. bgfx::createTexture2D(uint16_t(m_viewState.m_width), uint16_t(m_viewState.m_height), false, 1, bgfx::TextureFormat::BGRA8, BGFX_TEXTURE_U_CLAMP|BGFX_TEXTURE_V_CLAMP|BGFX_TEXTURE_RT),
  1782. bgfx::createTexture2D(uint16_t(m_viewState.m_width), uint16_t(m_viewState.m_height), false, 1, bgfx::TextureFormat::D16, BGFX_TEXTURE_RT_WRITE_ONLY)
  1783. };
  1784. s_stencilFb = bgfx::createFrameBuffer(BX_COUNTOF(fbtextures), fbtextures, true);
  1785. }
  1786. // Time.
  1787. int64_t now = bx::getHPCounter();
  1788. static int64_t last = now;
  1789. const int64_t frameTime = now - last;
  1790. last = now;
  1791. const double freq = double(bx::getHPFrequency() );
  1792. const double toMs = 1000.0/freq;
  1793. float time = (float)( (now - m_timeOffset)/double(bx::getHPFrequency() ) );
  1794. const float deltaTime = float(frameTime/freq);
  1795. s_uniforms.m_time = time;
  1796. // Update camera.
  1797. cameraUpdate(deltaTime, m_mouseState);
  1798. // Set view and projection matrix for view 0.
  1799. const bgfx::HMD* hmd = bgfx::getHMD();
  1800. if (NULL != hmd && 0 != (hmd->flags & BGFX_HMD_RENDERING) )
  1801. {
  1802. float eye[3];
  1803. cameraGetPosition(eye);
  1804. bx::mtxQuatTranslationHMD(m_viewState.m_view, hmd->eye[0].rotation, eye);
  1805. bx::mtxProj(m_viewState.m_proj, hmd->eye[0].fov, nearPlane, farPlane, s_oglNdc);
  1806. m_viewState.m_width = hmd->width;
  1807. m_viewState.m_height = hmd->height;
  1808. }
  1809. else
  1810. {
  1811. cameraGetViewMtx(m_viewState.m_view);
  1812. bx::mtxProj(m_viewState.m_proj, fov, aspect, nearPlane, farPlane, s_oglNdc);
  1813. }
  1814. imguiBeginFrame(
  1815. m_mouseState.m_mx
  1816. , m_mouseState.m_my
  1817. , (m_mouseState.m_buttons[entry::MouseButton::Left] ? IMGUI_MBUT_LEFT : 0)
  1818. | (m_mouseState.m_buttons[entry::MouseButton::Right] ? IMGUI_MBUT_RIGHT : 0)
  1819. | (m_mouseState.m_buttons[entry::MouseButton::Middle] ? IMGUI_MBUT_MIDDLE : 0)
  1820. , m_mouseState.m_mz
  1821. , uint16_t(m_viewState.m_width)
  1822. , uint16_t(m_viewState.m_height)
  1823. );
  1824. showExampleDialog(this);
  1825. ImGui::SetNextWindowPos(ImVec2(m_viewState.m_width - 256.0f, 10.0f) );
  1826. ImGui::Begin("Settings"
  1827. , NULL
  1828. , ImVec2(256.0f, 700.0f)
  1829. , ImGuiWindowFlags_AlwaysAutoResize
  1830. );
  1831. const char* titles[2] =
  1832. {
  1833. "Scene 0",
  1834. "Scene 1",
  1835. };
  1836. if (ImGui::RadioButton(titles[Scene0], Scene0 == m_currentScene) )
  1837. {
  1838. m_currentScene = Scene0;
  1839. }
  1840. if (ImGui::RadioButton(titles[Scene1], Scene1 == m_currentScene) )
  1841. {
  1842. m_currentScene = Scene1;
  1843. }
  1844. ImGui::SliderInt("Lights", &m_numLights, 1, MAX_LIGHTS_COUNT);
  1845. ImGui::Checkbox("Update lights", &m_updateLights);
  1846. ImGui::Indent();
  1847. if (ImGui::RadioButton("Light pattern 0", LightPattern0 == m_lightPattern) )
  1848. {
  1849. m_lightPattern = LightPattern0;
  1850. }
  1851. if (ImGui::RadioButton("Light pattern 1", LightPattern1 == m_lightPattern) )
  1852. {
  1853. m_lightPattern = LightPattern1;
  1854. }
  1855. ImGui::Unindent();
  1856. if ( Scene0 == m_currentScene )
  1857. {
  1858. ImGui::Checkbox("Update scene", &m_updateScene);
  1859. }
  1860. ImGui::Separator();
  1861. ImGui::Text("Stencil buffer implementation:");
  1862. ImGui::Checkbox("Mixed", &m_mixedSvImpl);
  1863. if (!m_mixedSvImpl)
  1864. {
  1865. m_shadowVolumeImpl = (ImGui::RadioButton("Depth fail", ShadowVolumeImpl::DepthFail == m_shadowVolumeImpl) ? ShadowVolumeImpl::DepthFail : m_shadowVolumeImpl);
  1866. m_shadowVolumeImpl = (ImGui::RadioButton("Depth pass", ShadowVolumeImpl::DepthPass == m_shadowVolumeImpl) ? ShadowVolumeImpl::DepthPass : m_shadowVolumeImpl);
  1867. }
  1868. ImGui::Text("Shadow volume implementation:");
  1869. m_shadowVolumeAlgorithm = (ImGui::RadioButton("Face based impl.", ShadowVolumeAlgorithm::FaceBased == m_shadowVolumeAlgorithm) ? ShadowVolumeAlgorithm::FaceBased : m_shadowVolumeAlgorithm);
  1870. m_shadowVolumeAlgorithm = (ImGui::RadioButton("Edge based impl.", ShadowVolumeAlgorithm::EdgeBased == m_shadowVolumeAlgorithm) ? ShadowVolumeAlgorithm::EdgeBased : m_shadowVolumeAlgorithm);
  1871. ImGui::Text("Stencil:");
  1872. if (ImGui::RadioButton("Use stencil buffer", !m_useStencilTexture) )
  1873. {
  1874. if (m_useStencilTexture)
  1875. {
  1876. m_useStencilTexture = false;
  1877. }
  1878. }
  1879. if (ImGui::RadioButton("Use texture as stencil", m_useStencilTexture) )
  1880. {
  1881. if (!m_useStencilTexture)
  1882. {
  1883. m_useStencilTexture = true;
  1884. }
  1885. }
  1886. ImGui::Separator();
  1887. ImGui::Text("Mesh:");
  1888. if (ImGui::RadioButton("Bunny - high poly", BunnyHighPoly == m_currentMesh) )
  1889. {
  1890. m_currentMesh = BunnyHighPoly;
  1891. }
  1892. if (ImGui::RadioButton("Bunny - low poly", BunnyLowPoly == m_currentMesh) )
  1893. {
  1894. m_currentMesh = BunnyLowPoly;
  1895. }
  1896. if (Scene1 == m_currentScene)
  1897. {
  1898. ImGui::SliderInt("Instance count", &m_instanceCount, 1, MAX_INSTANCE_COUNT);
  1899. }
  1900. ImGui::Text("CPU Time: %7.1f [ms]", double(m_profTime)*toMs);
  1901. ImGui::Text("Volume Vertices: %5.uk", m_numShadowVolumeVertices/1000);
  1902. ImGui::Text("Volume Indices: %6.uk", m_numShadowVolumeIndices/1000);
  1903. m_numShadowVolumeVertices = 0;
  1904. m_numShadowVolumeIndices = 0;
  1905. ImGui::Separator();
  1906. ImGui::Checkbox("Draw Shadow Volumes", &m_drawShadowVolumes);
  1907. ImGui::End();
  1908. ImGui::SetNextWindowPos(ImVec2(10, float(m_viewState.m_height) - 77.0f - 10.0f) );
  1909. ImGui::Begin("Show help:"
  1910. , NULL
  1911. , ImVec2(120.0f, 77.0f)
  1912. , ImGuiWindowFlags_AlwaysAutoResize
  1913. );
  1914. if (ImGui::Button(m_showHelp ? "ON" : "OFF") )
  1915. {
  1916. m_showHelp = !m_showHelp;
  1917. }
  1918. ImGui::End();
  1919. imguiEndFrame();
  1920. //update settings
  1921. s_uniforms.m_params.m_ambientPass = 1.0f;
  1922. s_uniforms.m_params.m_lightingPass = 1.0f;
  1923. s_uniforms.m_params.m_texelHalf = s_texelHalf;
  1924. s_uniforms.m_svparams.m_useStencilTex = float(m_useStencilTexture);
  1925. //set picked bunny model
  1926. Model* bunnyModel = BunnyLowPoly == m_currentMesh ? &m_bunnyLowPolyModel : &m_bunnyHighPolyModel;
  1927. //update time accumulators
  1928. static float sceneTimeAccumulator = 0.0f;
  1929. if (m_updateScene)
  1930. {
  1931. sceneTimeAccumulator += deltaTime;
  1932. }
  1933. static float lightTimeAccumulator = 0.0f;
  1934. if (m_updateLights)
  1935. {
  1936. lightTimeAccumulator += deltaTime;
  1937. }
  1938. //setup light positions
  1939. float lightPosRadius[MAX_LIGHTS_COUNT][4];
  1940. if (LightPattern0 == m_lightPattern)
  1941. {
  1942. for (uint8_t ii = 0; ii < m_numLights; ++ii)
  1943. {
  1944. lightPosRadius[ii][0] = bx::fcos(2.0f*bx::kPi/float(m_numLights) * float(ii) + lightTimeAccumulator * 1.1f + 3.0f) * 20.0f;
  1945. lightPosRadius[ii][1] = 20.0f;
  1946. lightPosRadius[ii][2] = bx::fsin(2.0f*bx::kPi/float(m_numLights) * float(ii) + lightTimeAccumulator * 1.1f + 3.0f) * 20.0f;
  1947. lightPosRadius[ii][3] = 20.0f;
  1948. }
  1949. }
  1950. else
  1951. {
  1952. for (uint8_t ii = 0; ii < m_numLights; ++ii)
  1953. {
  1954. lightPosRadius[ii][0] = bx::fcos(float(ii) * 2.0f/float(m_numLights) + lightTimeAccumulator * 1.3f + bx::kPi) * 40.0f;
  1955. lightPosRadius[ii][1] = 20.0f;
  1956. lightPosRadius[ii][2] = bx::fsin(float(ii) * 2.0f/float(m_numLights) + lightTimeAccumulator * 1.3f + bx::kPi) * 40.0f;
  1957. lightPosRadius[ii][3] = 20.0f;
  1958. }
  1959. }
  1960. if (m_showHelp)
  1961. {
  1962. uint8_t row = 5;
  1963. bgfx::dbgTextPrintf(3, row++, 0x0f, "Stencil buffer implementation:");
  1964. bgfx::dbgTextPrintf(8, row++, 0x0f, "Depth fail - Robust, but slower than 'Depth pass'. Requires computing and drawing of shadow volume caps.");
  1965. bgfx::dbgTextPrintf(8, row++, 0x0f, "Depth pass - Faster, but not stable. Shadows are wrong when camera is in the shadow.");
  1966. bgfx::dbgTextPrintf(8, row++, 0x0f, "Mixed - 'Depth pass' where possible, 'Depth fail' where necessary. Best of both words.");
  1967. row++;
  1968. bgfx::dbgTextPrintf(3, row++, 0x0f, "Shadow volume implementation:");
  1969. bgfx::dbgTextPrintf(8, row++, 0x0f, "Face Based - Slower. Works fine with either stencil buffer or texture as stencil.");
  1970. bgfx::dbgTextPrintf(8, row++, 0x0f, "Edge Based - Faster, but requires +2 incr/decr on stencil buffer. To avoid massive redraw, use RGBA texture as stencil.");
  1971. row++;
  1972. bgfx::dbgTextPrintf(3, row++, 0x0f, "Stencil:");
  1973. bgfx::dbgTextPrintf(8, row++, 0x0f, "Stencil buffer - Faster, but capable only of +1 incr.");
  1974. bgfx::dbgTextPrintf(8, row++, 0x0f, "Texture as stencil - Slower, but capable of +2 incr.");
  1975. }
  1976. // Setup instances
  1977. Instance shadowCasters[SceneCount][60];
  1978. uint16_t shadowCastersCount[SceneCount];
  1979. for (uint8_t ii = 0; ii < SceneCount; ++ii)
  1980. {
  1981. shadowCastersCount[ii] = 0;
  1982. }
  1983. Instance shadowReceivers[SceneCount][10];
  1984. uint16_t shadowReceiversCount[SceneCount];
  1985. for (uint8_t ii = 0; ii < SceneCount; ++ii)
  1986. {
  1987. shadowReceiversCount[ii] = 0;
  1988. }
  1989. // Scene 0 - shadow casters - Bunny
  1990. {
  1991. Instance& inst = shadowCasters[Scene0][shadowCastersCount[Scene0]++];
  1992. inst.m_scale[0] = 5.0f;
  1993. inst.m_scale[1] = 5.0f;
  1994. inst.m_scale[2] = 5.0f;
  1995. inst.m_rotation[0] = 0.0f;
  1996. inst.m_rotation[1] = float(4.0f - sceneTimeAccumulator * 0.7f);
  1997. inst.m_rotation[2] = 0.0f;
  1998. inst.m_pos[0] = 0.0f;
  1999. inst.m_pos[1] = 10.0f;
  2000. inst.m_pos[2] = 0.0f;
  2001. inst.m_color[0] = 0.68f;
  2002. inst.m_color[1] = 0.65f;
  2003. inst.m_color[2] = 0.60f;
  2004. inst.m_model = bunnyModel;
  2005. }
  2006. // Scene 0 - shadow casters - Cubes top.
  2007. const uint8_t numCubesTop = 9;
  2008. for (uint16_t ii = 0; ii < numCubesTop; ++ii)
  2009. {
  2010. Instance& inst = shadowCasters[Scene0][shadowCastersCount[Scene0]++];
  2011. inst.m_scale[0] = 1.0f;
  2012. inst.m_scale[1] = 1.0f;
  2013. inst.m_scale[2] = 1.0f;
  2014. inst.m_rotation[0] = 0.0f;
  2015. inst.m_rotation[1] = 0.0f;
  2016. inst.m_rotation[2] = 0.0f;
  2017. inst.m_pos[0] = bx::fsin(ii * 2.0f + 13.0f + sceneTimeAccumulator * 1.1f) * 13.0f;
  2018. inst.m_pos[1] = 6.0f;
  2019. inst.m_pos[2] = bx::fcos(ii * 2.0f + 13.0f + sceneTimeAccumulator * 1.1f) * 13.0f;
  2020. inst.m_model = &m_cubeModel;
  2021. }
  2022. // Scene 0 - shadow casters - Cubes bottom.
  2023. const uint8_t numCubesBottom = 9;
  2024. for (uint16_t ii = 0; ii < numCubesBottom; ++ii)
  2025. {
  2026. Instance& inst = shadowCasters[Scene0][shadowCastersCount[Scene0]++];
  2027. inst.m_scale[0] = 1.0f;
  2028. inst.m_scale[1] = 1.0f;
  2029. inst.m_scale[2] = 1.0f;
  2030. inst.m_rotation[0] = 0.0f;
  2031. inst.m_rotation[1] = 0.0f;
  2032. inst.m_rotation[2] = 0.0f;
  2033. inst.m_pos[0] = bx::fsin(ii * 2.0f + 13.0f + sceneTimeAccumulator * 1.1f) * 13.0f;
  2034. inst.m_pos[1] = 22.0f;
  2035. inst.m_pos[2] = bx::fcos(ii * 2.0f + 13.0f + sceneTimeAccumulator * 1.1f) * 13.0f;
  2036. inst.m_model = &m_cubeModel;
  2037. }
  2038. // Scene 0 - shadow casters - Columns.
  2039. const float dist = 16.0f;
  2040. const float columnPositions[][3] =
  2041. {
  2042. { dist, 3.3f, dist },
  2043. { -dist, 3.3f, dist },
  2044. { dist, 3.3f, -dist },
  2045. { -dist, 3.3f, -dist },
  2046. };
  2047. for (uint8_t ii = 0; ii < 4; ++ii)
  2048. {
  2049. Instance& inst = shadowCasters[Scene0][shadowCastersCount[Scene0]++];
  2050. inst.m_scale[0] = 1.5f;
  2051. inst.m_scale[1] = 1.5f;
  2052. inst.m_scale[2] = 1.5f;
  2053. inst.m_rotation[0] = 0.0f;
  2054. inst.m_rotation[1] = 1.57f;
  2055. inst.m_rotation[2] = 0.0f;
  2056. inst.m_pos[0] = columnPositions[ii][0];
  2057. inst.m_pos[1] = columnPositions[ii][1];
  2058. inst.m_pos[2] = columnPositions[ii][2];
  2059. inst.m_color[0] = 0.25f;
  2060. inst.m_color[1] = 0.25f;
  2061. inst.m_color[2] = 0.25f;
  2062. inst.m_model = &m_columnModel;
  2063. }
  2064. // Scene 0 - shadow casters - Ceiling.
  2065. {
  2066. Instance& inst = shadowCasters[Scene0][shadowCastersCount[Scene0]++];
  2067. inst.m_scale[0] = 21.0f;
  2068. inst.m_scale[1] = 21.0f;
  2069. inst.m_scale[2] = 21.0f;
  2070. inst.m_rotation[0] = bx::kPi;
  2071. inst.m_rotation[1] = 0.0f;
  2072. inst.m_rotation[2] = 0.0f;
  2073. inst.m_pos[0] = 0.0f;
  2074. inst.m_pos[1] = 28.2f;
  2075. inst.m_pos[2] = 0.0f;
  2076. inst.m_model = &m_platformModel;
  2077. inst.m_svExtrusionDistance = 2.0f; //prevent culling on tight view frustum
  2078. }
  2079. // Scene 0 - shadow casters - Platform.
  2080. {
  2081. Instance& inst = shadowCasters[Scene0][shadowCastersCount[Scene0]++];
  2082. inst.m_scale[0] = 24.0f;
  2083. inst.m_scale[1] = 24.0f;
  2084. inst.m_scale[2] = 24.0f;
  2085. inst.m_rotation[0] = 0.0f;
  2086. inst.m_rotation[1] = 0.0f;
  2087. inst.m_rotation[2] = 0.0f;
  2088. inst.m_pos[0] = 0.0f;
  2089. inst.m_pos[1] = 0.0f;
  2090. inst.m_pos[2] = 0.0f;
  2091. inst.m_model = &m_platformModel;
  2092. inst.m_svExtrusionDistance = 2.0f; //prevent culling on tight view frustum
  2093. }
  2094. // Scene 0 - shadow receivers - Floor.
  2095. {
  2096. Instance& inst = shadowReceivers[Scene0][shadowReceiversCount[Scene0]++];
  2097. inst.m_scale[0] = 500.0f;
  2098. inst.m_scale[1] = 500.0f;
  2099. inst.m_scale[2] = 500.0f;
  2100. inst.m_rotation[0] = 0.0f;
  2101. inst.m_rotation[1] = 0.0f;
  2102. inst.m_rotation[2] = 0.0f;
  2103. inst.m_pos[0] = 0.0f;
  2104. inst.m_pos[1] = 0.0f;
  2105. inst.m_pos[2] = 0.0f;
  2106. inst.m_model = &m_hplaneFieldModel;
  2107. }
  2108. // Scene 1 - shadow casters - Bunny instances
  2109. {
  2110. enum Direction
  2111. {
  2112. Left = 0x0,
  2113. Down = 0x1,
  2114. Right = 0x2,
  2115. Up = 0x3,
  2116. };
  2117. const uint8_t directionMask = 0x3;
  2118. uint8_t currentDirection = Left;
  2119. float currX = 0.0f;
  2120. float currY = 0.0f;
  2121. const float stepX = 20.0f;
  2122. const float stepY = 20.0f;
  2123. uint8_t stateStep = 0;
  2124. uint8_t stateChange = 1;
  2125. for (uint8_t ii = 0; ii < m_instanceCount; ++ii)
  2126. {
  2127. Instance& inst = shadowCasters[Scene1][shadowCastersCount[Scene1]++];
  2128. inst.m_scale[0] = 5.0f;
  2129. inst.m_scale[1] = 5.0f;
  2130. inst.m_scale[2] = 5.0f;
  2131. inst.m_rotation[0] = 0.0f;
  2132. inst.m_rotation[1] = bx::kPi;
  2133. inst.m_rotation[2] = 0.0f;
  2134. inst.m_pos[0] = currX;
  2135. inst.m_pos[1] = 0.0f;
  2136. inst.m_pos[2] = currY;
  2137. inst.m_model = bunnyModel;
  2138. ++stateStep;
  2139. if (stateStep >= ( (stateChange & ~0x1) >> 1) )
  2140. {
  2141. currentDirection = (currentDirection + 1) & directionMask;
  2142. stateStep = 0;
  2143. ++stateChange;
  2144. }
  2145. switch (currentDirection)
  2146. {
  2147. case Left: currX -= stepX; break;
  2148. case Down: currY -= stepY; break;
  2149. case Right: currX += stepX; break;
  2150. case Up: currY += stepY; break;
  2151. }
  2152. }
  2153. }
  2154. // Scene 1 - shadow receivers - Floor.
  2155. {
  2156. Instance& inst = shadowReceivers[Scene1][shadowReceiversCount[Scene1]++];
  2157. inst.m_scale[0] = 500.0f;
  2158. inst.m_scale[1] = 500.0f;
  2159. inst.m_scale[2] = 500.0f;
  2160. inst.m_rotation[0] = 0.0f;
  2161. inst.m_rotation[1] = 0.0f;
  2162. inst.m_rotation[2] = 0.0f;
  2163. inst.m_pos[0] = 0.0f;
  2164. inst.m_pos[1] = 0.0f;
  2165. inst.m_pos[2] = 0.0f;
  2166. inst.m_model = &m_hplaneFigureModel;
  2167. }
  2168. // Make sure at the beginning everything gets cleared.
  2169. bgfx::setViewClear(0
  2170. , BGFX_CLEAR_COLOR
  2171. | BGFX_CLEAR_DEPTH
  2172. | BGFX_CLEAR_STENCIL
  2173. , m_clearValues.m_clearRgba
  2174. , m_clearValues.m_clearDepth
  2175. , m_clearValues.m_clearStencil
  2176. );
  2177. ::touch(0);
  2178. // Draw ambient only.
  2179. s_uniforms.m_params.m_ambientPass = 1.0f;
  2180. s_uniforms.m_params.m_lightingPass = 0.0f;
  2181. s_uniforms.m_color[0] = 1.0f;
  2182. s_uniforms.m_color[1] = 1.0f;
  2183. s_uniforms.m_color[2] = 1.0f;
  2184. const RenderState& drawAmbient = m_useStencilTexture
  2185. ? s_renderStates[RenderState::ShadowVolume_UsingStencilTexture_DrawAmbient]
  2186. : s_renderStates[RenderState::ShadowVolume_UsingStencilBuffer_DrawAmbient]
  2187. ;
  2188. // Draw shadow casters.
  2189. for (uint8_t ii = 0; ii < shadowCastersCount[m_currentScene]; ++ii)
  2190. {
  2191. shadowCasters[m_currentScene][ii].submit(VIEWID_RANGE1_PASS0, drawAmbient);
  2192. }
  2193. // Draw shadow receivers.
  2194. for (uint8_t ii = 0; ii < shadowReceiversCount[m_currentScene]; ++ii)
  2195. {
  2196. shadowReceivers[m_currentScene][ii].submit(VIEWID_RANGE1_PASS0, drawAmbient);
  2197. }
  2198. // Using stencil texture requires rendering to separate render target. first pass is building depth buffer.
  2199. if (m_useStencilTexture)
  2200. {
  2201. bgfx::setViewClear(VIEWID_RANGE1_RT_PASS1, BGFX_CLEAR_DEPTH, 0x00000000, 1.0f, 0);
  2202. bgfx::setViewFrameBuffer(VIEWID_RANGE1_RT_PASS1, s_stencilFb);
  2203. const RenderState& renderState = s_renderStates[RenderState::ShadowVolume_UsingStencilTexture_BuildDepth];
  2204. for (uint8_t ii = 0; ii < shadowCastersCount[m_currentScene]; ++ii)
  2205. {
  2206. shadowCasters[m_currentScene][ii].submit(VIEWID_RANGE1_RT_PASS1, renderState);
  2207. }
  2208. for (uint8_t ii = 0; ii < shadowReceiversCount[m_currentScene]; ++ii)
  2209. {
  2210. shadowReceivers[m_currentScene][ii].submit(VIEWID_RANGE1_RT_PASS1, renderState);
  2211. }
  2212. }
  2213. m_profTime = bx::getHPCounter();
  2214. /**
  2215. * For each light:
  2216. * 1. Compute and draw shadow volume to stencil buffer
  2217. * 2. Draw diffuse with stencil test
  2218. */
  2219. for (uint8_t ii = 0, viewId = VIEWID_RANGE15_PASS2; ii < m_numLights; ++ii, ++viewId)
  2220. {
  2221. const float* lightPos = lightPosRadius[ii];
  2222. bx::memCopy(s_uniforms.m_lightPosRadius, lightPosRadius[ii], 4*sizeof(float) );
  2223. bx::memCopy(s_uniforms.m_lightRgbInnerR, m_lightRgbInnerR[ii], 3*sizeof(float) );
  2224. bx::memCopy(s_uniforms.m_color, m_lightRgbInnerR[ii], 3*sizeof(float) );
  2225. if (m_useStencilTexture)
  2226. {
  2227. bgfx::setViewFrameBuffer(viewId, s_stencilFb);
  2228. bgfx::setViewClear(viewId
  2229. , BGFX_CLEAR_COLOR
  2230. , 0x00000000
  2231. , 1.0f
  2232. , 0
  2233. );
  2234. }
  2235. else
  2236. {
  2237. const bgfx::FrameBufferHandle invalid = BGFX_INVALID_HANDLE;
  2238. bgfx::setViewFrameBuffer(viewId, invalid);
  2239. bgfx::setViewClear(viewId
  2240. , BGFX_CLEAR_STENCIL
  2241. , m_clearValues.m_clearRgba
  2242. , m_clearValues.m_clearDepth
  2243. , m_clearValues.m_clearStencil
  2244. );
  2245. }
  2246. // Create near clip volume for current light.
  2247. float nearClipVolume[6 * 4] = {};
  2248. float pointLight[4];
  2249. if (m_mixedSvImpl)
  2250. {
  2251. pointLight[0] = lightPos[0];
  2252. pointLight[1] = lightPos[1];
  2253. pointLight[2] = lightPos[2];
  2254. pointLight[3] = 1.0f;
  2255. createNearClipVolume(nearClipVolume, pointLight, m_viewState.m_view, fov, aspect, nearPlane);
  2256. }
  2257. for (uint8_t jj = 0; jj < shadowCastersCount[m_currentScene]; ++jj)
  2258. {
  2259. const Instance& instance = shadowCasters[m_currentScene][jj];
  2260. Model* model = instance.m_model;
  2261. ShadowVolumeImpl::Enum shadowVolumeImpl = m_shadowVolumeImpl;
  2262. if (m_mixedSvImpl)
  2263. {
  2264. // If instance is inside near clip volume, depth fail must be used, else depth pass is fine.
  2265. bool isInsideVolume = clipTest(nearClipVolume, 6, model->m_mesh, instance.m_scale, instance.m_pos);
  2266. shadowVolumeImpl = (isInsideVolume ? ShadowVolumeImpl::DepthFail : ShadowVolumeImpl::DepthPass);
  2267. }
  2268. s_uniforms.m_svparams.m_dfail = float(ShadowVolumeImpl::DepthFail == shadowVolumeImpl);
  2269. // Compute virtual light position for shadow volume generation.
  2270. float transformedLightPos[3];
  2271. shadowVolumeLightTransform(transformedLightPos
  2272. , instance.m_scale
  2273. , instance.m_rotation
  2274. , instance.m_pos
  2275. , lightPos
  2276. );
  2277. // Set virtual light pos.
  2278. bx::memCopy(s_uniforms.m_virtualLightPos_extrusionDist, transformedLightPos, 3*sizeof(float) );
  2279. s_uniforms.m_virtualLightPos_extrusionDist[3] = instance.m_svExtrusionDistance;
  2280. // Compute transform for shadow volume.
  2281. float shadowVolumeMtx[16];
  2282. bx::mtxSRT(shadowVolumeMtx
  2283. , instance.m_scale[0]
  2284. , instance.m_scale[1]
  2285. , instance.m_scale[2]
  2286. , instance.m_rotation[0]
  2287. , instance.m_rotation[1]
  2288. , instance.m_rotation[2]
  2289. , instance.m_pos[0]
  2290. , instance.m_pos[1]
  2291. , instance.m_pos[2]
  2292. );
  2293. GroupArray& groups = model->m_mesh.m_groups;
  2294. const uint16_t stride = model->m_mesh.m_decl.getStride();
  2295. for (GroupArray::iterator it = groups.begin(), itEnd = groups.end(); it != itEnd; ++it)
  2296. {
  2297. Group& group = *it;
  2298. // Create shadow volume.
  2299. ShadowVolume shadowVolume;
  2300. shadowVolumeCreate(shadowVolume
  2301. , group
  2302. , stride
  2303. , shadowVolumeMtx
  2304. , transformedLightPos
  2305. , shadowVolumeImpl
  2306. , m_shadowVolumeAlgorithm
  2307. , m_useStencilTexture
  2308. );
  2309. m_numShadowVolumeVertices += shadowVolume.m_numVertices;
  2310. m_numShadowVolumeIndices += shadowVolume.m_numIndices;
  2311. ShadowVolumeProgramType::Enum programIndex = ShadowVolumeProgramType::Blank;
  2312. RenderState::Enum renderStateIndex;
  2313. if (m_useStencilTexture)
  2314. {
  2315. renderStateIndex = ShadowVolumeImpl::DepthFail == shadowVolumeImpl
  2316. ? RenderState::ShadowVolume_UsingStencilTexture_CraftStencil_DepthFail
  2317. : RenderState::ShadowVolume_UsingStencilTexture_CraftStencil_DepthPass
  2318. ;
  2319. programIndex = ShadowVolumeAlgorithm::FaceBased == m_shadowVolumeAlgorithm
  2320. ? ShadowVolumeProgramType::Tex1
  2321. : ShadowVolumeProgramType::Tex2
  2322. ;
  2323. }
  2324. else
  2325. {
  2326. renderStateIndex = ShadowVolumeImpl::DepthFail == shadowVolumeImpl
  2327. ? RenderState::ShadowVolume_UsingStencilBuffer_CraftStencil_DepthFail
  2328. : RenderState::ShadowVolume_UsingStencilBuffer_CraftStencil_DepthPass
  2329. ;
  2330. }
  2331. const RenderState& renderStateCraftStencil = s_renderStates[renderStateIndex];
  2332. s_uniforms.submitPerDrawUniforms();
  2333. bgfx::setTransform(shadowVolumeMtx);
  2334. bgfx::setVertexBuffer(0, shadowVolume.m_vbSides);
  2335. bgfx::setIndexBuffer(shadowVolume.m_ibSides);
  2336. setRenderState(renderStateCraftStencil);
  2337. ::submit(viewId, m_svProgs[programIndex][ShadowVolumePart::Side]);
  2338. if (shadowVolume.m_cap)
  2339. {
  2340. s_uniforms.submitPerDrawUniforms();
  2341. bgfx::setTransform(shadowVolumeMtx);
  2342. bgfx::setVertexBuffer(0, group.m_vbh);
  2343. bgfx::setIndexBuffer(shadowVolume.m_ibFrontCap);
  2344. setRenderState(renderStateCraftStencil);
  2345. ::submit(viewId, m_svProgs[programIndex][ShadowVolumePart::Front]);
  2346. s_uniforms.submitPerDrawUniforms();
  2347. bgfx::setTransform(shadowVolumeMtx);
  2348. bgfx::setVertexBuffer(0, group.m_vbh);
  2349. bgfx::setIndexBuffer(shadowVolume.m_ibBackCap);
  2350. ::setRenderState(renderStateCraftStencil);
  2351. ::submit(viewId, m_svProgs[programIndex][ShadowVolumePart::Back]);
  2352. }
  2353. if (m_drawShadowVolumes)
  2354. {
  2355. const RenderState& renderState = s_renderStates[RenderState::Custom_DrawShadowVolume_Lines];
  2356. s_uniforms.submitPerDrawUniforms();
  2357. bgfx::setTransform(shadowVolumeMtx);
  2358. bgfx::setVertexBuffer(0, shadowVolume.m_vbSides);
  2359. bgfx::setIndexBuffer(shadowVolume.m_ibSides);
  2360. ::setRenderState(renderState);
  2361. ::submit(VIEWID_RANGE1_PASS3, m_svProgs[ShadowVolumeProgramType::Color][ShadowVolumePart::Side]);
  2362. if (shadowVolume.m_cap)
  2363. {
  2364. s_uniforms.submitPerDrawUniforms();
  2365. bgfx::setTransform(shadowVolumeMtx);
  2366. bgfx::setVertexBuffer(0, group.m_vbh);
  2367. bgfx::setIndexBuffer(shadowVolume.m_ibFrontCap);
  2368. ::setRenderState(renderState);
  2369. ::submit(VIEWID_RANGE1_PASS3, m_svProgs[ShadowVolumeProgramType::Color][ShadowVolumePart::Front]);
  2370. s_uniforms.submitPerDrawUniforms();
  2371. bgfx::setTransform(shadowVolumeMtx);
  2372. bgfx::setVertexBuffer(0, group.m_vbh);
  2373. bgfx::setIndexBuffer(shadowVolume.m_ibBackCap);
  2374. ::setRenderState(renderState);
  2375. ::submit(VIEWID_RANGE1_PASS3, m_svProgs[ShadowVolumeProgramType::Color][ShadowVolumePart::Back]);
  2376. }
  2377. }
  2378. }
  2379. }
  2380. // Draw diffuse only.
  2381. s_uniforms.m_params.m_ambientPass = 0.0f;
  2382. s_uniforms.m_params.m_lightingPass = 1.0f;
  2383. RenderState& drawDiffuse = m_useStencilTexture
  2384. ? s_renderStates[RenderState::ShadowVolume_UsingStencilTexture_DrawDiffuse]
  2385. : s_renderStates[RenderState::ShadowVolume_UsingStencilBuffer_DrawDiffuse]
  2386. ;
  2387. // If using stencil texture, viewId is set to render target. Incr it to render to default back buffer.
  2388. viewId += uint8_t(m_useStencilTexture);
  2389. // Draw shadow casters.
  2390. for (uint8_t jj = 0; jj < shadowCastersCount[m_currentScene]; ++jj)
  2391. {
  2392. shadowCasters[m_currentScene][jj].submit(viewId, drawDiffuse);
  2393. }
  2394. // Draw shadow receivers.
  2395. for (uint8_t jj = 0; jj < shadowReceiversCount[m_currentScene]; ++jj)
  2396. {
  2397. shadowReceivers[m_currentScene][jj].submit(viewId, drawDiffuse);
  2398. }
  2399. }
  2400. m_profTime = bx::getHPCounter() - m_profTime;
  2401. // Lights.
  2402. const float lightScale[3] = { 1.5f, 1.5f, 1.5f };
  2403. for (uint8_t ii = 0; ii < m_numLights; ++ii)
  2404. {
  2405. bx::memCopy(s_uniforms.m_color, m_lightRgbInnerR[ii], 3*sizeof(float) );
  2406. float lightMtx[16];
  2407. mtxBillboard(lightMtx, m_viewState.m_view, lightPosRadius[ii], lightScale);
  2408. m_vplaneModel.submit(VIEWID_RANGE1_PASS3, lightMtx, s_renderStates[RenderState::Custom_BlendLightTexture]);
  2409. }
  2410. // Setup view rect and transform for all used views.
  2411. setViewRectMask(s_viewMask, 0, 0, uint16_t(m_viewState.m_width), uint16_t(m_viewState.m_height) );
  2412. setViewTransformMask(s_viewMask, m_viewState.m_view, m_viewState.m_proj);
  2413. s_viewMask = 0;
  2414. // Advance to next frame. Rendering thread will be kicked to
  2415. // process submitted rendering primitives.
  2416. bgfx::frame();
  2417. // Swap memory pages.
  2418. s_svAllocator.swap();
  2419. // Reset clear values.
  2420. setViewClearMask(UINT32_MAX
  2421. , BGFX_CLEAR_NONE
  2422. , m_clearValues.m_clearRgba
  2423. , m_clearValues.m_clearDepth
  2424. , m_clearValues.m_clearStencil
  2425. );
  2426. return true;
  2427. }
  2428. return false;
  2429. }
  2430. ViewState m_viewState;
  2431. ClearValues m_clearValues;
  2432. uint32_t m_debug;
  2433. uint32_t m_reset;
  2434. bgfx::TextureHandle m_figureTex;
  2435. bgfx::TextureHandle m_flareTex;
  2436. bgfx::TextureHandle m_fieldstoneTex;
  2437. bgfx::ProgramHandle m_programTextureLighting;
  2438. bgfx::ProgramHandle m_programColorLighting;
  2439. bgfx::ProgramHandle m_programColorTexture;
  2440. bgfx::ProgramHandle m_programTexture;
  2441. bgfx::ProgramHandle m_programBackBlank;
  2442. bgfx::ProgramHandle m_programSideBlank;
  2443. bgfx::ProgramHandle m_programFrontBlank;
  2444. bgfx::ProgramHandle m_programBackColor;
  2445. bgfx::ProgramHandle m_programSideColor;
  2446. bgfx::ProgramHandle m_programFrontColor;
  2447. bgfx::ProgramHandle m_programSideTex;
  2448. bgfx::ProgramHandle m_programBackTex1;
  2449. bgfx::ProgramHandle m_programBackTex2;
  2450. bgfx::ProgramHandle m_programFrontTex1;
  2451. bgfx::ProgramHandle m_programFrontTex2;
  2452. bgfx::ProgramHandle m_svProgs[ShadowVolumeProgramType::Count][ShadowVolumePart::Count];
  2453. Model m_bunnyLowPolyModel;
  2454. Model m_bunnyHighPolyModel;
  2455. Model m_columnModel;
  2456. Model m_platformModel;
  2457. Model m_cubeModel;
  2458. Model m_hplaneFieldModel;
  2459. Model m_hplaneFigureModel;
  2460. Model m_vplaneModel;
  2461. float m_lightRgbInnerR[MAX_LIGHTS_COUNT][4];
  2462. int64_t m_profTime;
  2463. int64_t m_timeOffset;
  2464. uint32_t m_numShadowVolumeVertices;
  2465. uint32_t m_numShadowVolumeIndices;
  2466. uint32_t m_oldWidth;
  2467. uint32_t m_oldHeight;
  2468. int32_t m_numLights;
  2469. int32_t m_instanceCount;
  2470. bool m_showHelp;
  2471. bool m_updateLights;
  2472. bool m_updateScene;
  2473. bool m_mixedSvImpl;
  2474. bool m_useStencilTexture;
  2475. bool m_drawShadowVolumes;
  2476. ShadowVolumeImpl::Enum m_shadowVolumeImpl;
  2477. ShadowVolumeAlgorithm::Enum m_shadowVolumeAlgorithm;
  2478. LightPattern m_lightPattern;
  2479. MeshChoice m_currentMesh;
  2480. Scene m_currentScene;
  2481. entry::MouseState m_mouseState;
  2482. };
  2483. } // namespace
  2484. ENTRY_IMPLEMENT_MAIN(ExampleShadowVolumes, "14-shadowvolumes", "Shadow volumes.");