Ejemplo n.º 1
0
        public void LoadFromFile()
        {
            this.BackgroundImage = Zamki.Properties.Resources.grass;
            BinaryFormatter formatter = new BinaryFormatter();

            using (FileStream fs = new FileStream("save.bin", FileMode.OpenOrCreate))
            {
                List <GameElements.Stuff>          stuff = (List <GameElements.Stuff>)formatter.Deserialize(fs);
                GameElements.Stuff.BeautifulSquare z     = new GameElements.Stuff.BeautifulSquare(0, 0, 0, 0, picInvisible);
                GameElements.Stuff.ScenicObject    y     = new GameElements.Stuff.ScenicObject(0, 0, true, 0, 0, picInvisible);
                GameElements.Stuff.Player          x     = new GameElements.Stuff.Player(25, 200, picPlayer);
                GameElements.Stuff.GameProgress    w     = new GameElements.Stuff.GameProgress();

                foreach (GameElements.Stuff s in stuff)
                {
                    if (Object.ReferenceEquals(s.GetType(), z.GetType()))
                    {
                        object zs = s;
                        GameElements.Stuff.BeautifulSquare sz = (GameElements.Stuff.BeautifulSquare)zs;
                        allRooms.Add(sz);
                    }
                    else
                    if (Object.ReferenceEquals(s.GetType(), y.GetType()))
                    {
                        object ys = s;
                        GameElements.Stuff.ScenicObject sy = (GameElements.Stuff.ScenicObject)ys;
                        if (sy.noclip)
                        {
                            allDoors.Add(sy);
                        }
                        allObjects.Add(sy);
                    }
                    else
                    if (Object.ReferenceEquals(s.GetType(), x.GetType()))
                    {
                        object xs = s;
                        GameElements.Stuff.Player sx = (GameElements.Stuff.Player)xs;
                        hero = sx;
                    }
                    else
                    if (Object.ReferenceEquals(s.GetType(), w.GetType()))
                    {
                        object ws = s;
                        GameElements.Stuff.GameProgress sw = (GameElements.Stuff.GameProgress)ws;
                        allGP.Add(sw);
                    }
                }
            }
            currentRoom         = new GameElements.Stuff.BeautifulSquare(0, 0, 0, 0, null);
            previousRoom        = new GameElements.Stuff.BeautifulSquare(0, 0, 0, 0, null);
            picNextPage.Visible = false;

            hideMenuButtons();
            Invalidate();
        }
Ejemplo n.º 2
0
        public static bool inTheRoom(GameElements.Stuff.BeautifulSquare room, GameElements.Stuff.Player hero)
        {
            System.Drawing.Rectangle heroBounds = new System.Drawing.Rectangle(hero.posX, hero.posY, hero.image.Width, hero.image.Height);
            int border = 40; // Чтобы игрок не мог зайти в одну комнату "одной ногой" и сразу же вернуться в первую, закрыв тем самым дверь путём обмана

            System.Drawing.Rectangle roomRectangle = new System.Drawing.Rectangle(room.posX1 + border, room.posY1 + border, room.posX2 - room.posX1 - border, room.posY2 - room.posY1 - border);
            if (heroBounds.IntersectsWith(roomRectangle))
            {
                return(true);
            }
            return(false);
        }
Ejemplo n.º 3
0
        public static void generateLevel(List <GameElements.Stuff.ScenicObject> allDoors, List <GameElements.Stuff.ScenicObject> allObjects, List <GameElements.Stuff.BeautifulSquare> allRooms, GameElements.Stuff.Player hero)
        {
            Random rnd = new Random();
            int    r   = rnd.Next(5);
            string stream;

            switch (r)
            {
            case 0:
            {
                stream = Path.GetFullPath(System.Windows.Forms.Application.StartupPath + @"\\Levels\\level0.bin");
                break;
            }

            case 1:
            {
                stream = Path.GetFullPath(System.Windows.Forms.Application.StartupPath + @".\\Levels\\level1.bin");
                break;
            }

            case 2:
            {
                stream = Path.GetFullPath(System.Windows.Forms.Application.StartupPath + @".\\Levels\\level2.bin");
                break;
            }

            case 3:
            {
                stream = Path.GetFullPath(System.Windows.Forms.Application.StartupPath + @".\\Levels\\level3.bin");
                break;
            }

            case 4:
            {
                stream = Path.GetFullPath(System.Windows.Forms.Application.StartupPath + @".\\Levels\\level4.bin");
                break;
            }

            default:
            {
                stream = Path.GetFullPath(System.Windows.Forms.Application.StartupPath + @".\\Levels\\level0.bin");
                break;
            }
            }
            BinaryFormatter formatter = new BinaryFormatter();

            using (FileStream fs = new FileStream(stream, FileMode.OpenOrCreate))
            {
                List <GameElements.Stuff>          stuff = (List <GameElements.Stuff>)formatter.Deserialize(fs);
                GameElements.Stuff.BeautifulSquare z     = new GameElements.Stuff.BeautifulSquare(0, 0, 0, 0, Zamki.Properties.Resources.invisible);
                GameElements.Stuff.ScenicObject    y     = new GameElements.Stuff.ScenicObject(0, 0, true, 0, 0, Zamki.Properties.Resources.invisible);
                GameElements.Stuff.Player          x     = new GameElements.Stuff.Player(25, 200, Zamki.Properties.Resources.hero);

                foreach (GameElements.Stuff s in stuff)
                {
                    if (Object.ReferenceEquals(s.GetType(), z.GetType()))
                    {
                        object zs = s;
                        GameElements.Stuff.BeautifulSquare sz = (GameElements.Stuff.BeautifulSquare)zs;
                        allRooms.Add(sz);
                    }
                    else
                    if (Object.ReferenceEquals(s.GetType(), y.GetType()))
                    {
                        object ys = s;
                        GameElements.Stuff.ScenicObject sy = (GameElements.Stuff.ScenicObject)ys;
                        if (sy.noclip)
                        {
                            allDoors.Add(sy);
                        }
                        else
                        {
                            allObjects.Add(sy);
                        }
                    }
                    //else
                    //    if (Object.ReferenceEquals(s.GetType(), x.GetType()))
                    //    {
                    //        object xs = s;
                    //        GameElements.Stuff.Player sx = (GameElements.Stuff.Player)xs;
                    //        if (sx.posX == 999)
                    //        {
                    //            sx.posX = 25;
                    //            sx.posY = 25;
                    //        }
                    //        hero = sx;
                    //    }
                }
            }
        }
Ejemplo n.º 4
0
 public static void touchTheDoor(List <GameElements.Stuff.ScenicObject> allDoors, GameElements.Stuff.Player hero, GameElements.Stuff.BeautifulSquare previousRoom, GameElements.Stuff.BeautifulSquare currentRoom)
 {
     System.Drawing.Rectangle heroBounds            = new System.Drawing.Rectangle(hero.posX, hero.posY, hero.image.Width, hero.image.Height);
     System.Drawing.Rectangle previousRoomRectangle = new System.Drawing.Rectangle(previousRoom.posX1, previousRoom.posY1, previousRoom.posX2 - previousRoom.posX1, previousRoom.posY2 - previousRoom.posY1);
     System.Drawing.Rectangle currentRoomRectangle  = new System.Drawing.Rectangle(currentRoom.posX1, currentRoom.posY1, currentRoom.posX2 - currentRoom.posX1, currentRoom.posY2 - currentRoom.posY1);
     foreach (GameElements.Stuff.ScenicObject door in allDoors)
     {
         System.Drawing.Rectangle doorBounds = new System.Drawing.Rectangle(door.X + 5, door.Y, door.Width - 5, door.Height); // "Сузил" двери на 5 пикселей справа и слева. Почему? Потому что я могу.
         if (previousRoomRectangle != currentRoomRectangle)
         {
             if (doorBounds.IntersectsWith(previousRoomRectangle) && doorBounds.IntersectsWith(currentRoomRectangle))
             {
                 if (!doorBounds.IntersectsWith(heroBounds))
                 {
                     door.noclip = false;
                     //allDoors.Remove(door); // По-хорошему надо бы удалять ту дверь, которую уже закрыли, из массива allDoors, потому что он нигде не используется, а так дверь будет лишний раз "прогоняться" в foreach. Но я не стал удалять, потому что, по-моему, иначе после загрузки сохранения на мести двери окажется пустое место
                     break;
                 }
             }
         }
     }
 }