module Parser: sig end
exception Error of string
type 'a
t = {
|
lex : |
|
deparse : |
|
complete : |
|
accept : |
|
desc : |
val int : ?max:int -> ?min:int -> unit -> int t
val float : unit -> float t
val unit : unit t
val bool : bool t
val string : string t
val option : 'a t -> 'a option t
val pair : 'a t -> 'b t -> ('a * 'b) t
val triple : 'a t -> 'b t -> 'c t -> ('a * 'b * 'c) t
val quadruple : 'a t ->
'b t -> 'c t -> 'd t -> ('a * 'b * 'c * 'd) t
val pentuple : 'a t ->
'b t ->
'c t ->
'd t -> 'e t -> ('a * 'b * 'c * 'd * 'e) t
val accept_only : 'a list -> 'a t -> 'a t
val callback : ('a -> unit) -> 'a t -> 'a t
val command : (unit -> unit) t
val variable : string t
val add_command : string -> 'a t -> string -> ('a -> unit) -> unit
add_command name type description handler
adds the command to the list
of commands. Examples of usage in MLGame:
Parser.add_command "exec" Parser.string "executes the given script" exec
Parser.add_command "bind_global" (Parser.pair Key.parser Parser.command) "Bind_global binds..." my_function;;
Parser.add_command "disconnect" Net.local_player_parser "This fun.." fun;;
val add_variable : string -> 'a t -> 'a -> 'a Pervasives.ref
val get : string -> string
val set : string -> string -> unit
val parse : string -> unit -> unit
parse expression
Parses a given string and returns a simple function
that executes the parsed expression
.Error
if something went wrong.val available_completions : string -> string list
val create_log : string -> string -> bool -> string -> unit
create_log name prefix init
creates a debug logger that can be switched
on and off via the parser.val sextuple : 'a t ->
'b t ->
'c t ->
'd t ->
'e t -> 'f t -> ('a * 'b * 'c * 'd * 'e * 'f) t
val septuple : 'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t -> 'g t -> ('a * 'b * 'c * 'd * 'e * 'f * 'g) t
val octuple : 'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t ->
'h t -> ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h) t
val nonuple : 'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t ->
'h t ->
'i t -> ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i) t