Changed: Added new variable DumpVisualSlotsIndex to choose if we need to dump all visual slots index in vs_index.txt

--HG--
branch : develop
This commit is contained in:
kervala 2015-12-12 11:24:01 +01:00
parent c245155525
commit e66f15dba6
4 changed files with 9 additions and 2 deletions

View file

@ -8,3 +8,4 @@ WorldSheet = "ryzom.world";
PrimitivesPath = "../../common/data_leveldesign/primitives";
OutputDataPath = "../../client/data";
LigoPrimitiveClass = "world_editor_classes.xml";
DumpVisualSlotsIndex = 1;

View file

@ -147,6 +147,7 @@ const std::string ConfigFileName = "sheets_packer.cfg";
//---------------------------------------------------
CClientConfig::CClientConfig()
{
DumpVisualSlotsIndex = false;
}// CClientConfig //
@ -180,6 +181,8 @@ void setValues()
READ_STRING(OutputDataPath)
// Ligo primitive class
READ_STRING(LigoPrimitiveClass)
//Dump VisualSlots index
READ_BOOL(DumpVisualSlotsIndex)
/////////////
// FILTERS //

View file

@ -51,8 +51,11 @@ struct CClientConfig
/// Path where to create lmconts.packed
std::string OutputDataPath;
// File containing LIGO primitives
std::string LigoPrimitiveClass;
std::string LigoPrimitiveClass;
// Whether dump visual slots index or not
bool DumpVisualSlotsIndex;
public:
/// Constructor.

View file

@ -93,7 +93,7 @@ bool init()
nlinfo("Loading sheets...");
IProgressCallback callback;
SheetMngr.setOutputDataPath(AppCfg.OutputDataPath);
SheetMngr.load (callback, true, true);
SheetMngr.load (callback, true, true, AppCfg.DumpVisualSlotsIndex);
// Make the lmconts.packed file
if (!LigoConfig.readPrimitiveClass (AppCfg.LigoPrimitiveClass.c_str(), false))