/*
-----------------------------------------------------------------------------
This source file is part of OGRE
(Object-oriented Graphics Rendering Engine)
For the latest info, see http://www.ogre3d.org/

Copyright (c) 2000-2009 Torus Knot Software Ltd

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 "OgreD3D11Device.h"
#include "OgreD3D11HardwareBufferManager.h"
#include "OgreD3D11RenderToVertexBuffer.h"
#include "OgreHardwareBufferManager.h"
#include "OgreD3D11HardwareVertexBuffer.h"
#include "OgreRenderable.h"
#include "OgreSceneManager.h"
#include "OgreRoot.h"
#include "OgreRenderSystem.h"
#include "OgreStringConverter.h"
#include "OgreD3D11RenderSystem.h"
#include "OgreD3D11HLSLProgram.h"

namespace Ogre {

	D3D11RenderToVertexBuffer::D3D11RenderToVertexBuffer(D3D11Device & device, 
														 D3D11HardwareBufferManagerBase * bufManager) 
		: mDevice(device)
        ,  mFrontBufferIndex(-1)
        , mBufManager(bufManager)
        , mpGeometryShader(0)
	{
		mVertexBuffers[0].setNull();
		mVertexBuffers[1].setNull();

		D3D11_QUERY_DESC queryDesc;
		queryDesc.Query = D3D11_QUERY_PIPELINE_STATISTICS;
		queryDesc.MiscFlags = 0;

		mDeviceStatsQuery = NULL;
		HRESULT hr = mDevice->CreateQuery( &queryDesc, &mDeviceStatsQuery);
		if (FAILED(hr) || mDevice.isError())
		{
			OGRE_EXCEPT(Exception::ERR_RENDERINGAPI_ERROR, "Unable to create query", 
			"D3D11RenderToVertexBuffer::D3D11RenderToVertexBuffer");
		}
	}

	D3D11RenderToVertexBuffer::~D3D11RenderToVertexBuffer(void)
	{
	}

	void D3D11RenderToVertexBuffer::getRenderOperation(RenderOperation& op)
	{
		op.operationType = mOperationType;
		op.useIndexes = false;
        op.useGlobalInstancingVertexBufferIsAvailable = false;
		op.vertexData = mVertexData;
	}

    void D3D11RenderToVertexBuffer::setupGeometryShaderLinkageToStreamOut(Pass* pass)
	{
		static bool done =  false;

		if (done)
			return;

		assert(pass->hasGeometryProgram());
		const GpuProgramPtr& program = pass->getGeometryProgram();

		D3D11HLSLProgram* dx11Program = 0;
		if (program->getSyntaxCode()=="unified")
		{
			dx11Program = static_cast<D3D11HLSLProgram*>(program->_getBindingDelegate());
		}
		else
		{
			dx11Program = static_cast<D3D11HLSLProgram*>(program.getPointer());
		}
		dx11Program->reinterpretGSForStreamOut();

		done = true;
		
	}
	void D3D11RenderToVertexBuffer::update(SceneManager* sceneMgr)
	{

		//Single pass only for now
		Ogre::Pass* r2vbPass = mMaterial->getBestTechnique()->getPass(0);

		setupGeometryShaderLinkageToStreamOut(r2vbPass);

		size_t bufSize = mVertexData->vertexDeclaration->getVertexSize(0) * mMaxVertexCount;
		if (mVertexBuffers[0].isNull() || mVertexBuffers[0]->getSizeInBytes() != bufSize)
		{
			//Buffers don't match. Need to reallocate.
			mResetRequested = true;
		}

		//Set pass before binding buffers to activate the GPU programs
		sceneMgr->_setPass(r2vbPass);

		RenderOperation renderOp;
		size_t targetBufferIndex;
		if (mResetRequested || mResetsEveryUpdate)
		{
			//Use source data to render to first buffer
			mSourceRenderable->getRenderOperation(renderOp);
			targetBufferIndex = 0;
		}
		else
		{
			//Use current front buffer to render to back buffer
			renderOp.operationType = mOperationType;
			renderOp.useIndexes = false;
			renderOp.vertexData = mVertexData;
			targetBufferIndex = 1 - mFrontBufferIndex;
		}

		if (mVertexBuffers[targetBufferIndex].isNull() || 
			mVertexBuffers[targetBufferIndex]->getSizeInBytes() != bufSize)
		{
			reallocateBuffer(targetBufferIndex);
		}

		RenderSystem* targetRenderSystem = Root::getSingleton().getRenderSystem();
		//Draw the object
		targetRenderSystem->_setWorldMatrix(Matrix4::IDENTITY);
		targetRenderSystem->_setViewMatrix(Matrix4::IDENTITY);
		targetRenderSystem->_setProjectionMatrix(Matrix4::IDENTITY);

		D3D11HardwareVertexBuffer* vertexBuffer = static_cast<D3D11HardwareVertexBuffer*>(mVertexBuffers[targetBufferIndex].getPointer());
	
		UINT offset[1] = { 0 };
		ID3D11Buffer* iBuffer[1];
		iBuffer[0] = vertexBuffer->getD3DVertexBuffer();
		mDevice.GetImmediateContext()->SOSetTargets( 1, iBuffer, offset );

		if (r2vbPass->hasVertexProgram())
		{
			targetRenderSystem->bindGpuProgramParameters(GPT_VERTEX_PROGRAM, 
				r2vbPass->getVertexProgramParameters(), GPV_ALL);
		}
		if (r2vbPass->hasGeometryProgram())
		{
			targetRenderSystem->bindGpuProgramParameters(GPT_GEOMETRY_PROGRAM,
				r2vbPass->getGeometryProgramParameters(), GPV_ALL);
		}

		mDevice.GetImmediateContext()->Begin(mDeviceStatsQuery);

		targetRenderSystem->_render(renderOp);	

		//Switch the vertex binding if necessary
		if (targetBufferIndex != mFrontBufferIndex)
		{
			mVertexData->vertexBufferBinding->unsetAllBindings();
			mVertexData->vertexBufferBinding->setBinding(0, mVertexBuffers[targetBufferIndex]);
			mFrontBufferIndex = targetBufferIndex;
		}

		ID3D11Buffer* nullBuffer[1];
		nullBuffer[0]=NULL;
		mDevice.GetImmediateContext()->SOSetTargets( 1, nullBuffer, offset );
		//Clear the reset flag
		mResetRequested = false;

		mDevice.GetImmediateContext()->End(mDeviceStatsQuery);

		D3D11_QUERY_DATA_PIPELINE_STATISTICS stats;
		while( S_OK != mDevice.GetImmediateContext()->GetData(mDeviceStatsQuery, &stats, mDeviceStatsQuery->GetDataSize(), 0 ) ){}
	}
	//-----------------------------------------------------------------------------
    void D3D11RenderToVertexBuffer::reallocateBuffer(size_t index)
    {
        assert(index == 0 || index == 1);
        if (!mVertexBuffers[index].isNull())
        {
            mVertexBuffers[index].setNull();
        }

        mVertexBuffers[index] = HardwareBufferManager::getSingleton().createVertexBuffer(
            mVertexData->vertexDeclaration->getVertexSize(0), mMaxVertexCount, HardwareBuffer::HBU_STATIC
            );

        D3D11HardwareVertexBuffer* vbuf = static_cast<D3D11HardwareVertexBuffer*>(mVertexBuffers[index].getPointer());
        vbuf->reinterpretForStreamOutput();
    }
}
