Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scoring System based on Responses #2

Open
ThePyProgrammer opened this issue Nov 28, 2022 · 0 comments
Open

Scoring System based on Responses #2

ThePyProgrammer opened this issue Nov 28, 2022 · 0 comments
Labels
enhancement New feature or request hackfest-2022 HackFest 2022

Comments

@ThePyProgrammer
Copy link
Member

We realise that a simple Wordle response won't be good enough for some, hence we wish to develop a scoring system, based on a user's response. We leave the implementation up to you, but here are some examples of possible scoring systems:

By Distance

At its current stage, nushdle uses Euclidean distance from the top view, and floor numbering. This gives the person an idea of how far the location is. What you can do is take the height between stories, get the actual height disparity and then compute the Pythagorean sum of the horizontal distance and the height disparity. Thus, you'll have a decent distance measurement, dist. From here, you can weigh the distances, for instance 10 / dist for row 1, `

According to Reddit 🤔

We found a scoring system for normal reddit, but this can be closely modified!

For instance, in Guess 1:

  • If you solve the name correctly, you get 50 points
  • If you get the same floor, you get 15 points
  • If you get the same distance, but not the same floor (this is a bug, see this), you get 20 points
  • If you get the same floor, but a 20m radius, you get 10 points
  • If you get a different floor but a 20m radius, you get 5 points
  • Else you get 0.

You can change these values in each guess, and we leave this as up to you.

Read more here. (Sorry to force you to browse Reddit 💀)

@ThePyProgrammer ThePyProgrammer added enhancement New feature or request hackfest-2022 HackFest 2022 labels Nov 28, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request hackfest-2022 HackFest 2022
Projects
Status: No status
Development

No branches or pull requests

1 participant