Ejemplo n.º 1
0
        internal static void LoadAllMapDecalMaps()
        {
            UrlDir.UrlConfig[] configs = GameDatabase.Instance.GetConfigs("KK_DecalsMap");

            foreach (UrlDir.UrlConfig conf in configs)
            {
                //create new Instance and Register in Database
                MapDecalsMap newMapDecalInstance = ScriptableObject.CreateInstance <MapDecalsMap>();
                // Load Settings into instance
                ParseDecalsMapConfig(newMapDecalInstance, conf.config);

                newMapDecalInstance.path       = Path.GetDirectoryName(Path.GetDirectoryName(conf.url));
                newMapDecalInstance.mapTexture = KKGraphics.GetTexture(newMapDecalInstance.path + "/" + newMapDecalInstance.Image, false);

                if (newMapDecalInstance.mapTexture == null)
                {
                    Log.UserError("Image File " + newMapDecalInstance.path + "/" + newMapDecalInstance.Image + " could not be loaded");
                    continue;
                }

                if (newMapDecalInstance.UseAsHeighMap)
                {
                    newMapDecalInstance.CreateMap(MapSO.MapDepth.Greyscale, newMapDecalInstance.mapTexture);
                    newMapDecalInstance.isHeightMap = true;
                }
                else
                {
                    newMapDecalInstance.CreateMap(MapSO.MapDepth.RGBA, newMapDecalInstance.mapTexture);
                }
                //Log.Normal("DecalsMap " + newMapDecalInstance.Name + " imported: " + (newMapDecalInstance.isHeightMap? "as HeighMap" : "as ColorMap"));

                newMapDecalInstance.map = newMapDecalInstance as MapSO;
                DecalsDatabase.RegisterMap(newMapDecalInstance);
            }
        }
Ejemplo n.º 2
0
 internal static void RegisterMap(MapDecalsMap decalMap)
 {
     if (decalMap.isHeightMap)
     {
         if (heightMapList.ContainsKey(decalMap.Name))
         {
             Log.UserInfo("duplicate DecalMap name: " + decalMap.Name + " ,found");
             return;
         }
         else
         {
             heightMapList.Add(decalMap.Name, decalMap);
             allHeightMaps.Add(decalMap);
         }
     }
     else
     {
         if (colorMapList.ContainsKey(decalMap.Name))
         {
             Log.UserInfo("duplicate DecalMap name: " + decalMap.Name + " ,found");
             return;
         }
         else
         {
             colorMapList.Add(decalMap.Name, decalMap);
             allColorMaps.Add(decalMap);
         }
     }
 }
Ejemplo n.º 3
0
        /// <summary>
        /// Parser for MapDecalInstance Objects
        /// </summary>
        /// <param name="target"></param>
        /// <param name="cfgNode"></param>
        internal static void ParseDecalsMapConfig(MapDecalsMap target, ConfigNode cfgNode)
        {
            if (!ConfigUtil.initialized)
            {
                ConfigUtil.InitTypes();
            }

            foreach (var field in ConfigUtil.mapDecalsMapFields.Values)
            {
                ConfigUtil.ReadCFGNode(target, field, cfgNode);
            }
        }
Ejemplo n.º 4
0
        internal static void GetSquadMaps()
        {
            MapDecalsMap noHeighmap = ScriptableObject.CreateInstance <MapDecalsMap>();

            noHeighmap.map         = null;
            noHeighmap.isHeightMap = true;
            noHeighmap.Name        = "None";

            MapDecalsMap noColormap = ScriptableObject.CreateInstance <MapDecalsMap>();

            noColormap.map         = null;
            noColormap.isHeightMap = false;
            noColormap.Name        = "None";

            DecalsDatabase.RegisterMap(noHeighmap);
            DecalsDatabase.RegisterMap(noColormap);


            PQSMod_MapDecal[] allMapDecals = Resources.FindObjectsOfTypeAll <PQSMod_MapDecal>();

            foreach (var mapDecal in allMapDecals)
            {
                //Log.Normal("");
                //    Log.Normal("Stats for: " + mapDecal.name);
                if (mapDecal.heightMap != null)
                {
                    MapDecalsMap heightMap = ScriptableObject.CreateInstance <MapDecalsMap>();
                    heightMap.isHeightMap = true;
                    heightMap.map         = mapDecal.heightMap;
                    heightMap.Name        = "height_" + mapDecal.name;
                    DecalsDatabase.RegisterMap(heightMap);

                    // Log.Normal("MapDecal: heightmap: " + mapDecal.heightMap.name);
                }

                if (mapDecal.colorMap != null)
                {
                    MapDecalsMap colorMap = ScriptableObject.CreateInstance <MapDecalsMap>();
                    colorMap.isHeightMap = false;
                    colorMap.map         = mapDecal.colorMap;
                    colorMap.Name        = "color_" + mapDecal.name;
                    DecalsDatabase.RegisterMap(colorMap);
                    //      Log.Normal("MapDecal: colormap: " + mapDecal.colorMap.name);
                }


                //Log.Normal("MapDecal: Radius: " + mapDecal.radius.ToString());
                //Log.Normal("MapDecal: Vector: " + mapDecal.position.ToString());
                //Log.Normal("MapDecal: Offset: " + mapDecal.absoluteOffset);
                //Log.Normal("MapDecal: UseABS: " + mapDecal.absolute.ToString());

                //Log.Normal("MapDecal: Heightmapdeformity: " + mapDecal.heightMapDeformity.ToString());

                //Log.Normal("MapDecal: modisenabled " + mapDecal.modEnabled.ToString());
                //Log.Normal("MapDecal: order: " + mapDecal.order.ToString());
                //Log.Normal("MapDecal: requirement: " + mapDecal.requirements.ToString());
                //Log.Normal("MapDecal: smoothcolor: " + mapDecal.smoothColor.ToString());
                //Log.Normal("MapDecal: smoothhheight: " + mapDecal.smoothHeight.ToString());
                //if (mapDecal.sphere != null )
                //    Log.Normal("MapDecal: sphere: " + mapDecal.sphere.name.ToString());
                //Log.Normal("MapDecal: Alphaheight: " + mapDecal.useAlphaHeightSmoothing.ToString());
                //Log.Normal("MapDecal: Cullblack: " + mapDecal.cullBlack.ToString());
            }

            PQSMod_MapDecalTangent[] allMapDecalTangents = Resources.FindObjectsOfTypeAll <PQSMod_MapDecalTangent>();

            foreach (var mapDecal in allMapDecalTangents)
            {
                //Log.Normal("");
                //Log.Normal("Stats for: " + mapDecal.name);

                if (mapDecal.heightMap != null)
                {
                    MapDecalsMap heightMap = ScriptableObject.CreateInstance <MapDecalsMap>();
                    heightMap.isHeightMap = true;
                    heightMap.map         = mapDecal.heightMap;
                    heightMap.Name        = "height_" + mapDecal.name;
                    DecalsDatabase.RegisterMap(heightMap);
                    //Log.Normal("MapDecalTGT: heightmap: " + mapDecal.heightMap.name);
                }

                if (mapDecal.colorMap != null)
                {
                    MapDecalsMap colorMap = ScriptableObject.CreateInstance <MapDecalsMap>();
                    colorMap.isHeightMap = false;
                    colorMap.map         = mapDecal.colorMap;
                    colorMap.Name        = "color_" + mapDecal.name;
                    DecalsDatabase.RegisterMap(colorMap);
                    //Log.Normal("MapDecalTGT: colormap: " + mapDecal.colorMap.name);
                }

                //Log.Normal("MapDecalTGT: Radius: " + mapDecal.radius.ToString());
                //Log.Normal("MapDecalTGT: Vector:  " + mapDecal.position.ToString());
                //Log.Normal("MapDecalTGT: Offset: " + mapDecal.absoluteOffset);
                //Log.Normal("MapDecalTGT: UseABS: " + mapDecal.absolute.ToString());

                //Log.Normal("MapDecalTGT: Heightmapdeformity: " + mapDecal.heightMapDeformity.ToString());

                //Log.Normal("MapDecalTGT: modisenabled: " + mapDecal.modEnabled.ToString());
                //Log.Normal("MapDecalTGT: order: " + mapDecal.order.ToString());
                //Log.Normal("MapDecalTGT: requirement: " + mapDecal.requirements.ToString());
                //Log.Normal("MapDecalTGT: smoothcolor: " + mapDecal.smoothColor.ToString());
                //Log.Normal("MapDecalTGT: smoothhheight: " + mapDecal.smoothHeight.ToString());
                //if (mapDecal.sphere != null)
                //    Log.Normal("MapDecalTGT: sphere: " + mapDecal.sphere.name.ToString());
                //Log.Normal("MapDecalTGT: Alphaheight: " + mapDecal.useAlphaHeightSmoothing.ToString());
                //Log.Normal("MapDecalTGT: Cullblack: " + mapDecal.cullBlack.ToString());
            }

            Log.Normal("Imported " + (DecalsDatabase.allHeightMaps.Count + DecalsDatabase.allColorMaps.Count) + " Maps from around the universe");
            //foreach (var map in DecalsDatabase.allDecalMaps)
            //{
            //    Log.Normal("DecalMap: " + map.name);
            //}
        }