Page 1 of 2
Player count specific statistics
Posted: 04 July 2021, 06:51
by JonChambers
I do think playing my own game to completion in testing mode should count as my "1 game + 24 hours" requirement before posting. Anyway, a quick game of Yahtzee, a good night sleep later, and "hello everyone!" (I lost the game of Yahtzee in case you're wondering.)
The 2 player version of my game is almost finished. Just a few little features and bugs to figure out. And the statistics...
There are lots of exciting things I'd love to track, but "add everything up from all games and get the average" doesn't seem to cut it.
For example, in the two player version, what's your win rate when you trigger the end of the game vs your win rate when you let your opponent trigger the end? That's an awesome stat to track, because it really is the central question of the game. Sure, I could just create 4 Booleans or one categorical. But the trouble is these win conditions aren't even available in the 3-6 version.
I'm genuinely considering creating 2p and 3p-6p as a completely different version just to solve this issue, but even then, all the numerical interesting things to track scale by player count. Highest possible score in 3 players is 8. Highest possible score with 5 players is 21.
Also, numbers on their own aren't interesting. What people want to know is if they should aim to make the numbers higher or lower, and it's only possible to determine that by relationship between statistics!
Or should I just give up on including statistics?
Re: Player count specific statistics
Posted: 04 July 2021, 09:09
by Tisaac
JonChambers wrote: ↑04 July 2021, 06:51
Or should I just give up on including statistics?
Yep. Basically the current stats system is not powerful enough to track what you want so dont bother too much.
Re: Player count specific statistics
Posted: 05 July 2021, 05:23
by JonChambers
It's the same as my frustration with dojo. I don't need things to be simpler, I need them to be out of my way.
I don't need more features, I need the features PHP already has to not be gated off. Let me write my own methods of evaluating statistics! There's more to life than "sum / n"! Grr.
Re: Player count specific statistics
Posted: 05 July 2021, 06:52
by Tisaac
JonChambers wrote: ↑05 July 2021, 05:23
It's the same as my frustration with dojo. I don't need things to be simpler, I need them to be out of my way.
I don't need more features, I need the features PHP already has to not be gated off. Let me write my own methods of evaluating statistics! There's more to life than "sum / n"! Grr.
What's the matter with dojo ? Dont use it if you dont like it.
Re: Player count specific statistics
Posted: 05 July 2021, 07:11
by JonChambers
I still use it for the buttons, because them is the rules. You have to use it for the buttons.
Also the "dojo declare" business in the template, I still don't fully understand but I use it anyway.
But other than that, I don't touch it. Haven't yet found a situation where I need it.
Re: Player count specific statistics
Posted: 05 July 2021, 09:05
by Tisaac
JonChambers wrote: ↑05 July 2021, 07:11
I still use it for the buttons, because them is the rules. You have to use it for the buttons.
What do you mean ? Are you talking about this.addActionButton ?
Re: Player count specific statistics
Posted: 05 July 2021, 09:14
by Een
JonChambers wrote: ↑04 July 2021, 06:51
I do think playing my own game to completion in testing mode should count as my "1 game + 24 hours" requirement before posting. Anyway, a quick game of Yahtzee, a good night sleep later, and "hello everyone!" (I lost the game of Yahtzee in case you're wondering.)
You mean you decided to develop your game on BGA studio without having ever played a game on BGA?
JonChambers wrote: ↑04 July 2021, 06:51
The 2 player version of my game is almost finished. Just a few little features and bugs to figure out. And the statistics...
There are lots of exciting things I'd love to track, but "add everything up from all games and get the average" doesn't seem to cut it.
For example, in the two player version, what's your win rate when you trigger the end of the game vs your win rate when you let your opponent trigger the end? That's an awesome stat to track, because it really is the central question of the game. Sure, I could just create 4 Booleans or one categorical. But the trouble is these win conditions aren't even available in the 3-6 version.
I'm genuinely considering creating 2p and 3p-6p as a completely different version just to solve this issue, but even then, all the numerical interesting things to track scale by player count. Highest possible score in 3 players is 8. Highest possible score with 5 players is 21.
Also, numbers on their own aren't interesting. What people want to know is if they should aim to make the numbers higher or lower, and it's only possible to determine that by relationship between statistics!
Or should I just give up on including statistics?
It looks like you are talking about meta-statistics, and thinking about BGA like a single monolithic application rather than a framework running ephemeral modular games. I just answered another developer on the same subject, that post may shed some light:
viewtopic.php?f=12&t=21657&p=90532#p90532
Re: Player count specific statistics
Posted: 06 July 2021, 05:16
by JonChambers
Correct. I made a perfectly functional game from start to finish (the two player version with no animation anyway) without playing a single game on BGA. Which apparently means I don't qualify for asking questions on the developer's forum, but losing a game of Yahtzee is the trial by fire that proves myself worthy.
Re: Player count specific statistics
Posted: 06 July 2021, 05:24
by JonChambers
Oooh! Null isn't counted for averages!? Okay, this might be useful after all! My game is going to throw a lot of null statistics then.
2-player win after triggering game end: null
2-player win after not triggering game end: null
Yeah, that's going to be at the top of every 3-6 player game.
Null not counting for averages changes EVERYTHING!!! The possibilities are now endless!
If that's a bug, I hope it's never fixed.
Re: Player count specific statistics
Posted: 06 July 2021, 05:26
by JonChambers
JonChambers wrote: ↑06 July 2021, 05:16
Correct. I made a perfectly functional game from start to finish (the two player version with no animation anyway) without playing a single game on BGA. Which apparently means I don't qualify for asking questions on the developer's forum, but losing a game of Yahtzee is the trial by fire that proves myself worthy.
Come to think of it, maybe the system does work. I had a lot of stupid questions I wanted to ask before I played Yahtzee, but I've figured them all out on my own now.