My Project
|
User interface. More...
Functions | |
void | gtp_preprocess (char *line) |
bool | ui_switch (UI *ui, const char *ui_type) |
Switch between different User Interface. More... | |
static void | ui_read_input (UI *ui) |
Get an event. More... | |
static void * | ui_read_input_loop (void *v) |
Read event loop. More... | |
void | ui_event_wait (UI *ui, char **cmd, char **param) |
Wait input. More... | |
bool | ui_event_peek (UI *ui, char **cmd, char **param) |
Wait input. More... | |
bool | ui_event_exist (UI *ui) |
ui_event_exist More... | |
void | ui_event_init (UI *ui) |
Create a new Othello User Interface. More... | |
void | ui_event_free (UI *ui) |
Free events. More... | |
User interface.
void gtp_preprocess | ( | char * | line | ) |
bool ui_event_exist | ( | UI * | ui | ) |
ui_event_exist
Locked version of event_exist.
ui | User interface. |
void ui_event_free | ( | UI * | ui | ) |
Free events.
Allocate event resources & launch user-input event thread.
void ui_event_init | ( | UI * | ui | ) |
Create a new Othello User Interface.
Allocate event resources & launch user-input event thread.
bool ui_event_peek | ( | UI * | ui, |
char ** | cmd, | ||
char ** | param | ||
) |
Wait input.
ui | User interface. |
cmd | Command. |
param | Command's parameters. |
void ui_event_wait | ( | UI * | ui, |
char ** | cmd, | ||
char ** | param | ||
) |
Wait input.
ui | User interface. |
cmd | Command. |
param | Command's parameters. |
|
static |
Get an event.
Wait for an event from the standard input.
ui | User Interface. |
|
static |
Read event loop.
v | Engine. |
bool ui_switch | ( | UI * | ui, |
const char * | ui_type | ||
) |
Switch between different User Interface.
ui | User Interface. |
ui_type | A string describing the chosen user interface. |