From a519de3e5d022581e4efc7f3ee467ae13759f494 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Sat, 27 Jul 2013 04:03:05 +0200 Subject: [PATCH] Build ligo outside the database --- .../ecosystem_project_template/directories.py | 13 ++++++----- .../build_gamedata/processes/ligo/0_setup.py | 22 +++++++++---------- .../build_gamedata/processes/ligo/1_export.py | 18 +++++++-------- .../continents/indoors/directories.py | 12 +++++----- .../continents/newbieland/directories.py | 12 +++++----- .../ecosystems/desert/directories.py | 14 ++++++------ .../workspace/ecosystems/desert/process.py | 2 +- .../ecosystems/jungle/directories.py | 14 ++++++------ .../workspace/ecosystems/jungle/process.py | 2 +- .../ecosystems/lacustre/directories.py | 14 ++++++------ .../workspace/ecosystems/lacustre/process.py | 2 +- .../ecosystems/primes_racines/directories.py | 14 ++++++------ .../ecosystems/primes_racines/process.py | 2 +- 13 files changed, 71 insertions(+), 70 deletions(-) diff --git a/code/nel/tools/build_gamedata/generators/ecosystem_project_template/directories.py b/code/nel/tools/build_gamedata/generators/ecosystem_project_template/directories.py index 5eb60e311..90c8b5a91 100644 --- a/code/nel/tools/build_gamedata/generators/ecosystem_project_template/directories.py +++ b/code/nel/tools/build_gamedata/generators/ecosystem_project_template/directories.py @@ -145,18 +145,19 @@ VegetTagExportDirectory = CommonPath + "/veget_tag" VegetSetExportDirectory = CommonPath + "/veget_set" # Ligo directories -LigoDatabaseExportDirectory = "landscape/ligo/" + EcosystemName -LigoDatabaseIgExportDirectory = LigoDatabaseExportDirectory + "/igs" -LigoDatabaseZoneExportDirectory = LigoDatabaseExportDirectory + "/zones" -LigoDatabaseZoneLigoExportDirectory = LigoDatabaseExportDirectory + "/zoneligos" -LigoDatabaseCmbExportDirectory = LigoDatabaseExportDirectory + "/cmb" -LigoTagExportDirectory = CommonPath + "/ligo_tag" +LigoEcosystemExportDirectory = CommonPath + "/ligo_es" +LigoEcosystemIgExportDirectory = LigoEcosystemExportDirectory + "/igs" +LigoEcosystemZoneExportDirectory = LigoEcosystemExportDirectory + "/zones" +LigoEcosystemZoneLigoExportDirectory = LigoEcosystemExportDirectory + "/zoneligos" +LigoEcosystemCmbExportDirectory = LigoEcosystemExportDirectory + "/cmb" +LigoEcosystemTagExportDirectory = CommonPath + "/ligo_es_tag" # Zone directories ZoneExportDirectory = CommonPath + "/zone" # PACS primitives directories PacsPrimExportDirectory = CommonPath + "/pacs_prim" +PacsPrimTagExportDirectory = CommonPath + "/pacs_prim_tag" # *** BUILD DIRECTORIES FOR THE BUILD PIPELINE *** diff --git a/code/nel/tools/build_gamedata/processes/ligo/0_setup.py b/code/nel/tools/build_gamedata/processes/ligo/0_setup.py index 0a558c9b1..3343e07ce 100644 --- a/code/nel/tools/build_gamedata/processes/ligo/0_setup.py +++ b/code/nel/tools/build_gamedata/processes/ligo/0_setup.py @@ -52,12 +52,12 @@ mkPath(log, DatabaseDirectory + "/" + ZoneSourceDirectory[0]) # Setup export directories printLog(log, ">>> Setup export directories <<<") mkPath(log, ExportBuildDirectory + "/" + SmallbankExportDirectory) -mkPath(log, DatabaseDirectory + "/" + LigoDatabaseExportDirectory) -mkPath(log, DatabaseDirectory + "/" + LigoDatabaseIgExportDirectory) -mkPath(log, DatabaseDirectory + "/" + LigoDatabaseZoneExportDirectory) -mkPath(log, DatabaseDirectory + "/" + LigoDatabaseZoneLigoExportDirectory) -mkPath(log, DatabaseDirectory + "/" + LigoDatabaseCmbExportDirectory) -mkPath(log, ExportBuildDirectory + "/" + LigoTagExportDirectory) +mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemExportDirectory) +mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemIgExportDirectory) +mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemZoneExportDirectory) +mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemZoneLigoExportDirectory) +mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemCmbExportDirectory) +mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory) mkPath(log, ExportBuildDirectory + "/" + ZoneExportDirectory) # Setup build directories @@ -83,11 +83,11 @@ if LigoExportLand != "": cf.write("OutIGDir = \"" + ExportBuildDirectory + "/" + LigoIgLandBuildDirectory + "\";\n") cf.write("AdditionnalIGOutDir = \"" + ExportBuildDirectory + "/" + LigoIgOtherBuildDirectory + "\";\n") cf.write("\n") - cf.write("RefZoneDir = \"" + DatabaseDirectory + "/" + LigoDatabaseZoneExportDirectory+ "\";\n") # FIXME - cf.write("RefIGDir = \"" + DatabaseDirectory + "/" + LigoDatabaseIgExportDirectory + "\";\n") - cf.write("AdditionnalIGInDir = \"" + DatabaseDirectory + "/" + LigoDatabaseIgExportDirectory + "\";\n") # FIXME + cf.write("RefZoneDir = \"" + ExportBuildDirectory + "/" + LigoEcosystemZoneExportDirectory+ "\";\n") # FIXME + cf.write("RefIGDir = \"" + ExportBuildDirectory + "/" + LigoEcosystemIgExportDirectory + "\";\n") + cf.write("AdditionnalIGInDir = \"" + ExportBuildDirectory + "/" + LigoEcosystemIgExportDirectory + "\";\n") # FIXME cf.write("ContinentsDir = \"" + LeveldesignWorldDirectory + "\";\n") - cf.write("LigoBankDir = \"" + DatabaseDirectory + "/" + LigoDatabaseZoneLigoExportDirectory + "\";\n") # FIXME + cf.write("LigoBankDir = \"" + ExportBuildDirectory + "/" + LigoEcosystemZoneLigoExportDirectory + "\";\n") # FIXME cf.write("\n") cf.write("TileBankFile = \"" + DatabaseDirectory + "/" + LigoTileBankFile + "\";\n") cf.write("\n") @@ -102,7 +102,7 @@ if LigoExportLand != "": cf.write("Threshold = 1;\n") cf.write("\n") cf.write("DFNDir = \"" + LeveldesignDfnDirectory + "\";\n") - cf.write("RefCMBDir = \"" + DatabaseDirectory + "/" + LigoDatabaseCmbExportDirectory + "\";\n") # FIXME + cf.write("RefCMBDir = \"" + ExportBuildDirectory + "/" + LigoEcosystemCmbExportDirectory + "\";\n") # FIXME cf.write("OutCMBDir = \"" + ExportBuildDirectory + "/" + RBankCmbExportDirectory + "\";\n") cf.write("\n") cf.write("ContinentFile = \"" + LeveldesignWorldDirectory + "/" + ContinentFile + "\";\n") diff --git a/code/nel/tools/build_gamedata/processes/ligo/1_export.py b/code/nel/tools/build_gamedata/processes/ligo/1_export.py index c18eceee7..ea8db9560 100644 --- a/code/nel/tools/build_gamedata/processes/ligo/1_export.py +++ b/code/nel/tools/build_gamedata/processes/ligo/1_export.py @@ -55,23 +55,23 @@ if LigoExportLand == "" or LigoExportOnePass == 1: ligoIniPath = MaxUserDirectory + "/plugcfg/nelligo.ini" mkPath(log, ExportBuildDirectory + "/" + SmallbankExportDirectory) mkPath(log, DatabaseDirectory + "/" + LigoMaxSourceDirectory) - mkPath(log, DatabaseDirectory + "/" + LigoDatabaseExportDirectory) - mkPath(log, DatabaseDirectory + "/" + LigoDatabaseIgExportDirectory) - mkPath(log, DatabaseDirectory + "/" + LigoDatabaseZoneExportDirectory) - mkPath(log, DatabaseDirectory + "/" + LigoDatabaseZoneLigoExportDirectory) - mkPath(log, DatabaseDirectory + "/" + LigoDatabaseCmbExportDirectory) + mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemExportDirectory) + mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemIgExportDirectory) + mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemZoneExportDirectory) + mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemZoneLigoExportDirectory) + mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemCmbExportDirectory) mkPath(log, DatabaseDirectory + "/" + ZoneSourceDirectory[0]) - mkPath(log, ExportBuildDirectory + "/" + LigoTagExportDirectory) - if (needUpdateDirByTagLog(log, DatabaseDirectory + "/" + LigoMaxSourceDirectory, ".max", ExportBuildDirectory + "/" + LigoTagExportDirectory, ".max.tag")): + mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory) + if (needUpdateDirByTagLog(log, DatabaseDirectory + "/" + LigoMaxSourceDirectory, ".max", ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory, ".max.tag")): printLog(log, "WRITE " + ligoIniPath) ligoIni = open(ligoIniPath, "w") ligoIni.write("[LigoConfig]\n") ligoIni.write("LigoPath=" + DatabaseDirectory + "/" + LigoMaxSourceDirectory + "/\n") - ligoIni.write("LigoExportPath=" + DatabaseDirectory + "/" + LigoDatabaseExportDirectory + "/\n") + ligoIni.write("LigoExportPath=" + ExportBuildDirectory + "/" + LigoEcosystemExportDirectory + "/\n") ligoIni.write("LigoOldZonePath=" + DatabaseDirectory + "/" + ZoneSourceDirectory[0] + "/\n") ligoIni.close() - outDirTag = ExportBuildDirectory + "/" + LigoTagExportDirectory + outDirTag = ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory logFile = ScriptDirectory + "/processes/ligo/log.log" smallBank = ExportBuildDirectory + "/" + SmallbankExportDirectory + "/" + BankTileBankName + ".smallbank" diff --git a/code/ryzom/tools/build_gamedata/workspace/continents/indoors/directories.py b/code/ryzom/tools/build_gamedata/workspace/continents/indoors/directories.py index ae098d437..92dfb47a7 100644 --- a/code/ryzom/tools/build_gamedata/workspace/continents/indoors/directories.py +++ b/code/ryzom/tools/build_gamedata/workspace/continents/indoors/directories.py @@ -163,12 +163,12 @@ ShapeLightmapNotOptimizedExportDirectory = CommonPath + "/shape_lightmap_not_opt ShapeAnimExportDirectory = CommonPath + "/shape_anim" # Ligo directories -LigoDatabaseExportDirectory = "landscape/ligo/" + EcosystemName -LigoDatabaseIgExportDirectory = LigoDatabaseExportDirectory + "/igs" -LigoDatabaseZoneExportDirectory = LigoDatabaseExportDirectory + "/zones" -LigoDatabaseZoneLigoExportDirectory = LigoDatabaseExportDirectory + "/zoneligos" -LigoDatabaseCmbExportDirectory = LigoDatabaseExportDirectory + "/cmb" -LigoTagExportDirectory = "ecosystems/" + EcosystemName + "/ligo_tag" +LigoEcosystemExportDirectory = EcosystemPath + "/ligo_es" +LigoEcosystemIgExportDirectory = LigoEcosystemExportDirectory + "/igs" +LigoEcosystemZoneExportDirectory = LigoEcosystemExportDirectory + "/zones" +LigoEcosystemZoneLigoExportDirectory = LigoEcosystemExportDirectory + "/zoneligos" +LigoEcosystemCmbExportDirectory = LigoEcosystemExportDirectory + "/cmb" +LigoEcosystemTagExportDirectory = EcosystemPath + "/ligo_es_tag" # Zone directories ZoneExportDirectory = ContinentPath + "/zone" diff --git a/code/ryzom/tools/build_gamedata/workspace/continents/newbieland/directories.py b/code/ryzom/tools/build_gamedata/workspace/continents/newbieland/directories.py index 111acb560..d078ac4fa 100644 --- a/code/ryzom/tools/build_gamedata/workspace/continents/newbieland/directories.py +++ b/code/ryzom/tools/build_gamedata/workspace/continents/newbieland/directories.py @@ -136,12 +136,12 @@ ShapeLightmapNotOptimizedExportDirectory = CommonPath + "/shape_lightmap_not_opt ShapeAnimExportDirectory = CommonPath + "/shape_anim" # Ligo directories -LigoDatabaseExportDirectory = "landscape/ligo/" + EcosystemName -LigoDatabaseIgExportDirectory = LigoDatabaseExportDirectory + "/igs" -LigoDatabaseZoneExportDirectory = LigoDatabaseExportDirectory + "/zones" -LigoDatabaseZoneLigoExportDirectory = LigoDatabaseExportDirectory + "/zoneligos" -LigoDatabaseCmbExportDirectory = LigoDatabaseExportDirectory + "/cmb" -LigoTagExportDirectory = "ecosystems/" + EcosystemName + "/ligo_tag" +LigoEcosystemExportDirectory = EcosystemPath + "/ligo_es" +LigoEcosystemIgExportDirectory = LigoEcosystemExportDirectory + "/igs" +LigoEcosystemZoneExportDirectory = LigoEcosystemExportDirectory + "/zones" +LigoEcosystemZoneLigoExportDirectory = LigoEcosystemExportDirectory + "/zoneligos" +LigoEcosystemCmbExportDirectory = LigoEcosystemExportDirectory + "/cmb" +LigoEcosystemTagExportDirectory = EcosystemPath + "/ligo_es_tag" # Zone directories ZoneExportDirectory = ContinentPath + "/zone" diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/directories.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/directories.py index 0a0534f1c..b78c6d8d8 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/directories.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/directories.py @@ -6,7 +6,7 @@ # # \file directories.py # \brief Directories configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # \date 2001-2005 # \author Nevrax @@ -194,12 +194,12 @@ VegetTagExportDirectory = CommonPath + "/veget_tag" VegetSetExportDirectory = CommonPath + "/veget_set" # Ligo directories -LigoDatabaseExportDirectory = "landscape/ligo/" + EcosystemName -LigoDatabaseIgExportDirectory = LigoDatabaseExportDirectory + "/igs" -LigoDatabaseZoneExportDirectory = LigoDatabaseExportDirectory + "/zones" -LigoDatabaseZoneLigoExportDirectory = LigoDatabaseExportDirectory + "/zoneligos" -LigoDatabaseCmbExportDirectory = LigoDatabaseExportDirectory + "/cmb" -LigoTagExportDirectory = CommonPath + "/ligo_tag" +LigoEcosystemExportDirectory = CommonPath + "/ligo_es" +LigoEcosystemIgExportDirectory = LigoEcosystemExportDirectory + "/igs" +LigoEcosystemZoneExportDirectory = LigoEcosystemExportDirectory + "/zones" +LigoEcosystemZoneLigoExportDirectory = LigoEcosystemExportDirectory + "/zoneligos" +LigoEcosystemCmbExportDirectory = LigoEcosystemExportDirectory + "/cmb" +LigoEcosystemTagExportDirectory = CommonPath + "/ligo_es_tag" # Zone directories ZoneExportDirectory = CommonPath + "/zone" diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/process.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/process.py index 316d4f58e..90a069365 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/process.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/desert/process.py @@ -6,7 +6,7 @@ # # \file config.py # \brief Process configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # Python port of game data build pipeline. # Process configuration for 'desert' ecosystem. diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/directories.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/directories.py index 716afc247..9f69051d9 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/directories.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/directories.py @@ -6,7 +6,7 @@ # # \file directories.py # \brief Directories configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # \date 2001-2005 # \author Nevrax @@ -198,12 +198,12 @@ VegetTagExportDirectory = CommonPath + "/veget_tag" VegetSetExportDirectory = CommonPath + "/veget_set" # Ligo directories -LigoDatabaseExportDirectory = "landscape/ligo/" + EcosystemName -LigoDatabaseIgExportDirectory = LigoDatabaseExportDirectory + "/igs" -LigoDatabaseZoneExportDirectory = LigoDatabaseExportDirectory + "/zones" -LigoDatabaseZoneLigoExportDirectory = LigoDatabaseExportDirectory + "/zoneligos" -LigoDatabaseCmbExportDirectory = LigoDatabaseExportDirectory + "/cmb" -LigoTagExportDirectory = CommonPath + "/ligo_tag" +LigoEcosystemExportDirectory = CommonPath + "/ligo_es" +LigoEcosystemIgExportDirectory = LigoEcosystemExportDirectory + "/igs" +LigoEcosystemZoneExportDirectory = LigoEcosystemExportDirectory + "/zones" +LigoEcosystemZoneLigoExportDirectory = LigoEcosystemExportDirectory + "/zoneligos" +LigoEcosystemCmbExportDirectory = LigoEcosystemExportDirectory + "/cmb" +LigoEcosystemTagExportDirectory = CommonPath + "/ligo_es_tag" # Zone directories ZoneExportDirectory = CommonPath + "/zone" diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/process.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/process.py index 1e3e6c677..ea43dba28 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/process.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/jungle/process.py @@ -6,7 +6,7 @@ # # \file config.py # \brief Process configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # Python port of game data build pipeline. # Process configuration for 'jungle' ecosystem. diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/directories.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/directories.py index 37e35b51e..4a22a9fa7 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/directories.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/directories.py @@ -6,7 +6,7 @@ # # \file directories.py # \brief Directories configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # \date 2001-2005 # \author Nevrax @@ -206,12 +206,12 @@ VegetTagExportDirectory = CommonPath + "/veget_tag" VegetSetExportDirectory = CommonPath + "/veget_set" # Ligo directories -LigoDatabaseExportDirectory = "landscape/ligo/" + EcosystemName -LigoDatabaseIgExportDirectory = LigoDatabaseExportDirectory + "/igs" -LigoDatabaseZoneExportDirectory = LigoDatabaseExportDirectory + "/zones" -LigoDatabaseZoneLigoExportDirectory = LigoDatabaseExportDirectory + "/zoneligos" -LigoDatabaseCmbExportDirectory = LigoDatabaseExportDirectory + "/cmb" -LigoTagExportDirectory = CommonPath + "/ligo_tag" +LigoEcosystemExportDirectory = CommonPath + "/ligo_es" +LigoEcosystemIgExportDirectory = LigoEcosystemExportDirectory + "/igs" +LigoEcosystemZoneExportDirectory = LigoEcosystemExportDirectory + "/zones" +LigoEcosystemZoneLigoExportDirectory = LigoEcosystemExportDirectory + "/zoneligos" +LigoEcosystemCmbExportDirectory = LigoEcosystemExportDirectory + "/cmb" +LigoEcosystemTagExportDirectory = CommonPath + "/ligo_es_tag" # Zone directories ZoneExportDirectory = CommonPath + "/zone" diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/process.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/process.py index 5ff7e22b0..8340a0728 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/process.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/lacustre/process.py @@ -6,7 +6,7 @@ # # \file config.py # \brief Process configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # Python port of game data build pipeline. # Process configuration for 'lacustre' ecosystem. diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/directories.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/directories.py index c718e90ec..db2fb64fa 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/directories.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/directories.py @@ -6,7 +6,7 @@ # # \file directories.py # \brief Directories configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # \date 2001-2005 # \author Nevrax @@ -191,12 +191,12 @@ VegetTagExportDirectory = CommonPath + "/veget_tag" VegetSetExportDirectory = CommonPath + "/veget_set" # Ligo directories -LigoDatabaseExportDirectory = "landscape/ligo/" + EcosystemName -LigoDatabaseIgExportDirectory = LigoDatabaseExportDirectory + "/igs" -LigoDatabaseZoneExportDirectory = LigoDatabaseExportDirectory + "/zones" -LigoDatabaseZoneLigoExportDirectory = LigoDatabaseExportDirectory + "/zoneligos" -LigoDatabaseCmbExportDirectory = LigoDatabaseExportDirectory + "/cmb" -LigoTagExportDirectory = CommonPath + "/ligo_tag" +LigoEcosystemExportDirectory = CommonPath + "/ligo_es" +LigoEcosystemIgExportDirectory = LigoEcosystemExportDirectory + "/igs" +LigoEcosystemZoneExportDirectory = LigoEcosystemExportDirectory + "/zones" +LigoEcosystemZoneLigoExportDirectory = LigoEcosystemExportDirectory + "/zoneligos" +LigoEcosystemCmbExportDirectory = LigoEcosystemExportDirectory + "/cmb" +LigoEcosystemTagExportDirectory = CommonPath + "/ligo_es_tag" # Zone directories ZoneExportDirectory = CommonPath + "/zone" diff --git a/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/process.py b/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/process.py index 38a7de394..3d35c2e58 100644 --- a/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/process.py +++ b/code/ryzom/tools/build_gamedata/workspace/ecosystems/primes_racines/process.py @@ -6,7 +6,7 @@ # # \file config.py # \brief Process configuration -# \date 2010-09-19-14-19-GMT +# \date 2013-07-27-02-01-GMT # \author Jan Boon (Kaetemi) # Python port of game data build pipeline. # Process configuration for 'primes_racines' ecosystem.