Injabie3 / LLSIF-Helper

A program to help LLSIF gamers calculate things. WIP
1 stars 1 forks source link

Estimated Points Calculation - ScoreMatch #14

Open abuneri opened 8 years ago

abuneri commented 8 years ago

do u guys have the function/implementation for calculating the estimated points in scorematch from your excel sheet?

Injabie3 commented 8 years ago

I don't have estimated points calculation on my spreadsheet. The only thing I calculate in Score Match is LP required based on average points (whether that be from history, or a user input; who knows) and the difficulty the user is playing on. Any inputs @Tetimaru?

abuneri commented 8 years ago

@Injabie3 and @Tetimaru since in the scorematch class we are keeping track of averagescore (which is points/song i believe) if we add in the number of events songs played (which you had already implemented in tokencollection) we could simply do estimatedPoints = averageScore*songsPlayed; for a sketchy, but not far off, estimate.

Injabie3 commented 8 years ago

Hmmm, we could do that for now. Just implement this "sketchy" method first, and we can modify the implementation of it later if we don't like it, since we're learning to do this ADT-style :smiley:

abuneri commented 8 years ago

cool! so we would need another member variable for songs played(event songs) to get that formula going!

Injabie3 commented 8 years ago

Okay, so I added that member field to the base class. Let me know how the calculations go :+1:

Injabie3 commented 8 years ago

Since this is closely related to #11, I have closed the issue with commit 28da7f706a5108ecc090b6dc9f10bc379385baf0