My Project
Functions
ui.c File Reference

User interface. More...

#include "options.h"
#include "ui.h"
#include "util.h"
#include <assert.h>

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...
 

Detailed Description

User interface.

Date
1998 - 2017
Author
Richard Delorme
Version
4.4

Function Documentation

◆ gtp_preprocess()

void gtp_preprocess ( char *  line)

◆ ui_event_exist()

bool ui_event_exist ( UI ui)

ui_event_exist

Locked version of event_exist.

Parameters
uiUser interface.
Returns
true if an event is waiting.

◆ ui_event_free()

void ui_event_free ( UI ui)

Free events.

Allocate event resources & launch user-input event thread.

◆ ui_event_init()

void ui_event_init ( UI ui)

Create a new Othello User Interface.

Allocate event resources & launch user-input event thread.

◆ ui_event_peek()

bool ui_event_peek ( UI ui,
char **  cmd,
char **  param 
)

Wait input.

Parameters
uiUser interface.
cmdCommand.
paramCommand's parameters.

◆ ui_event_wait()

void ui_event_wait ( UI ui,
char **  cmd,
char **  param 
)

Wait input.

Parameters
uiUser interface.
cmdCommand.
paramCommand's parameters.

◆ ui_read_input()

static void ui_read_input ( UI ui)
static

Get an event.

Wait for an event from the standard input.

Parameters
uiUser Interface.

◆ ui_read_input_loop()

static void * ui_read_input_loop ( void *  v)
static

Read event loop.

Parameters
vEngine.

◆ ui_switch()

bool ui_switch ( UI ui,
const char *  ui_type 
)

Switch between different User Interface.

Parameters
uiUser Interface.
ui_typeA string describing the chosen user interface.
Returns
true if successful.