Пример #1
0
 public static void MoveInvaders()
 {
     if (Invaders.Right)
     {
         Invaders.MoveRight(ref Invaders.InvaderCoords1);
         Invaders.MoveRight(ref Invaders.InvaderCoords2);
         Invaders.MoveRight(ref Invaders.InvaderCoords3);
     }
     else if (!Invaders.Right)
     {
         Invaders.MoveLeft(ref Invaders.InvaderCoords1);
         Invaders.MoveLeft(ref Invaders.InvaderCoords2);
         Invaders.MoveLeft(ref Invaders.InvaderCoords3);
     }
 }
Пример #2
0
 public static void PrintInvaders()
 {
     Invaders.PrintInvaders(1);
     Invaders.PrintInvaders(2);
     Invaders.PrintInvaders(3);
 }
Пример #3
0
        public static void Main()
        {
            Field.GetFieldOptions();

            #region [Sounds effects]

            if (!FromOtherMenu && System.IO.File.Exists("Sounds/outer_space.mp3"))
            {
                IntroSound     = new WMPLib.WindowsMediaPlayer();
                IntroSound.URL = "Sounds/outer_space.mp3";
                IntroSound.controls.play();
                IntroSound.settings.playCount = 10;
            }

            if (System.IO.File.Exists("Sounds/saucer.mp3"))
            {
                SaucerSound = new WMPLib.WindowsMediaPlayer();
                SaucerSound.settings.autoStart = false;
                SaucerSound.URL             = "Sounds/saucer.mp3";
                SaucerSound.settings.volume = 5;
            }

            if (System.IO.File.Exists("Sounds/boss.mp3"))
            {
                BossSound = new WMPLib.WindowsMediaPlayer();
                BossSound.settings.autoStart = false;
                BossSound.URL = "Sounds/boss.mp3";
                BossSound.settings.playCount = 2;
            }

            if (System.IO.File.Exists("Sounds/movement.mp3"))
            {
                Movement = new WMPLib.WindowsMediaPlayer();
                Movement.settings.autoStart = false;
                Movement.URL             = "Sounds/movement.mp3";
                Movement.settings.volume = 50;
            }

            if (System.IO.File.Exists("Sounds/shoot.mp3"))
            {
                ShootSound = new WMPLib.WindowsMediaPlayer();
                ShootSound.settings.autoStart = false;
                ShootSound.URL             = "Sounds/shoot.mp3";
                ShootSound.settings.volume = 10;
            }

            #endregion

            FromOtherMenu = false;

            MenuUserChoice();

            Console.Clear();

            if (Movement != null)
            {
                Movement.controls.play();
            }

            do
            {
                if (!StopGame)
                {
                    Towers.PrintTowers();
                    Field.ShowStatus();

                    Field.CheckForAvailableKey();

                    if (!Boss.BossTime)
                    {
                        Invaders.MoveInvaders();
                        Invaders.PrintInvaders();
                    }
                    else if (Boss.BossTime && Boss.Hitted > 0)
                    {
                        if (Movement != null)
                        {
                            Movement = null;
                        }

                        Field.Speed = 200;
                        PlayerShip.PlayerShootSpeed = 20;
                        Boss.MoveBoss();
                        ObjectProperties.PrintObject(Boss.BossMatrix, Boss.BossCoords, 0, "boss");

                        if (new Random().Next(1, 5) == 2)
                        {
                            Thread shoot = new Thread(Boss.Shoot);
                            shoot.IsBackground = true;
                            shoot.Start();
                        }
                    }
                }

                if (Boss.Hitted <= 0)
                {
                    if (BossSound != null)
                    {
                        BossSound.controls.stop();
                    }

                    StopGame           = true;
                    Invaders.IsShooted = true;
                    Field.Score       += 1000;
                    Thread.Sleep(300);
                    Console.SetCursorPosition(Console.WindowWidth / 2 - 10, Console.WindowHeight / 2 + 8);
                    Field.EndGame();
                    Environment.Exit(Environment.ExitCode);
                }

                if (!StopGame)
                {
                    // Generates new shoot
                    if (new Random().Next(1, 8) == 2)
                    {
                        Thread shoot = new Thread(Invaders.Shoot);
                        shoot.IsBackground = true;
                        shoot.Start();
                    }

                    // Prints player's object
                    PlayerShip.PrintObject(PlayerShip.Player, PlayerShip.PlayerCoords, type: "player");

                    // Move flying saucer if exits, if not exit -> creates a new one
                    MoveOrGenerateFlyingSaucer();

                    if (!ShowMessage && Invaders.InvaderCoords1.Count == 0 && Invaders.InvaderCoords2.Count == 0 && Invaders.InvaderCoords3.Count == 0)
                    {
                        if (Movement != null)
                        {
                            Movement.controls.stop();
                        }

                        Boss.BossTime = true;

                        if (BossSound != null)
                        {
                            BossSound.controls.play();
                        }

                        Invaders.ShootNow = true;
                        ShowMessage       = true;
                    }
                }

                // Check if the player is alive
                IsPlayerAlive();

                Thread.Sleep(Field.Speed);
                Console.Clear();
            }while (true);
        }