public override void dessiner(Forme_simple entry, Graphics g)
        {
            Type t  = typeof(Polygone);
            Type t2 = entry.GetType();

            if (t.Equals(t2))
            {
                Polygone   p     = (Polygone)entry;
                SolidBrush brush = new SolidBrush(Color.FromArgb(entry.Couleur));
                g.FillPolygon(brush, p.Tableau_points);
            }
            else if (successor != null)
            {
                successor.dessiner(entry, g);
            }
        }
        public override void contourSelection(Forme_simple forme, Graphics g, Color couleur)
        {
            Type t  = typeof(Polygone);
            Type t2 = forme.GetType();

            if (t.Equals(t2))
            {
                Polygone e   = (Polygone)forme;
                Pen      pen = new Pen(couleur, 10); //Couleur de selection
                g.DrawPolygon(pen, e.Tableau_points);
            }
            else if (successor != null)
            {
                successor.contourSelection(forme, g, couleur);
            }
        }
        public override void create(Forme_simple entry)
        {
            Type t  = typeof(Polygone);
            Type t2 = entry.GetType();

            if (t.Equals(t2))
            {
                base.create(entry);
                Polygone p = (Polygone)entry;

                //Définition des requetes
                List <String> tabRequete_poly = new List <String>();
                //polygone
                tabRequete_poly.Add(@"INSERT INTO polygone(id) VALUES (@id);");
                //point
                for (int i = 1; i <= p.Tableau_points.Length; i++)
                {
                    tabRequete_poly.Add(@"INSERT INTO point(id, ordre, x, y) VALUES (@id, " + i + ", " + p.Tableau_points[i - 1].X + ", " + p.Tableau_points[i - 1].Y + ");");
                }

                foreach (String r in tabRequete_poly)
                {
                    //Définition de la requete
                    this._command.CommandText = r;

                    try
                    {
                        //Execution de la requete
                        this._command.ExecuteNonQuery();
                    }
                    catch (MySqlException ex)
                    {
                        Console.WriteLine("Error: {0}", ex.ToString());
                        throw ex;
                    }
                }
            }
            else if (successor != null)
            {
                successor.create(entry);
            }
        }
示例#4
0
        static void test()
        {
            DAOFormeSimple Fs1 = new DAORectangle();
            DAOFormeSimple Fs2 = new DAOSegment();
            DAOFormeSimple Fs3 = new DAOEllipse();
            DAOFormeSimple Fs4 = new DAOTriangle();
            DAOFormeSimple Fs5 = new DAOPolygone();

            Fs1.SetSuccessor(Fs2);
            Fs2.SetSuccessor(Fs3);
            Fs3.SetSuccessor(Fs4);
            Fs4.SetSuccessor(Fs5);

            //test ellipse

            string nom_ellipse = "elipse1";

            int couleur_ellipse = 55555;

            Point point1 = new Point(12, 13);
            int longueur_ell = 12;
            int largeur_ell = 10;

            Forme_simple ellipse1 = new Ellipse(0, nom_ellipse, couleur_ellipse, point1, longueur_ell, largeur_ell, -1);

            //test polygone

            string nom_polygone = "polygone1";

            int couleur_polygone = 15464;

            Point point3 = new Point(16, 17);
            Point point4 = new Point(18, 19);
            Point point5 = new Point(20, 21);

            Point []tableau_points = new Point[3]{point3, point4, point5};

            Polygone polygone1 = new Polygone(1, nom_polygone, couleur_polygone, tableau_points, -1);

            //test triangle

            string nom_triangle = "triangle1";

            int couleur_triangle = 15464;

            Point point7 = new Point(16, 17);
            Point point8 = new Point(18, 19);
            Point point9 = new Point(20, 21);

            Point[] tableau_points2 = new Point[3] { point3, point4, point5 };

            Triangle triangle1 = new Triangle(3, nom_triangle, couleur_triangle, tableau_points2, -1);

            //test rectangle

            string nom_rectangle = "rectangle1";

            int couleur_rectangle = 4646;

            Point point6 = new Point(22, 23);
            int longueur_rect = 12;
            int largeur_rect = 10;

            Rectangle rectangle1 = new Rectangle(2, nom_rectangle, couleur_rectangle, point6, longueur_rect, largeur_rect, -1);

            //test segment

            string nom_segment = "segment1";

            int couleur_segment = 4646;

            Point point10 = new Point(22, 23);
            Point point11 = new Point(24, 25);

            Segment segment1 = new Segment(4, nom_segment, couleur_segment, point10, point11, -1);

            //test groupe

            string nom_groupe = "groupe1";

            List<Forme_simple> liste_formes2 = new List<Forme_simple>();

            List<Forme> liste_formes = new List<Forme>();
            liste_formes.Add(ellipse1);
            liste_formes.Add(polygone1);
            liste_formes.Add(rectangle1);
            liste_formes.Add(segment1);
            liste_formes.Add(triangle1);

            Forme_composee groupe1 = new Forme_composee(5, nom_groupe, -1, liste_formes);

            foreach (Forme_simple list1 in liste_formes)
            {
                Fs1.create(list1);
            }

            //foreach(Forme_simple list in liste_formes)
            //{
            //       forme = Fs1.find();
            //       forme.Write();
            //       //liste_formes2.Add(forme);
            //}

            /*foreach (Forme_simple list2 in liste_formes2)
            {
                Console.WriteLine(list2.Id);
            }*/

            Console.ReadLine();
        }
示例#5
0
        static void test()
        {
            DAOFormeSimple Fs1 = new DAORectangle();
            DAOFormeSimple Fs2 = new DAOSegment();
            DAOFormeSimple Fs3 = new DAOEllipse();
            DAOFormeSimple Fs4 = new DAOTriangle();
            DAOFormeSimple Fs5 = new DAOPolygone();

            Fs1.SetSuccessor(Fs2);
            Fs2.SetSuccessor(Fs3);
            Fs3.SetSuccessor(Fs4);
            Fs4.SetSuccessor(Fs5);

            //test ellipse

            string nom_ellipse = "elipse1";

            int couleur_ellipse = 55555;

            Point point1       = new Point(12, 13);
            int   longueur_ell = 12;
            int   largeur_ell  = 10;


            Forme_simple ellipse1 = new Ellipse(0, nom_ellipse, couleur_ellipse, point1, longueur_ell, largeur_ell, -1);

            //test polygone

            string nom_polygone = "polygone1";

            int couleur_polygone = 15464;

            Point point3 = new Point(16, 17);
            Point point4 = new Point(18, 19);
            Point point5 = new Point(20, 21);

            Point [] tableau_points = new Point[3] {
                point3, point4, point5
            };

            Polygone polygone1 = new Polygone(1, nom_polygone, couleur_polygone, tableau_points, -1);

            //test triangle

            string nom_triangle = "triangle1";

            int couleur_triangle = 15464;

            Point point7 = new Point(16, 17);
            Point point8 = new Point(18, 19);
            Point point9 = new Point(20, 21);

            Point[] tableau_points2 = new Point[3] {
                point3, point4, point5
            };

            Triangle triangle1 = new Triangle(3, nom_triangle, couleur_triangle, tableau_points2, -1);

            //test rectangle

            string nom_rectangle = "rectangle1";

            int couleur_rectangle = 4646;

            Point point6        = new Point(22, 23);
            int   longueur_rect = 12;
            int   largeur_rect  = 10;

            Rectangle rectangle1 = new Rectangle(2, nom_rectangle, couleur_rectangle, point6, longueur_rect, largeur_rect, -1);

            //test segment

            string nom_segment = "segment1";

            int couleur_segment = 4646;

            Point point10 = new Point(22, 23);
            Point point11 = new Point(24, 25);

            Segment segment1 = new Segment(4, nom_segment, couleur_segment, point10, point11, -1);

            //test groupe

            string nom_groupe = "groupe1";

            List <Forme_simple> liste_formes2 = new List <Forme_simple>();

            List <Forme> liste_formes = new List <Forme>();

            liste_formes.Add(ellipse1);
            liste_formes.Add(polygone1);
            liste_formes.Add(rectangle1);
            liste_formes.Add(segment1);
            liste_formes.Add(triangle1);

            Forme_composee groupe1 = new Forme_composee(5, nom_groupe, -1, liste_formes);


            foreach (Forme_simple list1 in liste_formes)
            {
                Fs1.create(list1);
            }

            //foreach(Forme_simple list in liste_formes)
            //{
            //       forme = Fs1.find();
            //       forme.Write();
            //       //liste_formes2.Add(forme);
            //}

            /*foreach (Forme_simple list2 in liste_formes2)
             * {
             *  Console.WriteLine(list2.Id);
             * }*/

            Console.ReadLine();
        }