aboutsummaryrefslogblamecommitdiff
path: root/judge/player.ml
blob: 1d89fe89a554ac461054021fc3fb8179579c8974 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                    
                                      


   















                                            







                        





                                

                                                    


















                                                   
open Core

module type IA = sig

  module G : GAME

  val play : G.game -> float -> string

end

let expect mgs =
  let l = read_line () in
  begin try
  let (s, f) = List.find
    (fun (s, _) ->
       String.length l >= String.length s
    && String.sub l 0 (String.length s) = s)
    mgs
  in f (String.sub l (String.length s)
      (String.length l - String.length s))
  with
  Not_found ->
    Format.eprintf "Unexpected '%s'.@." l;
    exit 1
  end

module P (W : IA) : sig

  val run : unit -> unit

end = struct

  module G = W.G

  let finished _ =
    print_string "Fair enough\n"

  let rec turn g _ =
    expect [
      "Your turn",
        (fun time ->
        let act = W.play g (float_of_string time) in
        Format.printf "Play %s@." act;
        let g' = G.play g act in
        expect [ "OK", turn g' ]);
      "Play ", (fun act -> turn (G.play g act) "");
      "Tie", finished;
      "You win", finished;
      "You lose", finished;
      "Eliminated", finished
    ]

  let run () =
    Random.self_init ();
    expect [
    "Hello " ^ G.id,
    (fun _ -> Format.printf "Hello %s@." G.id;
      turn (G.new_game) "")
    ];

end