I am looking to have a C# application implement the Konami Code to display an Easter Egg. http://en.wikipedia.org/wiki/Konami_Code
What is the best way to do this?
Update 1
This is in a standard C# windows forms app.
|
I am looking to have a C# application implement the Konami Code to display an Easter Egg. http://en.wikipedia.org/wiki/Konami_Code What is the best way to do this? Update 1 This is in a standard C# windows forms app.
| |||||
feedback
|
|
In windows forms I would have a class that knows what the sequence is and holds the state of where you are in the sequence. Something like this should do it.
To use it, you would need something in your Form's code responding to key up events. Something like this should do it:
Hopefully that's enough to give you what you need. For WPF you will need slight differences is very similar (see edit history #1). EDIT: updated for winforms instead of wpf. | |||||||||||||||
feedback
|
|
Catch keypresses into a 13(or whatever subset of the code, since you probably don't want to include the START key)-character list/array/string/whatever before processing them normally. Every time a key is added, if (and only if) it's the last key in the series, match the buffer against the correct konami code. My suggestion is, if they hit an arrow key, map it to the sensible letter... then map B and A as well, simply clearing the buffer for any other keypress. Then, making the buffer a string, compare it to: "UUDDLRLRBABA" | |||
feedback
|
|
The correct sequence, the same way Konami itself would have implemented it:
Here is how NOT to do it:
So, here's how to it:
Now, it's fast, does not bother with strings or instantiate anything bulker than an array, and changes to the code are as simple as modifying the array. The field initialization in the constructor takes the place of hard coding constants that are equivalent to the values needed. If we used constants, we could have shortened the code by 6 or so "lines." This is slightly wasteful, but allows the class to be as easily adaptable to new codes as possible -- you just need to change the array list. Plus, all of the "bulk" is handled at the time of instantiation, so it is not affecting the efficiency of our target method. On second glance, this code could be made even simpler. The modulus is not needed, so long as you are resetting the value on correct code entry. The core logic could actually be made into a single line of code:
| |||||||||
feedback
|
|
I recommend you implement as a list of search events and a "capture" reference pointer to elements of that list. Conceptually, you start the capture pointer to the first element of the search list. If the very next event matches the search element, the capture pointer is incremented to the next element. Otherwise, it is reset to the beginning. If the pointer is incremented past the last element, you have a full match. | |||
|
feedback
|
|
As requested, here's an class that resolves the "issue" of being able to enter the sequence too slowly to be "secret code like." ;) The original code in the NES cartridge would have been called within a frame routine and thus would have tracked time by counting execution passes. Since we're relegated to event-driven, object oriented programming, we're going to have to involve events. Since these events will need to enforce an "expiration," we're going to have to involve a Timer object.
| ||||
|
feedback
|
|
should there be a time table for execution? you can hit the "UUDDLRLRBABA" sequence but at a keystroke of 1 per minute | |||
feedback
|
|
I was searching for the same thing and I came up with a VERY simple code that just works. Keypreview have to be True on the form declare one string named "konami" on your form
ps.: If people in my work find out that I stick a konami code here, they'll be SOOOoo upset with me... hahahaha!!!! | |||
|
feedback
|
Experiencing Linq. Besides, You can use this class with instantiation or static. Following shows using it in static:
With instantiation, one of coding styles like this:
Do not forget to set the KeyPreview to true. You can even change the int[] Sequence during run-time. formKonami is a standard windows form, I use this form for output debugging information. You need to write your own event handler delegating what you want to do when the user gets a "strike" of the Konami code. I use the word "strike" because I think that hit all the keys matches the sequence was like getting a Bowling Strike. Maybe it's a semantic mistake in English, arround 'stop working'. You can change it to something else, 'bingo' could be a nice one. | ||||
|
feedback
|
|
I reviewed all the answers, and found that repeated input of the initial of sequence was a common problem of implementations. I think James was right about 'how NOT to do':
Alothough I'm not sure what a finite state machine will looked like in the code. Finally, I implemented the class again as following:
This is the simplest way I can think about without encountering the 'repeat of initial' problem, and the sequence is still changable. Nothing is really 'hard-coded', no special cases and the sequence specified in the class is only as a default value. Please let me know if this implemention matches 'a finite state machine'. Thanks. | ||||
|
feedback
|