Class 7

PopularPunch Game Concept

Concept

PopularPunch is a simple two-player Unity boxing game.

Each round, both players type a person’s name.

The game checks each name’s real-time popularity using an online data source (such as NewsAPI or Wikipedia Pageviews).

The player whose chosen name is more popular throws a stronger punch and earns more score.

After five rounds, the total score determines the winner.


Real Boxing – Fighting Game - Apps on Google Play

Input

The game uses one type of real-world input:

  1. Person Name (typed by each player every round)
    • The game queries an API to get the current popularity value of that name

      (e.g., number of news mentions in the last hour or pageviews in the last day).

    • This popularity value becomes the numerical basis for the punch.

Input = Player’s chosen person name → Real-time popularity number


Output

The game transforms the popularity value into gameplay results:

  1. Punch Power
    • Higher popularity → stronger punch animation and sound
    • Lower popularity → weaker punch
    • The stronger punch deals more score.
  2. Round Result
    • The player with the higher punch score “wins” the round.
  3. Final Outcome
    • After 5 rounds, the game displays total scores
    • The player with the higher total wins the match.

Output = Punch strength, scoring, round winner, final match result



Vuforia test 


Comments

Popular posts from this blog

Class 1

Final Project - Hangover

Class 2