/poker-holdem-engine

Texas hold'em poker engine

Primary LanguageJavaScriptMIT LicenseMIT

poker-holdem-engine

poker-holdem-engine provides an engine to play Texas Hold'em Poker in respect of the official rules.

Poker here is meant to be played by other programs, which should be listening for POST http request somewhere in the Internet, or on your localhost.

It's used as default poker holdem engine for http://botpoker.org.

demo

It's possible to run a demo on your local machine by executing the npm run demo from the project root folder.

start a tournament

const Tournament = require("poker-holdem-engine");

const tournamentID = "botparty";

const players = [
  {
    id: "r2",
    name: "r2d2",
    serviceUrl: "http://127.0.0.1:8080/"
  },
  ...
];

tournamentSettings = {
  BUYIN: 100,
  // Read docs/game-settings.md for the available configuration options.
};

const tournament = new Tournament(tournamentID, players, tournamentSettings);
tournament.start();

Players should be object with at least the name, id, and serviceUrl properties specified.

On the specified end point there should be an http server, responding on the POST /bet, GET /, and GET /version routes.

Every time something of interesting happen the message TOURNAMENT:updated is notified, with a parameter containing further information about the state of the game.

quit a tournament

tournament.quit();

prepare your player

It's possible to code your player in whatever language you want. In the following example I will use JavaScript.

// server.js

"use strict";

const player = require("./player");

const http = require("http");
const express = require("express");
const bodyParser = require("body-parser");

const app = express();
const server = http.Server(app);

app.use(bodyParser.json());

app.get("/", function(req, res) {
  res.sendStatus(200);
});

app.get("/version", function(req, res) {
  res.status(200).send(player.VERSION);
});

app.post("/bet", function(req, res) {
  player.bet(req.body, bet => res.status(200).send(bet.toString()));
});

const port = parseInt(process.env["PORT"] || 1337);

server.listen(port, function() {
  console.log("Server listening on port", server.address().port);
});

And the player module

exports = module.exports = {
  VERSION: "pokerstar v1",
  bet: function (gamestate) {
    // gamestate contains info about the state of the game.
    // currently we just fold every single hand
    return 0;
  }
};