Esempio n. 1
0
 void Awake()
 {
     if (_instance != null)
     {
         this.enabled = false;
     }
     _instance = this;
 }
        public static void initMod()
        {
            Debug.Log("init of EnhancedSky standalone");

            gameobjectEnhancedSky = new GameObject("EnhancedSkyController");

            componentPresetContainer = gameobjectEnhancedSky.AddComponent <PresetContainer>() as PresetContainer;
            SetPresetContainerValues(componentPresetContainer);
            PresetContainer.Instance = componentPresetContainer;

            componentSkyManager = gameobjectEnhancedSky.AddComponent <SkyManager>() as SkyManager;
            SkyManager.instance = componentSkyManager;

            componentCloudGenerator = gameobjectEnhancedSky.AddComponent <CloudGenerator>() as CloudGenerator;

            componentSkyManager.ModSelf = mod;

            starMaskMat = new Material(shaderDepthMask);
            skyObjMat   = new Material(shaderUnlitAlphaWithFade);

            componentSkyManager.StarMaskMat = starMaskMat;
            componentSkyManager.SkyObjMat   = skyObjMat;
            componentSkyManager.StarsMat    = starsMat;
            componentSkyManager.SkyMat      = skyMat;

            if (containerPrefab)
            {
                GameObject container = Instantiate(containerPrefab) as GameObject;
                container.transform.SetParent(GameManager.Instance.ExteriorParent.transform, true);

                componentSkyManager.Container = container;

                //container.AddComponent<MoonController>();
                //container.AddComponent<AmbientFogLightController>();

                //container.transform.Find("SkyCam").gameObject.AddComponent<SkyCam>();
                //container.transform.Find("Stars").Find("StarParticles").gameObject.AddComponent<StarController>();
                //container.transform.Find("Rotator").gameObject.AddComponent<RotationScript>();
                //container.transform.Find("cloudPrefab").gameObject.AddComponent<Cloud>();

                GameObject goParticles = container.transform.Find("Stars").Find("StarParticles").gameObject;
                goParticles.GetComponent <ParticleSystemRenderer>().sharedMaterial = new Material(shaderUnlitAlphaWithFade);

                GameObject goSun = container.transform.Find("Rotator").Find("Sun").gameObject;
                goSun.GetComponent <LensFlare>().flare = sunFlare;
                goSun.GetComponent <Light>().intensity = sunSize;
            }
            else
            {
                throw new System.NullReferenceException();
            }

            componentSkyManager.ToggleEnhancedSky(true);
            componentSkyManager.UseSunFlare  = enableSunFlare;
            componentSkyManager.cloudQuality = cloudQuality;
            componentSkyManager.SkyObjectSizeChange(0); // set normal size
        }
Esempio n. 3
0
        private static PresetContainer FindPreset()
        {
            PresetContainer pc = GameObject.FindObjectOfType <PresetContainer>();

            if (pc == null)
            {
                DaggerfallWorkshop.DaggerfallUnity.LogMessage("Could not locate PresetContainer in scene");
                return(null);
            }
            else
            {
                return(pc);
            }
        }
 void Destroy()
 {
     Instance = null;
 }
 void Awake()
 {
     if (_instance != null)
         this.enabled = false;
     _instance = this;
 }
Esempio n. 6
0
 void Destroy()
 {
     Instance = null;
 }
Esempio n. 7
0
        private static void SetPresetContainerValues(PresetContainer presetContainer)
        {
            // set color base
            Gradient gradient = new Gradient();

            GradientAlphaKey[] gak =
            {
                new GradientAlphaKey(55.0f / 255.0f,   0.0f),
                new GradientAlphaKey(75.0f / 255.0f,  0.21f),
                new GradientAlphaKey(255.0f / 255.0f, 0.31f),
                new GradientAlphaKey(255.0f / 255.0f, 0.69f),
                new GradientAlphaKey(75.0f / 255.0f,  0.79f),
                new GradientAlphaKey(75.0f / 255.0f, 1.0f)
            };
            string[] colorsAsHex = { "#3C3C3C", "#727272", "#A8553E", "#DAD6D6", "#D6D6D6", "#C5BFBF", "#A8553E", "#3C3C3C" };
            Color[]  colors      = new Color[colorsAsHex.Length];
            for (int i = 0; i < colors.Length; i++)
            {
                UnityEngine.ColorUtility.TryParseHtmlString(colorsAsHex[i], out colors[i]);
            }
            GradientColorKey[] gck =
            {
                new GradientColorKey(colors[0],   0.0f),
                new GradientColorKey(colors[1], 0.159f),
                new GradientColorKey(colors[2], 0.244f),
                new GradientColorKey(colors[3], 0.318f),
                new GradientColorKey(colors[4],   0.5f),
                new GradientColorKey(colors[5], 0.694f),
                new GradientColorKey(colors[6], 0.762f),
                new GradientColorKey(colors[7], 0.835f)
            };
            gradient.alphaKeys        = gak;
            gradient.colorKeys        = gck;
            presetContainer.colorBase = gradient;

            // set color over
            gradient = new Gradient();
            gak      = new GradientAlphaKey[] {
                new GradientAlphaKey(255.0f / 255.0f, 0.0f),
                new GradientAlphaKey(255.0f / 255.0f, 1.0f)
            };
            colorsAsHex = new string[] { "#131313", "#656565", "#C5C1C1", "#C2C2C2", "#656565", "#131313" };
            colors      = new Color[colorsAsHex.Length];
            for (int i = 0; i < colors.Length; i++)
            {
                UnityEngine.ColorUtility.TryParseHtmlString(colorsAsHex[i], out colors[i]);
            }
            gck = new GradientColorKey[] {
                new GradientColorKey(colors[0], 0.0f),
                new GradientColorKey(colors[1], 0.203f),
                new GradientColorKey(colors[2], 0.303f),
                new GradientColorKey(colors[3], 0.674f),
                new GradientColorKey(colors[4], 0.752f),
                new GradientColorKey(colors[5], 1.0f)
            };
            gradient.alphaKeys        = gak;
            gradient.colorKeys        = gck;
            presetContainer.colorOver = gradient;

            // set fog base
            gradient = new Gradient();
            gak      = new GradientAlphaKey[] {
                new GradientAlphaKey(255.0f / 255.0f, 0.0f),
                new GradientAlphaKey(255.0f / 255.0f, 1.0f)
            };
            colorsAsHex = new string[] { "#131313", "#353027", "#5E6E75", "#7C8382", "#6D6D6D", "#765338", "#171717", "#131313" };
            colors      = new Color[colorsAsHex.Length];
            for (int i = 0; i < colors.Length; i++)
            {
                UnityEngine.ColorUtility.TryParseHtmlString(colorsAsHex[i], out colors[i]);
            }
            gck = new GradientColorKey[] {
                new GradientColorKey(colors[0], 0.0f),
                new GradientColorKey(colors[1], 0.25f),
                new GradientColorKey(colors[2], 0.309f),
                new GradientColorKey(colors[3], 0.5f),
                new GradientColorKey(colors[4], 0.7f),
                new GradientColorKey(colors[5], 0.744f),
                new GradientColorKey(colors[6], 0.776f),
                new GradientColorKey(colors[7], 1.0f)
            };
            gradient.alphaKeys      = gak;
            gradient.colorKeys      = gck;
            presetContainer.fogBase = gradient;

            // set fog over
            gradient = new Gradient();
            gak      = new GradientAlphaKey[] {
                new GradientAlphaKey(255.0f / 255.0f, 0.0f),
                new GradientAlphaKey(255.0f / 255.0f, 1.0f)
            };
            colorsAsHex = new string[] { "#090808", "#7C7777", "#8E9396", "#7D706C", "#151515", "#131313" };
            colors      = new Color[colorsAsHex.Length];
            for (int i = 0; i < colors.Length; i++)
            {
                UnityEngine.ColorUtility.TryParseHtmlString(colorsAsHex[i], out colors[i]);
            }
            gck = new GradientColorKey[] {
                new GradientColorKey(colors[0], 0.2f),
                new GradientColorKey(colors[1], 0.309f),
                new GradientColorKey(colors[2], 0.5f),
                new GradientColorKey(colors[3], 0.7f),
                new GradientColorKey(colors[4], 0.81f),
                new GradientColorKey(colors[5], 1.0f)
            };
            gradient.alphaKeys      = gak;
            gradient.colorKeys      = gck;
            presetContainer.fogOver = gradient;

            // set star gradient
            gradient = new Gradient();
            gak      = new GradientAlphaKey[] {
                new GradientAlphaKey(255.0f / 255.0f, 0.0f),
                new GradientAlphaKey(255.0f / 255.0f, 0.19f),
                new GradientAlphaKey(0.0f / 255.0f, 0.245f),
                new GradientAlphaKey(0.0f / 255.0f, 0.75f),
                new GradientAlphaKey(255.0f / 255.0f, 0.8f),
                new GradientAlphaKey(255.0f / 255.0f, 1.0f)
            };
            colorsAsHex = new string[] { "#FFFFFF", "#FFFFFF" };
            colors      = new Color[colorsAsHex.Length];
            for (int i = 0; i < colors.Length; i++)
            {
                UnityEngine.ColorUtility.TryParseHtmlString(colorsAsHex[i], out colors[i]);
            }
            gck = new GradientColorKey[] {
                new GradientColorKey(colors[0], 0.0f),
                new GradientColorKey(colors[1], 1.0f)
            };
            gradient.alphaKeys           = gak;
            gradient.colorKeys           = gck;
            presetContainer.starGradient = gradient;

            // set cloud noise base
            gradient = new Gradient();
            gak      = new GradientAlphaKey[] {
                new GradientAlphaKey(0.0f / 255.0f, 0.45f),
                new GradientAlphaKey(217.0f / 255.0f, 0.75f),
                new GradientAlphaKey(255.0f / 255.0f, 1.0f)
            };
            colorsAsHex = new string[] { "#000000", "#989898", "#FFFFFF" };
            colors      = new Color[colorsAsHex.Length];
            for (int i = 0; i < colors.Length; i++)
            {
                UnityEngine.ColorUtility.TryParseHtmlString(colorsAsHex[i], out colors[i]);
            }
            gck = new GradientColorKey[] {
                new GradientColorKey(colors[0], 0.0f),
                new GradientColorKey(colors[1], 0.45f),
                new GradientColorKey(colors[2], 1.0f)
            };
            gradient.alphaKeys             = gak;
            gradient.colorKeys             = gck;
            presetContainer.cloudNoiseBase = gradient;

            // set cloud noise over
            gradient = new Gradient();
            gak      = new GradientAlphaKey[] {
                new GradientAlphaKey(207.0f / 255.0f, 0.0f),
                new GradientAlphaKey(255.0f / 255.0f, 1.0f)
            };
            colorsAsHex = new string[] { "#7C7C7C", "#FFFFFF" };
            colors      = new Color[colorsAsHex.Length];
            for (int i = 0; i < colors.Length; i++)
            {
                UnityEngine.ColorUtility.TryParseHtmlString(colorsAsHex[i], out colors[i]);
            }
            gck = new GradientColorKey[] {
                new GradientColorKey(colors[0], 0.0f),
                new GradientColorKey(colors[1], 1.0f)
            };
            gradient.alphaKeys             = gak;
            gradient.colorKeys             = gck;
            presetContainer.cloudNoiseOver = gradient;

            // set sky tint
            string colorAsHex = "#80808000";
            Color  color;

            UnityEngine.ColorUtility.TryParseHtmlString(colorAsHex, out color);
            presetContainer.skyTint = color;

            // set masser color
            colorAsHex = "#AF4B4BFF";
            UnityEngine.ColorUtility.TryParseHtmlString(colorAsHex, out color);
            presetContainer.MasserColor = color;

            // set secunda color
            colorAsHex = "#C3C3C3FF";
            UnityEngine.ColorUtility.TryParseHtmlString(colorAsHex, out color);
            presetContainer.SecundaColor = color;

            // set atmosphere offset
            presetContainer.atmsphrOffset = 1;

            // set atmosphere base curve
            presetContainer.atmosphereBase              = new AnimationCurve();
            presetContainer.atmosphereBase.preWrapMode  = WrapMode.Clamp;
            presetContainer.atmosphereBase.postWrapMode = WrapMode.Clamp;
            presetContainer.atmosphereBase.keys         = new Keyframe[] { new Keyframe(0.0f, 0.9f), new Keyframe(0.3f, 0.1f), new Keyframe(0.65f, 0.1f), new Keyframe(1.0f, 1.0f) };

            // set atmosphere over curve
            presetContainer.atmosphereOver              = new AnimationCurve();
            presetContainer.atmosphereOver.preWrapMode  = WrapMode.Loop;
            presetContainer.atmosphereOver.postWrapMode = WrapMode.Loop;
            presetContainer.atmosphereOver.keys         = new Keyframe[] { new Keyframe(0.0f, -0.33f), new Keyframe(1.0f, -0.33f) };

            // set moon alpha base curve
            presetContainer.moonAlphaBase              = new AnimationCurve();
            presetContainer.moonAlphaBase.preWrapMode  = WrapMode.Clamp;
            presetContainer.moonAlphaBase.postWrapMode = WrapMode.Clamp;
            presetContainer.moonAlphaBase.keys         = new Keyframe[] { new Keyframe(0.0f, 0.3f), new Keyframe(0.28f, 0.0f), new Keyframe(0.8f, 0.1f), new Keyframe(1.0f, 0.3f) };
            presetContainer.moonAlphaBase.SmoothTangents(1, 1.0f);
            presetContainer.moonAlphaBase.SmoothTangents(2, 1.0f);

            // set moon alpha over curve
            presetContainer.moonAlphaOver              = new AnimationCurve();
            presetContainer.moonAlphaOver.preWrapMode  = WrapMode.Loop;
            presetContainer.moonAlphaOver.postWrapMode = WrapMode.Loop;
            presetContainer.moonAlphaOver.keys         = new Keyframe[] { new Keyframe(0.0f, 0.045f), new Keyframe(0.29f, 0.0f), new Keyframe(1.0f, 0.045f) };
            presetContainer.moonAlphaOver.SmoothTangents(1, 1.0f);
        }