| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469 |
- //
- // Copyright (c) 2008-2020 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include "../Precompiled.h"
- #include "../Core/Context.h"
- #include "../Core/Profiler.h"
- #include "../Graphics/DrawableEvents.h"
- #include "../Graphics/Geometry.h"
- #include "../Graphics/IndexBuffer.h"
- #include "../Graphics/Material.h"
- #include "../Graphics/Octree.h"
- #include "../Graphics/Terrain.h"
- #include "../Graphics/TerrainPatch.h"
- #include "../Graphics/VertexBuffer.h"
- #include "../IO/Log.h"
- #include "../Resource/Image.h"
- #include "../Resource/ResourceCache.h"
- #include "../Resource/ResourceEvents.h"
- #include "../Scene/Node.h"
- #include "../Scene/Scene.h"
- #include "../DebugNew.h"
- namespace Urho3D
- {
- extern const char* GEOMETRY_CATEGORY;
- static const Vector3 DEFAULT_SPACING(1.0f, 0.25f, 1.0f);
- static const unsigned MIN_LOD_LEVELS = 1;
- static const unsigned MAX_LOD_LEVELS = 4;
- static const int DEFAULT_PATCH_SIZE = 32;
- static const int MIN_PATCH_SIZE = 4;
- static const int MAX_PATCH_SIZE = 128;
- static const unsigned STITCH_NORTH = 1;
- static const unsigned STITCH_SOUTH = 2;
- static const unsigned STITCH_WEST = 4;
- static const unsigned STITCH_EAST = 8;
- inline void GrowUpdateRegion(IntRect& updateRegion, int x, int y)
- {
- if (updateRegion.left_ < 0)
- {
- updateRegion.left_ = updateRegion.right_ = x;
- updateRegion.top_ = updateRegion.bottom_ = y;
- }
- else
- {
- if (x < updateRegion.left_)
- updateRegion.left_ = x;
- if (x > updateRegion.right_)
- updateRegion.right_ = x;
- if (y < updateRegion.top_)
- updateRegion.top_ = y;
- if (y > updateRegion.bottom_)
- updateRegion.bottom_ = y;
- }
- }
- Terrain::Terrain(Context* context) :
- Component(context),
- indexBuffer_(new IndexBuffer(context)),
- spacing_(DEFAULT_SPACING),
- lastSpacing_(Vector3::ZERO),
- patchWorldOrigin_(Vector2::ZERO),
- patchWorldSize_(Vector2::ZERO),
- numVertices_(IntVector2::ZERO),
- lastNumVertices_(IntVector2::ZERO),
- numPatches_(IntVector2::ZERO),
- patchSize_(DEFAULT_PATCH_SIZE),
- lastPatchSize_(0),
- numLodLevels_(1),
- maxLodLevels_(MAX_LOD_LEVELS),
- occlusionLodLevel_(M_MAX_UNSIGNED),
- smoothing_(false),
- visible_(true),
- castShadows_(false),
- occluder_(false),
- occludee_(true),
- viewMask_(DEFAULT_VIEWMASK),
- lightMask_(DEFAULT_LIGHTMASK),
- shadowMask_(DEFAULT_SHADOWMASK),
- zoneMask_(DEFAULT_ZONEMASK),
- drawDistance_(0.0f),
- shadowDistance_(0.0f),
- lodBias_(1.0f),
- maxLights_(0),
- northID_(0),
- southID_(0),
- westID_(0),
- eastID_(0),
- recreateTerrain_(false),
- neighborsDirty_(false)
- {
- indexBuffer_->SetShadowed(true);
- }
- Terrain::~Terrain() = default;
- void Terrain::RegisterObject(Context* context)
- {
- context->RegisterFactory<Terrain>(GEOMETRY_CATEGORY);
- URHO3D_ACCESSOR_ATTRIBUTE("Is Enabled", IsEnabled, SetEnabled, bool, true, AM_DEFAULT);
- URHO3D_MIXED_ACCESSOR_ATTRIBUTE("Height Map", GetHeightMapAttr, SetHeightMapAttr, ResourceRef, ResourceRef(Image::GetTypeStatic()),
- AM_DEFAULT);
- URHO3D_MIXED_ACCESSOR_ATTRIBUTE("Material", GetMaterialAttr, SetMaterialAttr, ResourceRef, ResourceRef(Material::GetTypeStatic()),
- AM_DEFAULT);
- URHO3D_ATTRIBUTE_EX("North Neighbor NodeID", unsigned, northID_, MarkNeighborsDirty, 0, AM_DEFAULT | AM_NODEID);
- URHO3D_ATTRIBUTE_EX("South Neighbor NodeID", unsigned, southID_, MarkNeighborsDirty, 0, AM_DEFAULT | AM_NODEID);
- URHO3D_ATTRIBUTE_EX("West Neighbor NodeID", unsigned, westID_, MarkNeighborsDirty, 0, AM_DEFAULT | AM_NODEID);
- URHO3D_ATTRIBUTE_EX("East Neighbor NodeID", unsigned, eastID_, MarkNeighborsDirty, 0, AM_DEFAULT | AM_NODEID);
- URHO3D_ATTRIBUTE_EX("Vertex Spacing", Vector3, spacing_, MarkTerrainDirty, DEFAULT_SPACING, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Patch Size", GetPatchSize, SetPatchSizeAttr, int, DEFAULT_PATCH_SIZE, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Max LOD Levels", GetMaxLodLevels, SetMaxLodLevelsAttr, unsigned, MAX_LOD_LEVELS, AM_DEFAULT);
- URHO3D_ATTRIBUTE_EX("Smooth Height Map", bool, smoothing_, MarkTerrainDirty, false, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Is Occluder", IsOccluder, SetOccluder, bool, false, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Can Be Occluded", IsOccludee, SetOccludee, bool, true, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Cast Shadows", GetCastShadows, SetCastShadows, bool, false, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Draw Distance", GetDrawDistance, SetDrawDistance, float, 0.0f, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Shadow Distance", GetShadowDistance, SetShadowDistance, float, 0.0f, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("LOD Bias", GetLodBias, SetLodBias, float, 1.0f, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Max Lights", GetMaxLights, SetMaxLights, unsigned, 0, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("View Mask", GetViewMask, SetViewMask, unsigned, DEFAULT_VIEWMASK, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Light Mask", GetLightMask, SetLightMask, unsigned, DEFAULT_LIGHTMASK, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Shadow Mask", GetShadowMask, SetShadowMask, unsigned, DEFAULT_SHADOWMASK, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Zone Mask", GetZoneMask, SetZoneMask, unsigned, DEFAULT_ZONEMASK, AM_DEFAULT);
- URHO3D_ACCESSOR_ATTRIBUTE("Occlusion LOD level", GetOcclusionLodLevel, SetOcclusionLodLevelAttr, unsigned, M_MAX_UNSIGNED, AM_DEFAULT);
- }
- void Terrain::ApplyAttributes()
- {
- if (recreateTerrain_)
- CreateGeometry();
- if (neighborsDirty_)
- {
- Scene* scene = GetScene();
- Node* north = scene ? scene->GetNode(northID_) : nullptr;
- Node* south = scene ? scene->GetNode(southID_) : nullptr;
- Node* west = scene ? scene->GetNode(westID_) : nullptr;
- Node* east = scene ? scene->GetNode(eastID_) : nullptr;
- Terrain* northTerrain = north ? north->GetComponent<Terrain>() : nullptr;
- Terrain* southTerrain = south ? south->GetComponent<Terrain>() : nullptr;
- Terrain* westTerrain = west ? west->GetComponent<Terrain>() : nullptr;
- Terrain* eastTerrain = east ? east->GetComponent<Terrain>() : nullptr;
- SetNeighbors(northTerrain, southTerrain, westTerrain, eastTerrain);
- neighborsDirty_ = false;
- }
- }
- void Terrain::OnSetEnabled()
- {
- bool enabled = IsEnabledEffective();
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetEnabled(enabled);
- }
- }
- void Terrain::SetPatchSize(int size)
- {
- if (size < MIN_PATCH_SIZE || size > MAX_PATCH_SIZE || !IsPowerOfTwo((unsigned)size))
- return;
- if (size != patchSize_)
- {
- patchSize_ = size;
- CreateGeometry();
- MarkNetworkUpdate();
- }
- }
- void Terrain::SetSpacing(const Vector3& spacing)
- {
- if (spacing != spacing_)
- {
- spacing_ = spacing;
- CreateGeometry();
- MarkNetworkUpdate();
- }
- }
- void Terrain::SetMaxLodLevels(unsigned levels)
- {
- levels = Clamp(levels, MIN_LOD_LEVELS, MAX_LOD_LEVELS);
- if (levels != maxLodLevels_)
- {
- maxLodLevels_ = levels;
- lastPatchSize_ = 0; // Force full recreate
- CreateGeometry();
- MarkNetworkUpdate();
- }
- }
- void Terrain::SetOcclusionLodLevel(unsigned level)
- {
- if (level != occlusionLodLevel_)
- {
- occlusionLodLevel_ = level;
- lastPatchSize_ = 0; // Force full recreate
- CreateGeometry();
- MarkNetworkUpdate();
- }
- }
- void Terrain::SetSmoothing(bool enable)
- {
- if (enable != smoothing_)
- {
- smoothing_ = enable;
- CreateGeometry();
- MarkNetworkUpdate();
- }
- }
- bool Terrain::SetHeightMap(Image* image)
- {
- bool success = SetHeightMapInternal(image, true);
- MarkNetworkUpdate();
- return success;
- }
- void Terrain::SetMaterial(Material* material)
- {
- material_ = material;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetMaterial(material);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetNorthNeighbor(Terrain* north)
- {
- if (north == north_)
- return;
- if (north_ && north_->GetNode())
- UnsubscribeFromEvent(north_->GetNode(), E_TERRAINCREATED);
- north_ = north;
- if (north_ && north_->GetNode())
- {
- northID_ = north_->GetNode()->GetID();
- SubscribeToEvent(north_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- UpdateEdgePatchNeighbors();
- MarkNetworkUpdate();
- }
- void Terrain::SetSouthNeighbor(Terrain* south)
- {
- if (south == south_)
- return;
- if (south_ && south_->GetNode())
- UnsubscribeFromEvent(south_->GetNode(), E_TERRAINCREATED);
- south_ = south;
- if (south_ && south_->GetNode())
- {
- southID_ = south_->GetNode()->GetID();
- SubscribeToEvent(south_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- UpdateEdgePatchNeighbors();
- MarkNetworkUpdate();
- }
- void Terrain::SetWestNeighbor(Terrain* west)
- {
- if (west == west_)
- return;
- if (west_ && west_->GetNode())
- UnsubscribeFromEvent(west_->GetNode(), E_TERRAINCREATED);
- west_ = west;
- if (west_ && west_->GetNode())
- {
- westID_ = west_->GetNode()->GetID();
- SubscribeToEvent(west_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- UpdateEdgePatchNeighbors();
- MarkNetworkUpdate();
- }
- void Terrain::SetEastNeighbor(Terrain* east)
- {
- if (east == east_)
- return;
- if (east_ && east_->GetNode())
- UnsubscribeFromEvent(east_->GetNode(), E_TERRAINCREATED);
- east_ = east;
- if (east_ && east_->GetNode())
- {
- eastID_ = east_->GetNode()->GetID();
- SubscribeToEvent(east_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- UpdateEdgePatchNeighbors();
- MarkNetworkUpdate();
- }
- void Terrain::SetNeighbors(Terrain* north, Terrain* south, Terrain* west, Terrain* east)
- {
- if (north_ && north_->GetNode())
- UnsubscribeFromEvent(north_->GetNode(), E_TERRAINCREATED);
- if (south_ && south_->GetNode())
- UnsubscribeFromEvent(south_->GetNode(), E_TERRAINCREATED);
- if (west_ && west_->GetNode())
- UnsubscribeFromEvent(west_->GetNode(), E_TERRAINCREATED);
- if (east_ && east_->GetNode())
- UnsubscribeFromEvent(east_->GetNode(), E_TERRAINCREATED);
- north_ = north;
- if (north_ && north_->GetNode())
- {
- northID_ = north_->GetNode()->GetID();
- SubscribeToEvent(north_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- south_ = south;
- if (south_ && south_->GetNode())
- {
- southID_ = south_->GetNode()->GetID();
- SubscribeToEvent(south_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- west_ = west;
- if (west_ && west_->GetNode())
- {
- westID_ = west_->GetNode()->GetID();
- SubscribeToEvent(west_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- east_ = east;
- if (east_ && east_->GetNode())
- {
- eastID_ = east_->GetNode()->GetID();
- SubscribeToEvent(east_->GetNode(), E_TERRAINCREATED, URHO3D_HANDLER(Terrain, HandleNeighborTerrainCreated));
- }
- UpdateEdgePatchNeighbors();
- MarkNetworkUpdate();
- }
- void Terrain::SetDrawDistance(float distance)
- {
- drawDistance_ = distance;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetDrawDistance(distance);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetShadowDistance(float distance)
- {
- shadowDistance_ = distance;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetShadowDistance(distance);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetLodBias(float bias)
- {
- lodBias_ = bias;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetLodBias(bias);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetViewMask(unsigned mask)
- {
- viewMask_ = mask;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetViewMask(mask);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetLightMask(unsigned mask)
- {
- lightMask_ = mask;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetLightMask(mask);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetShadowMask(unsigned mask)
- {
- shadowMask_ = mask;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetShadowMask(mask);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetZoneMask(unsigned mask)
- {
- zoneMask_ = mask;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetZoneMask(mask);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetMaxLights(unsigned num)
- {
- maxLights_ = num;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetMaxLights(num);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetCastShadows(bool enable)
- {
- castShadows_ = enable;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetCastShadows(enable);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetOccluder(bool enable)
- {
- occluder_ = enable;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetOccluder(enable);
- }
- MarkNetworkUpdate();
- }
- void Terrain::SetOccludee(bool enable)
- {
- occludee_ = enable;
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (patches_[i])
- patches_[i]->SetOccludee(enable);
- }
- MarkNetworkUpdate();
- }
- void Terrain::ApplyHeightMap()
- {
- if (heightMap_)
- CreateGeometry();
- }
- Image* Terrain::GetHeightMap() const
- {
- return heightMap_;
- }
- Material* Terrain::GetMaterial() const
- {
- return material_;
- }
- TerrainPatch* Terrain::GetPatch(unsigned index) const
- {
- return index < patches_.Size() ? patches_[index] : nullptr;
- }
- TerrainPatch* Terrain::GetPatch(int x, int z) const
- {
- if (x < 0 || x >= numPatches_.x_ || z < 0 || z >= numPatches_.y_)
- return nullptr;
- else
- return GetPatch((unsigned)(z * numPatches_.x_ + x));
- }
- TerrainPatch* Terrain::GetNeighborPatch(int x, int z) const
- {
- if (z >= numPatches_.y_ && north_)
- return north_->GetPatch(x, z - numPatches_.y_);
- else if (z < 0 && south_)
- return south_->GetPatch(x, z + south_->GetNumPatches().y_);
- else if (x < 0 && west_)
- return west_->GetPatch(x + west_->GetNumPatches().x_, z);
- else if (x >= numPatches_.x_ && east_)
- return east_->GetPatch(x - numPatches_.x_, z);
- else
- return GetPatch(x, z);
- }
- float Terrain::GetHeight(const Vector3& worldPosition) const
- {
- if (node_)
- {
- Vector3 position = node_->GetWorldTransform().Inverse() * worldPosition;
- float xPos = (position.x_ - patchWorldOrigin_.x_) / spacing_.x_;
- float zPos = (position.z_ - patchWorldOrigin_.y_) / spacing_.z_;
- float xFrac = Fract(xPos);
- float zFrac = Fract(zPos);
- float h1, h2, h3;
- if (xFrac + zFrac >= 1.0f)
- {
- h1 = GetRawHeight((unsigned)xPos + 1, (unsigned)zPos + 1);
- h2 = GetRawHeight((unsigned)xPos, (unsigned)zPos + 1);
- h3 = GetRawHeight((unsigned)xPos + 1, (unsigned)zPos);
- xFrac = 1.0f - xFrac;
- zFrac = 1.0f - zFrac;
- }
- else
- {
- h1 = GetRawHeight((unsigned)xPos, (unsigned)zPos);
- h2 = GetRawHeight((unsigned)xPos + 1, (unsigned)zPos);
- h3 = GetRawHeight((unsigned)xPos, (unsigned)zPos + 1);
- }
- float h = h1 * (1.0f - xFrac - zFrac) + h2 * xFrac + h3 * zFrac;
- /// \todo This assumes that the terrain scene node is upright
- return node_->GetWorldScale().y_ * h + node_->GetWorldPosition().y_;
- }
- else
- return 0.0f;
- }
- Vector3 Terrain::GetNormal(const Vector3& worldPosition) const
- {
- if (node_)
- {
- Vector3 position = node_->GetWorldTransform().Inverse() * worldPosition;
- float xPos = (position.x_ - patchWorldOrigin_.x_) / spacing_.x_;
- float zPos = (position.z_ - patchWorldOrigin_.y_) / spacing_.z_;
- float xFrac = Fract(xPos);
- float zFrac = Fract(zPos);
- Vector3 n1, n2, n3;
- if (xFrac + zFrac >= 1.0f)
- {
- n1 = GetRawNormal((unsigned)xPos + 1, (unsigned)zPos + 1);
- n2 = GetRawNormal((unsigned)xPos, (unsigned)zPos + 1);
- n3 = GetRawNormal((unsigned)xPos + 1, (unsigned)zPos);
- xFrac = 1.0f - xFrac;
- zFrac = 1.0f - zFrac;
- }
- else
- {
- n1 = GetRawNormal((unsigned)xPos, (unsigned)zPos);
- n2 = GetRawNormal((unsigned)xPos + 1, (unsigned)zPos);
- n3 = GetRawNormal((unsigned)xPos, (unsigned)zPos + 1);
- }
- Vector3 n = (n1 * (1.0f - xFrac - zFrac) + n2 * xFrac + n3 * zFrac).Normalized();
- return node_->GetWorldRotation() * n;
- }
- else
- return Vector3::UP;
- }
- IntVector2 Terrain::WorldToHeightMap(const Vector3& worldPosition) const
- {
- if (!node_)
- return IntVector2::ZERO;
- Vector3 position = node_->GetWorldTransform().Inverse() * worldPosition;
- auto xPos = RoundToInt((position.x_ - patchWorldOrigin_.x_) / spacing_.x_);
- auto zPos = RoundToInt((position.z_ - patchWorldOrigin_.y_) / spacing_.z_);
- xPos = Clamp(xPos, 0, numVertices_.x_ - 1);
- zPos = Clamp(zPos, 0, numVertices_.y_ - 1);
- return IntVector2(xPos, numVertices_.y_ - 1 - zPos);
- }
- Vector3 Terrain::HeightMapToWorld(const IntVector2& pixelPosition) const
- {
- if (!node_)
- return Vector3::ZERO;
- IntVector2 pos(pixelPosition.x_, numVertices_.y_ - 1 - pixelPosition.y_);
- auto xPos = pos.x_ * spacing_.x_ + patchWorldOrigin_.x_;
- auto zPos = pos.y_ * spacing_.z_ + patchWorldOrigin_.y_;
- Vector3 lPos(xPos, 0.0f, zPos);
- Vector3 wPos = node_->GetWorldTransform() * lPos;
- wPos.y_ = GetHeight(wPos);
- return wPos;
- }
- void Terrain::CreatePatchGeometry(TerrainPatch* patch)
- {
- URHO3D_PROFILE(CreatePatchGeometry);
- auto row = (unsigned)(patchSize_ + 1);
- VertexBuffer* vertexBuffer = patch->GetVertexBuffer();
- Geometry* geometry = patch->GetGeometry();
- Geometry* maxLodGeometry = patch->GetMaxLodGeometry();
- Geometry* occlusionGeometry = patch->GetOcclusionGeometry();
- if (vertexBuffer->GetVertexCount() != row * row)
- vertexBuffer->SetSize(row * row, MASK_POSITION | MASK_NORMAL | MASK_TEXCOORD1 | MASK_TANGENT);
- SharedArrayPtr<unsigned char> cpuVertexData(new unsigned char[row * row * sizeof(Vector3)]);
- SharedArrayPtr<unsigned char> occlusionCpuVertexData(new unsigned char[row * row * sizeof(Vector3)]);
- auto* vertexData = (float*)vertexBuffer->Lock(0, vertexBuffer->GetVertexCount());
- auto* positionData = (float*)cpuVertexData.Get();
- auto* occlusionData = (float*)occlusionCpuVertexData.Get();
- BoundingBox box;
- unsigned occlusionLevel = occlusionLodLevel_;
- if (occlusionLevel > numLodLevels_ - 1)
- occlusionLevel = numLodLevels_ - 1;
- if (vertexData)
- {
- const IntVector2& coords = patch->GetCoordinates();
- unsigned lodExpand = (1u << (occlusionLevel)) - 1;
- unsigned halfLodExpand = (1u << (occlusionLevel)) / 2;
- for (unsigned z = 0; z <= patchSize_; ++z)
- {
- for (unsigned x = 0; x <= patchSize_; ++x)
- {
- int xPos = coords.x_ * patchSize_ + x;
- int zPos = coords.y_ * patchSize_ + z;
- // Position
- Vector3 position((float)x * spacing_.x_, GetRawHeight(xPos, zPos), (float)z * spacing_.z_);
- *vertexData++ = position.x_;
- *vertexData++ = position.y_;
- *vertexData++ = position.z_;
- *positionData++ = position.x_;
- *positionData++ = position.y_;
- *positionData++ = position.z_;
- box.Merge(position);
- // For vertices that are part of the occlusion LOD, calculate the minimum height in the neighborhood
- // to prevent false positive occlusion due to inaccuracy between occlusion LOD & visible LOD
- float minHeight = position.y_;
- if (halfLodExpand > 0 && (x & lodExpand) == 0 && (z & lodExpand) == 0)
- {
- int minX = Max(xPos - halfLodExpand, 0);
- int maxX = Min(xPos + halfLodExpand, numVertices_.x_ - 1);
- int minZ = Max(zPos - halfLodExpand, 0);
- int maxZ = Min(zPos + halfLodExpand, numVertices_.y_ - 1);
- for (int nZ = minZ; nZ <= maxZ; ++nZ)
- {
- for (int nX = minX; nX <= maxX; ++nX)
- minHeight = Min(minHeight, GetRawHeight(nX, nZ));
- }
- }
- *occlusionData++ = position.x_;
- *occlusionData++ = minHeight;
- *occlusionData++ = position.z_;
- // Normal
- Vector3 normal = GetRawNormal(xPos, zPos);
- *vertexData++ = normal.x_;
- *vertexData++ = normal.y_;
- *vertexData++ = normal.z_;
- // Texture coordinate
- Vector2 texCoord((float)xPos / (float)(numVertices_.x_ - 1), 1.0f - (float)zPos / (float)(numVertices_.y_ - 1));
- *vertexData++ = texCoord.x_;
- *vertexData++ = texCoord.y_;
- // Tangent
- Vector3 xyz = (Vector3::RIGHT - normal * normal.DotProduct(Vector3::RIGHT)).Normalized();
- *vertexData++ = xyz.x_;
- *vertexData++ = xyz.y_;
- *vertexData++ = xyz.z_;
- *vertexData++ = 1.0f;
- }
- }
- vertexBuffer->Unlock();
- vertexBuffer->ClearDataLost();
- }
- patch->SetBoundingBox(box);
- if (drawRanges_.Size())
- {
- unsigned occlusionDrawRange = occlusionLevel << 4u;
- geometry->SetIndexBuffer(indexBuffer_);
- geometry->SetDrawRange(TRIANGLE_LIST, drawRanges_[0].first_, drawRanges_[0].second_, false);
- geometry->SetRawVertexData(cpuVertexData, MASK_POSITION);
- maxLodGeometry->SetIndexBuffer(indexBuffer_);
- maxLodGeometry->SetDrawRange(TRIANGLE_LIST, drawRanges_[0].first_, drawRanges_[0].second_, false);
- maxLodGeometry->SetRawVertexData(cpuVertexData, MASK_POSITION);
- occlusionGeometry->SetIndexBuffer(indexBuffer_);
- occlusionGeometry->SetDrawRange(TRIANGLE_LIST, drawRanges_[occlusionDrawRange].first_, drawRanges_[occlusionDrawRange].second_, false);
- occlusionGeometry->SetRawVertexData(occlusionCpuVertexData, MASK_POSITION);
- }
- patch->ResetLod();
- }
- void Terrain::UpdatePatchLod(TerrainPatch* patch)
- {
- Geometry* geometry = patch->GetGeometry();
- // All LOD levels except the coarsest have 16 versions for stitching
- unsigned lodLevel = patch->GetLodLevel();
- unsigned drawRangeIndex = lodLevel << 4u;
- if (lodLevel < numLodLevels_ - 1)
- {
- TerrainPatch* north = patch->GetNorthPatch();
- TerrainPatch* south = patch->GetSouthPatch();
- TerrainPatch* west = patch->GetWestPatch();
- TerrainPatch* east = patch->GetEastPatch();
- if (north && north->GetLodLevel() > lodLevel)
- drawRangeIndex |= STITCH_NORTH;
- if (south && south->GetLodLevel() > lodLevel)
- drawRangeIndex |= STITCH_SOUTH;
- if (west && west->GetLodLevel() > lodLevel)
- drawRangeIndex |= STITCH_WEST;
- if (east && east->GetLodLevel() > lodLevel)
- drawRangeIndex |= STITCH_EAST;
- }
- if (drawRangeIndex < drawRanges_.Size())
- geometry->SetDrawRange(TRIANGLE_LIST, drawRanges_[drawRangeIndex].first_, drawRanges_[drawRangeIndex].second_, false);
- }
- void Terrain::SetMaterialAttr(const ResourceRef& value)
- {
- auto* cache = GetSubsystem<ResourceCache>();
- SetMaterial(cache->GetResource<Material>(value.name_));
- }
- void Terrain::SetHeightMapAttr(const ResourceRef& value)
- {
- auto* cache = GetSubsystem<ResourceCache>();
- auto* image = cache->GetResource<Image>(value.name_);
- SetHeightMapInternal(image, false);
- }
- void Terrain::SetPatchSizeAttr(int value)
- {
- if (value < MIN_PATCH_SIZE || value > MAX_PATCH_SIZE || !IsPowerOfTwo((unsigned)value))
- return;
- if (value != patchSize_)
- {
- patchSize_ = value;
- recreateTerrain_ = true;
- }
- }
- void Terrain::SetMaxLodLevelsAttr(unsigned value)
- {
- value = Clamp(value, MIN_LOD_LEVELS, MAX_LOD_LEVELS);
- if (value != maxLodLevels_)
- {
- maxLodLevels_ = value;
- lastPatchSize_ = 0; // Force full recreate
- recreateTerrain_ = true;
- }
- }
- void Terrain::SetOcclusionLodLevelAttr(unsigned value)
- {
- if (value != occlusionLodLevel_)
- {
- occlusionLodLevel_ = value;
- lastPatchSize_ = 0; // Force full recreate
- recreateTerrain_ = true;
- }
- }
- ResourceRef Terrain::GetMaterialAttr() const
- {
- return GetResourceRef(material_, Material::GetTypeStatic());
- }
- ResourceRef Terrain::GetHeightMapAttr() const
- {
- return GetResourceRef(heightMap_, Image::GetTypeStatic());
- }
- void Terrain::CreateGeometry()
- {
- recreateTerrain_ = false;
- if (!node_)
- return;
- URHO3D_PROFILE(CreateTerrainGeometry);
- unsigned prevNumPatches = patches_.Size();
- // Determine number of LOD levels
- auto lodSize = (unsigned)patchSize_;
- numLodLevels_ = 1;
- while (lodSize > MIN_PATCH_SIZE && numLodLevels_ < maxLodLevels_)
- {
- lodSize >>= 1;
- ++numLodLevels_;
- }
- // Determine total terrain size
- patchWorldSize_ = Vector2(spacing_.x_ * (float)patchSize_, spacing_.z_ * (float)patchSize_);
- bool updateAll = false;
- if (heightMap_)
- {
- numPatches_ = IntVector2((heightMap_->GetWidth() - 1) / patchSize_, (heightMap_->GetHeight() - 1) / patchSize_);
- numVertices_ = IntVector2(numPatches_.x_ * patchSize_ + 1, numPatches_.y_ * patchSize_ + 1);
- patchWorldOrigin_ =
- Vector2(-0.5f * (float)numPatches_.x_ * patchWorldSize_.x_, -0.5f * (float)numPatches_.y_ * patchWorldSize_.y_);
- if (numVertices_ != lastNumVertices_ || lastSpacing_ != spacing_ || patchSize_ != lastPatchSize_)
- updateAll = true;
- auto newDataSize = (unsigned)(numVertices_.x_ * numVertices_.y_);
- // Create new height data if terrain size changed
- if (!heightData_ || updateAll)
- heightData_ = new float[newDataSize];
- // Ensure that the source (unsmoothed) data exists if smoothing is active
- if (smoothing_ && (!sourceHeightData_ || updateAll))
- {
- sourceHeightData_ = new float[newDataSize];
- updateAll = true;
- }
- else if (!smoothing_)
- sourceHeightData_.Reset();
- }
- else
- {
- numPatches_ = IntVector2::ZERO;
- numVertices_ = IntVector2::ZERO;
- patchWorldOrigin_ = Vector2::ZERO;
- heightData_.Reset();
- sourceHeightData_.Reset();
- }
- lastNumVertices_ = numVertices_;
- lastPatchSize_ = patchSize_;
- lastSpacing_ = spacing_;
- // Remove old patch nodes which are not needed
- if (updateAll)
- {
- URHO3D_PROFILE(RemoveOldPatches);
- PODVector<Node*> oldPatchNodes;
- node_->GetChildrenWithComponent<TerrainPatch>(oldPatchNodes);
- for (PODVector<Node*>::Iterator i = oldPatchNodes.Begin(); i != oldPatchNodes.End(); ++i)
- {
- bool nodeOk = false;
- Vector<String> coords = (*i)->GetName().Substring(6).Split('_');
- if (coords.Size() == 2)
- {
- int x = ToInt(coords[0]);
- int z = ToInt(coords[1]);
- if (x < numPatches_.x_ && z < numPatches_.y_)
- nodeOk = true;
- }
- if (!nodeOk)
- node_->RemoveChild(*i);
- }
- }
- // Keep track of which patches actually need an update
- PODVector<bool> dirtyPatches((unsigned)(numPatches_.x_ * numPatches_.y_));
- for (unsigned i = 0; i < dirtyPatches.Size(); ++i)
- dirtyPatches[i] = updateAll;
- patches_.Clear();
- if (heightMap_)
- {
- // Copy heightmap data
- const unsigned char* src = heightMap_->GetData();
- float* dest = smoothing_ ? sourceHeightData_ : heightData_;
- unsigned imgComps = heightMap_->GetComponents();
- unsigned imgRow = heightMap_->GetWidth() * imgComps;
- IntRect updateRegion(-1, -1, -1, -1);
- if (imgComps == 1)
- {
- URHO3D_PROFILE(CopyHeightData);
- for (int z = 0; z < numVertices_.y_; ++z)
- {
- for (int x = 0; x < numVertices_.x_; ++x)
- {
- float newHeight = (float)src[imgRow * (numVertices_.y_ - 1 - z) + x] * spacing_.y_;
- if (updateAll)
- *dest = newHeight;
- else
- {
- if (*dest != newHeight)
- {
- *dest = newHeight;
- GrowUpdateRegion(updateRegion, x, z);
- }
- }
- ++dest;
- }
- }
- }
- else
- {
- URHO3D_PROFILE(CopyHeightData);
- // If more than 1 component, use the green channel for more accuracy
- for (int z = 0; z < numVertices_.y_; ++z)
- {
- for (int x = 0; x < numVertices_.x_; ++x)
- {
- float newHeight = ((float)src[imgRow * (numVertices_.y_ - 1 - z) + imgComps * x] +
- (float)src[imgRow * (numVertices_.y_ - 1 - z) + imgComps * x + 1] / 256.0f) * spacing_.y_;
- if (updateAll)
- *dest = newHeight;
- else
- {
- if (*dest != newHeight)
- {
- *dest = newHeight;
- GrowUpdateRegion(updateRegion, x, z);
- }
- }
- ++dest;
- }
- }
- }
- // If updating a region of the heightmap, check which patches change
- if (!updateAll)
- {
- int lodExpand = 1u << (numLodLevels_ - 1);
- // Expand the right & bottom 1 pixel more, as patches share vertices at the edge
- updateRegion.left_ -= lodExpand;
- updateRegion.right_ += lodExpand + 1;
- updateRegion.top_ -= lodExpand;
- updateRegion.bottom_ += lodExpand + 1;
- int sX = Max(updateRegion.left_ / patchSize_, 0);
- int eX = Min(updateRegion.right_ / patchSize_, numPatches_.x_ - 1);
- int sY = Max(updateRegion.top_ / patchSize_, 0);
- int eY = Min(updateRegion.bottom_ / patchSize_, numPatches_.y_ - 1);
- for (int y = sY; y <= eY; ++y)
- {
- for (int x = sX; x <= eX; ++x)
- dirtyPatches[y * numPatches_.x_ + x] = true;
- }
- }
- patches_.Reserve((unsigned)(numPatches_.x_ * numPatches_.y_));
- bool enabled = IsEnabledEffective();
- {
- URHO3D_PROFILE(CreatePatches);
- // Create patches and set node transforms
- for (int z = 0; z < numPatches_.y_; ++z)
- {
- for (int x = 0; x < numPatches_.x_; ++x)
- {
- String nodeName = "Patch_" + String(x) + "_" + String(z);
- Node* patchNode = node_->GetChild(nodeName);
- if (!patchNode)
- {
- // Create the patch scene node as local and temporary so that it is not unnecessarily serialized to either
- // file or replicated over the network
- patchNode = node_->CreateTemporaryChild(nodeName, LOCAL);
- }
- patchNode->SetPosition(Vector3(patchWorldOrigin_.x_ + (float)x * patchWorldSize_.x_, 0.0f,
- patchWorldOrigin_.y_ + (float)z * patchWorldSize_.y_));
- auto* patch = patchNode->GetComponent<TerrainPatch>();
- if (!patch)
- {
- patch = patchNode->CreateComponent<TerrainPatch>();
- patch->SetOwner(this);
- patch->SetCoordinates(IntVector2(x, z));
- // Copy initial drawable parameters
- patch->SetEnabled(enabled);
- patch->SetMaterial(material_);
- patch->SetDrawDistance(drawDistance_);
- patch->SetShadowDistance(shadowDistance_);
- patch->SetLodBias(lodBias_);
- patch->SetViewMask(viewMask_);
- patch->SetLightMask(lightMask_);
- patch->SetShadowMask(shadowMask_);
- patch->SetZoneMask(zoneMask_);
- patch->SetMaxLights(maxLights_);
- patch->SetCastShadows(castShadows_);
- patch->SetOccluder(occluder_);
- patch->SetOccludee(occludee_);
- }
- patches_.Push(WeakPtr<TerrainPatch>(patch));
- }
- }
- }
- // Create the shared index data
- if (updateAll)
- CreateIndexData();
- // Create vertex data for patches. First update smoothing to ensure normals are calculated correctly across patch borders
- if (smoothing_)
- {
- URHO3D_PROFILE(UpdateSmoothing);
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- if (dirtyPatches[i])
- {
- TerrainPatch* patch = patches_[i];
- const IntVector2& coords = patch->GetCoordinates();
- int startX = coords.x_ * patchSize_;
- int endX = startX + patchSize_;
- int startZ = coords.y_ * patchSize_;
- int endZ = startZ + patchSize_;
- for (int z = startZ; z <= endZ; ++z)
- {
- for (int x = startX; x <= endX; ++x)
- {
- float smoothedHeight = (
- GetSourceHeight(x - 1, z - 1) + GetSourceHeight(x, z - 1) * 2.0f + GetSourceHeight(x + 1, z - 1) +
- GetSourceHeight(x - 1, z) * 2.0f + GetSourceHeight(x, z) * 4.0f + GetSourceHeight(x + 1, z) * 2.0f +
- GetSourceHeight(x - 1, z + 1) + GetSourceHeight(x, z + 1) * 2.0f + GetSourceHeight(x + 1, z + 1)
- ) / 16.0f;
- heightData_[z * numVertices_.x_ + x] = smoothedHeight;
- }
- }
- }
- }
- }
- for (unsigned i = 0; i < patches_.Size(); ++i)
- {
- TerrainPatch* patch = patches_[i];
- if (dirtyPatches[i])
- {
- CreatePatchGeometry(patch);
- CalculateLodErrors(patch);
- }
- SetPatchNeighbors(patch);
- }
- }
- // Send event only if new geometry was generated, or the old was cleared
- if (patches_.Size() || prevNumPatches)
- {
- using namespace TerrainCreated;
- VariantMap& eventData = GetEventDataMap();
- eventData[P_NODE] = node_;
- node_->SendEvent(E_TERRAINCREATED, eventData);
- }
- }
- void Terrain::CreateIndexData()
- {
- URHO3D_PROFILE(CreateIndexData);
- PODVector<unsigned short> indices;
- drawRanges_.Clear();
- auto row = (unsigned)(patchSize_ + 1);
- /* Build index data for each LOD level. Each LOD level except the lowest can stitch to the next lower LOD from the edges:
- north, south, west, east, or any combination of them, requiring 16 different versions of each LOD level's index data
- Normal edge: Stitched edge:
- +----+----+ +---------+
- |\ |\ | |\ /|
- | \ | \ | | \ / |
- | \ | \ | | \ / |
- | \| \| | \ / |
- +----+----+ +----+----+
- */
- for (unsigned i = 0; i < numLodLevels_; ++i)
- {
- unsigned combinations = (i < numLodLevels_ - 1) ? 16 : 1;
- int skip = 1u << i;
- for (unsigned j = 0; j < combinations; ++j)
- {
- unsigned indexStart = indices.Size();
- int zStart = 0;
- int xStart = 0;
- int zEnd = patchSize_;
- int xEnd = patchSize_;
- if (j & STITCH_NORTH)
- zEnd -= skip;
- if (j & STITCH_SOUTH)
- zStart += skip;
- if (j & STITCH_WEST)
- xStart += skip;
- if (j & STITCH_EAST)
- xEnd -= skip;
- // Build the main grid
- for (int z = zStart; z < zEnd; z += skip)
- {
- for (int x = xStart; x < xEnd; x += skip)
- {
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)(z * row + x + skip));
- indices.Push((unsigned short)(z * row + x));
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)((z + skip) * row + x + skip));
- indices.Push((unsigned short)(z * row + x + skip));
- }
- }
- // Build the north edge
- if (j & STITCH_NORTH)
- {
- int z = patchSize_ - skip;
- for (int x = 0; x < patchSize_; x += skip * 2)
- {
- if (x > 0 || (j & STITCH_WEST) == 0)
- {
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)(z * row + x + skip));
- indices.Push((unsigned short)(z * row + x));
- }
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)((z + skip) * row + x + 2 * skip));
- indices.Push((unsigned short)(z * row + x + skip));
- if (x < patchSize_ - skip * 2 || (j & STITCH_EAST) == 0)
- {
- indices.Push((unsigned short)((z + skip) * row + x + 2 * skip));
- indices.Push((unsigned short)(z * row + x + 2 * skip));
- indices.Push((unsigned short)(z * row + x + skip));
- }
- }
- }
- // Build the south edge
- if (j & STITCH_SOUTH)
- {
- int z = 0;
- for (int x = 0; x < patchSize_; x += skip * 2)
- {
- if (x > 0 || (j & STITCH_WEST) == 0)
- {
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)((z + skip) * row + x + skip));
- indices.Push((unsigned short)(z * row + x));
- }
- indices.Push((unsigned short)(z * row + x));
- indices.Push((unsigned short)((z + skip) * row + x + skip));
- indices.Push((unsigned short)(z * row + x + 2 * skip));
- if (x < patchSize_ - skip * 2 || (j & STITCH_EAST) == 0)
- {
- indices.Push((unsigned short)((z + skip) * row + x + skip));
- indices.Push((unsigned short)((z + skip) * row + x + 2 * skip));
- indices.Push((unsigned short)(z * row + x + 2 * skip));
- }
- }
- }
- // Build the west edge
- if (j & STITCH_WEST)
- {
- int x = 0;
- for (int z = 0; z < patchSize_; z += skip * 2)
- {
- if (z > 0 || (j & STITCH_SOUTH) == 0)
- {
- indices.Push((unsigned short)(z * row + x));
- indices.Push((unsigned short)((z + skip) * row + x + skip));
- indices.Push((unsigned short)(z * row + x + skip));
- }
- indices.Push((unsigned short)((z + 2 * skip) * row + x));
- indices.Push((unsigned short)((z + skip) * row + x + skip));
- indices.Push((unsigned short)(z * row + x));
- if (z < patchSize_ - skip * 2 || (j & STITCH_NORTH) == 0)
- {
- indices.Push((unsigned short)((z + 2 * skip) * row + x));
- indices.Push((unsigned short)((z + 2 * skip) * row + x + skip));
- indices.Push((unsigned short)((z + skip) * row + x + skip));
- }
- }
- }
- // Build the east edge
- if (j & STITCH_EAST)
- {
- int x = patchSize_ - skip;
- for (int z = 0; z < patchSize_; z += skip * 2)
- {
- if (z > 0 || (j & STITCH_SOUTH) == 0)
- {
- indices.Push((unsigned short)(z * row + x));
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)(z * row + x + skip));
- }
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)((z + 2 * skip) * row + x + skip));
- indices.Push((unsigned short)(z * row + x + skip));
- if (z < patchSize_ - skip * 2 || (j & STITCH_NORTH) == 0)
- {
- indices.Push((unsigned short)((z + skip) * row + x));
- indices.Push((unsigned short)((z + 2 * skip) * row + x));
- indices.Push((unsigned short)((z + 2 * skip) * row + x + skip));
- }
- }
- }
- drawRanges_.Push(MakePair(indexStart, indices.Size() - indexStart));
- }
- }
- indexBuffer_->SetSize(indices.Size(), false);
- indexBuffer_->SetData(&indices[0]);
- }
- float Terrain::GetRawHeight(int x, int z) const
- {
- if (!heightData_)
- return 0.0f;
- x = Clamp(x, 0, numVertices_.x_ - 1);
- z = Clamp(z, 0, numVertices_.y_ - 1);
- return heightData_[z * numVertices_.x_ + x];
- }
- float Terrain::GetSourceHeight(int x, int z) const
- {
- if (!sourceHeightData_)
- return 0.0f;
- x = Clamp(x, 0, numVertices_.x_ - 1);
- z = Clamp(z, 0, numVertices_.y_ - 1);
- return sourceHeightData_[z * numVertices_.x_ + x];
- }
- float Terrain::GetLodHeight(int x, int z, unsigned lodLevel) const
- {
- unsigned offset = 1u << lodLevel;
- auto xFrac = (float)(x % offset) / offset;
- auto zFrac = (float)(z % offset) / offset;
- float h1, h2, h3;
- if (xFrac + zFrac >= 1.0f)
- {
- h1 = GetRawHeight(x + offset, z + offset);
- h2 = GetRawHeight(x, z + offset);
- h3 = GetRawHeight(x + offset, z);
- xFrac = 1.0f - xFrac;
- zFrac = 1.0f - zFrac;
- }
- else
- {
- h1 = GetRawHeight(x, z);
- h2 = GetRawHeight(x + offset, z);
- h3 = GetRawHeight(x, z + offset);
- }
- return h1 * (1.0f - xFrac - zFrac) + h2 * xFrac + h3 * zFrac;
- }
- Vector3 Terrain::GetRawNormal(int x, int z) const
- {
- float baseHeight = GetRawHeight(x, z);
- float nSlope = GetRawHeight(x, z - 1) - baseHeight;
- float neSlope = GetRawHeight(x + 1, z - 1) - baseHeight;
- float eSlope = GetRawHeight(x + 1, z) - baseHeight;
- float seSlope = GetRawHeight(x + 1, z + 1) - baseHeight;
- float sSlope = GetRawHeight(x, z + 1) - baseHeight;
- float swSlope = GetRawHeight(x - 1, z + 1) - baseHeight;
- float wSlope = GetRawHeight(x - 1, z) - baseHeight;
- float nwSlope = GetRawHeight(x - 1, z - 1) - baseHeight;
- float up = 0.5f * (spacing_.x_ + spacing_.z_);
- return (Vector3(0.0f, up, nSlope) +
- Vector3(-neSlope, up, neSlope) +
- Vector3(-eSlope, up, 0.0f) +
- Vector3(-seSlope, up, -seSlope) +
- Vector3(0.0f, up, -sSlope) +
- Vector3(swSlope, up, -swSlope) +
- Vector3(wSlope, up, 0.0f) +
- Vector3(nwSlope, up, nwSlope)).Normalized();
- }
- void Terrain::CalculateLodErrors(TerrainPatch* patch)
- {
- URHO3D_PROFILE(CalculateLodErrors);
- const IntVector2& coords = patch->GetCoordinates();
- PODVector<float>& lodErrors = patch->GetLodErrors();
- lodErrors.Clear();
- lodErrors.Reserve(numLodLevels_);
- int xStart = coords.x_ * patchSize_;
- int zStart = coords.y_ * patchSize_;
- int xEnd = xStart + patchSize_;
- int zEnd = zStart + patchSize_;
- for (unsigned i = 0; i < numLodLevels_; ++i)
- {
- float maxError = 0.0f;
- int divisor = 1u << i;
- if (i > 0)
- {
- for (int z = zStart; z <= zEnd; ++z)
- {
- for (int x = xStart; x <= xEnd; ++x)
- {
- if (x % divisor || z % divisor)
- {
- float error = Abs(GetLodHeight(x, z, i) - GetRawHeight(x, z));
- maxError = Max(error, maxError);
- }
- }
- }
- // Set error to be at least same as (half vertex spacing x LOD) to prevent horizontal stretches getting too inaccurate
- maxError = Max(maxError, 0.25f * (spacing_.x_ + spacing_.z_) * (float)(1u << i));
- }
- lodErrors.Push(maxError);
- }
- }
- void Terrain::SetPatchNeighbors(TerrainPatch* patch)
- {
- if (!patch)
- return;
- const IntVector2& coords = patch->GetCoordinates();
- patch->SetNeighbors(GetNeighborPatch(coords.x_, coords.y_ + 1), GetNeighborPatch(coords.x_, coords.y_ - 1),
- GetNeighborPatch(coords.x_ - 1, coords.y_), GetNeighborPatch(coords.x_ + 1, coords.y_));
- }
- bool Terrain::SetHeightMapInternal(Image* image, bool recreateNow)
- {
- if (image && image->IsCompressed())
- {
- URHO3D_LOGERROR("Can not use a compressed image as a terrain heightmap");
- return false;
- }
- // Unsubscribe from the reload event of previous image (if any), then subscribe to the new
- if (heightMap_)
- UnsubscribeFromEvent(heightMap_, E_RELOADFINISHED);
- if (image)
- SubscribeToEvent(image, E_RELOADFINISHED, URHO3D_HANDLER(Terrain, HandleHeightMapReloadFinished));
- heightMap_ = image;
- if (recreateNow)
- CreateGeometry();
- else
- recreateTerrain_ = true;
- return true;
- }
- void Terrain::HandleHeightMapReloadFinished(StringHash /*eventType*/, VariantMap& eventData)
- {
- CreateGeometry();
- }
- void Terrain::HandleNeighborTerrainCreated(StringHash /*eventType*/, VariantMap& eventData)
- {
- UpdateEdgePatchNeighbors();
- }
- void Terrain::UpdateEdgePatchNeighbors()
- {
- for (int x = 1; x < numPatches_.x_ - 1; ++x)
- {
- SetPatchNeighbors(GetPatch(x, 0));
- SetPatchNeighbors(GetPatch(x, numPatches_.y_ - 1));
- }
- for (int z = 1; z < numPatches_.y_ - 1; ++z)
- {
- SetPatchNeighbors(GetPatch(0, z));
- SetPatchNeighbors(GetPatch(numPatches_.x_ - 1, z));
- }
- SetPatchNeighbors(GetPatch(0, 0));
- SetPatchNeighbors(GetPatch(numPatches_.x_ - 1, 0));
- SetPatchNeighbors(GetPatch(0, numPatches_.y_ - 1));
- SetPatchNeighbors(GetPatch(numPatches_.x_ - 1, numPatches_.y_ - 1));
- }
- }
|