Hanabi

May 11th, 2015
games, tech
At LEAF [1] I learned a new cooperative card game, Hanabi. In general, I don't like cooperative games (like Pandemic) because they tend to turn into the one or two best players telling everyone else what to do for the whole game. Hanabi solves this by restricting information, so each player has their own part of the puzzle, and everyone has to think for themself.

Each player has a hand of cards that faces outward, so everyone can see their hand but them. There's a restricted language for communicating with each other: you can tell someone which of their cards are of a given suit, or which cards are of a given rank. Like "this, this, and this are 3s". From this people figure out which of their cards to play, and the goal is to get 25 points by playing one of each of the cards. According to the person who taught me people rarely win outright, and instead generally you just try to get the highest score you can.

When we played we used the game language as it was intended, without any conventions, but it got me wondering what a professional team would do. How far in the direction of Bridge bidding would it go? For example, you could say "your 2s are ..." to mean "play the second card in your hand". The main complication is that you aren't allowed to say "you don't have any 2s"; if they don't have any of something you can't bring it up. Still, because we can use both color and number to tell them about cards this seems like it could go a long way.

I coded up a simple simulation of a two player game where the convention is basically:

  • If you've been told what to do, do that.
  • If your partner has a card they could play, map position in their hand to suit/number and tell them that if it's allowed. When you have multiple options pick the one that best maintains diversity.
  • Otherwise, discard the card you've had longest.
I ran 10k games and this averaged 19.6:

This isn't a great score, but there's lots of room to improve this convention:

  • You could reserve some values for telling your partner what to discard.
  • You could change the meaning of sayings as the game goes on, because earlier in the game there are more legal cards to play.
  • You could use multiple turns to tell someone what to do; the average game in my simulation ended with 25.7 extra information tokens, which is kind of ridiculous. [2]
The code is on github; if anyone has convention ideas that are easy


[1] I hadn't been for 8.5 years, which is rather a lot.

[2]

Comment via: google plus, facebook

Recent posts on blogs I like:

Development RCTs Are Good Actually

In defense of trying things out

via Thing of Things March 25, 2024

Clarendon Postmortem

I posted a postmortem of a community I worked to help build, Clarendon, in Cambridge MA, over at Supernuclear.

via Home March 19, 2024

How web bloat impacts users with slow devices

In 2017, we looked at how web bloat affects users with slow connections. Even in the U.S., many users didn't have broadband speeds, making much of the web difficult to use. It's still the case that many users don't have broadband speeds, both …

via Posts on March 16, 2024

more     (via openring)