コード例 #1
0
ファイル: BasicEffectExtension.cs プロジェクト: bryanedds/Xi
        /// <summary>
        /// Populate the lighting parameters of a BasicEffect.
        /// </summary>
        /// <param name="effect">The effect.</param>
        /// <param name="surface">The lit surface.</param>
        /// <param name="ambientLights">The ambient lights affecting the lit material.</param>
        /// <param name="directionalLights">The directional lights affecting the lit material.</param>
        /// <param name="pointLights">The point lights affecting the lit material.</param>
        public static void PopulateLighting(
            this BasicEffect effect,
            Surface surface,
            List<AmbientLight> ambientLights,
            List<DirectionalLight> directionalLights,
            List<PointLight> pointLights)
        {
            XiHelper.ArgumentNullCheck(surface, ambientLights, directionalLights, pointLights, effect);

            // lighting enabled
            effect.LightingEnabled = surface.LightingEnabled;

            // per-pixel lighting
            effect.PreferPerPixelLighting = true; // MAGICVALUE

            // material
            effect.DiffuseColor = surface.DiffuseColor.ToVector3();
            effect.SpecularColor = surface.SpecularColor.ToVector3();
            effect.SpecularPower = surface.SpecularPower;

            // ambient lighting
            Vector3 ambientLightColor = Vector3.Zero;
            foreach (AmbientLight ambientLight in ambientLights)
                if (ambientLight.Enabled)
                    ambientLightColor += ambientLight.Color.ToVector3();
            effect.AmbientLightColor = ambientLightColor;

            // directional lights
            for (int i = 0; i < Constants.DirectionalLightCount; ++i)
            {
                BasicDirectionalLight effectLight;
                switch (i)
                {
                    case 0: effectLight = effect.DirectionalLight0; break;
                    case 1: effectLight = effect.DirectionalLight1; break;
                    case 2: effectLight = effect.DirectionalLight2; break;
                    default: continue;
                }

                if (i >= directionalLights.Count) effectLight.Enabled = false;
                else
                {
                    DirectionalLight directionalLight = directionalLights[i];
                    effectLight.Enabled = directionalLight.Enabled;
                    effectLight.DiffuseColor = directionalLight.DiffuseColor.ToVector3();
                    effectLight.SpecularColor = directionalLight.SpecularColor.ToVector3();
                    effectLight.Direction = directionalLight.Direction;
                }
            }

            // point lights emulated as directional lights
            Vector3 surfaceCenter = surface.BoundingBox.GetCenter();
            pointLights.DistanceSort(surfaceCenter, SpatialSortOrder.NearToFar);
            for (int i = 0; i < Constants.PointLightCount; ++i)
            {
                BasicDirectionalLight effectLight;
                switch (i + directionalLights.Count)
                {
                    case 0: effectLight = effect.DirectionalLight0; break;
                    case 1: effectLight = effect.DirectionalLight1; break;
                    case 2: effectLight = effect.DirectionalLight2; break;
                    default: continue;
                }

                if (i >= pointLights.Count) effectLight.Enabled = false;
                else
                {
                    PointLight pointLight = pointLights[i];
                    effectLight.Enabled = pointLight.Enabled;
                    effectLight.DiffuseColor = pointLight.DiffuseColor.ToVector3();
                    effectLight.SpecularColor = pointLight.SpecularColor.ToVector3();
                    effectLight.Direction = Vector3.Normalize(surface.BoundingBox.GetCenter() - pointLight.Position);
                }
            }
        }
コード例 #2
0
ファイル: LightReceiverEffect.cs プロジェクト: bryanedds/Xi
        /// <summary>
        /// Populate the lighting parameters for normal drawing.
        /// </summary>
        /// <param name="surface">The lit surface.</param>
        /// <param name="ambientLights">The ambient lights affecting the lit material.</param>
        /// <param name="directionalLights">The directional lights affecting the lit material.</param>
        /// <param name="pointLights">The point lights affecting the lit material.</param>
        public void PopulateLighting(
            Surface surface,
            List<AmbientLight> ambientLights,
            List<DirectionalLight> directionalLights,
            List<PointLight> pointLights)
        {
            XiHelper.ArgumentNullCheck(surface, ambientLights, directionalLights, pointLights);

            // lighting enabled
            LightingEnabled = surface.LightingEnabled;

            // material
            DiffuseColor = surface.DiffuseColor.ToVector4();
            SpecularColor = surface.SpecularColor.ToVector3();
            SpecularPower = surface.SpecularPower;

            // ambient lighting
            bool ambientLightEnabled = false;
            Vector3 ambientLightColor = Vector3.Zero;
            foreach (AmbientLight ambientLight in ambientLights)
            {
                if (ambientLight.Enabled)
                {
                    ambientLightColor += ambientLight.Color.ToVector3();
                    ambientLightEnabled = true;
                }
            }
            this.AmbientLightEnabled = ambientLightEnabled;
            this.AmbientLightColor = ambientLightColor;

            // directional lights
            for (int i = 0; i < Constants.DirectionalLightCount; ++i)
            {
                if (i >= directionalLights.Count) directionalLightEnableds[i] = false;
                else
                {
                    DirectionalLight directionalLight = directionalLights[i];
                    directionalLightDirections[i] = directionalLight.Direction;
                    directionalLightEnableds[i] = directionalLight.Enabled;
                    directionalLightDiffuseColors[i] = directionalLight.DiffuseColor.ToVector3();
                    directionalLightSpecularColors[i] = directionalLight.SpecularColor.ToVector3();
                }
            }
            SetDirectionalLightEnableds(directionalLightEnableds);
            SetDirectionalLightDirections(directionalLightDirections);
            SetDirectionalLightDiffuseColors(directionalLightDiffuseColors);
            SetDirectionalLightSpecularColors(directionalLightSpecularColors);

            // point lights
            Vector3 surfaceCenter = surface.BoundingBox.GetCenter();
            pointLights.DistanceSort(surfaceCenter, SpatialSortOrder.NearToFar);
            for (int i = 0; i < Constants.PointLightCount; ++i)
            {
                if (i >= pointLights.Count) pointLightEnableds[i] = false;
                else
                {
                    PointLight pointLight = pointLights[i];
                    pointLightPositions[i] = pointLight.Position;
                    pointLightEnableds[i] = pointLight.Enabled;
                    pointLightDiffuseColors[i] = pointLight.DiffuseColor.ToVector3();
                    pointLightSpecularColors[i] = pointLight.SpecularColor.ToVector3();
                    pointLightRanges[i] = pointLight.Range;
                    pointLightFalloffs[i] = pointLight.Falloff;
                }
            }
            SetPointLightEnableds(pointLightEnableds);
            SetPointLightPositions(pointLightPositions);
            SetPointLightDiffuseColors(pointLightDiffuseColors);
            SetPointLightSpecularColors(pointLightSpecularColors);
            SetPointLightRanges(pointLightRanges);
            SetPointLightFalloffs(pointLightFalloffs);
        }