Exemplo n.º 1
0
 public bool CanStepOn(Coordinate pos, WorldMapElement e)
 {
     if ((thisType == Hand.Big || thisType == Hand.Small) && e == WorldMapElement.Flexible)
     {
         return(false);
     }
     return(true);
 }
Exemplo n.º 2
0
 private WorldMapTable()
 {
     m_mapElements    = new Dictionary <int, WorldMapElement>();
     m_emptyItem      = new WorldMapElement();
     m_vecAllElements = new List <WorldMapElement>();
 }
Exemplo n.º 3
0
    public bool LoadBin(byte[] binContent)
    {
        m_mapElements.Clear();
        m_vecAllElements.Clear();
        int nCol, nRow;
        int readPos = 0;

        readPos += GameAssist.ReadInt32Variant(binContent, readPos, out nCol);
        readPos += GameAssist.ReadInt32Variant(binContent, readPos, out nRow);
        List <string> vecLine     = new List <string>(nCol);
        List <int>    vecHeadType = new List <int>(nCol);
        string        tmpStr;
        int           tmpInt;

        for (int i = 0; i < nCol; i++)
        {
            readPos += GameAssist.ReadString(binContent, readPos, out tmpStr);
            readPos += GameAssist.ReadInt32Variant(binContent, readPos, out tmpInt);
            vecLine.Add(tmpStr);
            vecHeadType.Add(tmpInt);
        }
        if (vecLine.Count != 6)
        {
            Ex.Logger.Log("WorldMap.csv中列数量与生成的代码不匹配!");
            return(false);
        }
        if (vecLine[0] != "ID")
        {
            Ex.Logger.Log("WorldMap.csv中字段[ID]位置不对应"); return(false);
        }
        if (vecLine[1] != "Name")
        {
            Ex.Logger.Log("WorldMap.csv中字段[Name]位置不对应"); return(false);
        }
        if (vecLine[2] != "DungeonID")
        {
            Ex.Logger.Log("WorldMap.csv中字段[DungeonID]位置不对应"); return(false);
        }
        if (vecLine[3] != "PosName")
        {
            Ex.Logger.Log("WorldMap.csv中字段[PosName]位置不对应"); return(false);
        }
        if (vecLine[4] != "BtnRes")
        {
            Ex.Logger.Log("WorldMap.csv中字段[BtnRes]位置不对应"); return(false);
        }
        if (vecLine[5] != "NameRes")
        {
            Ex.Logger.Log("WorldMap.csv中字段[NameRes]位置不对应"); return(false);
        }

        for (int i = 0; i < nRow; i++)
        {
            WorldMapElement member = new WorldMapElement();
            readPos += GameAssist.ReadInt32Variant(binContent, readPos, out member.ID);
            readPos += GameAssist.ReadString(binContent, readPos, out member.Name);
            readPos += GameAssist.ReadInt32Variant(binContent, readPos, out member.DungeonID);
            readPos += GameAssist.ReadString(binContent, readPos, out member.PosName);
            readPos += GameAssist.ReadString(binContent, readPos, out member.BtnRes);
            readPos += GameAssist.ReadString(binContent, readPos, out member.NameRes);

            member.IsValidate = true;
            m_vecAllElements.Add(member);
            m_mapElements[member.ID] = member;
        }
        return(true);
    }
Exemplo n.º 4
0
    public bool LoadCsv(string strContent)
    {
        if (strContent.Length == 0)
        {
            return(false);
        }
        m_mapElements.Clear();
        m_vecAllElements.Clear();
        int           contentOffset = 0;
        List <string> vecLine;

        vecLine = GameAssist.readCsvLine(strContent, ref contentOffset);
        if (vecLine.Count != 6)
        {
            Ex.Logger.Log("WorldMap.csv中列数量与生成的代码不匹配!");
            return(false);
        }
        if (vecLine[0] != "ID")
        {
            Ex.Logger.Log("WorldMap.csv中字段[ID]位置不对应"); return(false);
        }
        if (vecLine[1] != "Name")
        {
            Ex.Logger.Log("WorldMap.csv中字段[Name]位置不对应"); return(false);
        }
        if (vecLine[2] != "DungeonID")
        {
            Ex.Logger.Log("WorldMap.csv中字段[DungeonID]位置不对应"); return(false);
        }
        if (vecLine[3] != "PosName")
        {
            Ex.Logger.Log("WorldMap.csv中字段[PosName]位置不对应"); return(false);
        }
        if (vecLine[4] != "BtnRes")
        {
            Ex.Logger.Log("WorldMap.csv中字段[BtnRes]位置不对应"); return(false);
        }
        if (vecLine[5] != "NameRes")
        {
            Ex.Logger.Log("WorldMap.csv中字段[NameRes]位置不对应"); return(false);
        }

        while (true)
        {
            vecLine = GameAssist.readCsvLine(strContent, ref contentOffset);
            if ((int)vecLine.Count == 0)
            {
                break;
            }
            if ((int)vecLine.Count != (int)6)
            {
                return(false);
            }
            WorldMapElement member = new WorldMapElement();
            member.ID        = Convert.ToInt32(vecLine[0]);
            member.Name      = vecLine[1];
            member.DungeonID = Convert.ToInt32(vecLine[2]);
            member.PosName   = vecLine[3];
            member.BtnRes    = vecLine[4];
            member.NameRes   = vecLine[5];

            member.IsValidate = true;
            m_vecAllElements.Add(member);
            m_mapElements[member.ID] = member;
        }
        return(true);
    }