| I | |
| Image Formats | |
| IMAGE_INFO | |
| IMG_ALPHA | |
| IMG_AUTO | |
| IMG_RGB | |
| IMG_RGBA | |
| In depth | |
| Init | |
| inp_clear_events, INPUT_EVENT | |
| inp_clear_key_states, INPUT_EVENT | |
| inp_get_event, INPUT_EVENT | |
| inp_key_code, INPUT_EVENT | |
| inp_key_down, INPUT_EVENT | |
| inp_key_name, INPUT_EVENT | |
| inp_key_pressed, INPUT_EVENT | |
| inp_key_presses, INPUT_EVENT | |
| inp_key_releases, INPUT_EVENT | |
| inp_key_state, INPUT_EVENT | |
| inp_key_was_pressed, INPUT_EVENT | |
| inp_mouse_doubleclick, INPUT_EVENT | |
| inp_mouse_relative, INPUT_EVENT | |
| inp_mouse_scroll, INPUT_EVENT | |
| inp_num_events, INPUT_EVENT | |
| Input | |
| INPUT_EVENT | |
| insert_entity, Game World | |
| Inspection | |
| interserct_character, Game World | |
| Interval | |
| io_close | |
| io_flush | |
| io_length | |
| io_open | |
| io_read | |
| io_seek | |
| io_skip | |
| io_stderr | |
| io_stdin | |
| io_stdout | |
| io_tell | |
| io_write | |
| L | |
| Lines | |
| Locks |
TODO
void inp_clear_events()
TODO
void inp_clear_key_states()
TODO
INPUT_EVENT inp_get_event( int index )
TODO
int inp_key_code( const char * key_name )
TODO
int inp_key_down( int key )
TODO
const char *inp_key_name( int k )
Checks if a key is pressed.
int inp_key_pressed( int key )
TODO
int inp_key_presses( int key )
TODO
int inp_key_releases( int key )
TODO
int inp_key_state( int key )
TODO
int inp_key_was_pressed( int key )
TODO
int inp_mouse_doubleclick()
Fetches the mouse movements.
void inp_mouse_relative( int * x, int * y )
TODO
int inp_mouse_scroll()
TODO
int inp_num_events()
Adds an entity to the world.
void insert_entity( ENTITY * entity )
Closes a file.
int io_close( IOHANDLE io )
Empties all buffers and writes all pending data.
int io_flush( IOHANDLE io )
Gets the total length of the file.
long int io_length( IOHANDLE io )
Opens a file.
IOHANDLE io_open( const char * filename, int flags )
Reads data into a buffer from a file.
unsigned io_read( IOHANDLE io, void * buffer, unsigned size )
Seeks to a specified offset in the file.
int io_seek( IOHANDLE io, int offset, int origin )
Skips data in a file.
unsigned io_skip( IOHANDLE io, unsigned size )
Returns an IOHANDLE to the standard error.
IOHANDLE io_stderr()
Returns an IOHANDLE to the standard input.
IOHANDLE io_stdin()
Returns an IOHANDLE to the standard output.
IOHANDLE io_stdout()
Gets the current position in the file.
long int io_tell( IOHANDLE io )
Writes data from a buffer to file.
unsigned io_write( IOHANDLE io, const void * buffer, unsigned size )