public MainModule()
        {
            Get ["/"] = _ => {
                var contentBytes = Encoding.UTF8.GetBytes("OK");
                var response     = new Response {
                    ContentType = "text/plain",
                    Contents    = s => s.Write(contentBytes, 0, contentBytes.Length),
                    StatusCode  = HttpStatusCode.OK
                };
                return(response);
            };

            Post ["/"] = parameters => {
                var    form   = Request.Form;
                string action = form ["action"];
                switch (action)
                {
                case "bet_request":
                {
                    var json       = JObject.Parse(form ["game_state"]);
                    var gameObject = JsonConvert.DeserializeObject <GameObject>(form["game_state"]);
                    var bet        = PokerPlayer.BetRequest(json, gameObject).ToString();
                    var betBytes   = Encoding.UTF8.GetBytes(bet);
                    var response   = new Response {
                        ContentType = "text/plain",
                        Contents    = s => s.Write(betBytes, 0, betBytes.Length),
                        StatusCode  = HttpStatusCode.OK
                    };
                    return(response);
                }

                case "showdown":
                {
                    var json       = JObject.Parse(form ["game_state"]);
                    var gameObject = JsonConvert.DeserializeObject <GameObject>(form["game_state"]);
                    PokerPlayer.ShowDown(json, gameObject);
                    var showDownBytes = Encoding.UTF8.GetBytes("OK");
                    var response      = new Response {
                        ContentType = "text/plain",
                        Contents    = s => s.Write(showDownBytes, 0, showDownBytes.Length),
                        StatusCode  = HttpStatusCode.OK
                    };
                    return(response);
                }

                case "version":
                {
                    var versionBytes = Encoding.UTF8.GetBytes(PokerPlayer.VERSION);
                    return(new Response {
                            ContentType = "text/plain",
                            Contents = s => s.Write(versionBytes, 0, versionBytes.Length),
                            StatusCode = HttpStatusCode.OK
                        });
                }

                case "check":
                {
                    var contentBytes = Encoding.UTF8.GetBytes("OK");
                    var response     = new Response {
                        ContentType = "text/plain",
                        Contents    = s => s.Write(contentBytes, 0, contentBytes.Length),
                        StatusCode  = HttpStatusCode.OK
                    };
                    return(response);
                }

                default:
                    var bytes = Encoding.UTF8.GetBytes("Not an allowed action or request");
                    return(new Response {
                        ContentType = "text/plain",
                        Contents = s => s.Write(bytes, 0, bytes.Length),
                        StatusCode = HttpStatusCode.BadRequest
                    });
                }
            };
        }
Esempio n. 2
0
        public MainModule()
        {
            Get ["/"] = _ => {
                var contentBytes = Encoding.UTF8.GetBytes("OK");
                var response     = new Response {
                    ContentType = "text/plain",
                    Contents    = s => s.Write(contentBytes, 0, contentBytes.Length),
                    StatusCode  = HttpStatusCode.OK
                };
                return(response);
            };

            Post ["/"] = parameters => {
                var    form   = Request.Form;
                string action = form ["action"];
                switch (action)
                {
                case "bet_request":
                {
                    return(PerformBet2(form));
                }

                /*
                 *
                 * Showdown
                 * This action is called at the end of each round. The game state document is sent,
                 * but this time the hole cards of the opponents are also included if those cards were revealed during showdown.
                 *
                 * The player frameworks should define a "showdown" void method in the Player class (or a similar construct). When the action
                 * is called, it should be delegated to this method. This method should be changed by teams to implement learning algorithms.
                 * The string returned is not used.
                 *
                 *  */
                case "showdown":
                {
                    var json = JObject.Parse(form ["game_state"]);
                    PokerPlayer.ShowDown(json);
                    var showDownBytes = Encoding.UTF8.GetBytes("OK");
                    var response      = new Response {
                        ContentType = "text/plain",
                        Contents    = s => s.Write(showDownBytes, 0, showDownBytes.Length),
                        StatusCode  = HttpStatusCode.OK
                    };
                    return(response);
                }

                case "version":
                {
                    var versionBytes = Encoding.UTF8.GetBytes(PokerPlayer.VERSION);
                    return(new Response {
                            ContentType = "text/plain",
                            Contents = s => s.Write(versionBytes, 0, versionBytes.Length),
                            StatusCode = HttpStatusCode.OK
                        });
                }

                case "check":
                {
                    var contentBytes = Encoding.UTF8.GetBytes("OK");
                    var response     = new Response {
                        ContentType = "text/plain",
                        Contents    = s => s.Write(contentBytes, 0, contentBytes.Length),
                        StatusCode  = HttpStatusCode.OK
                    };
                    return(response);
                }

                default:
                    var bytes = Encoding.UTF8.GetBytes("Not an allowed action or request");
                    return(new Response {
                        ContentType = "text/plain",
                        Contents = s => s.Write(bytes, 0, bytes.Length),
                        StatusCode = HttpStatusCode.BadRequest
                    });
                }
            };
        }
Esempio n. 3
0
        public MainModule()
        {
            Get ["/"] = _ => {
                var contentBytes = Encoding.UTF8.GetBytes("OK");
                var response     = new Response {
                    ContentType = "text/plain",
                    Contents    = s => s.Write(contentBytes, 0, contentBytes.Length),
                    StatusCode  = HttpStatusCode.OK
                };
                return(response);
            };

            Post ["/"] = parameters => {
                var    form   = Request.Form;
                string action = form ["action"];

                Guid reqId = PokerPlayer.GenerateRequestId();
                Logger.LogHelper.Log("type=incoming method=post action={0} request_id={1}", action, reqId);


                try
                {
                    switch (action)
                    {
                    case "bet_request":
                    {
                        var json     = JObject.Parse(form["game_state"]);
                        var bet      = PokerPlayer.BetRequest(json).ToString();
                        var betBytes = Encoding.UTF8.GetBytes(bet);
                        var response = new Response
                        {
                            ContentType = "text/plain",
                            Contents    = s => s.Write(betBytes, 0, betBytes.Length),
                            StatusCode  = HttpStatusCode.OK
                        };
                        return(response);
                    }

                    case "showdown":
                    {
                        var json = JObject.Parse(form["game_state"]);
                        PokerPlayer.ShowDown(json);
                        var showDownBytes = Encoding.UTF8.GetBytes("OK");
                        var response      = new Response
                        {
                            ContentType = "text/plain",
                            Contents    = s => s.Write(showDownBytes, 0, showDownBytes.Length),
                            StatusCode  = HttpStatusCode.OK
                        };
                        return(response);
                    }

                    case "version":
                    {
                        var versionBytes = Encoding.UTF8.GetBytes(PokerPlayer.VERSION);
                        return(new Response
                            {
                                ContentType = "text/plain",
                                Contents = s => s.Write(versionBytes, 0, versionBytes.Length),
                                StatusCode = HttpStatusCode.OK
                            });
                    }

                    case "check":
                    {
                        var contentBytes = Encoding.UTF8.GetBytes("OK");
                        var response     = new Response
                        {
                            ContentType = "text/plain",
                            Contents    = s => s.Write(contentBytes, 0, contentBytes.Length),
                            StatusCode  = HttpStatusCode.OK
                        };
                        return(response);
                    }

                    default:
                        var bytes = Encoding.UTF8.GetBytes("Not an allowed action or request");
                        return(new Response
                        {
                            ContentType = "text/plain",
                            Contents = s => s.Write(bytes, 0, bytes.Length),
                            StatusCode = HttpStatusCode.BadRequest
                        });
                    }
                }
                catch (Exception ex)
                {
                    Logger.LogHelper.Log("type=incoming method=post action={0} request_id={1}, error: {2}", action, reqId, ex);

                    var betBytes = Encoding.UTF8.GetBytes("0");
                    var response = new Response
                    {
                        ContentType = "text/plain",
                        Contents    = s => s.Write(betBytes, 0, betBytes.Length),
                        StatusCode  = HttpStatusCode.OK
                    };
                    return(response);
                }
            };
        }