0.7.1 • Published 8 years ago

hha v0.7.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

hha build status

Poker HandHistory Analyzer

Status

Analyzes holdem hands.

Installation

npm install hha

API

analyze

Analyzes a given PokerHand which has been parsed by the HandHistory Parser hhp. Relative player positions are calculated, i.e. cutoff, button, etc. Players are included in order of action on flop.

The analyzed hand then can be visualized by hhv.

For an example of an analyzed hand please view json output of an analyzed hand.

Parameters

Returns object the analyzed hand

filterInactives

Filters all players who didn't act in the hand or just folded.

Parameters

Returns Array<Object> all players that were active in the hand

hha.script

Scripts what happened in a hand into a actions script array. This array can be read top down to replay the hand.

The players and info fields from the analyzed data are copied over. Each action includes the index at which the player that's executing the action can be found in the players array.

Structure of returned object:

info: object containing hand info
table: object containing info about the table like total seats
board: object cards on the board
players: array of all players at the table including all info about their stacks
actions:
 preflop  : array of preflop actions
 flop     : array of flop actions
 turn     : array of turn actions
 river    : array of river actions
 showdown : array of showdown actions

Parameters

  • data object analyzed hand data @see hha()

Returns object

hha.storyboard

Takes a script of actions and calculates the states for each. Adds pointers to the state at the beginning of each script.

This is useful if you try to jump around in the hand and reset the state of the table.

Parameters

  • script Object created via @see hha:script

hha.summary

Converts a hand that was analyzed and then scripted to a summary representation.

The summary has the following properties:

  • header: contains game info, like room, pokertype, blinds, etc.
  • seats: lists the seats of the players including pos, chips and hero indicators
  • chipsStackRatio: hero's M for tournaments, his BBs for cash games
  • preflopSummary: hero's cards and position
  • preflopActions: action types + amounts of each player by position
  • flopSummary: pot at flop, board and playersInvolved
  • flopActions: same as preflopActions
  • turnSummary: pot at turn, turn card and playersInvolved
  • turnActions: same as preflopActions
  • riverSummary: pot at river, river card and playersInvolved
  • riverActions: same as preflopActions
  • totalPot: total money in the pot
  • spoilers: players whos cards are known by position

Parameters

Returns Object the hand summarized

License

MIT

0.7.1

8 years ago

0.7.0

8 years ago

0.6.0

8 years ago

0.5.0

8 years ago

0.4.1

8 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago