Beispiel #1
0
 internal void SetRotatedRectangle(double Width, double Height, double Rotation, double Xoff, double Yoff)
 {
     Shape.Vertices.Clear();
     Shape.MakeRectangle(Width, Height);
     Shape.Translate(Xoff, Yoff);
     Shape.RotateDegrees(Rotation);
 }
        List <ApertureMacroParam> RotateParams(ApertureMacroParam A, ApertureMacroParam B, double rotation)
        {
            List <ApertureMacroParam> Res = new List <ApertureMacroParam>();

            ApertureMacroParam X = new ApertureMacroParam(true)
            {
                boundparam = A.boundparam, scaledvalue = A.scaledvalue, value = A.value
            };
            ApertureMacroParam Y = new ApertureMacroParam(true)
            {
                boundparam = B.boundparam, scaledvalue = B.scaledvalue, value = B.value
            };

            PolyLine R = new PolyLine(PolyLine.PolyIDs.Temp);

            R.Add(X.value, Y.value);
            R.Add(X.scaledvalue, Y.scaledvalue);
            R.RotateDegrees(rotation);

            X.value       = R.Vertices[0].X;
            Y.value       = R.Vertices[0].Y;
            X.scaledvalue = R.Vertices[1].X;
            Y.scaledvalue = R.Vertices[1].Y;

            Res.Add(X);
            Res.Add(Y);
            return(Res);
        }
        public void SetRectangle(double width, double height, double Rotation)
        {
            RectWidth  = width;
            RectHeight = height;
            ShapeType  = GerberApertureShape.Rectangle;
            Shape.Vertices.Clear();
            double W = (double)width / 2;
            double H = (double)height / 2;

            Shape.Add(W, -H);
            Shape.Add(-W, -H);
            Shape.Add(-W, H);
            Shape.Add(W, H);

            Shape.RotateDegrees(Rotation);
        }
Beispiel #4
0
        public static PolyLine Stroke(double x1, double y1, double x2, double y2, double w)
        {
            PolyLine PL = new PolyLine(PolyIDs.GFXTemp);
            PointD   A  = new PointD(x1, y1);
            PointD   B  = new PointD(x2, y2);
            var      C  = B - A;

            PL.MakeRectangle(w, C.Length() + w);
            PL.Translate(0, C.Length() / 2);
            PL.RotateDegrees(Math.Atan2(C.Y, C.X) * 360 / (Math.PI * 2) - 90);
            PL.Translate(x1, y1);

            return(PL);
        }
        public string BuildGerber(GerberNumberFormat GNF, double rotationdegrees)
        {
            string res = "";

            switch (Type)
            {
            case ApertureMacroTypes.Equation:
                res += String.Format("{0}={1}", EquationTarget, EquationSource);
                break;

            case ApertureMacroTypes.Line:
            case ApertureMacroTypes.Line_2:
            {
                var Rot = RotateParams(Params[3], Params[4], rotationdegrees);

                res += String.Format("20,1,{0},{1},{2},{3},{4},{5}",
                                     //Params[1].BuildGerber(rotationdegrees, false),
                                     Params[2].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[3].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[4].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[5].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[6].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[7].BuildGerber(GNF, rotationdegrees, true, false)
                                     );
                break;
            }

            default:
                Console.WriteLine("Sorry - I cant make gerber for macro parts of type {0} yet", Type);
                break;

            case ApertureMacroTypes.Outline:
                res += String.Format("4,1,{0}," + Gerber.LineEnding, OutlineVertices.Count - 1);
                if (rotationdegrees != 0)
                {
                    PolyLine P = new PolyLine(PolyLine.PolyIDs.Aperture);
                    for (int i = 0; i < OutlineVertices.Count; i++)
                    {
                        PointD B = OutlineVertices[i].Get(Params);
                        P.Add(B.X, B.Y);
                    }
                    P.RotateDegrees(rotationdegrees);
                    for (int i = 0; i < P.Vertices.Count(); i++)
                    {
                        res += String.Format("{0},{1}," + Gerber.LineEnding, Gerber.ToFloatingPointString(GNF._ScaleMMToFile(P.Vertices[i].X)).Replace(',', '.'), Gerber.ToFloatingPointString(GNF._ScaleMMToFile(P.Vertices[i].Y)).Replace(',', '.'));
                    }
                }
                else
                {
                    for (int i = 0; i < OutlineVertices.Count; i++)
                    {
                        PointD B = OutlineVertices[i].Get(Params);

                        res += String.Format("{0},{1}," + Gerber.LineEnding, Gerber.ToFloatingPointString(GNF._ScaleMMToFile(B.X)).Replace(',', '.'), Gerber.ToFloatingPointString(GNF._ScaleMMToFile(B.Y)).Replace(',', '.'));
                    }
                }
                res += "0";
                break;

            case ApertureMacroTypes.Polygon:
            {
                var Rot = RotateParams(Params[3], Params[4], rotationdegrees);

                res += String.Format("5,1,{0},{1},{2},{3},{4}",
                                     //Params[1].BuildGerber(rotationdegrees, false),
                                     Params[2].BuildGerberInt(GNF, rotationdegrees, false),
                                     Rot[0].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[1].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[5].BuildGerber(GNF, rotationdegrees, false, false),
                                     Params[6].BuildGerber(GNF, rotationdegrees, true, false)
                                     );
                break;
            }

            case ApertureMacroTypes.Thermal:
            {
                var Rot = RotateParams(Params[1], Params[2], rotationdegrees);

                res += String.Format("7,1,{0},{1},{2},{3},{4},{5}",
                                     Rot[0].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[1].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[3].BuildGerber(GNF, rotationdegrees, false, false),
                                     Params[4].BuildGerber(GNF, rotationdegrees, false, false),
                                     Params[5].BuildGerber(GNF, rotationdegrees, false, false),
                                     Params[6].BuildGerber(GNF, rotationdegrees, true, false)
                                     );
                break;
            }

            case ApertureMacroTypes.CenterLine:
            {
                var Rot = RotateParams(Params[4], Params[5], rotationdegrees);
                res += String.Format("21,1,{0},{1},{2},{3},{4}",
                                     //Params[1].BuildGerber(rotationdegrees, false),
                                     Params[2].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[3].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[0].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[1].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[6].BuildGerber(GNF, rotationdegrees, true, false)
                                     );
            }
            break;

            case ApertureMacroTypes.LowerLeftLine:
            {
                var Rot = RotateParams(Params[4], Params[5], rotationdegrees);
                res += String.Format("21,1,{0},{1},{2},{3},{4}",
                                     //Params[1].BuildGerber(rotationdegrees, false),
                                     Params[2].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[3].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[0].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[1].BuildGerber(GNF, rotationdegrees, false, true),
                                     Params[6].BuildGerber(GNF, rotationdegrees, true, false)
                                     );
            }
            break;

            case ApertureMacroTypes.Circle:
                //res += "circ";
            {
                var Rot = RotateParams(Params[3], Params[4], rotationdegrees);

                res += String.Format("1,1,{0},{1},{2}",
                                     //Params[1].BuildGerber(rotationdegrees, false),
                                     Params[2].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[0].BuildGerber(GNF, rotationdegrees, false, true),
                                     Rot[1].BuildGerber(GNF, rotationdegrees, false, true)
                                     );
            }
            break;
            }
            foreach (var a in Params)
            {
            }
            res += "*" + Gerber.LineEnding;
            return(res);
        }
        public string BuildGerber(GerberNumberFormat format, string MacroNameSuffix = "", double RotationAngle = 0)
        {
            string res       = String.Format("%ADD{0}", ID.ToString("D2"));
            int    parmcount = 0;

            switch (ShapeType)
            {
            case GerberApertureShape.Macro:

                res += MacroName + MacroNameSuffix;
                if (MacroParamList.Count > 0)
                {
                    res += ",";
                }
                foreach (var a in MacroParamList)
                {
                    parmcount++;
                    if (parmcount >= 2)
                    {
                        res += "X";
                    }
                    res += Gerber.ToFloatingPointString(format._ScaleMMToFile(a)).Replace(',', '.');
                }
                break;

            case GerberApertureShape.Circle:
            {
                if (CircleRadius > 3)
                {
                    //Console.WriteLine("test");
                }
                res += "C," + Gerber.ToFloatingPointString(format._ScaleMMToFile(CircleRadius * 2)).Replace(',', '.');
            }
            break;

            case GerberApertureShape.Rectangle:
                if (RotationAngle == 0 || (int)RotationAngle == 180)
                {
                    res += "R," + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectWidth)).Replace(',', '.') + "X" + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectHeight)).Replace(',', '.');
                }
                else
                {
                    if ((int)RotationAngle == 90 || (int)RotationAngle == (-90) || (int)RotationAngle == (270))
                    {
                        res += "R," + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectHeight)).Replace(',', '.') + "X" + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectWidth)).Replace(',', '.');
                    }
                    else
                    {
                        string macroname = "REC" + (MacroPostFix++).ToString();

                        PolyLine Rect = new PolyLine(PolyLine.PolyIDs.Temp);
                        Rect.MakeRectangle(RectWidth, RectHeight);
                        Rect.RotateDegrees(RotationAngle);
                        res = Gerber.BuildOutlineApertureMacro(macroname, Rect.Vertices, format) + res;

                        res += macroname;
                        if (Gerber.ShowProgress)
                        {
                            Console.WriteLine("generated rotated rect: ");
                        }
                        if (Gerber.ShowProgress)
                        {
                            Console.WriteLine(res);
                        }
                    }
                }
                break;

            case GerberApertureShape.Polygon:
                if (RotationAngle == 0)
                {
                    res += "P," + Gerber.ToFloatingPointString(format._ScaleMMToFile(NGonRadius * 2)).Replace(',', '.') + "X" + NGonSides.ToString() + "X" + Gerber.ToFloatingPointString(NGonRotation).Replace(',', '.');
                }
                else
                {
                    double newangle = NGonRotation + RotationAngle;
                    while (newangle < 0)
                    {
                        newangle += 360;
                    }
                    while (newangle > 360)
                    {
                        newangle -= 360;
                    }
                    res += "P," + Gerber.ToFloatingPointString(format._ScaleMMToFile(NGonRadius * 2)).Replace(',', '.') + "X" + NGonSides.ToString() + "X" + Gerber.ToFloatingPointString(newangle).Replace(',', '.');
                    if (Gerber.ShowProgress)
                    {
                        Console.WriteLine("generated rotated NGon: ");
                    }
                    if (Gerber.ShowProgress)
                    {
                        Console.WriteLine(res);
                    }
                }
                break;

            case GerberApertureShape.OBround:
                if (RotationAngle == 0 || Math.Abs(Math.Abs(RotationAngle) - 180) < 0.01)
                {
                    res += "O," + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectWidth)).Replace(',', '.') + "X" + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectHeight)).Replace(',', '.');
                }
                else
                {
                    if (Math.Abs(Math.Abs(RotationAngle) - 90) < 0.01)
                    {
                        res += "O," + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectHeight)).Replace(',', '.') + "X" + Gerber.ToFloatingPointString(format._ScaleMMToFile(RectWidth)).Replace(',', '.');
                    }
                    else
                    {
                        string macroname = "OBR" + (MacroPostFix++).ToString();


                        PolyLine Obround = new PolyLine(PolyLine.PolyIDs.Temp);

                        Obround.SetObround(RectWidth, RectHeight);
                        Obround.RotateDegrees(RotationAngle);

                        res  = Gerber.BuildOutlineApertureMacro(macroname, Obround.Vertices, format) + res;
                        res += macroname;


                        if (Gerber.ShowProgress)
                        {
                            Console.WriteLine("generated rotated obround: ");
                        }
                        if (Gerber.ShowProgress)
                        {
                            Console.WriteLine(res);
                        }
                    }
                }
                break;

            case GerberApertureShape.Compound:
            {
                string macroname = "COMP" + (MacroPostFix++).ToString() + MacroNameSuffix;
                string macrores  = Gerber.WriteMacroStart(macroname);
                foreach (var P in Parts)
                {
                    PolyLine Comp = new PolyLine(PolyLine.PolyIDs.Temp);

                    foreach (var a in P.Shape.Vertices)

                    {
                        Comp.Add(a.X, a.Y);
                    }
                    Comp.Close();
                    Comp.RotateDegrees(RotationAngle);

                    macrores += Gerber.WriteMacroPartVertices(Comp.Vertices, format);
                }

                macrores += Gerber.WriteMacroEnd();
                res       = macrores + res;
                res      += macroname;


                if (Parts.Count > 1)
                {
                    Console.WriteLine("Number of parts: {0} but only 1 written", Parts.Count);
                    Console.WriteLine(res);
                }

                // res += MacroName;
                if (MacroParamList.Count > 0)
                {
                    res += ",";
                }
                foreach (var a in MacroParamList)
                {
                    parmcount++;
                    if (parmcount >= 2)
                    {
                        res += "X";
                    }
                    res += Gerber.ToFloatingPointString(a).Replace(',', '.');
                }


                if (Gerber.ShowProgress)
                {
                    Console.WriteLine("generated rotated compound macro shape: ");
                }
                if (Gerber.ShowProgress)
                {
                    Console.WriteLine(res);
                }
            }
            break;

            default:
                Console.WriteLine("I don't know how to generate the source for this aperture yet.");
                break;
            }

            res += "*%";

            return(res);
        }