forked from teamnwah/openmw-tes3coop
Use the QuadTreeWorld based on distant terrain setting now that it sort of works.
This commit is contained in:
parent
433900fca5
commit
19d516cbda
2 changed files with 12 additions and 3 deletions
|
@ -34,6 +34,7 @@
|
|||
#include <components/sceneutil/writescene.hpp>
|
||||
|
||||
#include <components/terrain/terraingrid.hpp>
|
||||
#include <components/terrain/quadtreeworld.hpp>
|
||||
|
||||
#include <components/esm/loadcell.hpp>
|
||||
#include <components/fallback/fallback.hpp>
|
||||
|
@ -212,11 +213,14 @@ namespace MWRender
|
|||
|
||||
mWater.reset(new Water(mRootNode, sceneRoot, mResourceSystem, mViewer->getIncrementalCompileOperation(), fallback, resourcePath));
|
||||
|
||||
|
||||
|
||||
const bool distantTerrain = Settings::Manager::getBool("distant terrain", "Terrain");
|
||||
mTerrainStorage = new TerrainStorage(mResourceSystem, Settings::Manager::getString("normal map pattern", "Shaders"), Settings::Manager::getString("normal height map pattern", "Shaders"),
|
||||
Settings::Manager::getBool("auto use terrain normal maps", "Shaders"), Settings::Manager::getString("terrain specular map pattern", "Shaders"),
|
||||
Settings::Manager::getBool("auto use terrain specular maps", "Shaders"));
|
||||
|
||||
if (distantTerrain)
|
||||
mTerrain.reset(new Terrain::QuadTreeWorld(mWorkQueue.get(), sceneRoot, mRootNode, mResourceSystem, mTerrainStorage, Mask_Terrain, Mask_PreCompile));
|
||||
else
|
||||
mTerrain.reset(new Terrain::TerrainGrid(sceneRoot, mRootNode, mResourceSystem, mTerrainStorage, Mask_Terrain, Mask_PreCompile));
|
||||
|
||||
mCamera.reset(new Camera(mViewer->getCamera()));
|
||||
|
|
|
@ -76,6 +76,11 @@ preload cell expiry delay = 5
|
|||
# How long to keep models/textures/collision shapes in cache after they're no longer referenced/required (in seconds)
|
||||
cache expiry delay = 5
|
||||
|
||||
[Terrain]
|
||||
|
||||
# If true, use paging and LOD algorithms to display the entire terrain. If false, only display terrain of the loaded cells
|
||||
distant terrain = false
|
||||
|
||||
[Map]
|
||||
|
||||
# Size of each exterior cell in pixels in the world map. (e.g. 12 to 24).
|
||||
|
|
Loading…
Reference in a new issue