View.cpp 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252
  1. //
  2. // Copyright (c) 2008-2017 the Urho3D project.
  3. //
  4. // Permission is hereby granted, free of charge, to any person obtaining a copy
  5. // of this software and associated documentation files (the "Software"), to deal
  6. // in the Software without restriction, including without limitation the rights
  7. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. // copies of the Software, and to permit persons to whom the Software is
  9. // furnished to do so, subject to the following conditions:
  10. //
  11. // The above copyright notice and this permission notice shall be included in
  12. // all copies or substantial portions of the Software.
  13. //
  14. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  19. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  20. // THE SOFTWARE.
  21. //
  22. #include "../Precompiled.h"
  23. #include "../Core/Profiler.h"
  24. #include "../Core/WorkQueue.h"
  25. #include "../Graphics/Camera.h"
  26. #include "../Graphics/DebugRenderer.h"
  27. #include "../Graphics/Geometry.h"
  28. #include "../Graphics/Graphics.h"
  29. #include "../Graphics/GraphicsEvents.h"
  30. #include "../Graphics/GraphicsImpl.h"
  31. #include "../Graphics/Material.h"
  32. #include "../Graphics/OcclusionBuffer.h"
  33. #include "../Graphics/Octree.h"
  34. #include "../Graphics/Renderer.h"
  35. #include "../Graphics/RenderPath.h"
  36. #include "../Graphics/ShaderVariation.h"
  37. #include "../Graphics/Skybox.h"
  38. #include "../Graphics/Technique.h"
  39. #include "../Graphics/Texture2D.h"
  40. #include "../Graphics/Texture2DArray.h"
  41. #include "../Graphics/Texture3D.h"
  42. #include "../Graphics/TextureCube.h"
  43. #include "../Graphics/VertexBuffer.h"
  44. #include "../Graphics/View.h"
  45. #include "../IO/FileSystem.h"
  46. #include "../IO/Log.h"
  47. #include "../Resource/ResourceCache.h"
  48. #include "../Scene/Scene.h"
  49. #include "../UI/UI.h"
  50. #include "../DebugNew.h"
  51. namespace Atomic
  52. {
  53. static const Vector3* directions[] =
  54. {
  55. &Vector3::RIGHT,
  56. &Vector3::LEFT,
  57. &Vector3::UP,
  58. &Vector3::DOWN,
  59. &Vector3::FORWARD,
  60. &Vector3::BACK
  61. };
  62. /// %Frustum octree query for shadowcasters.
  63. class ShadowCasterOctreeQuery : public FrustumOctreeQuery
  64. {
  65. public:
  66. /// Construct with frustum and query parameters.
  67. ShadowCasterOctreeQuery(PODVector<Drawable*>& result, const Frustum& frustum, unsigned char drawableFlags = DRAWABLE_ANY,
  68. unsigned viewMask = DEFAULT_VIEWMASK) :
  69. FrustumOctreeQuery(result, frustum, drawableFlags, viewMask)
  70. {
  71. }
  72. /// Intersection test for drawables.
  73. virtual void TestDrawables(Drawable** start, Drawable** end, bool inside)
  74. {
  75. while (start != end)
  76. {
  77. Drawable* drawable = *start++;
  78. if (drawable->GetCastShadows() && (drawable->GetDrawableFlags() & drawableFlags_) &&
  79. (drawable->GetViewMask() & viewMask_))
  80. {
  81. if (inside || frustum_.IsInsideFast(drawable->GetWorldBoundingBox()))
  82. result_.Push(drawable);
  83. }
  84. }
  85. }
  86. };
  87. /// %Frustum octree query for zones and occluders.
  88. class ZoneOccluderOctreeQuery : public FrustumOctreeQuery
  89. {
  90. public:
  91. /// Construct with frustum and query parameters.
  92. ZoneOccluderOctreeQuery(PODVector<Drawable*>& result, const Frustum& frustum, unsigned char drawableFlags = DRAWABLE_ANY,
  93. unsigned viewMask = DEFAULT_VIEWMASK) :
  94. FrustumOctreeQuery(result, frustum, drawableFlags, viewMask)
  95. {
  96. }
  97. /// Intersection test for drawables.
  98. virtual void TestDrawables(Drawable** start, Drawable** end, bool inside)
  99. {
  100. while (start != end)
  101. {
  102. Drawable* drawable = *start++;
  103. unsigned char flags = drawable->GetDrawableFlags();
  104. if ((flags == DRAWABLE_ZONE || (flags == DRAWABLE_GEOMETRY && drawable->IsOccluder())) &&
  105. (drawable->GetViewMask() & viewMask_))
  106. {
  107. if (inside || frustum_.IsInsideFast(drawable->GetWorldBoundingBox()))
  108. result_.Push(drawable);
  109. }
  110. }
  111. }
  112. };
  113. /// %Frustum octree query with occlusion.
  114. class OccludedFrustumOctreeQuery : public FrustumOctreeQuery
  115. {
  116. public:
  117. /// Construct with frustum, occlusion buffer and query parameters.
  118. OccludedFrustumOctreeQuery(PODVector<Drawable*>& result, const Frustum& frustum, OcclusionBuffer* buffer,
  119. unsigned char drawableFlags = DRAWABLE_ANY, unsigned viewMask = DEFAULT_VIEWMASK) :
  120. FrustumOctreeQuery(result, frustum, drawableFlags, viewMask),
  121. buffer_(buffer)
  122. {
  123. }
  124. /// Intersection test for an octant.
  125. virtual Intersection TestOctant(const BoundingBox& box, bool inside)
  126. {
  127. if (inside)
  128. return buffer_->IsVisible(box) ? INSIDE : OUTSIDE;
  129. else
  130. {
  131. Intersection result = frustum_.IsInside(box);
  132. if (result != OUTSIDE && !buffer_->IsVisible(box))
  133. result = OUTSIDE;
  134. return result;
  135. }
  136. }
  137. /// Intersection test for drawables. Note: drawable occlusion is performed later in worker threads.
  138. virtual void TestDrawables(Drawable** start, Drawable** end, bool inside)
  139. {
  140. while (start != end)
  141. {
  142. Drawable* drawable = *start++;
  143. if ((drawable->GetDrawableFlags() & drawableFlags_) && (drawable->GetViewMask() & viewMask_))
  144. {
  145. if (inside || frustum_.IsInsideFast(drawable->GetWorldBoundingBox()))
  146. result_.Push(drawable);
  147. }
  148. }
  149. }
  150. /// Occlusion buffer.
  151. OcclusionBuffer* buffer_;
  152. };
  153. void CheckVisibilityWork(const WorkItem* item, unsigned threadIndex)
  154. {
  155. View* view = reinterpret_cast<View*>(item->aux_);
  156. Drawable** start = reinterpret_cast<Drawable**>(item->start_);
  157. Drawable** end = reinterpret_cast<Drawable**>(item->end_);
  158. OcclusionBuffer* buffer = view->occlusionBuffer_;
  159. const Matrix3x4& viewMatrix = view->cullCamera_->GetView();
  160. Vector3 viewZ = Vector3(viewMatrix.m20_, viewMatrix.m21_, viewMatrix.m22_);
  161. Vector3 absViewZ = viewZ.Abs();
  162. unsigned cameraViewMask = view->cullCamera_->GetViewMask();
  163. bool cameraZoneOverride = view->cameraZoneOverride_;
  164. PerThreadSceneResult& result = view->sceneResults_[threadIndex];
  165. while (start != end)
  166. {
  167. Drawable* drawable = *start++;
  168. if (!buffer || !drawable->IsOccludee() || buffer->IsVisible(drawable->GetWorldBoundingBox()))
  169. {
  170. drawable->UpdateBatches(view->frame_);
  171. // If draw distance non-zero, update and check it
  172. float maxDistance = drawable->GetDrawDistance();
  173. if (maxDistance > 0.0f)
  174. {
  175. if (drawable->GetDistance() > maxDistance)
  176. continue;
  177. }
  178. drawable->MarkInView(view->frame_);
  179. // For geometries, find zone, clear lights and calculate view space Z range
  180. if (drawable->GetDrawableFlags() & DRAWABLE_GEOMETRY)
  181. {
  182. Zone* drawableZone = drawable->GetZone();
  183. if (!cameraZoneOverride &&
  184. (drawable->IsZoneDirty() || !drawableZone || (drawableZone->GetViewMask() & cameraViewMask) == 0))
  185. view->FindZone(drawable);
  186. const BoundingBox& geomBox = drawable->GetWorldBoundingBox();
  187. Vector3 center = geomBox.Center();
  188. Vector3 edge = geomBox.Size() * 0.5f;
  189. // Do not add "infinite" objects like skybox to prevent shadow map focusing behaving erroneously
  190. if (edge.LengthSquared() < M_LARGE_VALUE * M_LARGE_VALUE)
  191. {
  192. float viewCenterZ = viewZ.DotProduct(center) + viewMatrix.m23_;
  193. float viewEdgeZ = absViewZ.DotProduct(edge);
  194. float minZ = viewCenterZ - viewEdgeZ;
  195. float maxZ = viewCenterZ + viewEdgeZ;
  196. drawable->SetMinMaxZ(viewCenterZ - viewEdgeZ, viewCenterZ + viewEdgeZ);
  197. result.minZ_ = Min(result.minZ_, minZ);
  198. result.maxZ_ = Max(result.maxZ_, maxZ);
  199. }
  200. else
  201. drawable->SetMinMaxZ(M_LARGE_VALUE, M_LARGE_VALUE);
  202. result.geometries_.Push(drawable);
  203. }
  204. else if (drawable->GetDrawableFlags() & DRAWABLE_LIGHT)
  205. {
  206. Light* light = static_cast<Light*>(drawable);
  207. // Skip lights with zero brightness or black color
  208. if (!light->GetEffectiveColor().Equals(Color::BLACK))
  209. result.lights_.Push(light);
  210. }
  211. }
  212. }
  213. }
  214. void ProcessLightWork(const WorkItem* item, unsigned threadIndex)
  215. {
  216. View* view = reinterpret_cast<View*>(item->aux_);
  217. LightQueryResult* query = reinterpret_cast<LightQueryResult*>(item->start_);
  218. view->ProcessLight(*query, threadIndex);
  219. }
  220. void UpdateDrawableGeometriesWork(const WorkItem* item, unsigned threadIndex)
  221. {
  222. const FrameInfo& frame = *(reinterpret_cast<FrameInfo*>(item->aux_));
  223. Drawable** start = reinterpret_cast<Drawable**>(item->start_);
  224. Drawable** end = reinterpret_cast<Drawable**>(item->end_);
  225. while (start != end)
  226. {
  227. Drawable* drawable = *start++;
  228. // We may leave null pointer holes in the queue if a drawable is found out to require a main thread update
  229. if (drawable)
  230. drawable->UpdateGeometry(frame);
  231. }
  232. }
  233. void SortBatchQueueFrontToBackWork(const WorkItem* item, unsigned threadIndex)
  234. {
  235. BatchQueue* queue = reinterpret_cast<BatchQueue*>(item->start_);
  236. queue->SortFrontToBack();
  237. }
  238. void SortBatchQueueBackToFrontWork(const WorkItem* item, unsigned threadIndex)
  239. {
  240. BatchQueue* queue = reinterpret_cast<BatchQueue*>(item->start_);
  241. queue->SortBackToFront();
  242. }
  243. void SortLightQueueWork(const WorkItem* item, unsigned threadIndex)
  244. {
  245. LightBatchQueue* start = reinterpret_cast<LightBatchQueue*>(item->start_);
  246. start->litBaseBatches_.SortFrontToBack();
  247. start->litBatches_.SortFrontToBack();
  248. }
  249. void SortShadowQueueWork(const WorkItem* item, unsigned threadIndex)
  250. {
  251. LightBatchQueue* start = reinterpret_cast<LightBatchQueue*>(item->start_);
  252. for (unsigned i = 0; i < start->shadowSplits_.Size(); ++i)
  253. start->shadowSplits_[i].shadowBatches_.SortFrontToBack();
  254. }
  255. StringHash ParseTextureTypeXml(ResourceCache* cache, String filename);
  256. View::View(Context* context) :
  257. Object(context),
  258. graphics_(GetSubsystem<Graphics>()),
  259. renderer_(GetSubsystem<Renderer>()),
  260. scene_(0),
  261. octree_(0),
  262. cullCamera_(0),
  263. camera_(0),
  264. cameraZone_(0),
  265. farClipZone_(0),
  266. occlusionBuffer_(0),
  267. renderTarget_(0),
  268. substituteRenderTarget_(0),
  269. passCommand_(0)
  270. {
  271. // Create octree query and scene results vector for each thread
  272. unsigned numThreads = GetSubsystem<WorkQueue>()->GetNumThreads() + 1; // Worker threads + main thread
  273. tempDrawables_.Resize(numThreads);
  274. sceneResults_.Resize(numThreads);
  275. frame_.camera_ = 0;
  276. }
  277. View::~View()
  278. {
  279. }
  280. bool View::Define(RenderSurface* renderTarget, Viewport* viewport)
  281. {
  282. sourceView_ = 0;
  283. renderPath_ = viewport->GetRenderPath();
  284. if (!renderPath_)
  285. return false;
  286. renderTarget_ = renderTarget;
  287. drawDebug_ = viewport->GetDrawDebug();
  288. // Validate the rect and calculate size. If zero rect, use whole rendertarget size
  289. int rtWidth = renderTarget ? renderTarget->GetWidth() : graphics_->GetWidth();
  290. int rtHeight = renderTarget ? renderTarget->GetHeight() : graphics_->GetHeight();
  291. const IntRect& rect = viewport->GetRect();
  292. if (rect != IntRect::ZERO)
  293. {
  294. viewRect_.left_ = Clamp(rect.left_, 0, rtWidth - 1);
  295. viewRect_.top_ = Clamp(rect.top_, 0, rtHeight - 1);
  296. viewRect_.right_ = Clamp(rect.right_, viewRect_.left_ + 1, rtWidth);
  297. viewRect_.bottom_ = Clamp(rect.bottom_, viewRect_.top_ + 1, rtHeight);
  298. }
  299. else
  300. viewRect_ = IntRect(0, 0, rtWidth, rtHeight);
  301. viewSize_ = viewRect_.Size();
  302. rtSize_ = IntVector2(rtWidth, rtHeight);
  303. // On OpenGL flip the viewport if rendering to a texture for consistent UV addressing with Direct3D9
  304. #ifdef ATOMIC_OPENGL
  305. if (renderTarget_)
  306. {
  307. viewRect_.bottom_ = rtHeight - viewRect_.top_;
  308. viewRect_.top_ = viewRect_.bottom_ - viewSize_.y_;
  309. }
  310. #endif
  311. scene_ = viewport->GetScene();
  312. cullCamera_ = viewport->GetCullCamera();
  313. camera_ = viewport->GetCamera();
  314. if (!cullCamera_)
  315. cullCamera_ = camera_;
  316. else
  317. {
  318. // If view specifies a culling camera (view preparation sharing), check if already prepared
  319. sourceView_ = renderer_->GetPreparedView(cullCamera_);
  320. if (sourceView_ && sourceView_->scene_ == scene_ && sourceView_->renderPath_ == renderPath_)
  321. {
  322. // Copy properties needed later in rendering
  323. deferred_ = sourceView_->deferred_;
  324. deferredAmbient_ = sourceView_->deferredAmbient_;
  325. useLitBase_ = sourceView_->useLitBase_;
  326. hasScenePasses_ = sourceView_->hasScenePasses_;
  327. noStencil_ = sourceView_->noStencil_;
  328. lightVolumeCommand_ = sourceView_->lightVolumeCommand_;
  329. forwardLightsCommand_ = sourceView_->forwardLightsCommand_;
  330. octree_ = sourceView_->octree_;
  331. return true;
  332. }
  333. else
  334. {
  335. // Mismatch in scene or renderpath, fall back to unique view preparation
  336. sourceView_ = 0;
  337. }
  338. }
  339. // Set default passes
  340. gBufferPassIndex_ = M_MAX_UNSIGNED;
  341. basePassIndex_ = Technique::GetPassIndex("base");
  342. alphaPassIndex_ = Technique::GetPassIndex("alpha");
  343. lightPassIndex_ = Technique::GetPassIndex("light");
  344. litBasePassIndex_ = Technique::GetPassIndex("litbase");
  345. litAlphaPassIndex_ = Technique::GetPassIndex("litalpha");
  346. deferred_ = false;
  347. deferredAmbient_ = false;
  348. useLitBase_ = false;
  349. hasScenePasses_ = false;
  350. noStencil_ = false;
  351. lightVolumeCommand_ = 0;
  352. forwardLightsCommand_ = 0;
  353. scenePasses_.Clear();
  354. geometriesUpdated_ = false;
  355. #ifdef ATOMIC_OPENGL
  356. #ifdef GL_ES_VERSION_2_0
  357. // On OpenGL ES we assume a stencil is not available or would not give a good performance, and disable light stencil
  358. // optimizations in any case
  359. noStencil_ = true;
  360. #else
  361. for (unsigned i = 0; i < renderPath_->commands_.Size(); ++i)
  362. {
  363. const RenderPathCommand& command = renderPath_->commands_[i];
  364. if (!command.enabled_)
  365. continue;
  366. if (command.depthStencilName_.Length())
  367. {
  368. // Using a readable depth texture will disable light stencil optimizations on OpenGL, as for compatibility reasons
  369. // we are using a depth format without stencil channel
  370. noStencil_ = true;
  371. break;
  372. }
  373. }
  374. #endif
  375. #endif
  376. // Make sure that all necessary batch queues exist
  377. for (unsigned i = 0; i < renderPath_->commands_.Size(); ++i)
  378. {
  379. RenderPathCommand& command = renderPath_->commands_[i];
  380. if (!command.enabled_)
  381. continue;
  382. if (command.type_ == CMD_SCENEPASS)
  383. {
  384. hasScenePasses_ = true;
  385. ScenePassInfo info;
  386. info.passIndex_ = command.passIndex_ = Technique::GetPassIndex(command.pass_);
  387. info.allowInstancing_ = command.sortMode_ != SORT_BACKTOFRONT;
  388. info.markToStencil_ = !noStencil_ && command.markToStencil_;
  389. info.vertexLights_ = command.vertexLights_;
  390. // Check scenepass metadata for defining custom passes which interact with lighting
  391. if (!command.metadata_.Empty())
  392. {
  393. if (command.metadata_ == "gbuffer")
  394. gBufferPassIndex_ = command.passIndex_;
  395. else if (command.metadata_ == "base" && command.pass_ != "base")
  396. {
  397. basePassIndex_ = command.passIndex_;
  398. litBasePassIndex_ = Technique::GetPassIndex("lit" + command.pass_);
  399. }
  400. else if (command.metadata_ == "alpha" && command.pass_ != "alpha")
  401. {
  402. alphaPassIndex_ = command.passIndex_;
  403. litAlphaPassIndex_ = Technique::GetPassIndex("lit" + command.pass_);
  404. }
  405. }
  406. HashMap<unsigned, BatchQueue>::Iterator j = batchQueues_.Find(info.passIndex_);
  407. if (j == batchQueues_.End())
  408. j = batchQueues_.Insert(Pair<unsigned, BatchQueue>(info.passIndex_, BatchQueue()));
  409. info.batchQueue_ = &j->second_;
  410. SetQueueShaderDefines(*info.batchQueue_, command);
  411. scenePasses_.Push(info);
  412. }
  413. // Allow a custom forward light pass
  414. else if (command.type_ == CMD_FORWARDLIGHTS && !command.pass_.Empty())
  415. lightPassIndex_ = command.passIndex_ = Technique::GetPassIndex(command.pass_);
  416. }
  417. octree_ = 0;
  418. // Get default zone first in case we do not have zones defined
  419. cameraZone_ = farClipZone_ = renderer_->GetDefaultZone();
  420. if (hasScenePasses_)
  421. {
  422. if (!scene_ || !cullCamera_ || !cullCamera_->IsEnabledEffective())
  423. return false;
  424. // If scene is loading scene content asynchronously, it is incomplete and should not be rendered
  425. if (scene_->IsAsyncLoading() && scene_->GetAsyncLoadMode() > LOAD_RESOURCES_ONLY)
  426. return false;
  427. octree_ = scene_->GetComponent<Octree>();
  428. if (!octree_)
  429. return false;
  430. // Do not accept view if camera projection is illegal
  431. // (there is a possibility of crash if occlusion is used and it can not clip properly)
  432. if (!cullCamera_->IsProjectionValid())
  433. return false;
  434. }
  435. // Go through commands to check for deferred rendering and other flags
  436. for (unsigned i = 0; i < renderPath_->commands_.Size(); ++i)
  437. {
  438. const RenderPathCommand& command = renderPath_->commands_[i];
  439. if (!command.enabled_)
  440. continue;
  441. // Check if ambient pass and G-buffer rendering happens at the same time
  442. if (command.type_ == CMD_SCENEPASS && command.outputs_.Size() > 1)
  443. {
  444. if (CheckViewportWrite(command))
  445. deferredAmbient_ = true;
  446. }
  447. else if (command.type_ == CMD_LIGHTVOLUMES)
  448. {
  449. lightVolumeCommand_ = &command;
  450. deferred_ = true;
  451. }
  452. else if (command.type_ == CMD_FORWARDLIGHTS)
  453. {
  454. forwardLightsCommand_ = &command;
  455. useLitBase_ = command.useLitBase_;
  456. }
  457. }
  458. drawShadows_ = renderer_->GetDrawShadows();
  459. materialQuality_ = renderer_->GetMaterialQuality();
  460. maxOccluderTriangles_ = renderer_->GetMaxOccluderTriangles();
  461. minInstances_ = renderer_->GetMinInstances();
  462. // Set possible quality overrides from the camera
  463. // Note that the culling camera is used here (its settings are authoritative) while the render camera
  464. // will be just used for the final view & projection matrices
  465. unsigned viewOverrideFlags = cullCamera_ ? cullCamera_->GetViewOverrideFlags() : VO_NONE;
  466. if (viewOverrideFlags & VO_LOW_MATERIAL_QUALITY)
  467. materialQuality_ = QUALITY_LOW;
  468. if (viewOverrideFlags & VO_DISABLE_SHADOWS)
  469. drawShadows_ = false;
  470. if (viewOverrideFlags & VO_DISABLE_OCCLUSION)
  471. maxOccluderTriangles_ = 0;
  472. // Occlusion buffer has constant width. If resulting height would be too large due to aspect ratio, disable occlusion
  473. if (viewSize_.y_ > viewSize_.x_ * 4)
  474. maxOccluderTriangles_ = 0;
  475. return true;
  476. }
  477. void View::Update(const FrameInfo& frame)
  478. {
  479. // No need to update if using another prepared view
  480. if (sourceView_)
  481. return;
  482. frame_.camera_ = cullCamera_;
  483. frame_.timeStep_ = frame.timeStep_;
  484. frame_.frameNumber_ = frame.frameNumber_;
  485. frame_.viewSize_ = viewSize_;
  486. using namespace BeginViewUpdate;
  487. SendViewEvent(E_BEGINVIEWUPDATE);
  488. int maxSortedInstances = renderer_->GetMaxSortedInstances();
  489. // Clear buffers, geometry, light, occluder & batch list
  490. renderTargets_.Clear();
  491. geometries_.Clear();
  492. lights_.Clear();
  493. zones_.Clear();
  494. occluders_.Clear();
  495. activeOccluders_ = 0;
  496. vertexLightQueues_.Clear();
  497. for (HashMap<unsigned, BatchQueue>::Iterator i = batchQueues_.Begin(); i != batchQueues_.End(); ++i)
  498. i->second_.Clear(maxSortedInstances);
  499. if (hasScenePasses_ && (!cullCamera_ || !octree_))
  500. {
  501. SendViewEvent(E_ENDVIEWUPDATE);
  502. return;
  503. }
  504. // Set automatic aspect ratio if required
  505. if (cullCamera_ && cullCamera_->GetAutoAspectRatio())
  506. cullCamera_->SetAspectRatioInternal((float)frame_.viewSize_.x_ / (float)frame_.viewSize_.y_);
  507. GetDrawables();
  508. GetBatches();
  509. renderer_->StorePreparedView(this, cullCamera_);
  510. SendViewEvent(E_ENDVIEWUPDATE);
  511. }
  512. void View::Render()
  513. {
  514. SendViewEvent(E_BEGINVIEWRENDER);
  515. if (hasScenePasses_ && (!octree_ || !camera_))
  516. {
  517. SendViewEvent(E_ENDVIEWRENDER);
  518. return;
  519. }
  520. UpdateGeometries();
  521. // Allocate screen buffers as necessary
  522. AllocateScreenBuffers();
  523. SendViewEvent(E_VIEWBUFFERSREADY);
  524. // Forget parameter sources from the previous view
  525. graphics_->ClearParameterSources();
  526. if (renderer_->GetDynamicInstancing() && graphics_->GetInstancingSupport())
  527. PrepareInstancingBuffer();
  528. // It is possible, though not recommended, that the same camera is used for multiple main views. Set automatic aspect ratio
  529. // to ensure correct projection will be used
  530. if (camera_ && camera_->GetAutoAspectRatio())
  531. camera_->SetAspectRatioInternal((float)(viewSize_.x_) / (float)(viewSize_.y_));
  532. // Bind the face selection and indirection cube maps for point light shadows
  533. #ifndef GL_ES_VERSION_2_0
  534. if (renderer_->GetDrawShadows())
  535. {
  536. graphics_->SetTexture(TU_FACESELECT, renderer_->GetFaceSelectCubeMap());
  537. graphics_->SetTexture(TU_INDIRECTION, renderer_->GetIndirectionCubeMap());
  538. }
  539. #endif
  540. if (renderTarget_)
  541. {
  542. // On OpenGL, flip the projection if rendering to a texture so that the texture can be addressed in the same way
  543. // as a render texture produced on Direct3D9
  544. #ifdef ATOMIC_OPENGL
  545. if (camera_)
  546. camera_->SetFlipVertical(true);
  547. #endif
  548. }
  549. // Render
  550. ExecuteRenderPathCommands();
  551. // Reset state after commands
  552. graphics_->SetFillMode(FILL_SOLID);
  553. graphics_->SetLineAntiAlias(false);
  554. graphics_->SetClipPlane(false);
  555. graphics_->SetColorWrite(true);
  556. graphics_->SetDepthBias(0.0f, 0.0f);
  557. graphics_->SetScissorTest(false);
  558. graphics_->SetStencilTest(false);
  559. // Draw the associated debug geometry now if enabled
  560. if (drawDebug_ && octree_ && camera_)
  561. {
  562. DebugRenderer* debug = octree_->GetComponent<DebugRenderer>();
  563. if (debug && debug->IsEnabledEffective() && debug->HasContent())
  564. {
  565. // If used resolve from backbuffer, blit first to the backbuffer to ensure correct depth buffer on OpenGL
  566. // Otherwise use the last rendertarget and blit after debug geometry
  567. if (usedResolve_ && currentRenderTarget_ != renderTarget_)
  568. {
  569. BlitFramebuffer(currentRenderTarget_->GetParentTexture(), renderTarget_, false);
  570. currentRenderTarget_ = renderTarget_;
  571. lastCustomDepthSurface_ = 0;
  572. }
  573. graphics_->SetRenderTarget(0, currentRenderTarget_);
  574. for (unsigned i = 1; i < MAX_RENDERTARGETS; ++i)
  575. graphics_->SetRenderTarget(i, (RenderSurface*)0);
  576. // If a custom depth surface was used, use it also for debug rendering
  577. graphics_->SetDepthStencil(lastCustomDepthSurface_ ? lastCustomDepthSurface_ : GetDepthStencil(currentRenderTarget_));
  578. IntVector2 rtSizeNow = graphics_->GetRenderTargetDimensions();
  579. IntRect viewport = (currentRenderTarget_ == renderTarget_) ? viewRect_ : IntRect(0, 0, rtSizeNow.x_,
  580. rtSizeNow.y_);
  581. graphics_->SetViewport(viewport);
  582. debug->SetView(camera_);
  583. debug->Render();
  584. }
  585. }
  586. #ifdef ATOMIC_OPENGL
  587. if (camera_)
  588. camera_->SetFlipVertical(false);
  589. #endif
  590. // Run framebuffer blitting if necessary. If scene was resolved from backbuffer, do not touch depth
  591. // (backbuffer should contain proper depth already)
  592. if (currentRenderTarget_ != renderTarget_)
  593. BlitFramebuffer(currentRenderTarget_->GetParentTexture(), renderTarget_, !usedResolve_);
  594. SendViewEvent(E_ENDVIEWRENDER);
  595. }
  596. Graphics* View::GetGraphics() const
  597. {
  598. return graphics_;
  599. }
  600. Renderer* View::GetRenderer() const
  601. {
  602. return renderer_;
  603. }
  604. View* View::GetSourceView() const
  605. {
  606. return sourceView_;
  607. }
  608. void View::SetGlobalShaderParameters()
  609. {
  610. graphics_->SetShaderParameter(VSP_DELTATIME, frame_.timeStep_);
  611. graphics_->SetShaderParameter(PSP_DELTATIME, frame_.timeStep_);
  612. if (scene_)
  613. {
  614. float elapsedTime = scene_->GetElapsedTime();
  615. graphics_->SetShaderParameter(VSP_ELAPSEDTIME, elapsedTime);
  616. graphics_->SetShaderParameter(PSP_ELAPSEDTIME, elapsedTime);
  617. }
  618. SendViewEvent(E_VIEWGLOBALSHADERPARAMETERS);
  619. }
  620. void View::SetCameraShaderParameters(Camera* camera)
  621. {
  622. if (!camera)
  623. return;
  624. Matrix3x4 cameraEffectiveTransform = camera->GetEffectiveWorldTransform();
  625. graphics_->SetShaderParameter(VSP_CAMERAPOS, cameraEffectiveTransform.Translation());
  626. graphics_->SetShaderParameter(VSP_VIEWINV, cameraEffectiveTransform);
  627. graphics_->SetShaderParameter(VSP_VIEW, camera->GetView());
  628. graphics_->SetShaderParameter(PSP_CAMERAPOS, cameraEffectiveTransform.Translation());
  629. float nearClip = camera->GetNearClip();
  630. float farClip = camera->GetFarClip();
  631. graphics_->SetShaderParameter(VSP_NEARCLIP, nearClip);
  632. graphics_->SetShaderParameter(VSP_FARCLIP, farClip);
  633. graphics_->SetShaderParameter(PSP_NEARCLIP, nearClip);
  634. graphics_->SetShaderParameter(PSP_FARCLIP, farClip);
  635. Vector4 depthMode = Vector4::ZERO;
  636. if (camera->IsOrthographic())
  637. {
  638. depthMode.x_ = 1.0f;
  639. #ifdef ATOMIC_OPENGL
  640. depthMode.z_ = 0.5f;
  641. depthMode.w_ = 0.5f;
  642. #else
  643. depthMode.z_ = 1.0f;
  644. #endif
  645. }
  646. else
  647. depthMode.w_ = 1.0f / camera->GetFarClip();
  648. graphics_->SetShaderParameter(VSP_DEPTHMODE, depthMode);
  649. Vector4 depthReconstruct
  650. (farClip / (farClip - nearClip), -nearClip / (farClip - nearClip), camera->IsOrthographic() ? 1.0f : 0.0f,
  651. camera->IsOrthographic() ? 0.0f : 1.0f);
  652. graphics_->SetShaderParameter(PSP_DEPTHRECONSTRUCT, depthReconstruct);
  653. Vector3 nearVector, farVector;
  654. camera->GetFrustumSize(nearVector, farVector);
  655. graphics_->SetShaderParameter(VSP_FRUSTUMSIZE, farVector);
  656. Matrix4 projection = camera->GetGPUProjection();
  657. #ifdef ATOMIC_OPENGL
  658. // Add constant depth bias manually to the projection matrix due to glPolygonOffset() inconsistency
  659. float constantBias = 2.0f * graphics_->GetDepthConstantBias();
  660. projection.m22_ += projection.m32_ * constantBias;
  661. projection.m23_ += projection.m33_ * constantBias;
  662. #endif
  663. graphics_->SetShaderParameter(VSP_VIEWPROJ, projection * camera->GetView());
  664. // If in a scene pass and the command defines shader parameters, set them now
  665. if (passCommand_)
  666. SetCommandShaderParameters(*passCommand_);
  667. }
  668. void View::SetCommandShaderParameters(const RenderPathCommand& command)
  669. {
  670. const HashMap<StringHash, Variant>& parameters = command.shaderParameters_;
  671. for (HashMap<StringHash, Variant>::ConstIterator k = parameters.Begin(); k != parameters.End(); ++k)
  672. graphics_->SetShaderParameter(k->first_, k->second_);
  673. }
  674. void View::SetGBufferShaderParameters(const IntVector2& texSize, const IntRect& viewRect)
  675. {
  676. float texWidth = (float)texSize.x_;
  677. float texHeight = (float)texSize.y_;
  678. float widthRange = 0.5f * viewRect.Width() / texWidth;
  679. float heightRange = 0.5f * viewRect.Height() / texHeight;
  680. #ifdef ATOMIC_OPENGL
  681. Vector4 bufferUVOffset(((float)viewRect.left_) / texWidth + widthRange,
  682. 1.0f - (((float)viewRect.top_) / texHeight + heightRange), widthRange, heightRange);
  683. #else
  684. const Vector2& pixelUVOffset = Graphics::GetPixelUVOffset();
  685. Vector4 bufferUVOffset((pixelUVOffset.x_ + (float)viewRect.left_) / texWidth + widthRange,
  686. (pixelUVOffset.y_ + (float)viewRect.top_) / texHeight + heightRange, widthRange, heightRange);
  687. #endif
  688. graphics_->SetShaderParameter(VSP_GBUFFEROFFSETS, bufferUVOffset);
  689. float invSizeX = 1.0f / texWidth;
  690. float invSizeY = 1.0f / texHeight;
  691. graphics_->SetShaderParameter(PSP_GBUFFERINVSIZE, Vector2(invSizeX, invSizeY));
  692. }
  693. void View::GetDrawables()
  694. {
  695. if (!octree_ || !cullCamera_)
  696. return;
  697. ATOMIC_PROFILE(GetDrawables);
  698. WorkQueue* queue = GetSubsystem<WorkQueue>();
  699. PODVector<Drawable*>& tempDrawables = tempDrawables_[0];
  700. // Get zones and occluders first
  701. {
  702. ZoneOccluderOctreeQuery
  703. query(tempDrawables, cullCamera_->GetFrustum(), DRAWABLE_GEOMETRY | DRAWABLE_ZONE, cullCamera_->GetViewMask());
  704. octree_->GetDrawables(query);
  705. }
  706. highestZonePriority_ = M_MIN_INT;
  707. int bestPriority = M_MIN_INT;
  708. Node* cameraNode = cullCamera_->GetNode();
  709. Vector3 cameraPos = cameraNode->GetWorldPosition();
  710. for (PODVector<Drawable*>::ConstIterator i = tempDrawables.Begin(); i != tempDrawables.End(); ++i)
  711. {
  712. Drawable* drawable = *i;
  713. unsigned char flags = drawable->GetDrawableFlags();
  714. if (flags & DRAWABLE_ZONE)
  715. {
  716. Zone* zone = static_cast<Zone*>(drawable);
  717. zones_.Push(zone);
  718. int priority = zone->GetPriority();
  719. if (priority > highestZonePriority_)
  720. highestZonePriority_ = priority;
  721. if (priority > bestPriority && zone->IsInside(cameraPos))
  722. {
  723. cameraZone_ = zone;
  724. bestPriority = priority;
  725. }
  726. }
  727. else
  728. occluders_.Push(drawable);
  729. }
  730. // Determine the zone at far clip distance. If not found, or camera zone has override mode, use camera zone
  731. cameraZoneOverride_ = cameraZone_->GetOverride();
  732. if (!cameraZoneOverride_)
  733. {
  734. Vector3 farClipPos = cameraPos + cameraNode->GetWorldDirection() * Vector3(0.0f, 0.0f, cullCamera_->GetFarClip());
  735. bestPriority = M_MIN_INT;
  736. for (PODVector<Zone*>::Iterator i = zones_.Begin(); i != zones_.End(); ++i)
  737. {
  738. int priority = (*i)->GetPriority();
  739. if (priority > bestPriority && (*i)->IsInside(farClipPos))
  740. {
  741. farClipZone_ = *i;
  742. bestPriority = priority;
  743. }
  744. }
  745. }
  746. if (farClipZone_ == renderer_->GetDefaultZone())
  747. farClipZone_ = cameraZone_;
  748. // If occlusion in use, get & render the occluders
  749. occlusionBuffer_ = 0;
  750. if (maxOccluderTriangles_ > 0)
  751. {
  752. UpdateOccluders(occluders_, cullCamera_);
  753. if (occluders_.Size())
  754. {
  755. ATOMIC_PROFILE(DrawOcclusion);
  756. occlusionBuffer_ = renderer_->GetOcclusionBuffer(cullCamera_);
  757. DrawOccluders(occlusionBuffer_, occluders_);
  758. }
  759. }
  760. else
  761. occluders_.Clear();
  762. // Get lights and geometries. Coarse occlusion for octants is used at this point
  763. if (occlusionBuffer_)
  764. {
  765. OccludedFrustumOctreeQuery query
  766. (tempDrawables, cullCamera_->GetFrustum(), occlusionBuffer_, DRAWABLE_GEOMETRY | DRAWABLE_LIGHT, cullCamera_->GetViewMask());
  767. octree_->GetDrawables(query);
  768. }
  769. else
  770. {
  771. FrustumOctreeQuery query(tempDrawables, cullCamera_->GetFrustum(), DRAWABLE_GEOMETRY | DRAWABLE_LIGHT, cullCamera_->GetViewMask());
  772. octree_->GetDrawables(query);
  773. }
  774. // Check drawable occlusion, find zones for moved drawables and collect geometries & lights in worker threads
  775. {
  776. for (unsigned i = 0; i < sceneResults_.Size(); ++i)
  777. {
  778. PerThreadSceneResult& result = sceneResults_[i];
  779. result.geometries_.Clear();
  780. result.lights_.Clear();
  781. result.minZ_ = M_INFINITY;
  782. result.maxZ_ = 0.0f;
  783. }
  784. int numWorkItems = queue->GetNumThreads() + 1; // Worker threads + main thread
  785. int drawablesPerItem = tempDrawables.Size() / numWorkItems;
  786. PODVector<Drawable*>::Iterator start = tempDrawables.Begin();
  787. // Create a work item for each thread
  788. for (int i = 0; i < numWorkItems; ++i)
  789. {
  790. SharedPtr<WorkItem> item = queue->GetFreeItem();
  791. item->priority_ = M_MAX_UNSIGNED;
  792. item->workFunction_ = CheckVisibilityWork;
  793. item->aux_ = this;
  794. PODVector<Drawable*>::Iterator end = tempDrawables.End();
  795. if (i < numWorkItems - 1 && end - start > drawablesPerItem)
  796. end = start + drawablesPerItem;
  797. item->start_ = &(*start);
  798. item->end_ = &(*end);
  799. queue->AddWorkItem(item);
  800. start = end;
  801. }
  802. queue->Complete(M_MAX_UNSIGNED);
  803. }
  804. // Combine lights, geometries & scene Z range from the threads
  805. geometries_.Clear();
  806. lights_.Clear();
  807. minZ_ = M_INFINITY;
  808. maxZ_ = 0.0f;
  809. if (sceneResults_.Size() > 1)
  810. {
  811. for (unsigned i = 0; i < sceneResults_.Size(); ++i)
  812. {
  813. PerThreadSceneResult& result = sceneResults_[i];
  814. geometries_.Push(result.geometries_);
  815. lights_.Push(result.lights_);
  816. minZ_ = Min(minZ_, result.minZ_);
  817. maxZ_ = Max(maxZ_, result.maxZ_);
  818. }
  819. }
  820. else
  821. {
  822. // If just 1 thread, copy the results directly
  823. PerThreadSceneResult& result = sceneResults_[0];
  824. minZ_ = result.minZ_;
  825. maxZ_ = result.maxZ_;
  826. Swap(geometries_, result.geometries_);
  827. Swap(lights_, result.lights_);
  828. }
  829. if (minZ_ == M_INFINITY)
  830. minZ_ = 0.0f;
  831. // Sort the lights to brightest/closest first, and per-vertex lights first so that per-vertex base pass can be evaluated first
  832. for (unsigned i = 0; i < lights_.Size(); ++i)
  833. {
  834. Light* light = lights_[i];
  835. light->SetIntensitySortValue(cullCamera_->GetDistance(light->GetNode()->GetWorldPosition()));
  836. light->SetLightQueue(0);
  837. }
  838. Sort(lights_.Begin(), lights_.End(), CompareLights);
  839. }
  840. void View::GetBatches()
  841. {
  842. if (!octree_ || !cullCamera_)
  843. return;
  844. nonThreadedGeometries_.Clear();
  845. threadedGeometries_.Clear();
  846. ProcessLights();
  847. GetLightBatches();
  848. GetBaseBatches();
  849. }
  850. void View::ProcessLights()
  851. {
  852. // Process lit geometries and shadow casters for each light
  853. ATOMIC_PROFILE(ProcessLights);
  854. WorkQueue* queue = GetSubsystem<WorkQueue>();
  855. lightQueryResults_.Resize(lights_.Size());
  856. for (unsigned i = 0; i < lightQueryResults_.Size(); ++i)
  857. {
  858. SharedPtr<WorkItem> item = queue->GetFreeItem();
  859. item->priority_ = M_MAX_UNSIGNED;
  860. item->workFunction_ = ProcessLightWork;
  861. item->aux_ = this;
  862. LightQueryResult& query = lightQueryResults_[i];
  863. query.light_ = lights_[i];
  864. item->start_ = &query;
  865. queue->AddWorkItem(item);
  866. }
  867. // Ensure all lights have been processed before proceeding
  868. queue->Complete(M_MAX_UNSIGNED);
  869. }
  870. void View::GetLightBatches()
  871. {
  872. BatchQueue* alphaQueue = batchQueues_.Contains(alphaPassIndex_) ? &batchQueues_[alphaPassIndex_] : (BatchQueue*)0;
  873. // Build light queues and lit batches
  874. {
  875. ATOMIC_PROFILE(GetLightBatches);
  876. // Preallocate light queues: per-pixel lights which have lit geometries
  877. unsigned numLightQueues = 0;
  878. unsigned usedLightQueues = 0;
  879. for (Vector<LightQueryResult>::ConstIterator i = lightQueryResults_.Begin(); i != lightQueryResults_.End(); ++i)
  880. {
  881. if (!i->light_->GetPerVertex() && i->litGeometries_.Size())
  882. ++numLightQueues;
  883. }
  884. lightQueues_.Resize(numLightQueues);
  885. maxLightsDrawables_.Clear();
  886. unsigned maxSortedInstances = (unsigned)renderer_->GetMaxSortedInstances();
  887. for (Vector<LightQueryResult>::Iterator i = lightQueryResults_.Begin(); i != lightQueryResults_.End(); ++i)
  888. {
  889. LightQueryResult& query = *i;
  890. // If light has no affected geometries, no need to process further
  891. if (query.litGeometries_.Empty())
  892. continue;
  893. Light* light = query.light_;
  894. // Per-pixel light
  895. if (!light->GetPerVertex())
  896. {
  897. unsigned shadowSplits = query.numSplits_;
  898. // Initialize light queue and store it to the light so that it can be found later
  899. LightBatchQueue& lightQueue = lightQueues_[usedLightQueues++];
  900. light->SetLightQueue(&lightQueue);
  901. lightQueue.light_ = light;
  902. lightQueue.negative_ = light->IsNegative();
  903. lightQueue.shadowMap_ = 0;
  904. lightQueue.litBaseBatches_.Clear(maxSortedInstances);
  905. lightQueue.litBatches_.Clear(maxSortedInstances);
  906. if (forwardLightsCommand_)
  907. {
  908. SetQueueShaderDefines(lightQueue.litBaseBatches_, *forwardLightsCommand_);
  909. SetQueueShaderDefines(lightQueue.litBatches_, *forwardLightsCommand_);
  910. }
  911. else
  912. {
  913. lightQueue.litBaseBatches_.hasExtraDefines_ = false;
  914. lightQueue.litBatches_.hasExtraDefines_ = false;
  915. }
  916. lightQueue.volumeBatches_.Clear();
  917. // Allocate shadow map now
  918. if (shadowSplits > 0)
  919. {
  920. lightQueue.shadowMap_ = renderer_->GetShadowMap(light, cullCamera_, (unsigned)viewSize_.x_, (unsigned)viewSize_.y_);
  921. // If did not manage to get a shadow map, convert the light to unshadowed
  922. if (!lightQueue.shadowMap_)
  923. shadowSplits = 0;
  924. }
  925. // Setup shadow batch queues
  926. lightQueue.shadowSplits_.Resize(shadowSplits);
  927. for (unsigned j = 0; j < shadowSplits; ++j)
  928. {
  929. ShadowBatchQueue& shadowQueue = lightQueue.shadowSplits_[j];
  930. Camera* shadowCamera = query.shadowCameras_[j];
  931. shadowQueue.shadowCamera_ = shadowCamera;
  932. shadowQueue.nearSplit_ = query.shadowNearSplits_[j];
  933. shadowQueue.farSplit_ = query.shadowFarSplits_[j];
  934. shadowQueue.shadowBatches_.Clear(maxSortedInstances);
  935. // Setup the shadow split viewport and finalize shadow camera parameters
  936. shadowQueue.shadowViewport_ = GetShadowMapViewport(light, j, lightQueue.shadowMap_);
  937. FinalizeShadowCamera(shadowCamera, light, shadowQueue.shadowViewport_, query.shadowCasterBox_[j]);
  938. // Loop through shadow casters
  939. for (PODVector<Drawable*>::ConstIterator k = query.shadowCasters_.Begin() + query.shadowCasterBegin_[j];
  940. k < query.shadowCasters_.Begin() + query.shadowCasterEnd_[j]; ++k)
  941. {
  942. Drawable* drawable = *k;
  943. // If drawable is not in actual view frustum, mark it in view here and check its geometry update type
  944. if (!drawable->IsInView(frame_, true))
  945. {
  946. drawable->MarkInView(frame_.frameNumber_);
  947. UpdateGeometryType type = drawable->GetUpdateGeometryType();
  948. if (type == UPDATE_MAIN_THREAD)
  949. nonThreadedGeometries_.Push(drawable);
  950. else if (type == UPDATE_WORKER_THREAD)
  951. threadedGeometries_.Push(drawable);
  952. }
  953. const Vector<SourceBatch>& batches = drawable->GetBatches();
  954. for (unsigned l = 0; l < batches.Size(); ++l)
  955. {
  956. const SourceBatch& srcBatch = batches[l];
  957. Technique* tech = GetTechnique(drawable, srcBatch.material_);
  958. if (!srcBatch.geometry_ || !srcBatch.numWorldTransforms_ || !tech)
  959. continue;
  960. Pass* pass = tech->GetSupportedPass(Technique::shadowPassIndex);
  961. // Skip if material has no shadow pass
  962. if (!pass)
  963. continue;
  964. Batch destBatch(srcBatch);
  965. destBatch.pass_ = pass;
  966. destBatch.zone_ = 0;
  967. AddBatchToQueue(shadowQueue.shadowBatches_, destBatch, tech);
  968. }
  969. }
  970. }
  971. // Process lit geometries
  972. for (PODVector<Drawable*>::ConstIterator j = query.litGeometries_.Begin(); j != query.litGeometries_.End(); ++j)
  973. {
  974. Drawable* drawable = *j;
  975. drawable->AddLight(light);
  976. // If drawable limits maximum lights, only record the light, and check maximum count / build batches later
  977. if (!drawable->GetMaxLights())
  978. GetLitBatches(drawable, lightQueue, alphaQueue);
  979. else
  980. maxLightsDrawables_.Insert(drawable);
  981. }
  982. // In deferred modes, store the light volume batch now. Since light mask 8 lowest bits are output to the stencil,
  983. // lights that have all zeroes in the low 8 bits can be skipped; they would not affect geometry anyway
  984. if (deferred_ && (light->GetLightMask() & 0xff) != 0)
  985. {
  986. Batch volumeBatch;
  987. volumeBatch.geometry_ = renderer_->GetLightGeometry(light);
  988. volumeBatch.geometryType_ = GEOM_STATIC;
  989. volumeBatch.worldTransform_ = &light->GetVolumeTransform(cullCamera_);
  990. volumeBatch.numWorldTransforms_ = 1;
  991. volumeBatch.lightQueue_ = &lightQueue;
  992. volumeBatch.distance_ = light->GetDistance();
  993. volumeBatch.material_ = 0;
  994. volumeBatch.pass_ = 0;
  995. volumeBatch.zone_ = 0;
  996. renderer_->SetLightVolumeBatchShaders(volumeBatch, cullCamera_, lightVolumeCommand_->vertexShaderName_,
  997. lightVolumeCommand_->pixelShaderName_, lightVolumeCommand_->vertexShaderDefines_,
  998. lightVolumeCommand_->pixelShaderDefines_);
  999. lightQueue.volumeBatches_.Push(volumeBatch);
  1000. }
  1001. }
  1002. // Per-vertex light
  1003. else
  1004. {
  1005. // Add the vertex light to lit drawables. It will be processed later during base pass batch generation
  1006. for (PODVector<Drawable*>::ConstIterator j = query.litGeometries_.Begin(); j != query.litGeometries_.End(); ++j)
  1007. {
  1008. Drawable* drawable = *j;
  1009. drawable->AddVertexLight(light);
  1010. }
  1011. }
  1012. }
  1013. }
  1014. // Process drawables with limited per-pixel light count
  1015. if (maxLightsDrawables_.Size())
  1016. {
  1017. ATOMIC_PROFILE(GetMaxLightsBatches);
  1018. for (HashSet<Drawable*>::Iterator i = maxLightsDrawables_.Begin(); i != maxLightsDrawables_.End(); ++i)
  1019. {
  1020. Drawable* drawable = *i;
  1021. drawable->LimitLights();
  1022. const PODVector<Light*>& lights = drawable->GetLights();
  1023. for (unsigned i = 0; i < lights.Size(); ++i)
  1024. {
  1025. Light* light = lights[i];
  1026. // Find the correct light queue again
  1027. LightBatchQueue* queue = light->GetLightQueue();
  1028. if (queue)
  1029. GetLitBatches(drawable, *queue, alphaQueue);
  1030. }
  1031. }
  1032. }
  1033. }
  1034. void View::GetBaseBatches()
  1035. {
  1036. ATOMIC_PROFILE(GetBaseBatches);
  1037. for (PODVector<Drawable*>::ConstIterator i = geometries_.Begin(); i != geometries_.End(); ++i)
  1038. {
  1039. Drawable* drawable = *i;
  1040. UpdateGeometryType type = drawable->GetUpdateGeometryType();
  1041. if (type == UPDATE_MAIN_THREAD)
  1042. nonThreadedGeometries_.Push(drawable);
  1043. else if (type == UPDATE_WORKER_THREAD)
  1044. threadedGeometries_.Push(drawable);
  1045. const Vector<SourceBatch>& batches = drawable->GetBatches();
  1046. bool vertexLightsProcessed = false;
  1047. for (unsigned j = 0; j < batches.Size(); ++j)
  1048. {
  1049. const SourceBatch& srcBatch = batches[j];
  1050. // Check here if the material refers to a rendertarget texture with camera(s) attached
  1051. // Only check this for backbuffer views (null rendertarget)
  1052. if (srcBatch.material_ && srcBatch.material_->GetAuxViewFrameNumber() != frame_.frameNumber_ && !renderTarget_)
  1053. CheckMaterialForAuxView(srcBatch.material_);
  1054. Technique* tech = GetTechnique(drawable, srcBatch.material_);
  1055. if (!srcBatch.geometry_ || !srcBatch.numWorldTransforms_ || !tech)
  1056. continue;
  1057. // Check each of the scene passes
  1058. for (unsigned k = 0; k < scenePasses_.Size(); ++k)
  1059. {
  1060. ScenePassInfo& info = scenePasses_[k];
  1061. // Skip forward base pass if the corresponding litbase pass already exists
  1062. if (info.passIndex_ == basePassIndex_ && j < 32 && drawable->HasBasePass(j))
  1063. continue;
  1064. Pass* pass = tech->GetSupportedPass(info.passIndex_);
  1065. if (!pass)
  1066. continue;
  1067. Batch destBatch(srcBatch);
  1068. destBatch.pass_ = pass;
  1069. destBatch.zone_ = GetZone(drawable);
  1070. destBatch.isBase_ = true;
  1071. destBatch.lightMask_ = (unsigned char)GetLightMask(drawable);
  1072. if (info.vertexLights_)
  1073. {
  1074. const PODVector<Light*>& drawableVertexLights = drawable->GetVertexLights();
  1075. if (drawableVertexLights.Size() && !vertexLightsProcessed)
  1076. {
  1077. // Limit vertex lights. If this is a deferred opaque batch, remove converted per-pixel lights,
  1078. // as they will be rendered as light volumes in any case, and drawing them also as vertex lights
  1079. // would result in double lighting
  1080. drawable->LimitVertexLights(deferred_ && destBatch.pass_->GetBlendMode() == BLEND_REPLACE);
  1081. vertexLightsProcessed = true;
  1082. }
  1083. if (drawableVertexLights.Size())
  1084. {
  1085. // Find a vertex light queue. If not found, create new
  1086. unsigned long long hash = GetVertexLightQueueHash(drawableVertexLights);
  1087. HashMap<unsigned long long, LightBatchQueue>::Iterator i = vertexLightQueues_.Find(hash);
  1088. if (i == vertexLightQueues_.End())
  1089. {
  1090. i = vertexLightQueues_.Insert(MakePair(hash, LightBatchQueue()));
  1091. i->second_.light_ = 0;
  1092. i->second_.shadowMap_ = 0;
  1093. i->second_.vertexLights_ = drawableVertexLights;
  1094. }
  1095. destBatch.lightQueue_ = &(i->second_);
  1096. }
  1097. }
  1098. else
  1099. destBatch.lightQueue_ = 0;
  1100. bool allowInstancing = info.allowInstancing_;
  1101. if (allowInstancing && info.markToStencil_ && destBatch.lightMask_ != (destBatch.zone_->GetLightMask() & 0xff))
  1102. allowInstancing = false;
  1103. AddBatchToQueue(*info.batchQueue_, destBatch, tech, allowInstancing);
  1104. }
  1105. }
  1106. }
  1107. }
  1108. void View::UpdateGeometries()
  1109. {
  1110. // Update geometries in the source view if necessary (prepare order may differ from render order)
  1111. if (sourceView_ && !sourceView_->geometriesUpdated_)
  1112. {
  1113. sourceView_->UpdateGeometries();
  1114. return;
  1115. }
  1116. ATOMIC_PROFILE(SortAndUpdateGeometry);
  1117. WorkQueue* queue = GetSubsystem<WorkQueue>();
  1118. // Sort batches
  1119. {
  1120. for (unsigned i = 0; i < renderPath_->commands_.Size(); ++i)
  1121. {
  1122. const RenderPathCommand& command = renderPath_->commands_[i];
  1123. if (!IsNecessary(command))
  1124. continue;
  1125. if (command.type_ == CMD_SCENEPASS)
  1126. {
  1127. SharedPtr<WorkItem> item = queue->GetFreeItem();
  1128. item->priority_ = M_MAX_UNSIGNED;
  1129. item->workFunction_ =
  1130. command.sortMode_ == SORT_FRONTTOBACK ? SortBatchQueueFrontToBackWork : SortBatchQueueBackToFrontWork;
  1131. item->start_ = &batchQueues_[command.passIndex_];
  1132. queue->AddWorkItem(item);
  1133. }
  1134. }
  1135. for (Vector<LightBatchQueue>::Iterator i = lightQueues_.Begin(); i != lightQueues_.End(); ++i)
  1136. {
  1137. SharedPtr<WorkItem> lightItem = queue->GetFreeItem();
  1138. lightItem->priority_ = M_MAX_UNSIGNED;
  1139. lightItem->workFunction_ = SortLightQueueWork;
  1140. lightItem->start_ = &(*i);
  1141. queue->AddWorkItem(lightItem);
  1142. if (i->shadowSplits_.Size())
  1143. {
  1144. SharedPtr<WorkItem> shadowItem = queue->GetFreeItem();
  1145. shadowItem->priority_ = M_MAX_UNSIGNED;
  1146. shadowItem->workFunction_ = SortShadowQueueWork;
  1147. shadowItem->start_ = &(*i);
  1148. queue->AddWorkItem(shadowItem);
  1149. }
  1150. }
  1151. }
  1152. // Update geometries. Split into threaded and non-threaded updates.
  1153. {
  1154. if (threadedGeometries_.Size())
  1155. {
  1156. // In special cases (context loss, multi-view) a drawable may theoretically first have reported a threaded update, but will actually
  1157. // require a main thread update. Check these cases first and move as applicable. The threaded work routine will tolerate the null
  1158. // pointer holes that we leave to the threaded update queue.
  1159. for (PODVector<Drawable*>::Iterator i = threadedGeometries_.Begin(); i != threadedGeometries_.End(); ++i)
  1160. {
  1161. if ((*i)->GetUpdateGeometryType() == UPDATE_MAIN_THREAD)
  1162. {
  1163. nonThreadedGeometries_.Push(*i);
  1164. *i = 0;
  1165. }
  1166. }
  1167. int numWorkItems = queue->GetNumThreads() + 1; // Worker threads + main thread
  1168. int drawablesPerItem = threadedGeometries_.Size() / numWorkItems;
  1169. PODVector<Drawable*>::Iterator start = threadedGeometries_.Begin();
  1170. for (int i = 0; i < numWorkItems; ++i)
  1171. {
  1172. PODVector<Drawable*>::Iterator end = threadedGeometries_.End();
  1173. if (i < numWorkItems - 1 && end - start > drawablesPerItem)
  1174. end = start + drawablesPerItem;
  1175. SharedPtr<WorkItem> item = queue->GetFreeItem();
  1176. item->priority_ = M_MAX_UNSIGNED;
  1177. item->workFunction_ = UpdateDrawableGeometriesWork;
  1178. item->aux_ = const_cast<FrameInfo*>(&frame_);
  1179. item->start_ = &(*start);
  1180. item->end_ = &(*end);
  1181. queue->AddWorkItem(item);
  1182. start = end;
  1183. }
  1184. }
  1185. // While the work queue is processed, update non-threaded geometries
  1186. for (PODVector<Drawable*>::ConstIterator i = nonThreadedGeometries_.Begin(); i != nonThreadedGeometries_.End(); ++i)
  1187. (*i)->UpdateGeometry(frame_);
  1188. }
  1189. // Finally ensure all threaded work has completed
  1190. queue->Complete(M_MAX_UNSIGNED);
  1191. geometriesUpdated_ = true;
  1192. }
  1193. void View::GetLitBatches(Drawable* drawable, LightBatchQueue& lightQueue, BatchQueue* alphaQueue)
  1194. {
  1195. Light* light = lightQueue.light_;
  1196. Zone* zone = GetZone(drawable);
  1197. const Vector<SourceBatch>& batches = drawable->GetBatches();
  1198. bool allowLitBase =
  1199. useLitBase_ && !lightQueue.negative_ && light == drawable->GetFirstLight() && drawable->GetVertexLights().Empty() &&
  1200. !zone->GetAmbientGradient();
  1201. for (unsigned i = 0; i < batches.Size(); ++i)
  1202. {
  1203. const SourceBatch& srcBatch = batches[i];
  1204. Technique* tech = GetTechnique(drawable, srcBatch.material_);
  1205. if (!srcBatch.geometry_ || !srcBatch.numWorldTransforms_ || !tech)
  1206. continue;
  1207. // Do not create pixel lit forward passes for materials that render into the G-buffer
  1208. if (gBufferPassIndex_ != M_MAX_UNSIGNED && tech->HasPass(gBufferPassIndex_))
  1209. continue;
  1210. Batch destBatch(srcBatch);
  1211. bool isLitAlpha = false;
  1212. // Check for lit base pass. Because it uses the replace blend mode, it must be ensured to be the first light
  1213. // Also vertex lighting or ambient gradient require the non-lit base pass, so skip in those cases
  1214. if (i < 32 && allowLitBase)
  1215. {
  1216. destBatch.pass_ = tech->GetSupportedPass(litBasePassIndex_);
  1217. if (destBatch.pass_)
  1218. {
  1219. destBatch.isBase_ = true;
  1220. drawable->SetBasePass(i);
  1221. }
  1222. else
  1223. destBatch.pass_ = tech->GetSupportedPass(lightPassIndex_);
  1224. }
  1225. else
  1226. destBatch.pass_ = tech->GetSupportedPass(lightPassIndex_);
  1227. // If no lit pass, check for lit alpha
  1228. if (!destBatch.pass_)
  1229. {
  1230. destBatch.pass_ = tech->GetSupportedPass(litAlphaPassIndex_);
  1231. isLitAlpha = true;
  1232. }
  1233. // Skip if material does not receive light at all
  1234. if (!destBatch.pass_)
  1235. continue;
  1236. destBatch.lightQueue_ = &lightQueue;
  1237. destBatch.zone_ = zone;
  1238. if (!isLitAlpha)
  1239. {
  1240. if (destBatch.isBase_)
  1241. AddBatchToQueue(lightQueue.litBaseBatches_, destBatch, tech);
  1242. else
  1243. AddBatchToQueue(lightQueue.litBatches_, destBatch, tech);
  1244. }
  1245. else if (alphaQueue)
  1246. {
  1247. // Transparent batches can not be instanced, and shadows on transparencies can only be rendered if shadow maps are
  1248. // not reused
  1249. AddBatchToQueue(*alphaQueue, destBatch, tech, false, !renderer_->GetReuseShadowMaps());
  1250. }
  1251. }
  1252. }
  1253. void View::ExecuteRenderPathCommands()
  1254. {
  1255. View* actualView = sourceView_ ? sourceView_ : this;
  1256. // If not reusing shadowmaps, render all of them first
  1257. if (!renderer_->GetReuseShadowMaps() && renderer_->GetDrawShadows() && !actualView->lightQueues_.Empty())
  1258. {
  1259. ATOMIC_PROFILE(RenderShadowMaps);
  1260. for (Vector<LightBatchQueue>::Iterator i = actualView->lightQueues_.Begin(); i != actualView->lightQueues_.End(); ++i)
  1261. {
  1262. if (NeedRenderShadowMap(*i))
  1263. RenderShadowMap(*i);
  1264. }
  1265. }
  1266. {
  1267. ATOMIC_PROFILE(ExecuteRenderPath);
  1268. // Set for safety in case of empty renderpath
  1269. currentRenderTarget_ = substituteRenderTarget_ ? substituteRenderTarget_ : renderTarget_;
  1270. currentViewportTexture_ = 0;
  1271. passCommand_ = 0;
  1272. bool viewportModified = false;
  1273. bool isPingponging = false;
  1274. usedResolve_ = false;
  1275. unsigned lastCommandIndex = 0;
  1276. for (unsigned i = 0; i < renderPath_->commands_.Size(); ++i)
  1277. {
  1278. RenderPathCommand& command = renderPath_->commands_[i];
  1279. if (actualView->IsNecessary(command))
  1280. lastCommandIndex = i;
  1281. }
  1282. for (unsigned i = 0; i < renderPath_->commands_.Size(); ++i)
  1283. {
  1284. RenderPathCommand& command = renderPath_->commands_[i];
  1285. if (!actualView->IsNecessary(command))
  1286. continue;
  1287. bool viewportRead = actualView->CheckViewportRead(command);
  1288. bool viewportWrite = actualView->CheckViewportWrite(command);
  1289. bool beginPingpong = actualView->CheckPingpong(i);
  1290. // Has the viewport been modified and will be read as a texture by the current command?
  1291. if (viewportRead && viewportModified)
  1292. {
  1293. // Start pingponging without a blit if already rendering to the substitute render target
  1294. if (currentRenderTarget_ && currentRenderTarget_ == substituteRenderTarget_ && beginPingpong)
  1295. isPingponging = true;
  1296. // If not using pingponging, simply resolve/copy to the first viewport texture
  1297. if (!isPingponging)
  1298. {
  1299. if (!currentRenderTarget_)
  1300. {
  1301. graphics_->ResolveToTexture(dynamic_cast<Texture2D*>(viewportTextures_[0]), viewRect_);
  1302. currentViewportTexture_ = viewportTextures_[0];
  1303. viewportModified = false;
  1304. usedResolve_ = true;
  1305. }
  1306. else
  1307. {
  1308. if (viewportWrite)
  1309. {
  1310. BlitFramebuffer(currentRenderTarget_->GetParentTexture(),
  1311. GetRenderSurfaceFromTexture(viewportTextures_[0]), false);
  1312. currentViewportTexture_ = viewportTextures_[0];
  1313. viewportModified = false;
  1314. }
  1315. else
  1316. {
  1317. // If the current render target is already a texture, and we are not writing to it, can read that
  1318. // texture directly instead of blitting. However keep the viewport dirty flag in case a later command
  1319. // will do both read and write, and then we need to blit / resolve
  1320. currentViewportTexture_ = currentRenderTarget_->GetParentTexture();
  1321. }
  1322. }
  1323. }
  1324. else
  1325. {
  1326. // Swap the pingpong double buffer sides. Texture 0 will be read next
  1327. viewportTextures_[1] = viewportTextures_[0];
  1328. viewportTextures_[0] = currentRenderTarget_->GetParentTexture();
  1329. currentViewportTexture_ = viewportTextures_[0];
  1330. viewportModified = false;
  1331. }
  1332. }
  1333. if (beginPingpong)
  1334. isPingponging = true;
  1335. // Determine viewport write target
  1336. if (viewportWrite)
  1337. {
  1338. if (isPingponging)
  1339. {
  1340. currentRenderTarget_ = GetRenderSurfaceFromTexture(viewportTextures_[1]);
  1341. // If the render path ends into a quad, it can be redirected to the final render target
  1342. // However, on OpenGL we can not reliably do this in case the final target is the backbuffer, and we want to
  1343. // render depth buffer sensitive debug geometry afterward (backbuffer and textures can not share depth)
  1344. #ifndef ATOMIC_OPENGL
  1345. if (i == lastCommandIndex && command.type_ == CMD_QUAD)
  1346. #else
  1347. if (i == lastCommandIndex && command.type_ == CMD_QUAD && renderTarget_)
  1348. #endif
  1349. currentRenderTarget_ = renderTarget_;
  1350. }
  1351. else
  1352. currentRenderTarget_ = substituteRenderTarget_ ? substituteRenderTarget_ : renderTarget_;
  1353. }
  1354. switch (command.type_)
  1355. {
  1356. case CMD_CLEAR:
  1357. {
  1358. ATOMIC_PROFILE(ClearRenderTarget);
  1359. Color clearColor = command.clearColor_;
  1360. if (command.useFogColor_)
  1361. clearColor = actualView->farClipZone_->GetFogColor();
  1362. SetRenderTargets(command);
  1363. graphics_->Clear(command.clearFlags_, clearColor, command.clearDepth_, command.clearStencil_);
  1364. }
  1365. break;
  1366. case CMD_SCENEPASS:
  1367. {
  1368. BatchQueue& queue = actualView->batchQueues_[command.passIndex_];
  1369. if (!queue.IsEmpty())
  1370. {
  1371. ATOMIC_PROFILE(RenderScenePass);
  1372. SetRenderTargets(command);
  1373. bool allowDepthWrite = SetTextures(command);
  1374. graphics_->SetClipPlane(camera_->GetUseClipping(), camera_->GetClipPlane(), camera_->GetView(),
  1375. camera_->GetGPUProjection());
  1376. if (command.shaderParameters_.Size())
  1377. {
  1378. // If pass defines shader parameters, reset parameter sources now to ensure they all will be set
  1379. // (will be set after camera shader parameters)
  1380. graphics_->ClearParameterSources();
  1381. passCommand_ = &command;
  1382. }
  1383. queue.Draw(this, camera_, command.markToStencil_, false, allowDepthWrite);
  1384. passCommand_ = 0;
  1385. }
  1386. }
  1387. break;
  1388. case CMD_QUAD:
  1389. {
  1390. ATOMIC_PROFILE(RenderQuad);
  1391. SetRenderTargets(command);
  1392. SetTextures(command);
  1393. RenderQuad(command);
  1394. }
  1395. break;
  1396. case CMD_FORWARDLIGHTS:
  1397. // Render shadow maps + opaque objects' additive lighting
  1398. if (!actualView->lightQueues_.Empty())
  1399. {
  1400. ATOMIC_PROFILE(RenderLights);
  1401. SetRenderTargets(command);
  1402. // ATOMIC BEGIN
  1403. graphics_->SetNumPasses(0);
  1404. for (Vector<LightBatchQueue>::Iterator i = actualView->lightQueues_.Begin(); i != actualView->lightQueues_.End(); ++i)
  1405. {
  1406. graphics_->SetNumPasses(graphics_->GetNumPasses() + 1);
  1407. // ATOMIC END
  1408. // If reusing shadowmaps, render each of them before the lit batches
  1409. if (renderer_->GetReuseShadowMaps() && NeedRenderShadowMap(*i))
  1410. {
  1411. RenderShadowMap(*i);
  1412. SetRenderTargets(command);
  1413. }
  1414. bool allowDepthWrite = SetTextures(command);
  1415. graphics_->SetClipPlane(camera_->GetUseClipping(), camera_->GetClipPlane(), camera_->GetView(),
  1416. camera_->GetGPUProjection());
  1417. if (command.shaderParameters_.Size())
  1418. {
  1419. graphics_->ClearParameterSources();
  1420. passCommand_ = &command;
  1421. }
  1422. // Draw base (replace blend) batches first
  1423. i->litBaseBatches_.Draw(this, camera_, false, false, allowDepthWrite);
  1424. // Then, if there are additive passes, optimize the light and draw them
  1425. if (!i->litBatches_.IsEmpty())
  1426. {
  1427. renderer_->OptimizeLightByScissor(i->light_, camera_);
  1428. if (!noStencil_)
  1429. renderer_->OptimizeLightByStencil(i->light_, camera_);
  1430. i->litBatches_.Draw(this, camera_, false, true, allowDepthWrite);
  1431. }
  1432. passCommand_ = 0;
  1433. }
  1434. graphics_->SetScissorTest(false);
  1435. graphics_->SetStencilTest(false);
  1436. }
  1437. break;
  1438. case CMD_LIGHTVOLUMES:
  1439. // Render shadow maps + light volumes
  1440. if (!actualView->lightQueues_.Empty())
  1441. {
  1442. ATOMIC_PROFILE(RenderLightVolumes);
  1443. SetRenderTargets(command);
  1444. for (Vector<LightBatchQueue>::Iterator i = actualView->lightQueues_.Begin(); i != actualView->lightQueues_.End(); ++i)
  1445. {
  1446. // If reusing shadowmaps, render each of them before the lit batches
  1447. if (renderer_->GetReuseShadowMaps() && NeedRenderShadowMap(*i))
  1448. {
  1449. RenderShadowMap(*i);
  1450. SetRenderTargets(command);
  1451. }
  1452. SetTextures(command);
  1453. if (command.shaderParameters_.Size())
  1454. {
  1455. graphics_->ClearParameterSources();
  1456. passCommand_ = &command;
  1457. }
  1458. for (unsigned j = 0; j < i->volumeBatches_.Size(); ++j)
  1459. {
  1460. SetupLightVolumeBatch(i->volumeBatches_[j]);
  1461. i->volumeBatches_[j].Draw(this, camera_, false);
  1462. }
  1463. passCommand_ = 0;
  1464. }
  1465. graphics_->SetScissorTest(false);
  1466. graphics_->SetStencilTest(false);
  1467. }
  1468. break;
  1469. case CMD_RENDERUI:
  1470. {
  1471. SetRenderTargets(command);
  1472. GetSubsystem<UI>()->Render(false);
  1473. }
  1474. break;
  1475. case CMD_SENDEVENT:
  1476. {
  1477. using namespace RenderPathEvent;
  1478. VariantMap& eventData = GetEventDataMap();
  1479. eventData[P_NAME] = command.eventName_;
  1480. renderer_->SendEvent(E_RENDERPATHEVENT, eventData);
  1481. }
  1482. break;
  1483. default:
  1484. break;
  1485. }
  1486. // If current command output to the viewport, mark it modified
  1487. if (viewportWrite)
  1488. viewportModified = true;
  1489. }
  1490. }
  1491. }
  1492. void View::SetRenderTargets(RenderPathCommand& command)
  1493. {
  1494. unsigned index = 0;
  1495. bool useColorWrite = true;
  1496. bool useCustomDepth = false;
  1497. bool useViewportOutput = false;
  1498. while (index < command.outputs_.Size())
  1499. {
  1500. if (!command.outputs_[index].first_.Compare("viewport", false))
  1501. {
  1502. graphics_->SetRenderTarget(index, currentRenderTarget_);
  1503. useViewportOutput = true;
  1504. }
  1505. else
  1506. {
  1507. Texture* texture = FindNamedTexture(command.outputs_[index].first_, true, false);
  1508. // Check for depth only rendering (by specifying a depth texture as the sole output)
  1509. if (!index && command.outputs_.Size() == 1 && texture && (texture->GetFormat() == Graphics::GetReadableDepthFormat() ||
  1510. texture->GetFormat() == Graphics::GetDepthStencilFormat()))
  1511. {
  1512. useColorWrite = false;
  1513. useCustomDepth = true;
  1514. #if !defined(ATOMIC_OPENGL) && !defined(ATOMIC_D3D11)
  1515. // On D3D9 actual depth-only rendering is illegal, we need a color rendertarget
  1516. if (!depthOnlyDummyTexture_)
  1517. {
  1518. depthOnlyDummyTexture_ = renderer_->GetScreenBuffer(texture->GetWidth(), texture->GetHeight(),
  1519. graphics_->GetDummyColorFormat(), texture->GetMultiSample(), texture->GetAutoResolve(), false, false, false);
  1520. }
  1521. #endif
  1522. graphics_->SetRenderTarget(0, GetRenderSurfaceFromTexture(depthOnlyDummyTexture_));
  1523. graphics_->SetDepthStencil(GetRenderSurfaceFromTexture(texture));
  1524. }
  1525. else
  1526. graphics_->SetRenderTarget(index, GetRenderSurfaceFromTexture(texture, command.outputs_[index].second_));
  1527. }
  1528. ++index;
  1529. }
  1530. while (index < MAX_RENDERTARGETS)
  1531. {
  1532. graphics_->SetRenderTarget(index, (RenderSurface*)0);
  1533. ++index;
  1534. }
  1535. if (command.depthStencilName_.Length())
  1536. {
  1537. Texture* depthTexture = FindNamedTexture(command.depthStencilName_, true, false);
  1538. if (depthTexture)
  1539. {
  1540. useCustomDepth = true;
  1541. lastCustomDepthSurface_ = GetRenderSurfaceFromTexture(depthTexture);
  1542. graphics_->SetDepthStencil(lastCustomDepthSurface_);
  1543. }
  1544. }
  1545. // When rendering to the final destination rendertarget, use the actual viewport. Otherwise texture rendertargets should use
  1546. // their full size as the viewport
  1547. IntVector2 rtSizeNow = graphics_->GetRenderTargetDimensions();
  1548. IntRect viewport = (useViewportOutput && currentRenderTarget_ == renderTarget_) ? viewRect_ : IntRect(0, 0, rtSizeNow.x_,
  1549. rtSizeNow.y_);
  1550. if (!useCustomDepth)
  1551. graphics_->SetDepthStencil(GetDepthStencil(graphics_->GetRenderTarget(0)));
  1552. graphics_->SetViewport(viewport);
  1553. graphics_->SetColorWrite(useColorWrite);
  1554. }
  1555. bool View::SetTextures(RenderPathCommand& command)
  1556. {
  1557. bool allowDepthWrite = true;
  1558. for (unsigned i = 0; i < MAX_TEXTURE_UNITS; ++i)
  1559. {
  1560. if (command.textureNames_[i].Empty())
  1561. continue;
  1562. // Bind the rendered output
  1563. if (!command.textureNames_[i].Compare("viewport", false))
  1564. {
  1565. graphics_->SetTexture(i, currentViewportTexture_);
  1566. continue;
  1567. }
  1568. #ifdef DESKTOP_GRAPHICS
  1569. Texture* texture = FindNamedTexture(command.textureNames_[i], false, i == TU_VOLUMEMAP);
  1570. #else
  1571. Texture* texture = FindNamedTexture(command.textureNames_[i], false, false);
  1572. #endif
  1573. if (texture)
  1574. {
  1575. graphics_->SetTexture(i, texture);
  1576. // Check if the current depth stencil is being sampled
  1577. if (graphics_->GetDepthStencil() && texture == graphics_->GetDepthStencil()->GetParentTexture())
  1578. allowDepthWrite = false;
  1579. }
  1580. else
  1581. {
  1582. // If requesting a texture fails, clear the texture name to prevent redundant attempts
  1583. command.textureNames_[i] = String::EMPTY;
  1584. }
  1585. }
  1586. return allowDepthWrite;
  1587. }
  1588. void View::RenderQuad(RenderPathCommand& command)
  1589. {
  1590. if (command.vertexShaderName_.Empty() || command.pixelShaderName_.Empty())
  1591. return;
  1592. // If shader can not be found, clear it from the command to prevent redundant attempts
  1593. ShaderVariation* vs = graphics_->GetShader(VS, command.vertexShaderName_, command.vertexShaderDefines_);
  1594. if (!vs)
  1595. command.vertexShaderName_ = String::EMPTY;
  1596. ShaderVariation* ps = graphics_->GetShader(PS, command.pixelShaderName_, command.pixelShaderDefines_);
  1597. if (!ps)
  1598. command.pixelShaderName_ = String::EMPTY;
  1599. // Set shaders & shader parameters and textures
  1600. graphics_->SetShaders(vs, ps);
  1601. SetGlobalShaderParameters();
  1602. SetCameraShaderParameters(camera_);
  1603. // During renderpath commands the G-Buffer or viewport texture is assumed to always be viewport-sized
  1604. IntRect viewport = graphics_->GetViewport();
  1605. IntVector2 viewSize = IntVector2(viewport.Width(), viewport.Height());
  1606. SetGBufferShaderParameters(viewSize, IntRect(0, 0, viewSize.x_, viewSize.y_));
  1607. // Set per-rendertarget inverse size / offset shader parameters as necessary
  1608. for (unsigned i = 0; i < renderPath_->renderTargets_.Size(); ++i)
  1609. {
  1610. const RenderTargetInfo& rtInfo = renderPath_->renderTargets_[i];
  1611. if (!rtInfo.enabled_)
  1612. continue;
  1613. StringHash nameHash(rtInfo.name_);
  1614. if (!renderTargets_.Contains(nameHash))
  1615. continue;
  1616. String invSizeName = rtInfo.name_ + "InvSize";
  1617. String offsetsName = rtInfo.name_ + "Offsets";
  1618. float width = (float)renderTargets_[nameHash]->GetWidth();
  1619. float height = (float)renderTargets_[nameHash]->GetHeight();
  1620. const Vector2& pixelUVOffset = Graphics::GetPixelUVOffset();
  1621. graphics_->SetShaderParameter(invSizeName, Vector2(1.0f / width, 1.0f / height));
  1622. graphics_->SetShaderParameter(offsetsName, Vector2(pixelUVOffset.x_ / width, pixelUVOffset.y_ / height));
  1623. }
  1624. // Set command's shader parameters last to allow them to override any of the above
  1625. SetCommandShaderParameters(command);
  1626. graphics_->SetBlendMode(command.blendMode_);
  1627. graphics_->SetDepthTest(CMP_ALWAYS);
  1628. graphics_->SetDepthWrite(false);
  1629. graphics_->SetFillMode(FILL_SOLID);
  1630. graphics_->SetLineAntiAlias(false);
  1631. graphics_->SetClipPlane(false);
  1632. graphics_->SetScissorTest(false);
  1633. graphics_->SetStencilTest(false);
  1634. DrawFullscreenQuad(false);
  1635. }
  1636. bool View::IsNecessary(const RenderPathCommand& command)
  1637. {
  1638. return command.enabled_ && command.outputs_.Size() &&
  1639. (command.type_ != CMD_SCENEPASS || !batchQueues_[command.passIndex_].IsEmpty());
  1640. }
  1641. bool View::CheckViewportRead(const RenderPathCommand& command)
  1642. {
  1643. for (unsigned i = 0; i < MAX_TEXTURE_UNITS; ++i)
  1644. {
  1645. if (!command.textureNames_[i].Empty() && !command.textureNames_[i].Compare("viewport", false))
  1646. return true;
  1647. }
  1648. return false;
  1649. }
  1650. bool View::CheckViewportWrite(const RenderPathCommand& command)
  1651. {
  1652. for (unsigned i = 0; i < command.outputs_.Size(); ++i)
  1653. {
  1654. if (!command.outputs_[i].first_.Compare("viewport", false))
  1655. return true;
  1656. }
  1657. return false;
  1658. }
  1659. bool View::CheckPingpong(unsigned index)
  1660. {
  1661. // Current command must be a viewport-reading & writing quad to begin the pingpong chain
  1662. RenderPathCommand& current = renderPath_->commands_[index];
  1663. if (current.type_ != CMD_QUAD || !CheckViewportRead(current) || !CheckViewportWrite(current))
  1664. return false;
  1665. // If there are commands other than quads that target the viewport, we must keep rendering to the final target and resolving
  1666. // to a viewport texture when necessary instead of pingponging, as a scene pass is not guaranteed to fill the entire viewport
  1667. for (unsigned i = index + 1; i < renderPath_->commands_.Size(); ++i)
  1668. {
  1669. RenderPathCommand& command = renderPath_->commands_[i];
  1670. if (!IsNecessary(command))
  1671. continue;
  1672. if (CheckViewportWrite(command))
  1673. {
  1674. if (command.type_ != CMD_QUAD)
  1675. return false;
  1676. }
  1677. }
  1678. return true;
  1679. }
  1680. void View::AllocateScreenBuffers()
  1681. {
  1682. View* actualView = sourceView_ ? sourceView_ : this;
  1683. bool hasScenePassToRTs = false;
  1684. bool hasCustomDepth = false;
  1685. bool hasViewportRead = false;
  1686. bool hasPingpong = false;
  1687. bool needSubstitute = false;
  1688. unsigned numViewportTextures = 0;
  1689. depthOnlyDummyTexture_ = 0;
  1690. lastCustomDepthSurface_ = 0;
  1691. // Check for commands with special meaning: has custom depth, renders a scene pass to other than the destination viewport,
  1692. // read the viewport, or pingpong between viewport textures. These may trigger the need to substitute the destination RT
  1693. for (unsigned i = 0; i < renderPath_->commands_.Size(); ++i)
  1694. {
  1695. const RenderPathCommand& command = renderPath_->commands_[i];
  1696. if (!actualView->IsNecessary(command))
  1697. continue;
  1698. if (!hasViewportRead && CheckViewportRead(command))
  1699. hasViewportRead = true;
  1700. if (!hasPingpong && CheckPingpong(i))
  1701. hasPingpong = true;
  1702. if (command.depthStencilName_.Length())
  1703. hasCustomDepth = true;
  1704. if (!hasScenePassToRTs && command.type_ == CMD_SCENEPASS)
  1705. {
  1706. for (unsigned j = 0; j < command.outputs_.Size(); ++j)
  1707. {
  1708. if (command.outputs_[j].first_.Compare("viewport", false))
  1709. {
  1710. hasScenePassToRTs = true;
  1711. break;
  1712. }
  1713. }
  1714. }
  1715. }
  1716. #ifdef ATOMIC_OPENGL
  1717. // Due to FBO limitations, in OpenGL deferred modes need to render to texture first and then blit to the backbuffer
  1718. // Also, if rendering to a texture with full deferred rendering, it must be RGBA to comply with the rest of the buffers,
  1719. // unless using OpenGL 3
  1720. if (((deferred_ || hasScenePassToRTs) && !renderTarget_) || (!Graphics::GetGL3Support() && deferredAmbient_ && renderTarget_
  1721. && renderTarget_->GetParentTexture()->GetFormat() != Graphics::GetRGBAFormat()))
  1722. needSubstitute = true;
  1723. // Also need substitute if rendering to backbuffer using a custom (readable) depth buffer
  1724. if (!renderTarget_ && hasCustomDepth)
  1725. needSubstitute = true;
  1726. #endif
  1727. // If backbuffer is antialiased when using deferred rendering, need to reserve a buffer
  1728. if (deferred_ && !renderTarget_ && graphics_->GetMultiSample() > 1)
  1729. needSubstitute = true;
  1730. // If viewport is smaller than whole texture/backbuffer in deferred rendering, need to reserve a buffer, as the G-buffer
  1731. // textures will be sized equal to the viewport
  1732. if (viewSize_.x_ < rtSize_.x_ || viewSize_.y_ < rtSize_.y_)
  1733. {
  1734. if (deferred_ || hasScenePassToRTs || hasCustomDepth)
  1735. needSubstitute = true;
  1736. }
  1737. // Follow final rendertarget format, or use RGB to match the backbuffer format
  1738. unsigned format = renderTarget_ ? renderTarget_->GetParentTexture()->GetFormat() : Graphics::GetRGBFormat();
  1739. // If HDR rendering is enabled use RGBA16f and reserve a buffer
  1740. if (renderer_->GetHDRRendering())
  1741. {
  1742. format = Graphics::GetRGBAFloat16Format();
  1743. needSubstitute = true;
  1744. }
  1745. #ifdef ATOMIC_OPENGL
  1746. // On OpenGL 2 ensure that all MRT buffers are RGBA in deferred rendering
  1747. if (deferred_ && !renderer_->GetHDRRendering() && !Graphics::GetGL3Support())
  1748. format = Graphics::GetRGBAFormat();
  1749. #endif
  1750. if (hasViewportRead)
  1751. {
  1752. ++numViewportTextures;
  1753. // If OpenGL ES, use substitute target to avoid resolve from the backbuffer, which may be slow. However if multisampling
  1754. // is specified, there is no choice
  1755. #ifdef GL_ES_VERSION_2_0
  1756. if (!renderTarget_ && graphics_->GetMultiSample() < 2)
  1757. needSubstitute = true;
  1758. #endif
  1759. // If we have viewport read and target is a cube map, must allocate a substitute target instead as BlitFramebuffer()
  1760. // does not support reading a cube map
  1761. if (renderTarget_ && renderTarget_->GetParentTexture()->GetType() == TextureCube::GetTypeStatic())
  1762. needSubstitute = true;
  1763. // If rendering to a texture, but the viewport is less than the whole texture, use a substitute to ensure
  1764. // postprocessing shaders will never read outside the viewport
  1765. if (renderTarget_ && (viewSize_.x_ < renderTarget_->GetWidth() || viewSize_.y_ < renderTarget_->GetHeight()))
  1766. needSubstitute = true;
  1767. if (hasPingpong && !needSubstitute)
  1768. ++numViewportTextures;
  1769. }
  1770. // Allocate screen buffers. Enable filtering in case the quad commands need that
  1771. // Follow the sRGB mode of the destination render target
  1772. bool sRGB = renderTarget_ ? renderTarget_->GetParentTexture()->GetSRGB() : graphics_->GetSRGB();
  1773. int multiSample = renderTarget_ ? renderTarget_->GetMultiSample() : graphics_->GetMultiSample();
  1774. bool autoResolve = renderTarget_ ? renderTarget_->GetAutoResolve() : true;
  1775. substituteRenderTarget_ = needSubstitute ? GetRenderSurfaceFromTexture(renderer_->GetScreenBuffer(viewSize_.x_, viewSize_.y_,
  1776. format, multiSample, autoResolve, false, true, sRGB)) : (RenderSurface*)0;
  1777. for (unsigned i = 0; i < MAX_VIEWPORT_TEXTURES; ++i)
  1778. {
  1779. viewportTextures_[i] = i < numViewportTextures ? renderer_->GetScreenBuffer(viewSize_.x_, viewSize_.y_, format, multiSample,
  1780. autoResolve, false, true, sRGB) : (Texture*)0;
  1781. }
  1782. // If using a substitute render target and pingponging, the substitute can act as the second viewport texture
  1783. if (numViewportTextures == 1 && substituteRenderTarget_)
  1784. viewportTextures_[1] = substituteRenderTarget_->GetParentTexture();
  1785. // Allocate extra render targets defined by the render path
  1786. for (unsigned i = 0; i < renderPath_->renderTargets_.Size(); ++i)
  1787. {
  1788. const RenderTargetInfo& rtInfo = renderPath_->renderTargets_[i];
  1789. if (!rtInfo.enabled_)
  1790. continue;
  1791. float width = rtInfo.size_.x_;
  1792. float height = rtInfo.size_.y_;
  1793. if (rtInfo.sizeMode_ == SIZE_VIEWPORTDIVISOR)
  1794. {
  1795. width = (float)viewSize_.x_ / Max(width, M_EPSILON);
  1796. height = (float)viewSize_.y_ / Max(height, M_EPSILON);
  1797. }
  1798. else if (rtInfo.sizeMode_ == SIZE_VIEWPORTMULTIPLIER)
  1799. {
  1800. width = (float)viewSize_.x_ * width;
  1801. height = (float)viewSize_.y_ * height;
  1802. }
  1803. int intWidth = (int)(width + 0.5f);
  1804. int intHeight = (int)(height + 0.5f);
  1805. // If the rendertarget is persistent, key it with a hash derived from the RT name and the view's pointer
  1806. renderTargets_[rtInfo.name_] =
  1807. renderer_->GetScreenBuffer(intWidth, intHeight, rtInfo.format_, rtInfo.multiSample_, rtInfo.autoResolve_,
  1808. rtInfo.cubemap_, rtInfo.filtered_, rtInfo.sRGB_, rtInfo.persistent_ ? StringHash(rtInfo.name_).Value()
  1809. + (unsigned)(size_t)this : 0);
  1810. }
  1811. }
  1812. void View::BlitFramebuffer(Texture* source, RenderSurface* destination, bool depthWrite)
  1813. {
  1814. if (!source)
  1815. return;
  1816. ATOMIC_PROFILE(BlitFramebuffer);
  1817. // If blitting to the destination rendertarget, use the actual viewport. Intermediate textures on the other hand
  1818. // are always viewport-sized
  1819. IntVector2 srcSize(source->GetWidth(), source->GetHeight());
  1820. IntVector2 destSize = destination ? IntVector2(destination->GetWidth(), destination->GetHeight()) : IntVector2(
  1821. graphics_->GetWidth(), graphics_->GetHeight());
  1822. IntRect srcRect = (GetRenderSurfaceFromTexture(source) == renderTarget_) ? viewRect_ : IntRect(0, 0, srcSize.x_, srcSize.y_);
  1823. IntRect destRect = (destination == renderTarget_) ? viewRect_ : IntRect(0, 0, destSize.x_, destSize.y_);
  1824. graphics_->SetBlendMode(BLEND_REPLACE);
  1825. graphics_->SetDepthTest(CMP_ALWAYS);
  1826. graphics_->SetDepthWrite(depthWrite);
  1827. graphics_->SetFillMode(FILL_SOLID);
  1828. graphics_->SetLineAntiAlias(false);
  1829. graphics_->SetClipPlane(false);
  1830. graphics_->SetScissorTest(false);
  1831. graphics_->SetStencilTest(false);
  1832. graphics_->SetRenderTarget(0, destination);
  1833. for (unsigned i = 1; i < MAX_RENDERTARGETS; ++i)
  1834. graphics_->SetRenderTarget(i, (RenderSurface*)0);
  1835. graphics_->SetDepthStencil(GetDepthStencil(destination));
  1836. graphics_->SetViewport(destRect);
  1837. static const String shaderName("CopyFramebuffer");
  1838. graphics_->SetShaders(graphics_->GetShader(VS, shaderName), graphics_->GetShader(PS, shaderName));
  1839. SetGBufferShaderParameters(srcSize, srcRect);
  1840. graphics_->SetTexture(TU_DIFFUSE, source);
  1841. DrawFullscreenQuad(true);
  1842. }
  1843. void View::DrawFullscreenQuad(bool setIdentityProjection)
  1844. {
  1845. Geometry* geometry = renderer_->GetQuadGeometry();
  1846. // If no camera, no choice but to use identity projection
  1847. if (!camera_)
  1848. setIdentityProjection = true;
  1849. if (setIdentityProjection)
  1850. {
  1851. Matrix3x4 model = Matrix3x4::IDENTITY;
  1852. Matrix4 projection = Matrix4::IDENTITY;
  1853. #ifdef ATOMIC_OPENGL
  1854. if (camera_ && camera_->GetFlipVertical())
  1855. projection.m11_ = -1.0f;
  1856. model.m23_ = 0.0f;
  1857. #else
  1858. model.m23_ = 0.5f;
  1859. #endif
  1860. graphics_->SetShaderParameter(VSP_MODEL, model);
  1861. graphics_->SetShaderParameter(VSP_VIEWPROJ, projection);
  1862. }
  1863. else
  1864. graphics_->SetShaderParameter(VSP_MODEL, Light::GetFullscreenQuadTransform(camera_));
  1865. graphics_->SetCullMode(CULL_NONE);
  1866. graphics_->ClearTransformSources();
  1867. geometry->Draw(graphics_);
  1868. }
  1869. void View::UpdateOccluders(PODVector<Drawable*>& occluders, Camera* camera)
  1870. {
  1871. float occluderSizeThreshold_ = renderer_->GetOccluderSizeThreshold();
  1872. float halfViewSize = camera->GetHalfViewSize();
  1873. float invOrthoSize = 1.0f / camera->GetOrthoSize();
  1874. for (PODVector<Drawable*>::Iterator i = occluders.Begin(); i != occluders.End();)
  1875. {
  1876. Drawable* occluder = *i;
  1877. bool erase = false;
  1878. if (!occluder->IsInView(frame_, true))
  1879. occluder->UpdateBatches(frame_);
  1880. // Check occluder's draw distance (in main camera view)
  1881. float maxDistance = occluder->GetDrawDistance();
  1882. if (maxDistance <= 0.0f || occluder->GetDistance() <= maxDistance)
  1883. {
  1884. // Check that occluder is big enough on the screen
  1885. const BoundingBox& box = occluder->GetWorldBoundingBox();
  1886. float diagonal = box.Size().Length();
  1887. float compare;
  1888. if (!camera->IsOrthographic())
  1889. {
  1890. // Occluders which are near the camera are more useful then occluders at the end of the camera's draw distance
  1891. float cameraMaxDistanceFraction = occluder->GetDistance() / camera->GetFarClip();
  1892. compare = diagonal * halfViewSize / (occluder->GetDistance() * cameraMaxDistanceFraction);
  1893. // Give higher priority to occluders which the camera is inside their AABB
  1894. const Vector3& cameraPos = camera->GetNode() ? camera->GetNode()->GetWorldPosition() : Vector3::ZERO;
  1895. if (box.IsInside(cameraPos))
  1896. compare *= diagonal; // size^2
  1897. }
  1898. else
  1899. compare = diagonal * invOrthoSize;
  1900. if (compare < occluderSizeThreshold_)
  1901. erase = true;
  1902. else
  1903. {
  1904. // Best occluders have big triangles (low density)
  1905. float density = occluder->GetNumOccluderTriangles() / diagonal;
  1906. // Lower value is higher priority
  1907. occluder->SetSortValue(density / compare);
  1908. }
  1909. }
  1910. else
  1911. erase = true;
  1912. if (erase)
  1913. i = occluders.Erase(i);
  1914. else
  1915. ++i;
  1916. }
  1917. // Sort occluders so that if triangle budget is exceeded, best occluders have been drawn
  1918. if (occluders.Size())
  1919. Sort(occluders.Begin(), occluders.End(), CompareDrawables);
  1920. }
  1921. void View::DrawOccluders(OcclusionBuffer* buffer, const PODVector<Drawable*>& occluders)
  1922. {
  1923. buffer->SetMaxTriangles((unsigned)maxOccluderTriangles_);
  1924. buffer->Clear();
  1925. if (!buffer->IsThreaded())
  1926. {
  1927. // If not threaded, draw occluders one by one and test the next occluder against already rasterized depth
  1928. for (unsigned i = 0; i < occluders.Size(); ++i)
  1929. {
  1930. Drawable* occluder = occluders[i];
  1931. if (i > 0)
  1932. {
  1933. // For subsequent occluders, do a test against the pixel-level occlusion buffer to see if rendering is necessary
  1934. if (!buffer->IsVisible(occluder->GetWorldBoundingBox()))
  1935. continue;
  1936. }
  1937. // Check for running out of triangles
  1938. ++activeOccluders_;
  1939. bool success = occluder->DrawOcclusion(buffer);
  1940. // Draw triangles submitted by this occluder
  1941. buffer->DrawTriangles();
  1942. if (!success)
  1943. break;
  1944. }
  1945. }
  1946. else
  1947. {
  1948. // In threaded mode submit all triangles first, then render (cannot test in this case)
  1949. for (unsigned i = 0; i < occluders.Size(); ++i)
  1950. {
  1951. // Check for running out of triangles
  1952. ++activeOccluders_;
  1953. if (!occluders[i]->DrawOcclusion(buffer))
  1954. break;
  1955. }
  1956. buffer->DrawTriangles();
  1957. }
  1958. // Finally build the depth mip levels
  1959. buffer->BuildDepthHierarchy();
  1960. }
  1961. void View::ProcessLight(LightQueryResult& query, unsigned threadIndex)
  1962. {
  1963. Light* light = query.light_;
  1964. LightType type = light->GetLightType();
  1965. unsigned lightMask = light->GetLightMask();
  1966. const Frustum& frustum = cullCamera_->GetFrustum();
  1967. // Check if light should be shadowed
  1968. bool isShadowed = drawShadows_ && light->GetCastShadows() && !light->GetPerVertex() && light->GetShadowIntensity() < 1.0f;
  1969. // If shadow distance non-zero, check it
  1970. if (isShadowed && light->GetShadowDistance() > 0.0f && light->GetDistance() > light->GetShadowDistance())
  1971. isShadowed = false;
  1972. // OpenGL ES can not support point light shadows
  1973. #ifdef GL_ES_VERSION_2_0
  1974. if (isShadowed && type == LIGHT_POINT)
  1975. isShadowed = false;
  1976. #endif
  1977. // Get lit geometries. They must match the light mask and be inside the main camera frustum to be considered
  1978. PODVector<Drawable*>& tempDrawables = tempDrawables_[threadIndex];
  1979. query.litGeometries_.Clear();
  1980. switch (type)
  1981. {
  1982. case LIGHT_DIRECTIONAL:
  1983. for (unsigned i = 0; i < geometries_.Size(); ++i)
  1984. {
  1985. if (GetLightMask(geometries_[i]) & lightMask)
  1986. query.litGeometries_.Push(geometries_[i]);
  1987. }
  1988. break;
  1989. case LIGHT_SPOT:
  1990. {
  1991. FrustumOctreeQuery octreeQuery(tempDrawables, light->GetFrustum(), DRAWABLE_GEOMETRY,
  1992. cullCamera_->GetViewMask());
  1993. octree_->GetDrawables(octreeQuery);
  1994. for (unsigned i = 0; i < tempDrawables.Size(); ++i)
  1995. {
  1996. if (tempDrawables[i]->IsInView(frame_) && (GetLightMask(tempDrawables[i]) & lightMask))
  1997. query.litGeometries_.Push(tempDrawables[i]);
  1998. }
  1999. }
  2000. break;
  2001. case LIGHT_POINT:
  2002. {
  2003. SphereOctreeQuery octreeQuery(tempDrawables, Sphere(light->GetNode()->GetWorldPosition(), light->GetRange()),
  2004. DRAWABLE_GEOMETRY, cullCamera_->GetViewMask());
  2005. octree_->GetDrawables(octreeQuery);
  2006. for (unsigned i = 0; i < tempDrawables.Size(); ++i)
  2007. {
  2008. if (tempDrawables[i]->IsInView(frame_) && (GetLightMask(tempDrawables[i]) & lightMask))
  2009. query.litGeometries_.Push(tempDrawables[i]);
  2010. }
  2011. }
  2012. break;
  2013. }
  2014. // If no lit geometries or not shadowed, no need to process shadow cameras
  2015. if (query.litGeometries_.Empty() || !isShadowed)
  2016. {
  2017. query.numSplits_ = 0;
  2018. return;
  2019. }
  2020. // Determine number of shadow cameras and setup their initial positions
  2021. SetupShadowCameras(query);
  2022. // Process each split for shadow casters
  2023. query.shadowCasters_.Clear();
  2024. for (unsigned i = 0; i < query.numSplits_; ++i)
  2025. {
  2026. Camera* shadowCamera = query.shadowCameras_[i];
  2027. const Frustum& shadowCameraFrustum = shadowCamera->GetFrustum();
  2028. query.shadowCasterBegin_[i] = query.shadowCasterEnd_[i] = query.shadowCasters_.Size();
  2029. // For point light check that the face is visible: if not, can skip the split
  2030. if (type == LIGHT_POINT && frustum.IsInsideFast(BoundingBox(shadowCameraFrustum)) == OUTSIDE)
  2031. continue;
  2032. // For directional light check that the split is inside the visible scene: if not, can skip the split
  2033. if (type == LIGHT_DIRECTIONAL)
  2034. {
  2035. if (minZ_ > query.shadowFarSplits_[i])
  2036. continue;
  2037. if (maxZ_ < query.shadowNearSplits_[i])
  2038. continue;
  2039. // Reuse lit geometry query for all except directional lights
  2040. ShadowCasterOctreeQuery query(tempDrawables, shadowCameraFrustum, DRAWABLE_GEOMETRY, cullCamera_->GetViewMask());
  2041. octree_->GetDrawables(query);
  2042. }
  2043. // Check which shadow casters actually contribute to the shadowing
  2044. ProcessShadowCasters(query, tempDrawables, i);
  2045. }
  2046. // If no shadow casters, the light can be rendered unshadowed. At this point we have not allocated a shadow map yet, so the
  2047. // only cost has been the shadow camera setup & queries
  2048. if (query.shadowCasters_.Empty())
  2049. query.numSplits_ = 0;
  2050. }
  2051. void View::ProcessShadowCasters(LightQueryResult& query, const PODVector<Drawable*>& drawables, unsigned splitIndex)
  2052. {
  2053. Light* light = query.light_;
  2054. unsigned lightMask = light->GetLightMask();
  2055. Camera* shadowCamera = query.shadowCameras_[splitIndex];
  2056. const Frustum& shadowCameraFrustum = shadowCamera->GetFrustum();
  2057. const Matrix3x4& lightView = shadowCamera->GetView();
  2058. const Matrix4& lightProj = shadowCamera->GetProjection();
  2059. LightType type = light->GetLightType();
  2060. query.shadowCasterBox_[splitIndex].Clear();
  2061. // Transform scene frustum into shadow camera's view space for shadow caster visibility check. For point & spot lights,
  2062. // we can use the whole scene frustum. For directional lights, use the intersection of the scene frustum and the split
  2063. // frustum, so that shadow casters do not get rendered into unnecessary splits
  2064. Frustum lightViewFrustum;
  2065. if (type != LIGHT_DIRECTIONAL)
  2066. lightViewFrustum = cullCamera_->GetSplitFrustum(minZ_, maxZ_).Transformed(lightView);
  2067. else
  2068. lightViewFrustum = cullCamera_->GetSplitFrustum(Max(minZ_, query.shadowNearSplits_[splitIndex]),
  2069. Min(maxZ_, query.shadowFarSplits_[splitIndex])).Transformed(lightView);
  2070. BoundingBox lightViewFrustumBox(lightViewFrustum);
  2071. // Check for degenerate split frustum: in that case there is no need to get shadow casters
  2072. if (lightViewFrustum.vertices_[0] == lightViewFrustum.vertices_[4])
  2073. return;
  2074. BoundingBox lightViewBox;
  2075. BoundingBox lightProjBox;
  2076. for (PODVector<Drawable*>::ConstIterator i = drawables.Begin(); i != drawables.End(); ++i)
  2077. {
  2078. Drawable* drawable = *i;
  2079. // In case this is a point or spot light query result reused for optimization, we may have non-shadowcasters included.
  2080. // Check for that first
  2081. if (!drawable->GetCastShadows())
  2082. continue;
  2083. // Check shadow mask
  2084. if (!(GetShadowMask(drawable) & lightMask))
  2085. continue;
  2086. // For point light, check that this drawable is inside the split shadow camera frustum
  2087. if (type == LIGHT_POINT && shadowCameraFrustum.IsInsideFast(drawable->GetWorldBoundingBox()) == OUTSIDE)
  2088. continue;
  2089. // Check shadow distance
  2090. // Note: as lights are processed threaded, it is possible a drawable's UpdateBatches() function is called several
  2091. // times. However, this should not cause problems as no scene modification happens at this point.
  2092. if (!drawable->IsInView(frame_, true))
  2093. drawable->UpdateBatches(frame_);
  2094. float maxShadowDistance = drawable->GetShadowDistance();
  2095. float drawDistance = drawable->GetDrawDistance();
  2096. if (drawDistance > 0.0f && (maxShadowDistance <= 0.0f || drawDistance < maxShadowDistance))
  2097. maxShadowDistance = drawDistance;
  2098. if (maxShadowDistance > 0.0f && drawable->GetDistance() > maxShadowDistance)
  2099. continue;
  2100. // Project shadow caster bounding box to light view space for visibility check
  2101. lightViewBox = drawable->GetWorldBoundingBox().Transformed(lightView);
  2102. if (IsShadowCasterVisible(drawable, lightViewBox, shadowCamera, lightView, lightViewFrustum, lightViewFrustumBox))
  2103. {
  2104. // Merge to shadow caster bounding box (only needed for focused spot lights) and add to the list
  2105. if (type == LIGHT_SPOT && light->GetShadowFocus().focus_)
  2106. {
  2107. lightProjBox = lightViewBox.Projected(lightProj);
  2108. query.shadowCasterBox_[splitIndex].Merge(lightProjBox);
  2109. }
  2110. query.shadowCasters_.Push(drawable);
  2111. }
  2112. }
  2113. query.shadowCasterEnd_[splitIndex] = query.shadowCasters_.Size();
  2114. }
  2115. bool View::IsShadowCasterVisible(Drawable* drawable, BoundingBox lightViewBox, Camera* shadowCamera, const Matrix3x4& lightView,
  2116. const Frustum& lightViewFrustum, const BoundingBox& lightViewFrustumBox)
  2117. {
  2118. if (shadowCamera->IsOrthographic())
  2119. {
  2120. // Extrude the light space bounding box up to the far edge of the frustum's light space bounding box
  2121. lightViewBox.max_.z_ = Max(lightViewBox.max_.z_, lightViewFrustumBox.max_.z_);
  2122. return lightViewFrustum.IsInsideFast(lightViewBox) != OUTSIDE;
  2123. }
  2124. else
  2125. {
  2126. // If light is not directional, can do a simple check: if object is visible, its shadow is too
  2127. if (drawable->IsInView(frame_))
  2128. return true;
  2129. // For perspective lights, extrusion direction depends on the position of the shadow caster
  2130. Vector3 center = lightViewBox.Center();
  2131. Ray extrusionRay(center, center);
  2132. float extrusionDistance = shadowCamera->GetFarClip();
  2133. float originalDistance = Clamp(center.Length(), M_EPSILON, extrusionDistance);
  2134. // Because of the perspective, the bounding box must also grow when it is extruded to the distance
  2135. float sizeFactor = extrusionDistance / originalDistance;
  2136. // Calculate the endpoint box and merge it to the original. Because it's axis-aligned, it will be larger
  2137. // than necessary, so the test will be conservative
  2138. Vector3 newCenter = extrusionDistance * extrusionRay.direction_;
  2139. Vector3 newHalfSize = lightViewBox.Size() * sizeFactor * 0.5f;
  2140. BoundingBox extrudedBox(newCenter - newHalfSize, newCenter + newHalfSize);
  2141. lightViewBox.Merge(extrudedBox);
  2142. return lightViewFrustum.IsInsideFast(lightViewBox) != OUTSIDE;
  2143. }
  2144. }
  2145. IntRect View::GetShadowMapViewport(Light* light, unsigned splitIndex, Texture2D* shadowMap)
  2146. {
  2147. unsigned width = (unsigned)shadowMap->GetWidth();
  2148. unsigned height = (unsigned)shadowMap->GetHeight();
  2149. switch (light->GetLightType())
  2150. {
  2151. case LIGHT_DIRECTIONAL:
  2152. {
  2153. int numSplits = light->GetNumShadowSplits();
  2154. if (numSplits == 1)
  2155. return IntRect(0, 0, width, height);
  2156. else if (numSplits == 2)
  2157. return IntRect(splitIndex * width / 2, 0, (splitIndex + 1) * width / 2, height);
  2158. else
  2159. return IntRect((splitIndex & 1) * width / 2, (splitIndex / 2) * height / 2, ((splitIndex & 1) + 1) * width / 2,
  2160. (splitIndex / 2 + 1) * height / 2);
  2161. }
  2162. case LIGHT_SPOT:
  2163. return IntRect(0, 0, width, height);
  2164. case LIGHT_POINT:
  2165. return IntRect((splitIndex & 1) * width / 2, (splitIndex / 2) * height / 3, ((splitIndex & 1) + 1) * width / 2,
  2166. (splitIndex / 2 + 1) * height / 3);
  2167. }
  2168. return IntRect();
  2169. }
  2170. void View::SetupShadowCameras(LightQueryResult& query)
  2171. {
  2172. Light* light = query.light_;
  2173. int splits = 0;
  2174. switch (light->GetLightType())
  2175. {
  2176. case LIGHT_DIRECTIONAL:
  2177. {
  2178. const CascadeParameters& cascade = light->GetShadowCascade();
  2179. float nearSplit = cullCamera_->GetNearClip();
  2180. float farSplit;
  2181. int numSplits = light->GetNumShadowSplits();
  2182. while (splits < numSplits)
  2183. {
  2184. // If split is completely beyond camera far clip, we are done
  2185. if (nearSplit > cullCamera_->GetFarClip())
  2186. break;
  2187. farSplit = Min(cullCamera_->GetFarClip(), cascade.splits_[splits]);
  2188. if (farSplit <= nearSplit)
  2189. break;
  2190. // Setup the shadow camera for the split
  2191. Camera* shadowCamera = renderer_->GetShadowCamera();
  2192. query.shadowCameras_[splits] = shadowCamera;
  2193. query.shadowNearSplits_[splits] = nearSplit;
  2194. query.shadowFarSplits_[splits] = farSplit;
  2195. SetupDirLightShadowCamera(shadowCamera, light, nearSplit, farSplit);
  2196. nearSplit = farSplit;
  2197. ++splits;
  2198. }
  2199. }
  2200. break;
  2201. case LIGHT_SPOT:
  2202. {
  2203. Camera* shadowCamera = renderer_->GetShadowCamera();
  2204. query.shadowCameras_[0] = shadowCamera;
  2205. Node* cameraNode = shadowCamera->GetNode();
  2206. Node* lightNode = light->GetNode();
  2207. cameraNode->SetTransform(lightNode->GetWorldPosition(), lightNode->GetWorldRotation());
  2208. shadowCamera->SetNearClip(light->GetShadowNearFarRatio() * light->GetRange());
  2209. shadowCamera->SetFarClip(light->GetRange());
  2210. shadowCamera->SetFov(light->GetFov());
  2211. shadowCamera->SetAspectRatio(light->GetAspectRatio());
  2212. splits = 1;
  2213. }
  2214. break;
  2215. case LIGHT_POINT:
  2216. {
  2217. for (unsigned i = 0; i < MAX_CUBEMAP_FACES; ++i)
  2218. {
  2219. Camera* shadowCamera = renderer_->GetShadowCamera();
  2220. query.shadowCameras_[i] = shadowCamera;
  2221. Node* cameraNode = shadowCamera->GetNode();
  2222. // When making a shadowed point light, align the splits along X, Y and Z axes regardless of light rotation
  2223. cameraNode->SetPosition(light->GetNode()->GetWorldPosition());
  2224. cameraNode->SetDirection(*directions[i]);
  2225. shadowCamera->SetNearClip(light->GetShadowNearFarRatio() * light->GetRange());
  2226. shadowCamera->SetFarClip(light->GetRange());
  2227. shadowCamera->SetFov(90.0f);
  2228. shadowCamera->SetAspectRatio(1.0f);
  2229. }
  2230. splits = MAX_CUBEMAP_FACES;
  2231. }
  2232. break;
  2233. }
  2234. query.numSplits_ = (unsigned)splits;
  2235. }
  2236. void View::SetupDirLightShadowCamera(Camera* shadowCamera, Light* light, float nearSplit, float farSplit)
  2237. {
  2238. Node* shadowCameraNode = shadowCamera->GetNode();
  2239. Node* lightNode = light->GetNode();
  2240. float extrusionDistance = Min(cullCamera_->GetFarClip(), light->GetShadowMaxExtrusion());
  2241. const FocusParameters& parameters = light->GetShadowFocus();
  2242. // Calculate initial position & rotation
  2243. Vector3 pos = cullCamera_->GetNode()->GetWorldPosition() - extrusionDistance * lightNode->GetWorldDirection();
  2244. shadowCameraNode->SetTransform(pos, lightNode->GetWorldRotation());
  2245. // Calculate main camera shadowed frustum in light's view space
  2246. farSplit = Min(farSplit, cullCamera_->GetFarClip());
  2247. // Use the scene Z bounds to limit frustum size if applicable
  2248. if (parameters.focus_)
  2249. {
  2250. nearSplit = Max(minZ_, nearSplit);
  2251. farSplit = Min(maxZ_, farSplit);
  2252. }
  2253. Frustum splitFrustum = cullCamera_->GetSplitFrustum(nearSplit, farSplit);
  2254. Polyhedron frustumVolume;
  2255. frustumVolume.Define(splitFrustum);
  2256. // If focusing enabled, clip the frustum volume by the combined bounding box of the lit geometries within the frustum
  2257. if (parameters.focus_)
  2258. {
  2259. BoundingBox litGeometriesBox;
  2260. unsigned lightMask = light->GetLightMask();
  2261. for (unsigned i = 0; i < geometries_.Size(); ++i)
  2262. {
  2263. Drawable* drawable = geometries_[i];
  2264. if (drawable->GetMinZ() <= farSplit && drawable->GetMaxZ() >= nearSplit &&
  2265. (GetLightMask(drawable) & lightMask))
  2266. litGeometriesBox.Merge(drawable->GetWorldBoundingBox());
  2267. }
  2268. if (litGeometriesBox.Defined())
  2269. {
  2270. frustumVolume.Clip(litGeometriesBox);
  2271. // If volume became empty, restore it to avoid zero size
  2272. if (frustumVolume.Empty())
  2273. frustumVolume.Define(splitFrustum);
  2274. }
  2275. }
  2276. // Transform frustum volume to light space
  2277. const Matrix3x4& lightView = shadowCamera->GetView();
  2278. frustumVolume.Transform(lightView);
  2279. // Fit the frustum volume inside a bounding box. If uniform size, use a sphere instead
  2280. BoundingBox shadowBox;
  2281. if (!parameters.nonUniform_)
  2282. shadowBox.Define(Sphere(frustumVolume));
  2283. else
  2284. shadowBox.Define(frustumVolume);
  2285. shadowCamera->SetOrthographic(true);
  2286. shadowCamera->SetAspectRatio(1.0f);
  2287. shadowCamera->SetNearClip(0.0f);
  2288. shadowCamera->SetFarClip(shadowBox.max_.z_);
  2289. // Center shadow camera on the bounding box. Can not snap to texels yet as the shadow map viewport is unknown
  2290. QuantizeDirLightShadowCamera(shadowCamera, light, IntRect(0, 0, 0, 0), shadowBox);
  2291. }
  2292. void View::FinalizeShadowCamera(Camera* shadowCamera, Light* light, const IntRect& shadowViewport,
  2293. const BoundingBox& shadowCasterBox)
  2294. {
  2295. const FocusParameters& parameters = light->GetShadowFocus();
  2296. float shadowMapWidth = (float)(shadowViewport.Width());
  2297. LightType type = light->GetLightType();
  2298. if (type == LIGHT_DIRECTIONAL)
  2299. {
  2300. BoundingBox shadowBox;
  2301. shadowBox.max_.y_ = shadowCamera->GetOrthoSize() * 0.5f;
  2302. shadowBox.max_.x_ = shadowCamera->GetAspectRatio() * shadowBox.max_.y_;
  2303. shadowBox.min_.y_ = -shadowBox.max_.y_;
  2304. shadowBox.min_.x_ = -shadowBox.max_.x_;
  2305. // Requantize and snap to shadow map texels
  2306. QuantizeDirLightShadowCamera(shadowCamera, light, shadowViewport, shadowBox);
  2307. }
  2308. if (type == LIGHT_SPOT && parameters.focus_)
  2309. {
  2310. float viewSizeX = Max(Abs(shadowCasterBox.min_.x_), Abs(shadowCasterBox.max_.x_));
  2311. float viewSizeY = Max(Abs(shadowCasterBox.min_.y_), Abs(shadowCasterBox.max_.y_));
  2312. float viewSize = Max(viewSizeX, viewSizeY);
  2313. // Scale the quantization parameters, because view size is in projection space (-1.0 - 1.0)
  2314. float invOrthoSize = 1.0f / shadowCamera->GetOrthoSize();
  2315. float quantize = parameters.quantize_ * invOrthoSize;
  2316. float minView = parameters.minView_ * invOrthoSize;
  2317. viewSize = Max(ceilf(viewSize / quantize) * quantize, minView);
  2318. if (viewSize < 1.0f)
  2319. shadowCamera->SetZoom(1.0f / viewSize);
  2320. }
  2321. // Perform a finalization step for all lights: ensure zoom out of 2 pixels to eliminate border filtering issues
  2322. // For point lights use 4 pixels, as they must not cross sides of the virtual cube map (maximum 3x3 PCF)
  2323. if (shadowCamera->GetZoom() >= 1.0f)
  2324. {
  2325. if (light->GetLightType() != LIGHT_POINT)
  2326. shadowCamera->SetZoom(shadowCamera->GetZoom() * ((shadowMapWidth - 2.0f) / shadowMapWidth));
  2327. else
  2328. {
  2329. #ifdef ATOMIC_OPENGL
  2330. shadowCamera->SetZoom(shadowCamera->GetZoom() * ((shadowMapWidth - 3.0f) / shadowMapWidth));
  2331. #else
  2332. shadowCamera->SetZoom(shadowCamera->GetZoom() * ((shadowMapWidth - 4.0f) / shadowMapWidth));
  2333. #endif
  2334. }
  2335. }
  2336. }
  2337. void View::QuantizeDirLightShadowCamera(Camera* shadowCamera, Light* light, const IntRect& shadowViewport,
  2338. const BoundingBox& viewBox)
  2339. {
  2340. Node* shadowCameraNode = shadowCamera->GetNode();
  2341. const FocusParameters& parameters = light->GetShadowFocus();
  2342. float shadowMapWidth = (float)(shadowViewport.Width());
  2343. float minX = viewBox.min_.x_;
  2344. float minY = viewBox.min_.y_;
  2345. float maxX = viewBox.max_.x_;
  2346. float maxY = viewBox.max_.y_;
  2347. Vector2 center((minX + maxX) * 0.5f, (minY + maxY) * 0.5f);
  2348. Vector2 viewSize(maxX - minX, maxY - minY);
  2349. // Quantize size to reduce swimming
  2350. // Note: if size is uniform and there is no focusing, quantization is unnecessary
  2351. if (parameters.nonUniform_)
  2352. {
  2353. viewSize.x_ = ceilf(sqrtf(viewSize.x_ / parameters.quantize_));
  2354. viewSize.y_ = ceilf(sqrtf(viewSize.y_ / parameters.quantize_));
  2355. viewSize.x_ = Max(viewSize.x_ * viewSize.x_ * parameters.quantize_, parameters.minView_);
  2356. viewSize.y_ = Max(viewSize.y_ * viewSize.y_ * parameters.quantize_, parameters.minView_);
  2357. }
  2358. else if (parameters.focus_)
  2359. {
  2360. viewSize.x_ = Max(viewSize.x_, viewSize.y_);
  2361. viewSize.x_ = ceilf(sqrtf(viewSize.x_ / parameters.quantize_));
  2362. viewSize.x_ = Max(viewSize.x_ * viewSize.x_ * parameters.quantize_, parameters.minView_);
  2363. viewSize.y_ = viewSize.x_;
  2364. }
  2365. shadowCamera->SetOrthoSize(viewSize);
  2366. // Center shadow camera to the view space bounding box
  2367. Quaternion rot(shadowCameraNode->GetWorldRotation());
  2368. Vector3 adjust(center.x_, center.y_, 0.0f);
  2369. shadowCameraNode->Translate(rot * adjust, TS_WORLD);
  2370. // If the shadow map viewport is known, snap to whole texels
  2371. if (shadowMapWidth > 0.0f)
  2372. {
  2373. Vector3 viewPos(rot.Inverse() * shadowCameraNode->GetWorldPosition());
  2374. // Take into account that shadow map border will not be used
  2375. float invActualSize = 1.0f / (shadowMapWidth - 2.0f);
  2376. Vector2 texelSize(viewSize.x_ * invActualSize, viewSize.y_ * invActualSize);
  2377. Vector3 snap(-fmodf(viewPos.x_, texelSize.x_), -fmodf(viewPos.y_, texelSize.y_), 0.0f);
  2378. shadowCameraNode->Translate(rot * snap, TS_WORLD);
  2379. }
  2380. }
  2381. void View::FindZone(Drawable* drawable)
  2382. {
  2383. Vector3 center = drawable->GetWorldBoundingBox().Center();
  2384. int bestPriority = M_MIN_INT;
  2385. Zone* newZone = 0;
  2386. // If bounding box center is in view, the zone assignment is conclusive also for next frames. Otherwise it is temporary
  2387. // (possibly incorrect) and must be re-evaluated on the next frame
  2388. bool temporary = !cullCamera_->GetFrustum().IsInside(center);
  2389. // First check if the current zone remains a conclusive result
  2390. Zone* lastZone = drawable->GetZone();
  2391. if (lastZone && (lastZone->GetViewMask() & cullCamera_->GetViewMask()) && lastZone->GetPriority() >= highestZonePriority_ &&
  2392. (drawable->GetZoneMask() & lastZone->GetZoneMask()) && lastZone->IsInside(center))
  2393. newZone = lastZone;
  2394. else
  2395. {
  2396. for (PODVector<Zone*>::Iterator i = zones_.Begin(); i != zones_.End(); ++i)
  2397. {
  2398. Zone* zone = *i;
  2399. int priority = zone->GetPriority();
  2400. if (priority > bestPriority && (drawable->GetZoneMask() & zone->GetZoneMask()) && zone->IsInside(center))
  2401. {
  2402. newZone = zone;
  2403. bestPriority = priority;
  2404. }
  2405. }
  2406. }
  2407. drawable->SetZone(newZone, temporary);
  2408. }
  2409. Technique* View::GetTechnique(Drawable* drawable, Material* material)
  2410. {
  2411. if (!material)
  2412. return renderer_->GetDefaultMaterial()->GetTechniques()[0].technique_;
  2413. const Vector<TechniqueEntry>& techniques = material->GetTechniques();
  2414. // If only one technique, no choice
  2415. if (techniques.Size() == 1)
  2416. return techniques[0].technique_;
  2417. else
  2418. {
  2419. float lodDistance = drawable->GetLodDistance();
  2420. // Check for suitable technique. Techniques should be ordered like this:
  2421. // Most distant & highest quality
  2422. // Most distant & lowest quality
  2423. // Second most distant & highest quality
  2424. // ...
  2425. for (unsigned i = 0; i < techniques.Size(); ++i)
  2426. {
  2427. const TechniqueEntry& entry = techniques[i];
  2428. Technique* tech = entry.technique_;
  2429. if (!tech || (!tech->IsSupported()) || materialQuality_ < entry.qualityLevel_)
  2430. continue;
  2431. if (lodDistance >= entry.lodDistance_)
  2432. return tech;
  2433. }
  2434. // If no suitable technique found, fallback to the last
  2435. return techniques.Size() ? techniques.Back().technique_ : (Technique*)0;
  2436. }
  2437. }
  2438. void View::CheckMaterialForAuxView(Material* material)
  2439. {
  2440. const HashMap<TextureUnit, SharedPtr<Texture> >& textures = material->GetTextures();
  2441. for (HashMap<TextureUnit, SharedPtr<Texture> >::ConstIterator i = textures.Begin(); i != textures.End(); ++i)
  2442. {
  2443. Texture* texture = i->second_.Get();
  2444. if (texture && texture->GetUsage() == TEXTURE_RENDERTARGET)
  2445. {
  2446. // Have to check cube & 2D textures separately
  2447. if (texture->GetType() == Texture2D::GetTypeStatic())
  2448. {
  2449. Texture2D* tex2D = static_cast<Texture2D*>(texture);
  2450. RenderSurface* target = tex2D->GetRenderSurface();
  2451. if (target && target->GetUpdateMode() == SURFACE_UPDATEVISIBLE)
  2452. target->QueueUpdate();
  2453. }
  2454. else if (texture->GetType() == TextureCube::GetTypeStatic())
  2455. {
  2456. TextureCube* texCube = static_cast<TextureCube*>(texture);
  2457. for (unsigned j = 0; j < MAX_CUBEMAP_FACES; ++j)
  2458. {
  2459. RenderSurface* target = texCube->GetRenderSurface((CubeMapFace)j);
  2460. if (target && target->GetUpdateMode() == SURFACE_UPDATEVISIBLE)
  2461. target->QueueUpdate();
  2462. }
  2463. }
  2464. }
  2465. }
  2466. // Flag as processed so we can early-out next time we come across this material on the same frame
  2467. material->MarkForAuxView(frame_.frameNumber_);
  2468. }
  2469. void View::SetQueueShaderDefines(BatchQueue& queue, const RenderPathCommand& command)
  2470. {
  2471. String vsDefines = command.vertexShaderDefines_.Trimmed();
  2472. String psDefines = command.pixelShaderDefines_.Trimmed();
  2473. if (vsDefines.Length() || psDefines.Length())
  2474. {
  2475. queue.hasExtraDefines_ = true;
  2476. queue.vsExtraDefines_ = vsDefines;
  2477. queue.psExtraDefines_ = psDefines;
  2478. queue.vsExtraDefinesHash_ = StringHash(vsDefines);
  2479. queue.psExtraDefinesHash_ = StringHash(psDefines);
  2480. }
  2481. else
  2482. queue.hasExtraDefines_ = false;
  2483. }
  2484. void View::AddBatchToQueue(BatchQueue& queue, Batch& batch, Technique* tech, bool allowInstancing, bool allowShadows)
  2485. {
  2486. if (!batch.material_)
  2487. batch.material_ = renderer_->GetDefaultMaterial();
  2488. // Convert to instanced if possible
  2489. if (allowInstancing && batch.geometryType_ == GEOM_STATIC && batch.geometry_->GetIndexBuffer())
  2490. batch.geometryType_ = GEOM_INSTANCED;
  2491. if (batch.geometryType_ == GEOM_INSTANCED)
  2492. {
  2493. BatchGroupKey key(batch);
  2494. HashMap<BatchGroupKey, BatchGroup>::Iterator i = queue.batchGroups_.Find(key);
  2495. if (i == queue.batchGroups_.End())
  2496. {
  2497. // Create a new group based on the batch
  2498. // In case the group remains below the instancing limit, do not enable instancing shaders yet
  2499. BatchGroup newGroup(batch);
  2500. newGroup.geometryType_ = GEOM_STATIC;
  2501. renderer_->SetBatchShaders(newGroup, tech, allowShadows, queue);
  2502. newGroup.CalculateSortKey();
  2503. i = queue.batchGroups_.Insert(MakePair(key, newGroup));
  2504. }
  2505. int oldSize = i->second_.instances_.Size();
  2506. i->second_.AddTransforms(batch);
  2507. // Convert to using instancing shaders when the instancing limit is reached
  2508. if (oldSize < minInstances_ && (int)i->second_.instances_.Size() >= minInstances_)
  2509. {
  2510. i->second_.geometryType_ = GEOM_INSTANCED;
  2511. renderer_->SetBatchShaders(i->second_, tech, allowShadows, queue);
  2512. i->second_.CalculateSortKey();
  2513. }
  2514. }
  2515. else
  2516. {
  2517. renderer_->SetBatchShaders(batch, tech, allowShadows, queue);
  2518. batch.CalculateSortKey();
  2519. // If batch is static with multiple world transforms and cannot instance, we must push copies of the batch individually
  2520. if (batch.geometryType_ == GEOM_STATIC && batch.numWorldTransforms_ > 1)
  2521. {
  2522. unsigned numTransforms = batch.numWorldTransforms_;
  2523. batch.numWorldTransforms_ = 1;
  2524. for (unsigned i = 0; i < numTransforms; ++i)
  2525. {
  2526. // Move the transform pointer to generate copies of the batch which only refer to 1 world transform
  2527. queue.batches_.Push(batch);
  2528. ++batch.worldTransform_;
  2529. }
  2530. }
  2531. else
  2532. queue.batches_.Push(batch);
  2533. }
  2534. }
  2535. void View::PrepareInstancingBuffer()
  2536. {
  2537. // Prepare instancing buffer from the source view
  2538. /// \todo If rendering the same view several times back-to-back, would not need to refill the buffer
  2539. if (sourceView_)
  2540. {
  2541. sourceView_->PrepareInstancingBuffer();
  2542. return;
  2543. }
  2544. ATOMIC_PROFILE(PrepareInstancingBuffer);
  2545. unsigned totalInstances = 0;
  2546. for (HashMap<unsigned, BatchQueue>::Iterator i = batchQueues_.Begin(); i != batchQueues_.End(); ++i)
  2547. totalInstances += i->second_.GetNumInstances();
  2548. for (Vector<LightBatchQueue>::Iterator i = lightQueues_.Begin(); i != lightQueues_.End(); ++i)
  2549. {
  2550. for (unsigned j = 0; j < i->shadowSplits_.Size(); ++j)
  2551. totalInstances += i->shadowSplits_[j].shadowBatches_.GetNumInstances();
  2552. totalInstances += i->litBaseBatches_.GetNumInstances();
  2553. totalInstances += i->litBatches_.GetNumInstances();
  2554. }
  2555. if (!totalInstances || !renderer_->ResizeInstancingBuffer(totalInstances))
  2556. return;
  2557. VertexBuffer* instancingBuffer = renderer_->GetInstancingBuffer();
  2558. unsigned freeIndex = 0;
  2559. void* dest = instancingBuffer->Lock(0, totalInstances, true);
  2560. if (!dest)
  2561. return;
  2562. const unsigned stride = instancingBuffer->GetVertexSize();
  2563. for (HashMap<unsigned, BatchQueue>::Iterator i = batchQueues_.Begin(); i != batchQueues_.End(); ++i)
  2564. i->second_.SetInstancingData(dest, stride, freeIndex);
  2565. for (Vector<LightBatchQueue>::Iterator i = lightQueues_.Begin(); i != lightQueues_.End(); ++i)
  2566. {
  2567. for (unsigned j = 0; j < i->shadowSplits_.Size(); ++j)
  2568. i->shadowSplits_[j].shadowBatches_.SetInstancingData(dest, stride, freeIndex);
  2569. i->litBaseBatches_.SetInstancingData(dest, stride, freeIndex);
  2570. i->litBatches_.SetInstancingData(dest, stride, freeIndex);
  2571. }
  2572. instancingBuffer->Unlock();
  2573. }
  2574. void View::SetupLightVolumeBatch(Batch& batch)
  2575. {
  2576. Light* light = batch.lightQueue_->light_;
  2577. LightType type = light->GetLightType();
  2578. Vector3 cameraPos = camera_->GetNode()->GetWorldPosition();
  2579. float lightDist;
  2580. graphics_->SetBlendMode(light->IsNegative() ? BLEND_SUBTRACT : BLEND_ADD);
  2581. graphics_->SetDepthBias(0.0f, 0.0f);
  2582. graphics_->SetDepthWrite(false);
  2583. graphics_->SetFillMode(FILL_SOLID);
  2584. graphics_->SetLineAntiAlias(false);
  2585. graphics_->SetClipPlane(false);
  2586. if (type != LIGHT_DIRECTIONAL)
  2587. {
  2588. if (type == LIGHT_POINT)
  2589. lightDist = Sphere(light->GetNode()->GetWorldPosition(), light->GetRange() * 1.25f).Distance(cameraPos);
  2590. else
  2591. lightDist = light->GetFrustum().Distance(cameraPos);
  2592. // Draw front faces if not inside light volume
  2593. if (lightDist < camera_->GetNearClip() * 2.0f)
  2594. {
  2595. renderer_->SetCullMode(CULL_CW, camera_);
  2596. graphics_->SetDepthTest(CMP_GREATER);
  2597. }
  2598. else
  2599. {
  2600. renderer_->SetCullMode(CULL_CCW, camera_);
  2601. graphics_->SetDepthTest(CMP_LESSEQUAL);
  2602. }
  2603. }
  2604. else
  2605. {
  2606. // In case the same camera is used for multiple views with differing aspect ratios (not recommended)
  2607. // refresh the directional light's model transform before rendering
  2608. light->GetVolumeTransform(camera_);
  2609. graphics_->SetCullMode(CULL_NONE);
  2610. graphics_->SetDepthTest(CMP_ALWAYS);
  2611. }
  2612. graphics_->SetScissorTest(false);
  2613. if (!noStencil_)
  2614. graphics_->SetStencilTest(true, CMP_NOTEQUAL, OP_KEEP, OP_KEEP, OP_KEEP, 0, light->GetLightMask());
  2615. else
  2616. graphics_->SetStencilTest(false);
  2617. }
  2618. bool View::NeedRenderShadowMap(const LightBatchQueue& queue)
  2619. {
  2620. // Must have a shadow map, and either forward or deferred lit batches
  2621. return queue.shadowMap_ && (!queue.litBatches_.IsEmpty() || !queue.litBaseBatches_.IsEmpty() ||
  2622. !queue.volumeBatches_.Empty());
  2623. }
  2624. void View::RenderShadowMap(const LightBatchQueue& queue)
  2625. {
  2626. ATOMIC_PROFILE(RenderShadowMap);
  2627. Texture2D* shadowMap = queue.shadowMap_;
  2628. graphics_->SetTexture(TU_SHADOWMAP, 0);
  2629. graphics_->SetFillMode(FILL_SOLID);
  2630. graphics_->SetClipPlane(false);
  2631. graphics_->SetStencilTest(false);
  2632. // Set shadow depth bias
  2633. BiasParameters parameters = queue.light_->GetShadowBias();
  2634. // The shadow map is a depth stencil texture
  2635. if (shadowMap->GetUsage() == TEXTURE_DEPTHSTENCIL)
  2636. {
  2637. graphics_->SetColorWrite(false);
  2638. graphics_->SetDepthStencil(shadowMap);
  2639. graphics_->SetRenderTarget(0, shadowMap->GetRenderSurface()->GetLinkedRenderTarget());
  2640. // Disable other render targets
  2641. for (unsigned i = 1; i < MAX_RENDERTARGETS; ++i)
  2642. graphics_->SetRenderTarget(i, (RenderSurface*) 0);
  2643. graphics_->SetViewport(IntRect(0, 0, shadowMap->GetWidth(), shadowMap->GetHeight()));
  2644. graphics_->Clear(CLEAR_DEPTH);
  2645. }
  2646. else // if the shadow map is a color rendertarget
  2647. {
  2648. graphics_->SetColorWrite(true);
  2649. graphics_->SetRenderTarget(0, shadowMap);
  2650. // Disable other render targets
  2651. for (unsigned i = 1; i < MAX_RENDERTARGETS; ++i)
  2652. graphics_->SetRenderTarget(i, (RenderSurface*) 0);
  2653. graphics_->SetDepthStencil(renderer_->GetDepthStencil(shadowMap->GetWidth(), shadowMap->GetHeight(),
  2654. shadowMap->GetMultiSample(), shadowMap->GetAutoResolve()));
  2655. graphics_->SetViewport(IntRect(0, 0, shadowMap->GetWidth(), shadowMap->GetHeight()));
  2656. graphics_->Clear(CLEAR_DEPTH | CLEAR_COLOR, Color::WHITE);
  2657. parameters = BiasParameters(0.0f, 0.0f);
  2658. }
  2659. // Render each of the splits
  2660. for (unsigned i = 0; i < queue.shadowSplits_.Size(); ++i)
  2661. {
  2662. const ShadowBatchQueue& shadowQueue = queue.shadowSplits_[i];
  2663. float multiplier = 1.0f;
  2664. // For directional light cascade splits, adjust depth bias according to the far clip ratio of the splits
  2665. if (i > 0 && queue.light_->GetLightType() == LIGHT_DIRECTIONAL)
  2666. {
  2667. multiplier =
  2668. Max(shadowQueue.shadowCamera_->GetFarClip() / queue.shadowSplits_[0].shadowCamera_->GetFarClip(), 1.0f);
  2669. multiplier = 1.0f + (multiplier - 1.0f) * queue.light_->GetShadowCascade().biasAutoAdjust_;
  2670. // Quantize multiplier to prevent creation of too many rasterizer states on D3D11
  2671. multiplier = (int)(multiplier * 10.0f) / 10.0f;
  2672. }
  2673. // Perform further modification of depth bias on OpenGL ES, as shadow calculations' precision is limited
  2674. float addition = 0.0f;
  2675. #ifdef GL_ES_VERSION_2_0
  2676. multiplier *= renderer_->GetMobileShadowBiasMul();
  2677. addition = renderer_->GetMobileShadowBiasAdd();
  2678. #endif
  2679. graphics_->SetDepthBias(multiplier * parameters.constantBias_ + addition, multiplier * parameters.slopeScaledBias_);
  2680. if (!shadowQueue.shadowBatches_.IsEmpty())
  2681. {
  2682. graphics_->SetViewport(shadowQueue.shadowViewport_);
  2683. shadowQueue.shadowBatches_.Draw(this, shadowQueue.shadowCamera_, false, false, true);
  2684. // ATOMIC BEGIN
  2685. graphics_->SetNumPasses(graphics_->GetNumPasses() + 1);
  2686. // ATOMIC END
  2687. }
  2688. }
  2689. // Scale filter blur amount to shadow map viewport size so that different shadow map resolutions don't behave differently
  2690. float blurScale = queue.shadowSplits_[0].shadowViewport_.Width() / 1024.0f;
  2691. renderer_->ApplyShadowMapFilter(this, shadowMap, blurScale);
  2692. // reset some parameters
  2693. graphics_->SetColorWrite(true);
  2694. graphics_->SetDepthBias(0.0f, 0.0f);
  2695. }
  2696. RenderSurface* View::GetDepthStencil(RenderSurface* renderTarget)
  2697. {
  2698. // If using the backbuffer, return the backbuffer depth-stencil
  2699. if (!renderTarget)
  2700. return 0;
  2701. // Then check for linked depth-stencil
  2702. RenderSurface* depthStencil = renderTarget->GetLinkedDepthStencil();
  2703. // Finally get one from Renderer
  2704. if (!depthStencil)
  2705. depthStencil = renderer_->GetDepthStencil(renderTarget->GetWidth(), renderTarget->GetHeight(),
  2706. renderTarget->GetMultiSample(), renderTarget->GetAutoResolve());
  2707. return depthStencil;
  2708. }
  2709. RenderSurface* View::GetRenderSurfaceFromTexture(Texture* texture, CubeMapFace face)
  2710. {
  2711. if (!texture)
  2712. return 0;
  2713. if (texture->GetType() == Texture2D::GetTypeStatic())
  2714. return static_cast<Texture2D*>(texture)->GetRenderSurface();
  2715. else if (texture->GetType() == TextureCube::GetTypeStatic())
  2716. return static_cast<TextureCube*>(texture)->GetRenderSurface(face);
  2717. else
  2718. return 0;
  2719. }
  2720. void View::SendViewEvent(StringHash eventType)
  2721. {
  2722. using namespace BeginViewRender;
  2723. VariantMap& eventData = GetEventDataMap();
  2724. eventData[P_VIEW] = this;
  2725. eventData[P_SURFACE] = renderTarget_;
  2726. eventData[P_TEXTURE] = (renderTarget_ ? renderTarget_->GetParentTexture() : 0);
  2727. eventData[P_SCENE] = scene_;
  2728. eventData[P_CAMERA] = cullCamera_;
  2729. renderer_->SendEvent(eventType, eventData);
  2730. }
  2731. Texture* View::FindNamedTexture(const String& name, bool isRenderTarget, bool isVolumeMap)
  2732. {
  2733. // Check rendertargets first
  2734. StringHash nameHash(name);
  2735. if (renderTargets_.Contains(nameHash))
  2736. return renderTargets_[nameHash];
  2737. // Then the resource system
  2738. ResourceCache* cache = GetSubsystem<ResourceCache>();
  2739. // Check existing resources first. This does not load resources, so we can afford to guess the resource type wrong
  2740. // without having to rely on the file extension
  2741. Texture* texture = cache->GetExistingResource<Texture2D>(name);
  2742. if (!texture)
  2743. texture = cache->GetExistingResource<TextureCube>(name);
  2744. if (!texture)
  2745. texture = cache->GetExistingResource<Texture3D>(name);
  2746. if (!texture)
  2747. texture = cache->GetExistingResource<Texture2DArray>(name);
  2748. if (texture)
  2749. return texture;
  2750. // If not a rendertarget (which will never be loaded from a file), finally also try to load the texture
  2751. // This will log an error if not found; the texture binding will be cleared in that case to not constantly spam the log
  2752. if (!isRenderTarget)
  2753. {
  2754. if (GetExtension(name) == ".xml")
  2755. {
  2756. // Assume 3D textures are only bound to the volume map unit, otherwise it's a cube texture
  2757. #ifdef DESKTOP_GRAPHICS
  2758. StringHash type = ParseTextureTypeXml(cache, name);
  2759. if (!type && isVolumeMap)
  2760. type = Texture3D::GetTypeStatic();
  2761. if (type == Texture3D::GetTypeStatic())
  2762. return cache->GetResource<Texture3D>(name);
  2763. else if (type == Texture2DArray::GetTypeStatic())
  2764. return cache->GetResource<Texture2DArray>(name);
  2765. else
  2766. #endif
  2767. return cache->GetResource<TextureCube>(name);
  2768. }
  2769. else
  2770. return cache->GetResource<Texture2D>(name);
  2771. }
  2772. return 0;
  2773. }
  2774. }