< index
< 5. Image toolkit

=====================================
6. Mouse support
=====================================

> 7. File parser
By default, the mouse cursor in visible in windowed mode, hidden in fullscreen mode. You can change it with :

C++ : static void TCODMouse::showCursor(bool visible)
C   : void TCOD_mouse_show_cursor(bool visible)
Py  : mouse_show_cursor(visible)

ParameterDescription
visibleIf true, this function turns the mouse cursor on. Else it turns the mouse cursor off.

You can get the current cursor status (hidden or visible) with :

C++ : static bool TCODMouse::isCursorVisible()
C   : bool TCOD_mouse_is_cursor_visible()
Py  : mouse_is_cursor_visible()


You can set the cursor position (in pixel coordinates, 0x0 = the window top left corner) with :

C++ : static void TCODMouse::move(int x, int y)
C   : void TCOD_mouse_move(int x, int y)
Py  : mouse_move(x, y)

ParameterDescription
x,yNew coordinates of the mouse cursor in pixels.

You can read the current mouse status with :

typedef struct {
  int x,y;
  int dx,dy;
  int cx,cy;
  int dcx,dcy;
  unsigned lbutton : 1; 
  unsigned rbutton : 1;
  unsigned mbutton : 1;
  unsigned lbutton_pressed : 1;
  unsigned rbutton_pressed : 1;
  unsigned mbutton_pressed : 1;
} TCOD_mouse_t;

C++ : static TCOD_mouse_t TCODMouse::getStatus()
C   : TCOD_mouse_t TCOD_mouse_get_status()
Py  : mouse_get_status()

Field nameDescription
x,yAbsolute position of the mouse cursor in pixels relative to the window top-left corner.
dx,dyMovement of the mouse cursor since the last call in pixels.
cx,cyCoordinates of the console cell under the mouse cursor (pixel coordinates divided by the font size).
dcx,dcyMovement of the mouse since the last call in console cells (pixel coordinates divided by the font size).
lbuttontrue if the left button is pressed.
rbuttontrue if the right button is pressed.
mbuttontrue if the middle button (or the wheel) is pressed.
lbutton_pressedtrue if the left button was pressed and released.
rbutton_pressedtrue if the right button was pressed and released.
mbutton_pressedtrue if the middle button was pressed and released.

insert a comment