mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 17:29:10 +00:00
Move islands entry points to data
This commit is contained in:
parent
c5d4dc0355
commit
d76e058247
4 changed files with 2 additions and 3959 deletions
|
@ -1,27 +0,0 @@
|
||||||
SearchPaths =
|
|
||||||
{
|
|
||||||
"r:/code/ryzom/data_common/r2", // entry points file
|
|
||||||
"R:/code/ryzom/data_shard/collisions",
|
|
||||||
"F:/r2 daily",
|
|
||||||
};
|
|
||||||
|
|
||||||
Continents = {"r2_jungle", "r2_forest", "r2_lakes", "r2_desert","r2_roots"};
|
|
||||||
|
|
||||||
SeasonSuffixes = { "_sp"}; //{ "_sp", "_su", "_au", "_wi" };
|
|
||||||
|
|
||||||
MeterPixelSize = 2;
|
|
||||||
|
|
||||||
OutDir = "F:/perso/code/HelloWorld/Affichage/Final";
|
|
||||||
|
|
||||||
CompleteIslandsFile= "r2_islands.xml";
|
|
||||||
|
|
||||||
EntryPointsFile= "ring_map_entry_ponts.txt";
|
|
||||||
|
|
||||||
Vegetation = true;
|
|
||||||
|
|
||||||
InverseZTest = true;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -56,23 +56,8 @@ CScenarioEntryPoints::CScenarioEntryPoints()
|
||||||
|
|
||||||
void CScenarioEntryPoints::init()
|
void CScenarioEntryPoints::init()
|
||||||
{
|
{
|
||||||
CConfigFile cf;
|
_CompleteIslandsFilename = "r2_islands.xml";
|
||||||
|
_EntryPointsFilename = "r2_entry_points.txt";
|
||||||
cf.load("IslandScreenshots.cfg", true);
|
|
||||||
|
|
||||||
// get the scenario entry points file
|
|
||||||
CConfigFile::CVar * ciFile = cf.getVarPtr("CompleteIslandsFile");
|
|
||||||
if(ciFile)
|
|
||||||
{
|
|
||||||
_CompleteIslandsFilename = ciFile->asString();
|
|
||||||
}
|
|
||||||
|
|
||||||
// get the scenario entry points file
|
|
||||||
CConfigFile::CVar * epFile = cf.getVarPtr("EntryPointsFile");
|
|
||||||
if(epFile)
|
|
||||||
{
|
|
||||||
_EntryPointsFilename = epFile->asString();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue