shadowvolumes.cpp 78 KB

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