"Who Wants to Be a Millionaire?" style game made with Processing. Short and fun game to compete with friends.
Click here for more in-game screenshots
The game main engine is the random generator, which allows multiple combinations of the same game by generating random wrong answers, random wrong answers positions and also a random image.
void generator() // Generates a completly new set of answers
{
currentCountry = countries[rLandscapes.get(clicker)]; // New country
currentCountryPosition = rLandscapes.get(clicker); //New country position
rCountries.clear(); //Erases random array of numbers
rPositions.clear(); //Erases random array of positions
randomCountries(); //List with random countries (i.e. country index)
randomPositions(); //List with random positions (position A, position B, position C & position D)
if(flagMode1)
generateFlags(); //Generate new flags
else if(flagMode2)
generateAnswers(); //Generate new answers
}
You will need to download processing version 3.x.
Click here to download Processing
Once you have to Processing editor on the left upper corner, click on File>open...>guessTheCountry.pde
This will open the game project.
You can run the game by clicking the "Play" button on the processing IDE.
Export the application and make an executable file. On the left upper corner, click on File>Export application...
- Processing 3.3 - The IDE used.
- Adobe photoshop - The artwork editor.
- Ricardo Reais - Initial work - My profile
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details