Пример #1
0
        public void AddToCrossWord(CrossWord ws)
        {
            int x = X, y = Y;

            for (int i = 0; i < Word.Length; i++)
            {
                ws.WordSearchLetters[x, y] = Word[i];
                switch (Direction)
                {
                case WordDirection.HORIZONTAL: x++; break;

                case WordDirection.VERTICAL: y++; break;
                }
            }
        }
Пример #2
0
        public static CrossWord CreateNew(int width, int height, Dictionary <string, string> entries)
        {
            var cw = new CrossWord {
                Width = width, Height = height, WordSearchLetters = new char[width, height]
            };


            var maxAttempts = cw.Width * cw.Height * 10;
            int idx = 0, lastSkippedCount = 0;
            var skippedWords = new List <CrossWordEntry>();
            var words        = entries.Keys.Select(word => new CrossWordEntry
            {
                Word = word.ToUpper(),
                Clue = entries[word]
            }).ToList();

            do
            {
                while (skippedWords.Count > 0)
                {
                    var randIdx = _random.Next(skippedWords.Count);
                    words.Add(skippedWords[randIdx]);
                    skippedWords.RemoveAt(randIdx);
                }

                foreach (var entry in words)
                {
                    int attempts = 0;
                    do
                    {
                        entry.Direction = (WordDirection)_random.Next(3);

                        switch (entry.Direction)
                        {
                        case WordDirection.HORIZONTAL:
                            entry.X = _random.Next(cw.Width - entry.Word.Length);
                            entry.Y = _random.Next(cw.Height);
                            break;

                        case WordDirection.VERTICAL:
                            entry.X = _random.Next(cw.Width);
                            entry.Y = _random.Next(cw.Height - entry.Word.Length);
                            break;
                        }
                        attempts++;
                    } while (!entry.FitsInCrossWord(cw, (idx > 0)) && attempts < maxAttempts);

                    if (attempts >= maxAttempts)
                    {
                        skippedWords.Add(entry);
                        continue;
                    }
                    else
                    {
                        cw.AddWord(entry);
                        idx++;
                    }
                }
                words.Clear();
                if (skippedWords.Count > 0 && lastSkippedCount == skippedWords.Count)
                {
                    return(null);
                }
                else
                {
                    lastSkippedCount = skippedWords.Count;
                }
            } while (skippedWords.Count > 0);

            cw.AssignNumbers();
            return(cw);
        }
Пример #3
0
        public bool FitsInCrossWord(CrossWord cw, bool mustCross = true)
        {
            bool crosses = false;
            int  x = X, y = Y;

            switch (Direction)
            {
            case WordDirection.HORIZONTAL:
                if (x > 0 && cw.WordSearchLetters[x - 1, y] != NULL)
                {
                    return(false);
                }
                else if (x + Word.Length < cw.Width - 1 && cw.WordSearchLetters[x + Word.Length + 1, y] != NULL)
                {
                    return(false);
                }
                break;

            case WordDirection.VERTICAL:
                if (y > 0 && cw.WordSearchLetters[x, y - 1] != NULL)
                {
                    return(false);
                }
                else if (y + Word.Length < cw.Height - 1 && cw.WordSearchLetters[x, y + Word.Length + 1] != NULL)
                {
                    return(false);
                }
                break;
            }
            for (int i = 0; i < Word.Length; i++)
            {
                var wordSearchLetter = cw.WordSearchLetters[x, y];
                var isLetterMatch    = wordSearchLetter == Char.ToUpper(Word[i]);
                if (isLetterMatch)
                {
                    crosses = true;
                }
                if (wordSearchLetter != NULL && !isLetterMatch)
                {
                    return(false);
                }
                if (!isLetterMatch)
                {
                    switch (Direction)
                    {
                    case WordDirection.HORIZONTAL:
                        if ((y < cw.Height - 1) && cw.WordSearchLetters[x, y + 1] != NULL)
                        {
                            return(false);
                        }
                        else if ((y > 0) && cw.WordSearchLetters[x, y - 1] != NULL)
                        {
                            return(false);
                        }
                        break;

                    case WordDirection.VERTICAL:
                        if ((x < cw.Width - 1) && cw.WordSearchLetters[x + 1, y] != NULL)
                        {
                            return(false);
                        }
                        else if ((x > 0) && cw.WordSearchLetters[x - 1, y] != NULL)
                        {
                            return(false);
                        }
                        break;
                    }
                }
                switch (Direction)
                {
                case WordDirection.HORIZONTAL: x++; break;

                case WordDirection.VERTICAL: y++; break;
                }
            }
            return(mustCross ? crosses : true);
        }
Пример #4
0
        private static void Main(string[] args)
        {
            var showCheats = false;

            Console.Write("Show cheats? (Y/N)");
            ConsoleKeyInfo key;

            do
            {
                key = Console.ReadKey(true);
                if (key.Key == ConsoleKey.Y)
                {
                    showCheats = true;
                    break;
                }
                else if (key.Key == ConsoleKey.N)
                {
                    break;
                }
                else
                {
                    Console.Beep();
                }
            } while (true);
            Console.Clear();
            var wordList = new Dictionary <string, string> {
                { "elephant", "an animal that always carries its trunk." },
                { "moo", "This is the sound that a cow makes." },
                { "loner", "Someone that likes to be alone." },
                { "briarrose", "A fairy tale princess that sleeps a hundred years" },
                { "zip", "This is the sound that a zipper makes." },
                { "bogart", "male lead in Key Largo." },
                { "aurora", "The loudest and most talkative female around." },
                { "perry", "A energetic young man that torments his sisters." },
                { "cinderella", "A fairy tale princess that was half barefoot." },
                { "pineapple", "There's one in every episode of Psych." },
                { "greg", "The ____ Gutfeld Show is a silly news show." },
                { "spencer", "A awsome older brother who works alot." },
                { "parents", "The people who raise you." },
                { "temple", "The Shirley in Little Princess." },
                { "bugsbunny", "The carton charicter who says what's up doc." },
            };

            CrossWord cw = null;

            for (int tryIdx = 0; tryIdx < 100; tryIdx++)
            {
                cw = CrossWord.CreateNew(20, 20, wordList);
                if (cw != null)
                {
                    break;
                }
            }

            if (cw == null)
            {
                Console.WriteLine("No luck making the crossword!");
            }
            else
            {
                for (var y = 0; y < cw.WordSearchLetters.GetLength(1); y++)
                {
                    for (var x = 0; x < cw.WordSearchLetters.GetLength(0); x++)
                    {
                        var hasWord = cw.HasWord(x, y);
                        if (hasWord)
                        {
                            var word = cw.GetWordIfFirstIndex(x, y);
                            Console.BackgroundColor = ConsoleColor.Black;
                            Console.ForegroundColor = ConsoleColor.Yellow;
                            if (showCheats)
                            {
                                Console.Write($"{cw.WordSearchLetters[x, y]} ");
                            }
                            else
                            {
                                if (word != null)
                                {
                                    Console.ForegroundColor = (word.Direction == WordDirection.VERTICAL) ? ConsoleColor.Green : ConsoleColor.DarkBlue;
                                    Console.Write(word.Number.ToString().PadRight(2));
                                }
                                else
                                {
                                    Console.Write($"  ");
                                }
                            }
                        }
                        else
                        {
                            Console.BackgroundColor = ConsoleColor.White;
                            Console.Write($"  ");
                            Console.BackgroundColor = ConsoleColor.Black;
                            Console.Write($"");
                        }
                    }
                    Console.WriteLine();
                }

                Console.ForegroundColor = ConsoleColor.Green;
                Console.WriteLine("------------Down------------");
                foreach (var word in cw.Words.Where(x => x.Direction == WordDirection.VERTICAL).OrderBy(x => x.Number))
                {
                    Console.WriteLine($"{word.Number} - {word.Clue}");
                }
                Console.ForegroundColor = ConsoleColor.DarkBlue;
                Console.WriteLine("-----------Across-----------");
                foreach (var word in cw.Words.Where(x => x.Direction == WordDirection.HORIZONTAL).OrderBy(x => x.Number))
                {
                    Console.WriteLine($"{word.Number} - {word.Clue}");
                }
            }
            Console.ReadKey();
        }