Exemplo n.º 1
0
        public void ReturnMap()
        {
            const int height   = 20;
            const int width    = 20;
            var       rand     = new Random();  //1545806551
            var       seed     = rand.Next();
            var       mapMaker = new MapMaker(height, width, seed)
            {
                Debug = true
            };
            var map = mapMaker.GetMap();

            for (var y = 0; y < height + 3; y++)
            {
                Console.WriteLine(map[y]);
            }
            Console.WriteLine();
            Console.WriteLine("Seed: " + seed);
        }
Exemplo n.º 2
0
        private void setMapMaker(MapMaker nextMM, OptionPanel nextOP)
        {
            if (nextMM == mm && nextOP == op)
            {
                return;
            }

            if (mm == null || op == null)
            {
                mm = nextMM;
                op = nextOP;
                return;
            }

            op.setVisibility(false);

            mm = nextMM;
            op = nextOP;

            op.setVisibility(true);
        }
Exemplo n.º 3
0
        public void ReturnMapForNastya()
        {
            const int height   = 20;
            const int width    = 20;
            var       rand     = new Random();
            var       seed     = rand.Next();
            var       mapMaker = new MapMaker(height, width, 1545806551)
            {
                Debug = false
            };
            var map = mapMaker.GetMapSpeciallyForNastya();

            foreach (var s in map.Map)
            {
                Console.WriteLine(s);
            }
            Console.WriteLine();
            foreach (var s in map.PlayersXml)
            {
                Console.WriteLine(s);
            }
            Console.WriteLine();
            Console.WriteLine("Seed: " + seed);
        }