コード例 #1
0
        /// <summary>
        /// </summary>
        /// <returns>
        /// </returns>
        public List <AOMeshs> GetMeshs()
        {
            List <AOMeshs> meshList = new List <AOMeshs>();
            int            counter;

            for (counter = 0; counter < this.mesh.Count; counter++)
            {
                AOMeshs aoMesh = new AOMeshs();
                aoMesh.Position        = this.mesh.ElementAt(counter).Key >> 16;
                aoMesh.Mesh            = this.mesh.ElementAt(counter).Value;
                aoMesh.OverrideTexture = this.meshOverride.ElementAt(counter).Value;
                aoMesh.Layer           = this.mesh.ElementAt(counter).Key & 0xffff;
                meshList.Add(aoMesh);
            }

            return(meshList);
        }
コード例 #2
0
        /// <summary>
        /// </summary>
        /// <param name="pos">
        /// </param>
        /// <returns>
        /// </returns>
        public AOMeshs GetMeshAtPosition(int pos)
        {
            foreach (int key in this.mesh.Keys)
            {
                if ((key >> 16) == pos)
                {
                    // Just return mesh with highest priority (0 = highest)
                    AOMeshs aoMeshs = new AOMeshs();
                    aoMeshs.Layer           = key & 0xffff;
                    aoMeshs.Position        = key >> 16;
                    aoMeshs.Mesh            = this.mesh[key];
                    aoMeshs.OverrideTexture = this.meshOverride[key];
                    return(aoMeshs);
                }
            }

            // No mesh at this position found
            return(null);
        }
コード例 #3
0
        /// <summary>
        /// </summary>
        /// <param name="character">
        /// </param>
        /// <param name="showsocial">
        /// </param>
        /// <param name="socialonly">
        /// </param>
        /// <returns>
        /// </returns>
        public static List <AOMeshs> GetMeshs(Character character, bool showsocial, bool socialonly)
        {
            List <AOMeshs> meshs;
            List <AOMeshs> socials;
            List <AOMeshs> output = new List <AOMeshs>();

            bool leftPadVisible;
            bool rightPadVisible;
            bool doubleLeftPad;
            bool doubleRightPad;

            lock (character)
            {
                meshs   = character.MeshLayer.GetMeshs();
                socials = character.SocialMeshLayer.GetMeshs();

                int visualFlags = character.Stats[StatIds.visualflags].Value;
                rightPadVisible = (visualFlags & 0x1) > 0;
                leftPadVisible  = (visualFlags & 0x2) > 0;
                bool showHelmet = (visualFlags & 0x4) > 0;
                doubleLeftPad  = (visualFlags & 0x8) > 0;
                doubleRightPad = (visualFlags & 0x10) > 0;

                if (!showHelmet)
                {
                    if (meshs.ElementAt(0).Position == 0)
                    {
                        // Helmet there?
                        // This probably needs to be looked at (glasses/visors)
                        if (meshs.ElementAt(0).Mesh != character.Stats[StatIds.headmesh].BaseValue)
                        {
                            // Dont remove the head :)
                            meshs.RemoveAt(0);
                        }
                    }

                    if (socials.ElementAt(0).Position == 0)
                    {
                        // Helmet there?
                        // This probably needs to be looked at (glasses/visors)
                        if (socials.ElementAt(0).Mesh != character.Stats[StatIds.headmesh].BaseValue)
                        {
                            // Dont remove the head :)
                            socials.RemoveAt(0);
                        }
                    }
                }
            }

            socialonly &= showsocial; // Disable socialonly flag if showsocial is false

            // preapply visual flags
            if (socialonly)
            {
                meshs.Clear();
            }

            if ((!socialonly) && (!showsocial))
            {
                socials.Clear();
            }

            AOMeshs leftShoulder     = null;
            AOMeshs rightShoulder    = null;
            int     rightShoulderNum = -1;
            int     leftShoulderNum  = -1;

            for (int counter1 = 0; counter1 < meshs.Count; counter1++)
            {
                AOMeshs m = meshs.ElementAt(counter1);
                if (m.Position == 3)
                {
                    if (!rightPadVisible)
                    {
                        meshs.RemoveAt(counter1);
                        counter1--;
                        continue;
                    }
                    else
                    {
                        rightShoulder    = m;
                        rightShoulderNum = counter1;
                    }
                }

                if (m.Position == 4)
                {
                    if (!leftPadVisible)
                    {
                        meshs.RemoveAt(counter1);
                        counter1--;
                        continue;
                    }
                    else
                    {
                        leftShoulderNum = counter1;
                        leftShoulder    = m;
                    }
                }
            }

            int counter;

            for (counter = 0; counter < 7; counter++)
            {
                AOMeshs cloth  = null;
                AOMeshs social = null;

                foreach (AOMeshs aoMeshs in meshs)
                {
                    if (aoMeshs.Position == counter)
                    {
                        cloth = aoMeshs;
                        break;
                    }
                }

                foreach (AOMeshs aoMeshs in socials)
                {
                    if (aoMeshs.Position == counter)
                    {
                        social = aoMeshs;
                    }
                }

                if (social != null)
                {
                    if ((cloth != null) && (social != null))
                    {
                        // Compare layer only when both slots are set
                        if (cloth.Position == 0)
                        {
                            if (social.Mesh != character.Stats[StatIds.headmesh].BaseValue)
                            {
                                cloth = social;
                            }
                        }
                        else if (social.Layer - 8 < cloth.Layer)
                        {
                            if (cloth.Position == 5)
                            {
                                // Backmeshs act different
                                output.Add(cloth);
                            }

                            cloth = social;
                        }
                    }
                    else
                    {
                        if (showsocial || socialonly)
                        {
                            cloth = social;
                        }
                    }
                }

                if (cloth != null)
                {
                    output.Add(cloth);

                    // Moved check for Double pads here
                    if ((cloth.Position == 3) && doubleRightPad)
                    {
                        AOMeshs temp = new AOMeshs();
                        temp.Position        = 4;
                        temp.Layer           = cloth.Layer;
                        temp.Mesh            = cloth.Mesh;
                        temp.OverrideTexture = cloth.OverrideTexture;
                        output.Add(temp);
                    }

                    if ((cloth.Position == 4) && doubleLeftPad)
                    {
                        AOMeshs temp = new AOMeshs();
                        temp.Position        = 3;
                        temp.Layer           = cloth.Layer;
                        temp.Mesh            = cloth.Mesh;
                        temp.OverrideTexture = cloth.OverrideTexture;
                        output.Add(temp);
                    }
                }
            }

            return(output);
        }
コード例 #4
0
        /// <summary>
        /// </summary>
        /// <returns>
        /// </returns>
        public List<AOMeshs> GetMeshs()
        {
            List<AOMeshs> meshList = new List<AOMeshs>();
            int counter;
            for (counter = 0; counter < this.mesh.Count; counter++)
            {
                AOMeshs aoMesh = new AOMeshs();
                aoMesh.Position = this.mesh.ElementAt(counter).Key >> 16;
                aoMesh.Mesh = this.mesh.ElementAt(counter).Value;
                aoMesh.OverrideTexture = this.meshOverride.ElementAt(counter).Value;
                aoMesh.Layer = this.mesh.ElementAt(counter).Key & 0xffff;
                meshList.Add(aoMesh);
            }

            return meshList;
        }
コード例 #5
0
        /// <summary>
        /// </summary>
        /// <param name="pos">
        /// </param>
        /// <returns>
        /// </returns>
        public AOMeshs GetMeshAtPosition(int pos)
        {
            foreach (int key in this.mesh.Keys)
            {
                if ((key >> 16) == pos)
                {
                    // Just return mesh with highest priority (0 = highest)
                    AOMeshs aoMeshs = new AOMeshs();
                    aoMeshs.Layer = key & 0xffff;
                    aoMeshs.Position = key >> 16;
                    aoMeshs.Mesh = this.mesh[key];
                    aoMeshs.OverrideTexture = this.meshOverride[key];
                    return aoMeshs;
                }
            }

            // No mesh at this position found
            return null;
        }
コード例 #6
0
        /// <summary>
        /// </summary>
        /// <param name="character">
        /// </param>
        /// <param name="showsocial">
        /// </param>
        /// <param name="socialonly">
        /// </param>
        /// <returns>
        /// </returns>
        public static List<AOMeshs> GetMeshs(Character character, bool showsocial, bool socialonly)
        {
            List<AOMeshs> meshs;
            List<AOMeshs> socials;
            List<AOMeshs> output = new List<AOMeshs>();

            bool leftPadVisible;
            bool rightPadVisible;
            bool doubleLeftPad;
            bool doubleRightPad;

            lock (character)
            {
                meshs = character.MeshLayer.GetMeshs();
                socials = character.SocialMeshLayer.GetMeshs();

                int visualFlags = character.Stats[StatIds.visualflags].Value;
                rightPadVisible = (visualFlags & 0x1) > 0;
                leftPadVisible = (visualFlags & 0x2) > 0;
                bool showHelmet = (visualFlags & 0x4) > 0;
                doubleLeftPad = (visualFlags & 0x8) > 0;
                doubleRightPad = (visualFlags & 0x10) > 0;

                if (!showHelmet)
                {
                    if (meshs.ElementAt(0).Position == 0)
                    {
                        // Helmet there?
                        // This probably needs to be looked at (glasses/visors)
                        if (meshs.ElementAt(0).Mesh != character.Stats[StatIds.headmesh].BaseValue)
                        {
                            // Dont remove the head :)
                            meshs.RemoveAt(0);
                        }
                    }

                    if (socials.ElementAt(0).Position == 0)
                    {
                        // Helmet there?
                        // This probably needs to be looked at (glasses/visors)
                        if (socials.ElementAt(0).Mesh != character.Stats[StatIds.headmesh].BaseValue)
                        {
                            // Dont remove the head :)
                            socials.RemoveAt(0);
                        }
                    }
                }
            }

            socialonly &= showsocial; // Disable socialonly flag if showsocial is false

            // preapply visual flags
            if (socialonly)
            {
                meshs.Clear();
            }

            if ((!socialonly) && (!showsocial))
            {
                socials.Clear();
            }

            AOMeshs leftShoulder = null;
            AOMeshs rightShoulder = null;
            int rightShoulderNum = -1;
            int leftShoulderNum = -1;

            for (int counter1 = 0; counter1 < meshs.Count; counter1++)
            {
                AOMeshs m = meshs.ElementAt(counter1);
                if (m.Position == 3)
                {
                    if (!rightPadVisible)
                    {
                        meshs.RemoveAt(counter1);
                        counter1--;
                        continue;
                    }
                    else
                    {
                        rightShoulder = m;
                        rightShoulderNum = counter1;
                    }
                }

                if (m.Position == 4)
                {
                    if (!leftPadVisible)
                    {
                        meshs.RemoveAt(counter1);
                        counter1--;
                        continue;
                    }
                    else
                    {
                        leftShoulderNum = counter1;
                        leftShoulder = m;
                    }
                }
            }

            int counter;
            for (counter = 0; counter < 7; counter++)
            {
                AOMeshs cloth = null;
                AOMeshs social = null;

                foreach (AOMeshs aoMeshs in meshs)
                {
                    if (aoMeshs.Position == counter)
                    {
                        cloth = aoMeshs;
                        break;
                    }
                }

                foreach (AOMeshs aoMeshs in socials)
                {
                    if (aoMeshs.Position == counter)
                    {
                        social = aoMeshs;
                    }
                }

                if (social != null)
                {
                    if ((cloth != null) && (social != null))
                    {
                        // Compare layer only when both slots are set
                        if (cloth.Position == 0)
                        {
                            if (social.Mesh != character.Stats[StatIds.headmesh].BaseValue)
                            {
                                cloth = social;
                            }
                        }
                        else if (social.Layer - 8 < cloth.Layer)
                        {
                            if (cloth.Position == 5)
                            {
                                // Backmeshs act different
                                output.Add(cloth);
                            }

                            cloth = social;
                        }
                    }
                    else
                    {
                        if (showsocial || socialonly)
                        {
                            cloth = social;
                        }
                    }
                }

                if (cloth != null)
                {
                    output.Add(cloth);

                    // Moved check for Double pads here
                    if ((cloth.Position == 3) && doubleRightPad)
                    {
                        AOMeshs temp = new AOMeshs();
                        temp.Position = 4;
                        temp.Layer = cloth.Layer;
                        temp.Mesh = cloth.Mesh;
                        temp.OverrideTexture = cloth.OverrideTexture;
                        output.Add(temp);
                    }

                    if ((cloth.Position == 4) && doubleLeftPad)
                    {
                        AOMeshs temp = new AOMeshs();
                        temp.Position = 3;
                        temp.Layer = cloth.Layer;
                        temp.Mesh = cloth.Mesh;
                        temp.OverrideTexture = cloth.OverrideTexture;
                        output.Add(temp);
                    }
                }
            }

            return output;
        }