Ejemplo n.º 1
0
        /// <summary>
        /// 根据FCBlock构造Symbol
        /// </summary>
        /// <param name="textWriter"></param>
        /// <param name="fcblock"></param>
        private static void GenerateCommonBlock(Cld_FCBlock block, ArrayList symbols)
        {
            // 开始构造一个Symbol
            LogicSymbol symbolTemp = new LogicSymbol(LogicSymbolType.GeneralSymbol);
            symbolTemp.Location = block.Location;
            symbolTemp.Size = block.Size;

            // 主体矩形
            LogicRectangle symbolBody = new LogicRectangle();
            symbolBody.Location = block.Location;
            symbolBody.Size = block.Size;
            symbolTemp.Graphics.Add(symbolBody);

            #region 模块名称(内部,上中)

            // SymbolName
            LogicText symbolNameText = new LogicText();
            symbolNameText.Location = new PointF(block.X + 2f, block.Y + 1f);
            symbolNameText.Width = block.Width - 4f;
            symbolNameText.Height = LogicSymbol.HeadHeight - 3f;
            symbolNameText.Text = block.FunctionName;
            symbolNameText.Font = new Font(LogicText.DefaultFamily, 12, FontStyle.Bold);
            symbolNameText.Alignment = Align.TopCenter;
            symbolNameText.ForeColor = Color.Black;
            symbolTemp.Graphics.Add(symbolNameText);

            #endregion

            #region I/O引脚

            // 遍历输入引脚
            foreach (Cld_FCInput input in block.Cld_FCInput_List)
            {
                bool isConnected = input.PointName != null ? LogicPin.RegPointName.IsMatch(input.PointName) : false;
                if (input.Visible || isConnected)
                {
                    LogicPin pin = new LogicPin(input, symbolTemp);
                    symbolTemp.Graphics.Add(pin);

                    symbolTemp.InputCount++;
                }
            }

            // 遍历输出引脚
            foreach (Cld_FCOutput output in block.Cld_FCOutput_List)
            {
                bool enable = false;
                if (!output.Visible)
                {
                    foreach (Cld_FCInput input in block.Cld_FCInput_List)
                    {
                        if (input.Visible && input.PointName == output.PointName)
                        {
                            enable = true;
                            break;
                        }
                    }
                }
                if (output.Visible || enable)
                {
                    LogicPin pin = new LogicPin(output, symbolTemp);
                    symbolTemp.Graphics.Add(pin);
                    symbolTemp.OutputCount++;
                }
            }
            #endregion

            #region 输出块号

            // 块号:序号
            LogicText symbolIndexText = new LogicText();
            symbolIndexText.Location = new PointF(block.X + 2f, block.Y + block.Height - LogicSymbol.FootHeight + 2f);
            symbolIndexText.Width = block.Width - 4f;
            symbolIndexText.Height = LogicSymbol.FootHeight - 3f;
            symbolIndexText.Text = block.AlgName.Substring(block.AlgName.LastIndexOf('-') + 1) + ":" + block.Sequence;
            symbolTemp.Graphics.Add(symbolIndexText);

            #endregion

            #region 输出块的参数信息

            IList fcParameters = block.Cld_FCParameter_List;
            if (fcParameters.Count > 0)
            {
                symbolTemp.Height += LogicSymbol.ParaHeight;
                LogicText symbolParaText = new LogicText();
                symbolParaText.Location = new PointF(block.X, block.Y + block.Height + 1f);
                symbolParaText.Width = block.Width;
                symbolParaText.Height = LogicSymbol.ParaHeight - 2f;
                symbolParaText.Alignment = Align.TopCenter;
                symbolParaText.Text = "";

                foreach (Cld_FCParameter para in block.Cld_FCParameter_List)
                {
                    if (para.Name == "Num")
                    {
                        if (symbolParaText.Text.Length == 0)
                        {
                            symbolParaText.Text = "Num=" + para.PValue;
                        }
                        else
                        {
                            symbolParaText.Text = "Num=" + para.PValue + "," + symbolParaText.Text;
                        }
                    }
                    if (para.Name == "Mode")
                    {
                        if (symbolParaText.Text.Length == 0)
                        {
                            symbolParaText.Text = "Num=" + para.PValue;
                        }
                        else
                        {
                            symbolParaText.Text += ",Num=" + para.PValue;
                        }
                    }
                }

                symbolTemp.Graphics.Add(symbolParaText);
            }

            #endregion

            LogicPoke poke = new LogicPoke(block);
            // 操作方式
            symbolTemp.Graphics.Add(poke);

            symbols.Add(symbolTemp);
        }
Ejemplo n.º 2
0
        private static LogicPoke NewSymbolPoke(Cld_FCBlock block, LogicText bodyText, IList<Cld_FCBlock> referenceBlocks)
        {
            IList<Cld_FCBlock> loopReferenceBlocks = bodyText.Text != "Null" ? CrossReference.GetLoopReference(bodyText.Text, block.ID) : null;
            DynCrossReference reference = null;
            if (referenceBlocks != null && referenceBlocks.Count > 0)
            {
                reference = new DynCrossReference();
                foreach (Cld_FCBlock refBlock in referenceBlocks)
                {
                    reference.AddReference(refBlock);
                }
            }
            if (loopReferenceBlocks != null && loopReferenceBlocks.Count > 0)
            {
                if (reference == null)
                {
                    reference = new DynCrossReference();
                }
                foreach (Cld_FCBlock refBlock in loopReferenceBlocks)
                {
                    reference.AddLoopReference(refBlock);
                }
            }

            LogicPoke poke = new LogicPoke(block);
            if (reference != null)
            {
                poke.Dynamics.Add(reference);
            }
            return poke;
        }
Ejemplo n.º 3
0
        /// <summary>
        /// XPgDO
        /// </summary>
        /// <param name="textWriter"></param>
        /// <param name="fcblock"></param>
        /// <param name="bll"></param>
        private static void GenerateXPgDOBlock(Cld_FCBlock block, ArrayList symbols)
        {
            // Body大小:35 x 30
            // 输入:1; 输出:0; 参数:0

            block.Size = new SizeF(35f, 30f);
            float edgeLength = 17.5f;

            LogicSymbol symbolTemp = new LogicSymbol(LogicSymbolType.IOSymbol);
            symbolTemp.Location = block.Location;
            symbolTemp.Size = block.Size;

            LogicPolygon bodyPolygon = new LogicPolygon();
            bodyPolygon.Points = new PointF[] { 
                new PointF(block.X, block.Y + 15f),
                new PointF(block.X + edgeLength / 2, block.Y),
                new PointF((float)(block.X + edgeLength * 1.5), block.Y),
                new PointF(block.X + 35f, block.Y + 15f),
                new PointF((float)(block.X + edgeLength * 1.5), block.Y + 30f),
                new PointF((float)(block.X + edgeLength / 2), block.Y + 30f)};

            LogicText bodyText = new LogicText();
            bodyText.Location = new PointF(block.X + 8f, block.Y + 10f);
            bodyText.Width = 19f;
            bodyText.Height = 11f;
            bodyText.Text = block.AlgName.Substring(block.AlgName.LastIndexOf('-') + 1);

            LogicPin inputPin = null;
            foreach (Cld_FCInput pin in block.Cld_FCInput_List)
            {
                if (pin.PinName == "Z")
                {
                    if (pin.Visible || (pin.PointName != null && LogicPin.RegPointName.IsMatch(pin.PointName)))
                    {
                        pin.Point = "0_15";
                        inputPin = new LogicPin(pin, symbolTemp);
                    }
                }
            }

            symbolTemp.Graphics.Add(bodyPolygon);
            symbolTemp.Graphics.Add(bodyText);
            if (inputPin != null)
            {
                symbolTemp.Graphics.Add(inputPin);
            }

            IList<Cld_FCBlock> referenceBlocks = CrossReference.GetOutputReference(block);

            LogicPoke poke = new LogicPoke(block);
            if (referenceBlocks.Count > 0)
            {
                DynCrossReference reference = new DynCrossReference();
                foreach (Cld_FCBlock refBlock in referenceBlocks)
                {
                    reference.AddReference(refBlock);
                }
                poke.Dynamics.Add(reference);
            }
            symbolTemp.Graphics.Add(poke);

            symbols.Add(symbolTemp);

            if (referenceBlocks.Count > 0)
            {
                for (int i = 0; i < referenceBlocks.Count; i++)
                {
                    GenerateXPgDIReferer(block, i, referenceBlocks[i], symbols);
                }
            }

        }
Ejemplo n.º 4
0
        /// <summary>
        /// XPgDI
        /// </summary>
        /// <param name="textWriter"></param>
        /// <param name="fcblock"></param>
        /// <param name="bll"></param>
        private static void GenerateXPgDIBlock(Cld_FCBlock block, ArrayList symbols)
        {
            // Body大小:35 x 30
            // 输入:0; 输出:1; 参数:2

            block.Size = new SizeF(35f, 30f);
            float edgeLength = 17.5f;             // 正六边形的边长


            LogicSymbol symbolTemp = new LogicSymbol(LogicSymbolType.IOSymbol);
            symbolTemp.Location = PointF.Subtract(block.Location, new SizeF(60f, 0f));
            symbolTemp.Size = SizeF.Add(block.Size, new SizeF(60f, 0f));

            LogicPolygon bodyPolygon = new LogicPolygon();
            bodyPolygon.Points = new PointF[] { 
                new PointF(block.X, block.Y + 15f),
                new PointF(block.X + edgeLength / 2, block.Y),
                new PointF((float)(block.X + edgeLength * 1.5), block.Y),
                new PointF(block.X + 35f, block.Y + 15f),
                new PointF((float)(block.X + edgeLength * 1.5), block.Y + 30f),
                new PointF((float)(block.X + edgeLength / 2), block.Y + 30f)};

            LogicLine bodyLine = new LogicLine();
            bodyLine.Point1 = bodyPolygon.Points[0];
            bodyLine.Point2 = bodyPolygon.Points[3];

            LogicText pageIndexText = new LogicText();
            pageIndexText.Location = new PointF(block.X + 8f, block.Y + 3f);
            pageIndexText.Width = 19f;
            pageIndexText.Height = 11f;

            LogicText blockIndexText = new LogicText();
            blockIndexText.Location = new PointF(block.X + 8f, block.Y + 16f);
            blockIndexText.Width = 19f;
            blockIndexText.Height = 11f;

            string[] id = block.AlgName.Split('-');
            pageIndexText.Text = id[1];
            blockIndexText.Text = id[2];

            LogicText textPointName = new LogicText();
            textPointName.Location = new PointF(block.X - 60f, block.Y + 2f);
            textPointName.Width = 58f;
            textPointName.Height = 11f;
            textPointName.Alignment = Align.BottomRight;

            LogicPin outputPin = null;
            foreach (Cld_FCOutput output in block.Cld_FCOutput_List)
            {
                if (output.PinName == "D")
                {
                    output.Point = "35_15";
                    outputPin = new LogicPin(output, symbolTemp);
                }
            }

            foreach (Cld_FCParameter para in block.Cld_FCParameter_List)
            {
                if (para.Name == "Page")
                {
                    if (para.PValue != null)
                    {
                        int pageIndex = Convert.ToInt32(para.PValue);
                        if (pageIndex > 0 && pageIndex < 65535)
                        {
                            pageIndexText.Text = para.PValue;
                        }
                        else
                        {
                            pageIndexText.Text = "?";
                        }
                    }
                    else
                    {
                        pageIndexText.Text = "?";
                    } 
                }
                else if (para.Name == "Block")
                {
                    if (para.PValue != null)
                    {
                        int blockIndex = Convert.ToInt32(para.PValue);
                        if (blockIndex > 0 && blockIndex < 65535)
                        {
                            blockIndexText.Text = para.PValue;
                        }
                        else
                        {
                            blockIndexText.Text = "?";
                        } 
                    }
                    else
                    {
                        blockIndexText.Text = "?";
                    }
                }
            }

            string[] functions = new string[] { "XDI", "XDO", "XNetDO", "XPgDO" };
            IList<string> canReferenceFunctions = new List<string>(functions);
            Cld_FCBlock referenceBlock = CrossReference.GetInputReference(block);
            if (referenceBlock != null)
            {
                if (canReferenceFunctions.Contains(referenceBlock.FunctionName))
                {
                    if (referenceBlock.FunctionName != "XPgDO")
                    {
                        foreach (Cld_FCInput pin in referenceBlock.Cld_FCInput_List)
                        {
                            if (pin.PinName == "GID" && pin.PointName != null && pin.PointName != "?")
                            {
                                textPointName.Text = pin.PointName;
                            }
                        }

                        if (textPointName.Text.Length == 0)
                        {
                            textPointName.Text = "NoDxTag";     // 引用块名称为空(不存在),GID == NULL
                        }
                    }
                }
                else
                {
                    textPointName.Text = "RefError";        // 引用错误
                    textPointName.ForeColor = Color.Red;
                }
            }
            else
            {
                textPointName.Text = "RefNoExist";          // 引用块不存在
                textPointName.ForeColor = Color.Red;
            }

            symbolTemp.Graphics.Add(bodyPolygon);
            symbolTemp.Graphics.Add(bodyLine);
            symbolTemp.Graphics.Add(pageIndexText);
            symbolTemp.Graphics.Add(blockIndexText);
            symbolTemp.Graphics.Add(textPointName);
            if (outputPin != null)
            {
                symbolTemp.Graphics.Add(outputPin);
            }

            LogicPoke poke = new LogicPoke(block);
            if (referenceBlock != null)
            {
                DynCrossReference refenence = new DynCrossReference();
                refenence.AddReference(referenceBlock);
                poke.Dynamics.Add(refenence);
            }
            symbolTemp.Graphics.Add(poke);

            symbols.Add(symbolTemp);
        }
Ejemplo n.º 5
0
        /// <summary>
        /// XPgAO
        /// </summary>
        /// <param name="textWriter"></param>
        /// <param name="fcblock"></param>
        /// <param name="bll"></param>
        private static void GenerateXPgAOBlock(Cld_FCBlock block, ArrayList symbols)
        {
            // Body大小:30 x 30
            // 输入:1; 输出:0; 参数:0

            block.Size = new SizeF(30f, 30f);

            LogicSymbol symbolTemp = new LogicSymbol(LogicSymbolType.IOSymbol);
            symbolTemp.Location = block.Location;
            symbolTemp.Size = block.Size;

            LogicCircle bodyCircle = new LogicCircle();
            bodyCircle.CentrePoint = new PointF(block.X + 15f, block.Y + 15f);
            bodyCircle.Radius = 15f;

            LogicText blockIndexText = new LogicText();
            blockIndexText.Location = new PointF(block.X + 5f, block.Y + 10f);
            blockIndexText.Width = 20f;
            blockIndexText.Height = 11f;
            blockIndexText.Text = block.AlgName.Substring(block.AlgName.LastIndexOf('-') + 1);

            LogicPin inputPin = null;
            foreach (Cld_FCInput pin in block.Cld_FCInput_List)
            {
                if (pin.PinName == "X")
                {
                    if (pin.Visible || (pin.PointName != null && LogicPin.RegPointName.IsMatch(pin.PointName)))
                    {
                        pin.Point = "0_15";
                        inputPin = new LogicPin(pin, symbolTemp);
                    }
                }
            }

            symbolTemp.Graphics.Add(bodyCircle);
            symbolTemp.Graphics.Add(blockIndexText);
            if (inputPin != null)
            {
                symbolTemp.Graphics.Add(inputPin);
            }

            IList<Cld_FCBlock> referenceBlocks = CrossReference.GetOutputReference(block);

            LogicPoke poke = new LogicPoke(block);
            if (referenceBlocks.Count > 0)
            {
                DynCrossReference reference = new DynCrossReference();
                foreach (Cld_FCBlock refBlock in referenceBlocks)
                {
                    reference.AddReference(refBlock);
                }
                poke.Dynamics.Add(reference);
            }
            symbolTemp.Graphics.Add(poke);

            symbols.Add(symbolTemp);

            if (referenceBlocks.Count > 0)
            {
                for (int i = 0; i < referenceBlocks.Count; i++)
                {
                    GenerateXPgAIReferer(block, i, referenceBlocks[i], symbols);
                }
            }
        }
Ejemplo n.º 6
0
        /// <summary>
        /// XPgAI
        /// </summary>
        /// <param name="textWriter"></param>
        /// <param name="fcblock"></param>
        /// <param name="bll"></param>
        private static void GenerateXPgAIBlock(Cld_FCBlock block, ArrayList symbols)
        {
            // Body大小:30 x 30
            // 输入:0; 输出:1; 参数:2

            block.Size = new SizeF(30f, 30f);

            LogicSymbol symbolTemp = new LogicSymbol(LogicSymbolType.IOSymbol);
            symbolTemp.Location = PointF.Subtract(block.Location, new SizeF(60f, 0f));
            symbolTemp.Size = SizeF.Add(block.Size, new SizeF(60f, 0f));

            LogicCircle bodyCircle = new LogicCircle();
            bodyCircle.CentrePoint = new PointF(block.X + 15f, block.Y + 15f);
            bodyCircle.Radius = 15f;

            LogicLine bodyLine = new LogicLine();
            bodyLine.Point1 = new PointF(block.X, block.Y + 15f);
            bodyLine.Point2 = new PointF(block.X + 30f, block.Y + 15f);

            LogicText pageIndexText = new LogicText();
            pageIndexText.Location = new PointF(block.X + 5f, block.Y + 3f);
            pageIndexText.Width = 20f;
            pageIndexText.Height = 11f;
            pageIndexText.Text = "Null";

            LogicText blockIndexText = new LogicText();
            blockIndexText.Location = new PointF(block.X + 5f, block.Y + 16f);
            blockIndexText.Width = 20f;
            blockIndexText.Height = 11f;
            blockIndexText.Text = "Null";

            LogicText textPointName = new LogicText();
            textPointName.Location = new PointF(block.X - 60f, bodyCircle.Point1.Y + 2f);
            textPointName.Width = 58f;
            textPointName.Height = 11f;
            textPointName.Alignment = Align.BottomRight;

            LogicPin outputPin = null;
            foreach (Cld_FCOutput output in block.Cld_FCOutput_List)
            {
                if (output.PinName == "Y")
                {
                    output.Point = "30_15";
                    outputPin = new LogicPin(output, symbolTemp);
                }
            }

            foreach (Cld_FCParameter para in block.Cld_FCParameter_List)
            {
                if (para.Name == "Page" && para.PValue != null)
                {
                    int pageIndex = Convert.ToInt32(para.PValue);
                    if (pageIndex > 0 && pageIndex < 65535)
                    {
                        pageIndexText.Text = para.PValue;
                    }
                    else
                    {
                        pageIndexText.Text = "?";
                    }
                }
                else if (para.Name == "Block" && para.PValue != null)
                {
                    int blockIndex = Convert.ToInt32(para.PValue);
                    if (blockIndex > 0 && blockIndex < 65535)
                    {
                        blockIndexText.Text = para.PValue;
                    }
                    else
                    {
                        blockIndexText.Text = "?";
                    }
                }
            }

            string[] functons = new string[] { "XAI", "XAO", "XPI", "XNetAO", "XPgAO" };
            IList<string> canReferenceFunctions = new List<string>(functons);
            Cld_FCBlock referenceBlock = CrossReference.GetInputReference(block);
            if (referenceBlock != null)
            {
                if (canReferenceFunctions.Contains(referenceBlock.FunctionName))
                {
                    if (referenceBlock.FunctionName != "XPgAO")
                    {
                        foreach (Cld_FCInput pin in referenceBlock.Cld_FCInput_List)
                        {
                            if (pin.PinName == "GID" && pin.PointName != null && pin.PointName != "?")
                            {
                                textPointName.Text = pin.PointName;
                            }
                        }

                        if (textPointName.Text.Length == 0)
                        {
                            textPointName.Text = "NoAxTag";     // 引用块名称为空(不存在),GID == NULL
                        }
                    }
                }
                else
                {
                    textPointName.Text = "RefError";        // 引用错误
                    textPointName.ForeColor = Color.Red;
                }
            }
            else
            {
                textPointName.Text = "RefNoExist";          // 引用块不存在
                textPointName.ForeColor = Color.Red;
            }

            symbolTemp.Graphics.Add(bodyCircle);
            symbolTemp.Graphics.Add(bodyLine);
            symbolTemp.Graphics.Add(pageIndexText);
            symbolTemp.Graphics.Add(blockIndexText);
            symbolTemp.Graphics.Add(textPointName);
            if (outputPin != null)
            {
                symbolTemp.Graphics.Add(outputPin);
            }

            LogicPoke poke = new LogicPoke(block);
            if (referenceBlock != null)
            {
                DynCrossReference refenence = new DynCrossReference();
                refenence.AddReference(referenceBlock);
                poke.Dynamics.Add(refenence);
            }
            symbolTemp.Graphics.Add(poke);

            symbols.Add(symbolTemp);
        }