mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 16:26:38 +00:00 
			
		
		
		
	- Consistent triangle alignment, fixes a noticable crack near the census and excise office. Note that alignment is still not the same as vanilla. Vanilla uses a weird diagonal pattern. I hope there aren't more trouble spots that will force us to replicate vanilla, but at least we can do that now. - Fixes several blending issues and cell border seams - Fix map render to use the terrain bounding box instead of an arbitrary height - Different LODs are now properly connected instead of using skirts - Support self shadowing - Normals and colors are stored in the vertices instead of a texture, this enables per-vertex lighting which should improve performance, fix compatibility issues due to the PS getting too large and mimic vanilla better - Support a fixed function fallback (though the splatting shader usually performs better) - Designed for distant land support - test: https://www.youtube.com/watch?v=2wnd9EuPJIY - we can't really enable this yet due to depth precision issues when using a large view distance
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef COMPONENTS_TERRAIN_TERRAINBATCH_H
 | |
| #define COMPONENTS_TERRAIN_TERRAINBATCH_H
 | |
| 
 | |
| #include <OgreRenderable.h>
 | |
| #include <OgreMovableObject.h>
 | |
| 
 | |
| namespace Terrain
 | |
| {
 | |
| 
 | |
|     class QuadTreeNode;
 | |
| 
 | |
|     /**
 | |
|      * @brief Renders a chunk of terrain, either using alpha splatting or a composite map.
 | |
|      */
 | |
|     class Chunk : public Ogre::Renderable, public Ogre::MovableObject
 | |
|     {
 | |
|     public:
 | |
|         /// @param lodLevel LOD level for the vertex buffer.
 | |
|         Chunk (QuadTreeNode* node, short lodLevel);
 | |
|         virtual ~Chunk();
 | |
| 
 | |
|         void setMaterial (const Ogre::MaterialPtr& material);
 | |
| 
 | |
|         /// Set additional LOD applied on top of vertex LOD. \n
 | |
|         /// This is achieved by changing the index buffer to omit vertices.
 | |
|         void setAdditionalLod (size_t lod) { mAdditionalLod = lod; }
 | |
|         size_t getAdditionalLod() { return mAdditionalLod; }
 | |
| 
 | |
|         void updateIndexBuffer();
 | |
| 
 | |
|         // Inherited from MovableObject
 | |
|         virtual const Ogre::String& getMovableType(void) const { static Ogre::String t = "MW_TERRAIN"; return t; }
 | |
|         virtual const Ogre::AxisAlignedBox& getBoundingBox(void) const;
 | |
|         virtual Ogre::Real getBoundingRadius(void) const;
 | |
|         virtual void _updateRenderQueue(Ogre::RenderQueue* queue);
 | |
|         virtual void visitRenderables(Renderable::Visitor* visitor,
 | |
|             bool debugRenderables = false);
 | |
| 
 | |
|         // Inherited from Renderable
 | |
|         virtual const Ogre::MaterialPtr& getMaterial(void) const;
 | |
|         virtual void getRenderOperation(Ogre::RenderOperation& op);
 | |
|         virtual void getWorldTransforms(Ogre::Matrix4* xform) const;
 | |
|         virtual Ogre::Real getSquaredViewDepth(const Ogre::Camera* cam) const;
 | |
|         virtual const Ogre::LightList& getLights(void) const;
 | |
| 
 | |
|     private:
 | |
|         QuadTreeNode* mNode;
 | |
|         Ogre::MaterialPtr mMaterial;
 | |
| 
 | |
|         size_t mVertexLod;
 | |
|         size_t mAdditionalLod;
 | |
| 
 | |
|         Ogre::VertexData* mVertexData;
 | |
|         Ogre::IndexData* mIndexData;
 | |
|         Ogre::HardwareVertexBufferSharedPtr mVertexBuffer;
 | |
|         Ogre::HardwareVertexBufferSharedPtr mNormalBuffer;
 | |
|         Ogre::HardwareVertexBufferSharedPtr mColourBuffer;
 | |
|         Ogre::HardwareIndexBufferSharedPtr mIndexBuffer;
 | |
|     };
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif
 |