173 lines
5 KiB
Python
173 lines
5 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# \file config.py
|
|
# \brief Process configuration
|
|
# \date 2010-05-24 06:30GMT
|
|
# \author Jan Boon (Kaetemi)
|
|
# Python port of game data build pipeline.
|
|
# Process configuration.
|
|
#
|
|
# 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/>.
|
|
#
|
|
|
|
# *** PROCESS CONFIGURATION ***
|
|
|
|
|
|
# *** PROCESS CONFIG ***
|
|
ProcessToComplete = [ ]
|
|
ProcessToComplete += [ "properties" ]
|
|
ProcessToComplete += [ "ligo" ]
|
|
ProcessToComplete += [ "zone" ]
|
|
ProcessToComplete += [ "ig" ]
|
|
ProcessToComplete += [ "zone_light" ]
|
|
ProcessToComplete += [ "rbank" ]
|
|
ProcessToComplete += [ "ig_light" ]
|
|
ProcessToComplete += [ "ps" ]
|
|
ProcessToComplete += [ "ai_wmap" ]
|
|
ProcessToComplete += [ "pz" ]
|
|
ProcessToComplete += [ "cartographer" ]
|
|
|
|
|
|
# *** ECOSYSTEM AND CONTINENT NAMES ***
|
|
|
|
EcosystemName = "desert"
|
|
EcosystemPath = "ecosystems/" + EcosystemName
|
|
ContinentName = "r2_desert"
|
|
ContinentPath = "continents/" + ContinentName
|
|
CommonName = ContinentName
|
|
CommonPath = ContinentPath
|
|
|
|
|
|
# *** LANDSCAPE NAME ***
|
|
LandscapeName = ContinentName
|
|
|
|
# *** CONTINENT FILE ***
|
|
ContinentFile = ContinentName + "/" + ContinentName + ".continent"
|
|
|
|
|
|
|
|
# *** SHAPE EXPORT OPTIONS ***
|
|
|
|
# Compute lightmaps ?
|
|
ShapeExportOptExportLighting = "true"
|
|
|
|
# Cast shadow in lightmap ?
|
|
ShapeExportOptShadow = "true"
|
|
|
|
# Lighting limits. 0 : normal, 1 : soft shadows
|
|
ShapeExportOptLightingLimit = 0
|
|
|
|
# Lightmap lumel size
|
|
ShapeExportOptLumelSize = "0.25"
|
|
|
|
# Oversampling value. Can be 1, 2, 4 or 8
|
|
ShapeExportOptOversampling = 1
|
|
|
|
# Does the lightmap must be generated in 8 bits format ?
|
|
ShapeExportOpt8BitsLightmap = "false"
|
|
|
|
# Does the lightmaps export must generate logs ?
|
|
ShapeExportOptLightmapLog = "true"
|
|
|
|
# Coarse mesh texture mul size
|
|
TextureMulSizeValue = "1.5"
|
|
|
|
BuildShadowSkinEnabled = False
|
|
|
|
ClodConfigFile = ""
|
|
|
|
# *** COARSE MESH TEXTURE NAME ***
|
|
CoarseMeshTextureNames = [ ]
|
|
|
|
# *** BANK EXPORT OPTIONS ***
|
|
|
|
# *** POSTFIX USED BY THE MULTIPLE TILES SYSTEM ***
|
|
MultipleTilesPostfix = [ ]
|
|
MultipleTilesPostfix += [ "_sp" ]
|
|
MultipleTilesPostfix += [ "_su" ]
|
|
MultipleTilesPostfix += [ "_au" ]
|
|
MultipleTilesPostfix += [ "_wi" ]
|
|
|
|
# Name of the tilebank to use
|
|
BankTileBankName = EcosystemName
|
|
|
|
|
|
# *** LIGO OPTIONS ***
|
|
LigoExportLand = ContinentName + ".land"
|
|
LigoExportOnePass = 0
|
|
LigoExportColormap = "colormap_" + ContinentName + ".tga"
|
|
LigoExportHeightmap1 = "big_" + ContinentName + ".tga"
|
|
LigoExportZFactor1 = "1.0"
|
|
LigoExportHeightmap2 = "noise_" + ContinentName + ".tga"
|
|
LigoExportZFactor2 = "0.5"
|
|
LigoTileBankFile = "landscape/_texture_tiles/" + EcosystemName + "/" + EcosystemName + ".bank"
|
|
|
|
# *** ZONE REGIONS ( up-left, down-right ) ***
|
|
ZoneRegions = [ ]
|
|
ZoneRegions += [ [ "6_fb" ] + [ "67_hk" ] ]
|
|
|
|
# *** RBANK OPTIONS ***
|
|
|
|
# Options
|
|
RBankVerbose = 1
|
|
RBankConsistencyCheck = 0
|
|
RbankReduceSurfaces = 1
|
|
RbankSmoothBorders = 1
|
|
RbankComputeElevation = 0
|
|
RbankComputeLevels = 1
|
|
RbankLinkElements = 1
|
|
RbankCutEdges = 1
|
|
RbankUseZoneSquare = 0
|
|
|
|
# Region to compute ( ALPHA UPPER CASE! )
|
|
RbankZoneUl = "6_FB"
|
|
RbankZoneDr = "67_HK"
|
|
|
|
# Output names
|
|
RbankRbankName = LandscapeName
|
|
|
|
# *** MAPS OPTIONS ***
|
|
ReduceBitmapFactor = 0
|
|
# list all panoply files
|
|
MapPanoplyFileList = None
|
|
# name of the .hlsbank to build.
|
|
MapHlsBankFileName = None
|
|
|
|
# *** AI WMAP OPTIONS ***
|
|
AiWmapContinentName = ContinentName
|
|
AiWmapVerbose = 0
|
|
AiWmapStartPoints = [ ]
|
|
# AiWmapStartPoints += [ ContinentName + " 21508 -1332" ]
|
|
# AiWmapStartPoints += [ ContinentName + " 22043 -1083" ]
|
|
AiWmapStartPoints += [ ContinentName + " 22996 -1253" ]
|
|
AiWmapStartPoints += [ ContinentName + " 23605 -1206" ]
|
|
# AiWmapStartPoints += [ ContinentName + " 24545 -1245" ] # CRASH
|
|
# AiWmapStartPoints += [ ContinentName + " 25396 -1319" ]
|
|
# AiWmapStartPoints += [ ContinentName + " 25930 -1250" ]
|
|
# AiWmapStartPoints += [ ContinentName + " 26804 -1283" ] # CRASH
|
|
# AiWmapStartPoints += [ ContinentName + " 27645 -1237" ]
|
|
AiWmapStartPoints += [ ContinentName + " 28935 -1353" ]
|
|
AiWmapStartPoints += [ ContinentName + " 29736 -1234" ]
|
|
AiWmapStartPoints += [ ContinentName + " 30596 -1353" ]
|
|
AiWmapStartPoints += [ ContinentName + " 30574 -2090" ]
|
|
# AiWmapStartPoints += [ ContinentName + " 28992 -2053" ]
|
|
|
|
# *** PZ OPTIONS ***
|
|
PackedZoneCWMap = ContinentName + "_0.cwmap2"
|
|
|
|
# *** CARTOGRAPHER OPTIONS ***
|
|
CartographerContinent = ContinentName
|