Example #1
0
        public static void GetPathsOfType(PathNodeList pathNodeList, List <Node> nodes, PathType typeA, PathType typeB)
        {
            if (typeA == PathType.Unk01)
            {
                foreach (Node node in nodes)
                {
                    foreach (Node edge in node.Edges)
                    {
                        PathNodeItem pathNodeItem = new PathNodeItem(node, edge, typeA);

                        foreach (PortalInfoItem portalInfoItem in node.Portals)
                        {
                            if (portalInfoItem.destRoomIdx == edge.index)
                            {
                                PathNodeChildItem pathNodeChildItem = new PathNodeChildItem(new PathNodeItem(node, node, typeB), portalInfoItem);
                                pathNodeItem.Items.Add(pathNodeChildItem);
                            }
                        }

                        pathNodeList.Items.Add(pathNodeItem);
                    }
                }
            }
            else
            {
                List <Pair> pairs = Pair.GetPairs(nodes);

                foreach (Pair pair in pairs)
                {
                    GetRoutes(pathNodeList, pair.limboPair, pair.nodeA, pair.nodeB, typeA, typeB);
                    GetRoutes(pathNodeList, pair.limboPair, pair.nodeB, pair.nodeA, typeA, typeB);
                }
            }
        }
        private void generateAudioOcclusion_Click(object sender, EventArgs e)
        {
            if (XDocImap != null && XDocItyp != null)
            {
                CommonFileDialogResult dialogResult = folderPicker.ShowDialog();

                if (dialogResult == CommonFileDialogResult.Ok)
                {
                    string         directory      = folderPicker.FileName;
                    MloInterior    mloInterior    = ParseXml.GetMloInterior(XDocItyp, XDocImap);
                    PortalInfoList portalInfoList = naOcclusionInteriorMetadata.GetPortalInfoList(mloInterior);
                    PathNodeList   pathNodeList   = naOcclusionInteriorMetadata.GetPathNodeList(portalInfoList, mloInterior);

                    if (mloInterior.name.StartsWith("hash_") || mloInterior.Rooms.Any(room => room.name.StartsWith("hash_")))
                    {
                        MessageBox.Show("CMloArchetypeDef, CMloInstanceDef, or CMloRoomDef had a hashed name! Real strings are required.", "Occlusion Generator", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                        return;
                    }

                    LogAction(">> Generated " + mloInterior.occlHash.occlusionHash + ".ymt.pso.xml");

                    naOcclusionInteriorMetadata.SavePsoXML(directory, mloInterior.occlHash.occlusionHash, portalInfoList, pathNodeList);
                }
            }
            else
            {
                MessageBox.Show("Empty field!", "Occlusion Generator", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }
        }
Example #3
0
        public static PathNodeList GetPaths(PortalInfoList portalInfoList, MloInterior mloInterior)
        {
            List <Node>  nodes        = Node.GetNodes(portalInfoList, mloInterior);
            PathNodeList pathNodeList = new PathNodeList();

            GetPathsOfType(pathNodeList, nodes, PathType.Unk01, PathType.Unk00);
            GetPathsOfType(pathNodeList, nodes, PathType.Unk02, PathType.Unk01);
            GetPathsOfType(pathNodeList, nodes, PathType.Unk03, PathType.Unk02);
            GetPathsOfType(pathNodeList, nodes, PathType.Unk04, PathType.Unk03);
            GetPathsOfType(pathNodeList, nodes, PathType.Unk05, PathType.Unk04);

            return(pathNodeList);
        }
Example #4
0
        static (bool found, PathNodeItem pathNodeItem) FindPathNodeInList(PathNodeList pathNodeList, Node nodeA, Node nodeB, PathType pathType)
        {
            PathNodeItem pathNodeItem = pathNodeList.Items.Find(item => (item.nodeA == nodeA) && (item.nodeB == nodeB) && (item.pathType == pathType));
            bool         found;

            if (pathNodeItem != null)
            {
                found = true;
            }
            else
            {
                found = false;
            }
            return(found, pathNodeItem);
        }
Example #5
0
        public static bool HasPathAlreadyBeenFound(PathNodeList pathNodeList, Node nodeA, Node nodeB)
        {
            PathNodeItem pathNodeItem = pathNodeList.Items.Find(item => (item.nodeA == nodeA) && (item.nodeB == nodeB) && (item.pathType == PathType.Unk03));
            bool         found;

            if (pathNodeItem != null)
            {
                found = true;
            }
            else
            {
                found = false;
            }

            return(found);
        }
        public static void SavePsoXML(string directory, uint fileName, PortalInfoList portalInfoList, PathNodeList pathNodeList)
        {
            XElement occlusionFile = new XElement("naOcclusionInteriorMetadata");

            occlusionFile.Add(portalInfoList.XML());
            occlusionFile.Add(pathNodeList.XML());
            occlusionFile.Save(Path.Combine(directory, fileName + ".ymt.pso.xml"));
        }
        public static PathNodeList GetPathNodeList(PortalInfoList portalInfoList, MloInterior mloInterior)
        {
            PathNodeList pathNodeList = PathAlgorithm.GetPaths(portalInfoList, mloInterior);

            return(pathNodeList);
        }
Example #8
0
        public static void GetRoutes(PathNodeList pathNodeList, bool limboPair, Node nodeA, Node nodeB, PathType typeA, PathType typeB)
        {
            IEnumerable <Node> edges = (limboPair) ? nodeA.Edges : nodeA.Edges.Where(i => i.name != "limbo");

            foreach (PathNodeItem pathNode in pathNodeList.Items.Where(i => i.pathType == typeB).ToList())
            {
                switch (typeA)
                {
                case PathType.Unk01:
                case PathType.Unk02:
                case PathType.Unk03:

                    if (pathNode.nodeA == nodeA && pathNode.nodeB == nodeB)
                    {
                        (bool found, PathNodeItem existingPath) = FindPathNodeInList(pathNodeList, nodeA, nodeB, typeA);

                        if (found)
                        {
                            PathNodeItem pathNodeItem = existingPath;

                            foreach (PortalInfoItem portalInfoItem in nodeA.Portals)
                            {
                                if (portalInfoItem.destRoomIdx == nodeB.index)
                                {
                                    PathNodeChildItem pathNodeChildItem = new PathNodeChildItem(new PathNodeItem(nodeA, nodeA, typeB), portalInfoItem);
                                    pathNodeItem.Items.Add(pathNodeChildItem);
                                }
                            }
                        }
                        else
                        {
                            PathNodeItem pathNodeItem = new PathNodeItem(nodeA, nodeB, typeA);

                            foreach (PortalInfoItem portalInfoItem in nodeA.Portals)
                            {
                                if (portalInfoItem.destRoomIdx == nodeB.index)
                                {
                                    PathNodeChildItem pathNodeChildItem = new PathNodeChildItem(new PathNodeItem(nodeA, nodeA, typeB), portalInfoItem);
                                    pathNodeItem.Items.Add(pathNodeChildItem);
                                }
                            }
                            pathNodeList.Items.Add(pathNodeItem);
                        }
                    }
                    else
                    {
                        foreach (Node edge in edges)
                        {
                            if (pathNode.nodeA == edge && pathNode.nodeB == nodeB)
                            {
                                (bool found, PathNodeItem existingPath) = FindPathNodeInList(pathNodeList, nodeA, nodeB, typeA);

                                if (found)
                                {
                                    PathNodeItem pathNodeItem = existingPath;

                                    foreach (PortalInfoItem portalInfoItem in nodeA.Portals)
                                    {
                                        if (portalInfoItem.destRoomIdx == edge.index)
                                        {
                                            PathNodeChildItem pathNodeChildItem = new PathNodeChildItem(new PathNodeItem(edge, nodeB, typeB), portalInfoItem);
                                            pathNodeItem.Items.Add(pathNodeChildItem);
                                        }
                                    }
                                }
                                else
                                {
                                    PathNodeItem pathNodeItem = new PathNodeItem(nodeA, nodeB, typeA);
                                    foreach (PortalInfoItem portalInfoItem in nodeA.Portals)
                                    {
                                        if (portalInfoItem.destRoomIdx == edge.index)
                                        {
                                            PathNodeChildItem pathNodeChildItem = new PathNodeChildItem(new PathNodeItem(edge, nodeB, typeB), portalInfoItem);
                                            pathNodeItem.Items.Add(pathNodeChildItem);
                                        }
                                    }
                                    pathNodeList.Items.Add(pathNodeItem);
                                }
                            }
                        }
                    }
                    break;

                case PathType.Unk04:
                case PathType.Unk05:
                    foreach (Node edge in edges)
                    {
                        if (pathNode.nodeA == edge && pathNode.nodeB == nodeB)
                        {
                            (bool found, PathNodeItem existingPath) = FindPathNodeInList(pathNodeList, nodeA, nodeB, typeA);
                            bool hasPathBeenFound = HasPathAlreadyBeenFound(pathNodeList, nodeA, nodeB);
                            if (hasPathBeenFound == false)
                            {
                                if (found)
                                {
                                    PathNodeItem pathNodeItem = existingPath;

                                    foreach (PortalInfoItem portalInfoItem in nodeA.Portals)
                                    {
                                        if (portalInfoItem.destRoomIdx == edge.index)
                                        {
                                            PathNodeChildItem pathNodeChildItem = new PathNodeChildItem(new PathNodeItem(edge, nodeB, typeB), portalInfoItem);
                                            pathNodeItem.Items.Add(pathNodeChildItem);
                                        }
                                    }
                                }
                                else
                                {
                                    PathNodeItem pathNodeItem = new PathNodeItem(nodeA, nodeB, typeA);
                                    foreach (PortalInfoItem portalInfoItem in nodeA.Portals)
                                    {
                                        if (portalInfoItem.destRoomIdx == edge.index)
                                        {
                                            PathNodeChildItem pathNodeChildItem = new PathNodeChildItem(new PathNodeItem(edge, nodeB, typeB), portalInfoItem);
                                            pathNodeItem.Items.Add(pathNodeChildItem);
                                        }
                                    }
                                    pathNodeList.Items.Add(pathNodeItem);
                                }
                            }
                        }
                    }
                    break;
                }
            }
        }