********************************
*   MasterMind clone in FLTK   *
*      for the Agenda VR3      *
*         by Kent Dahl         *
*     (MenThal@bigfoot.com)    *
********************************

___________________________________________________________
TODO:
- Makefiles are a mess
- Fix numberOfExists_duplicate
- Config screen

___________________________________________________________
HOW TO PLAY:

The goal of the game is to crack a code using logic and trial and error.

Upon entering a code, the code will show in the displaylist.
If you enter the code 1234, it could show:
        1234 - (2,1)

The first number in the parenthesis is how many digits you entered correctly.
Here it means that 2 of the four numbers are correct. 

The second number is how many digits you entered that are in the correct code,
but you placed incorrectly.


______________
MODES OF PLAY:

Factors that can be varied to hone difficulty:

* Number of tries before game over
* Number of digits
* Number of values / characters
* Toggle between unique digits and duplicates allowed


___________________________________________________________
COMMANDLINE ARGUMENTS:

User defined game config related:
 [-tries #]     => # tries before game over
 [-digits #]    => # digits
 [-values #]    => # different values available per digit
 [-charrep x]   => x = string of chars to represent values
 [-dupliate]    => allows digits with same value in code

General:
 [-cheat]       => print code values to stdout for debugging purposes






