❔ Lingo Game
Hey Guys, so I'm making a game that's called Lingo but i don't know how to make it, anyone who want to help me out. i would realy apriciate it if someone could help me with this project.
10 Replies
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
yes it is lol
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
we have a word that needs to appear in a label, but we have a problem since we need to have every letter of the word has to appear in a separate space of the labels
can you scroll down?
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
The most important thing with a project is seperating the project in individual tasks. I see you already have a base, but let me give you an idea on what I would do:
1. I would create a seperate console application that doesn't have any of the WPF stuff so that I can implement the base functionality. The idea is that we make a proof of concept of the minimal functionality required.
2. I would create a helper class that provides the current context of the word being guessed. It would generate the next word to guess, for example. For each word we will use a new context to avoid using the wrong information.
3. I can provide a string to this helper, and for each character it will create a
class
that contains the current character, and whether it's on the right spot, or exists in the sentence.
4. Number 3 can be difficult, as this is the biggest part of the project. You can iterate a string like an array, and you can check the index of the current character compared to what the right word is, and see if the characters match. If not, see if it comes later (not earlier, we already checked those).
5. The list of classes we have now should be ordered, so we can display this evenly. This is useful because we can easily change this for our WPF application.Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.
Was this issue resolved? If so, run /close
- otherwise I will mark this as stale and this post will be archived until there is new activity.