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.
|
6
|
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.
|
||||
|
|
|
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. |
||||||||||||||
|
|
|
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.
|
|||
|
|
|
|
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:
|
||||||
|
|
|
should there be a time table for execution? you can hit the "UUDDLRLRBABA" sequence but at a keystroke of 1 per minute |
||
|
|
|
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. |
||
|
|
|
|
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" |
||
|