2010-05-06 00:08:41 +00:00
|
|
|
// NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
|
|
|
|
// Copyright (C) 2010 Winch Gate Property Limited
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as
|
|
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#include "std3d.h"
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// THIS FILE IS DIVIDED IN TWO PARTS BECAUSE IT MAKES VISUAL CRASH.
|
|
|
|
// fatal error C1076: compiler limit : internal heap limit reached; use /Zm to specify a higher limit
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
#include "nel/3d/driver_user.h"
|
|
|
|
#include "nel/3d/scene_user.h"
|
|
|
|
#include "nel/3d/text_context_user.h"
|
|
|
|
#include "nel/3d/u_driver.h"
|
|
|
|
#include "nel/3d/dru.h"
|
|
|
|
#include "nel/3d/scene.h"
|
|
|
|
#include "nel/3d/texture_user.h"
|
|
|
|
#include "nel/3d/u_camera.h"
|
|
|
|
#include "nel/misc/file.h"
|
|
|
|
#include "nel/misc/path.h"
|
|
|
|
#include "nel/misc/hierarchical_timer.h"
|
|
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace NLMISC;
|
|
|
|
|
|
|
|
|
|
|
|
namespace NL3D
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// Component Management.
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
UScene *CDriverUser::createScene(bool bSmallScene)
|
|
|
|
{
|
|
|
|
CSceneUser *pSU = new CSceneUser(this, bSmallScene);
|
|
|
|
|
|
|
|
// set the shape bank
|
|
|
|
pSU->getScene().setShapeBank( &_ShapeBank._ShapeBank );
|
|
|
|
// set the MeshSkin Vertex Streams
|
|
|
|
pSU->getScene().getRenderTrav().setMeshSkinManager(&_MeshSkinManager);
|
|
|
|
pSU->getScene().getRenderTrav().setShadowMeshSkinManager(&_ShadowMeshSkinManager);
|
|
|
|
// set the AsyncTextureManager
|
|
|
|
pSU->getScene().setAsyncTextureManager(&_AsyncTextureManager);
|
|
|
|
// set the lodManager
|
|
|
|
pSU->getScene().setLodCharacterManager(&_LodCharacterManager);
|
|
|
|
return _Scenes.insert(pSU);
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::deleteScene(UScene *scene)
|
|
|
|
{
|
|
|
|
|
|
|
|
_Scenes.erase((CSceneUser*)scene, "deleteScene(): Bad scene ptr");
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
UTextContext *CDriverUser::createTextContext(const std::string fontFileName, const std::string fontExFileName)
|
|
|
|
{
|
|
|
|
|
|
|
|
return _TextContexts.insert(new CTextContextUser(fontFileName, fontExFileName, this, &_FontManager));
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::deleteTextContext(UTextContext *textContext)
|
|
|
|
{
|
|
|
|
|
|
|
|
_TextContexts.erase((CTextContextUser*)textContext, "deleteTextContext: Bad TextContext");
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::setFontManagerMaxMemory(uint maxMem)
|
|
|
|
{
|
|
|
|
|
|
|
|
_FontManager.setMaxMemory(maxMem);
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
std::string CDriverUser::getFontManagerCacheInformation() const
|
|
|
|
{
|
|
|
|
|
|
|
|
return _FontManager.getCacheInformation();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
UTextureFile *CDriverUser::createTextureFile(const std::string &file)
|
|
|
|
{
|
|
|
|
|
|
|
|
CTextureFileUser *text= new CTextureFileUser(file);
|
|
|
|
_Textures.insert(text);
|
|
|
|
return text;
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::deleteTextureFile(UTextureFile *textfile)
|
|
|
|
{
|
|
|
|
|
|
|
|
_Textures.erase(dynamic_cast<CTextureFileUser*>(textfile), "deleteTextureFile: Bad textfile");
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
UTextureMem *CDriverUser::createTextureMem(uint width, uint height, CBitmap::TType texType)
|
|
|
|
{
|
|
|
|
|
|
|
|
CTextureMemUser *pTx= new CTextureMemUser(width, height, texType);
|
|
|
|
_Textures.insert(pTx);
|
|
|
|
return pTx;
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::deleteTextureMem(UTextureMem *pTx)
|
|
|
|
{
|
|
|
|
|
|
|
|
_Textures.erase(dynamic_cast<CTextureMemUser*>(pTx), "deleteTextureMem: Bad pTx");
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
UMaterial CDriverUser::createMaterial()
|
|
|
|
{
|
|
|
|
|
|
|
|
return UMaterial(new CMaterial);
|
|
|
|
}
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::deleteMaterial(UMaterial &umat)
|
|
|
|
{
|
|
|
|
delete umat.getObjectPtr();
|
|
|
|
umat.detach();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
2010-06-04 12:10:13 +00:00
|
|
|
UAnimationSet *CDriverUser::createAnimationSet(bool headerOptim)
|
2010-05-06 00:08:41 +00:00
|
|
|
{
|
2010-06-04 12:10:13 +00:00
|
|
|
return _AnimationSets.insert(new CAnimationSetUser(this, headerOptim));
|
2010-05-06 00:08:41 +00:00
|
|
|
}
|
2010-06-04 12:10:13 +00:00
|
|
|
|
2010-05-06 00:08:41 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
UAnimationSet *CDriverUser::createAnimationSet(const std::string &animationSetFile)
|
|
|
|
{
|
|
|
|
H_AUTO( NL3D_Load_AnimationSet )
|
|
|
|
|
|
|
|
NLMISC::CIFile f;
|
|
|
|
// throw exception if not found.
|
|
|
|
std::string path= CPath::lookup(animationSetFile);
|
|
|
|
f.open(path);
|
|
|
|
return _AnimationSets.insert(new CAnimationSetUser(this, f));
|
|
|
|
}
|
2010-06-04 12:10:13 +00:00
|
|
|
|
2010-05-06 00:08:41 +00:00
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::deleteAnimationSet(UAnimationSet *animationSet)
|
|
|
|
{
|
|
|
|
_AnimationSets.erase((CAnimationSetUser*)animationSet, "deleteAnimationSet(): Bad AnimationSet ptr");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
// Profile.
|
|
|
|
// ***************************************************************************
|
|
|
|
// ***************************************************************************
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::profileRenderedPrimitives(CPrimitiveProfile &pIn, CPrimitiveProfile &pOut)
|
|
|
|
{
|
|
|
|
|
|
|
|
_Driver->profileRenderedPrimitives(pIn, pOut);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
uint32 CDriverUser::profileAllocatedTextureMemory()
|
|
|
|
{
|
|
|
|
|
|
|
|
return _Driver->profileAllocatedTextureMemory();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
uint32 CDriverUser::profileSetupedMaterials() const
|
|
|
|
{
|
|
|
|
|
|
|
|
return _Driver->profileSetupedMaterials();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
uint32 CDriverUser::profileSetupedModelMatrix() const
|
|
|
|
{
|
|
|
|
return _Driver->profileSetupedModelMatrix();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::enableUsedTextureMemorySum (bool enable)
|
|
|
|
{
|
|
|
|
_Driver->enableUsedTextureMemorySum (enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
uint32 CDriverUser::getUsedTextureMemory () const
|
|
|
|
{
|
|
|
|
return _Driver->getUsedTextureMemory ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::startProfileVBHardLock()
|
|
|
|
{
|
|
|
|
_Driver->startProfileVBHardLock();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::endProfileVBHardLock(std::vector<std::string> &result)
|
|
|
|
{
|
|
|
|
_Driver->endProfileVBHardLock(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::profileVBHardAllocation(std::vector<std::string> &result)
|
|
|
|
{
|
|
|
|
_Driver->profileVBHardAllocation(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::startProfileIBLock()
|
|
|
|
{
|
|
|
|
_Driver->startProfileIBLock();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::endProfileIBLock(std::vector<std::string> &result)
|
|
|
|
{
|
|
|
|
_Driver->endProfileIBLock(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::profileIBAllocation(std::vector<std::string> &result)
|
|
|
|
{
|
|
|
|
_Driver->profileIBAllocation(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ***************************************************************************
|
|
|
|
void CDriverUser::profileTextureUsage(std::vector<std::string> &result)
|
|
|
|
{
|
|
|
|
_Driver->profileTextureUsage(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // NL3D
|