Exemplo n.º 1
0
        public static void XmlSerialization(PlanetarySystem <AstronomicalBody> bodies)
        {
            XmlSerializer ser = new XmlSerializer(typeof(PlanetarySystem <AstronomicalBody>));
            Stream        fs  = new FileStream(@"D:\КПИ\ООП\OOP\lab3\Lab1_OOP\xmlserializer.xml", FileMode.Create);


            ser.Serialize(fs, bodies);
        }
Exemplo n.º 2
0
 public static string GetInfo(PlanetarySystem<AstronomicalBody> bodies)
 {
     string info = "";
     for(int i = 0;  i < bodies.Count; i++)
     {
         String.Concat(info, bodies[i].Name, " ");
     }
     return info;
 }
Exemplo n.º 3
0
        public static void XmlDeserialization(PlanetarySystem <AstronomicalBody> bodies)
        {
            XmlSerializer ser = new XmlSerializer(typeof(PlanetarySystem <AstronomicalBody>));

            using (FileStream fs = new FileStream("xmlserializer.xml", FileMode.OpenOrCreate))
            {
                PlanetarySystem <AstronomicalBody> new_bodies = (PlanetarySystem <AstronomicalBody>)ser.Deserialize(fs);
            }
        }
Exemplo n.º 4
0
        public static float GetGeneralWeight(this PlanetarySystem <AstronomicalBody> body)
        {
            float sumWeight = 0;

            for (int i = 0; i < body.Count; i++)
            {
                sumWeight += body[i].Weight;
            }
            return(sumWeight);
        }
Exemplo n.º 5
0
        static void Main(string[] args)
        {
            try
            {
                //create a star
                Star star = new Star("Sun", 334.45567F, 345.5F, 456.2F, 2354436456.234435F, "Star", "He", 34546456.24F);

                //planet
                AstronomicalBody astBody = new AstronomicalBody("Kepler", 345.45F, 23.5F, 321.5F, 2.5900000000000000F);

                //asteroids
                AstronomicalBody ceres   = new AstronomicalBody("Ceres", 3345.4F, 789.4F, 347.83F, 7.3600000000000000F);
                AstronomicalBody fortuna = new AstronomicalBody("Fortuna", 795.67F, 41.3F, 78.4F, 9.3400000000000000F);

                Console.WriteLine("Start of the test: {0}", GC.GetTotalMemory(true));

                //create new system
                PlanetarySystem <AstronomicalBody> system = new PlanetarySystem <AstronomicalBody>(star);

                del Add = x => system.Add(x);

                //system forming
                Add(astBody);
                Add(ceres);
                Add(fortuna);

                Console.WriteLine("Сreating an object: {0}", GC.GetTotalMemory(true));

                GC.Collect();
                GC.WaitForPendingFinalizers();

                WeakReference wr = WR();
                Console.WriteLine("Is first object alive : " + wr.IsAlive.ToString());

                GC.Collect(2, GCCollectionMode.Forced);

                Console.WriteLine("Is first object alive : " + wr.IsAlive.ToString());

                system.Dispose();
                Console.WriteLine("System does not exist: " + (system.astBodies == null));// Ccилка  на список null
                Console.WriteLine(system.ToString());


                Console.ReadKey();
            }
            catch (InvalidAstBodyNameException e)
            {
                Console.WriteLine("Custom exception " + e.Message);
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
        }
Exemplo n.º 6
0
        public static AstronomicalBody getSmallestBody(this PlanetarySystem <AstronomicalBody> body)
        {
            AstronomicalBody smallestBody = body[0];

            for (int i = 0; i < body.Count; i++)
            {
                if (body[i].Weight < smallestBody.Weight)
                {
                    smallestBody = body[i];
                }
            }
            return(smallestBody);
        }
Exemplo n.º 7
0
        public static AstronomicalBody getBiggestBody(this PlanetarySystem <AstronomicalBody> body)
        {
            AstronomicalBody biggestBody = body[0];

            for (int i = 0; i < body.Count; i++)
            {
                if (body[i].Weight > biggestBody.Weight)
                {
                    biggestBody = body[i];
                }
            }
            return(biggestBody);
        }
Exemplo n.º 8
0
        static void Main(string[] args)
        {
            try
            {
                //create a star
                Star star = new Star("Sun", 334.45567F, 345.5F, 456.2F, 2354436456.234435F, "Star", "He", 34546456.24F);
                //create new system
                PlanetarySystem <AstronomicalBody> system = new PlanetarySystem <AstronomicalBody>(star);
                //planet
                AstronomicalBody astBody = new AstronomicalBody("Kepler", 345.45F, 23.5F, 321.5F, 2.5900000000000000F);

                //asteroids
                AstronomicalBody ceres   = new AstronomicalBody("Ceres", 3345.4F, 789.4F, 347.83F, 7.3600000000000000F);
                AstronomicalBody fortuna = new AstronomicalBody("Fortuna", 795.67F, 41.3F, 78.4F, 9.3400000000000000F);

                del Add = x => system.Add(x);

                //system forming
                Add(astBody);
                Add(ceres);
                Add(fortuna);

                //show the new system
                Console.WriteLine("New System forms\n");
                int i = 0;
                while (i < system.Count)
                {
                    Console.WriteLine("{0}\n", system[i]);
                    i++;
                }

                //get the biggest body
                AstronomicalBody biggest = system.getBiggestBody();
                Console.WriteLine("Biggest body in system " + biggest.Name);

                Thread t1 = new Thread
                                (delegate()
                {
                    //save to file
                    Console.WriteLine("\n\nSave to file\n\n");
                    Serialization fileManager = new Serialization();
                    fileManager.WriteToFileFromClass(system.Bodies, @"D:\КПИ\ООП\OOP\lab3\Lab1_OOP\data\out.json");
                    Serialization.XmlSerialization(system);
                    PlanetarySystem <AstronomicalBody> system1 = new PlanetarySystem <AstronomicalBody>(star);
                    Serialization.XmlDeserialization(system1);
                });
                t1.Start();
                //space ship
                SpaceShip ship = new SpaceShip("Millenium falcon", 23.5645F, 19945645.45F, astBody);

                Console.WriteLine("\nShip {0} started from {1}\n", ship.Name, ship.Start.Name);

                //asteroid belt
                AsteroidBelt sp = new AsteroidBelt(ship);

                Thread.Sleep(2000);

                Console.WriteLine("Ship hit the asteroid belt\n");
                ship.Hit();

                Console.ReadKey();
            }
            catch (InvalidAstBodyNameException e)
            {
                Console.WriteLine("Custom exception " + e.Message);
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
        }