Haus4 / project-server

haus4 server
2 stars 0 forks source link

Highscore Berechnung #41

Open ghost opened 7 years ago

ghost commented 7 years ago

Feste Konstante 120 leicht 120 - ((zeit in s / 60)3) mittel 120 - ((zeit in s / 60)2) schwer 120 - ((zeit in s / 60)*1)

Sudoku Leicht: : Highscore = 120- ((300/60)x 3) = 120-15 = 105

MuellerMP commented 7 years ago

Vorschlag: Highscore-Algorithmus

1000 pt max ez 2500 pt max middle 10000 pt max hard

faktor zeit(Sec): pt (1 / (zeit/3600)) hard für t > 3600 pt (1 / (zeit/3000)) middle für t > 3000 pt * (1 / (zeit/1000)) easy für t > 1000

ghost commented 7 years ago

Oder so wie du meinst, klingt auch nach einem guten Plan

MuellerMP commented 7 years ago

😆🔫

MuellerMP commented 7 years ago

Algorithmus etwas angepasst: easy 5 min bis abzug - medium 10 min - hard 20 min startpunktzahl 1000- 2500- 10000 faktor t(sec): pt (1 / (t/1200)) hard für t > 1200 pt (1 / (t/600)) middle für t > 600 pt * (1 / (t/300)) easy für t > 300