예제 #1
0
파일: FillInfo.cs 프로젝트: ErrorMee/update
    public int GetFillId(bool isDeductStep = false)
    {
        FILL_COUNT++;

        if (id <= 10000 || isDeductStep)
        {
            lastFillId = GetRandomFillId();
            return(lastFillId);
        }

        for (int i = 0; i < copys.Count; i++)
        {
            CopyFillInfo copyFillInfo = copys[i];
            int          inRange      = copyFillInfo.InRange(FILL_COUNT);
            if (inRange > 0)
            {
                if (inRange == 2)
                {
                    //copys.RemoveAt (i);
                }
                return(lastFillId);
            }
        }

        if (specifics.ContainsKey(FILL_COUNT))
        {
            IFSInfo specific = specifics[FILL_COUNT];
            lastFillId = specific.GetFillId();
            return(lastFillId);
        }

        for (int i = 0; i < intervals.Count; i++)
        {
            IntervalInfo intervalInfo = intervals[i];
            int          inRange      = intervalInfo.InRange(FILL_COUNT);
            if (inRange > 0)
            {
                lastFillId = intervalInfo.GetFillId();
                if (inRange == 2)
                {
                    //intervals.RemoveAt (i);
                }
                return(lastFillId);
            }
        }

        if (defaultFill == null)
        {
            lastFillId = GetRandomFillId();
            return(lastFillId);
        }

        lastFillId = defaultFill.GetFillId();
        return(lastFillId);
    }
예제 #2
0
파일: FillInfo.cs 프로젝트: ErrorMee/update
    public void FillTxt(string content)
    {
        if (id <= 10000)
        {
            return;
        }
        if (content != null)
        {
            string[] txtArr = content.Split('\n');

            foreach (string txt in txtArr)
            {
                string[] txts = txt.Split('|');
                switch (txts[0].ToLower())
                {
                case "d":
                    defaultFill = new IFSInfo();
                    defaultFill.FillTxt(txts[2]);
                    break;

                case "g":
                    IntervalInfo intervalInfo = new IntervalInfo();
                    intervalInfo.FillTxt(txts[1], txts[2]);
                    intervals.Add(intervalInfo);
                    break;

                case "s":
                    IFSInfo iFSInfo = new IFSInfo();
                    int     step    = Convert.ToInt32(txts[1]);
                    iFSInfo.FillTxt(txts[2]);
                    specifics.Add(step, iFSInfo);
                    break;

                case "c":
                    CopyFillInfo copyInfo = new CopyFillInfo();
                    copyInfo.FillTxt(txts[1], txts[2]);
                    copys.Add(copyInfo);
                    break;
                }
            }
        }
    }