2010-11-04 06:33:57 +08:00
|
|
|
/* rbSFML - Copyright (c) 2010 Henrik Valter Vogelius Hansson - groogy@groogy.se
|
|
|
|
* This software is provided 'as-is', without any express or
|
|
|
|
* implied warranty. In no event will the authors be held
|
|
|
|
* liable for any damages arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any purpose,
|
|
|
|
* including commercial applications, and to alter it and redistribute
|
|
|
|
* it freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented;
|
|
|
|
* you must not claim that you wrote the original software.
|
|
|
|
* If you use this software in a product, an acknowledgment
|
|
|
|
* in the product documentation would be appreciated but
|
|
|
|
* is not required.
|
|
|
|
*
|
|
|
|
* 2. Altered source versions must be plainly marked as such,
|
|
|
|
* and must not be misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* 3. This notice may not be removed or altered from any
|
|
|
|
* source distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Event.hpp"
|
|
|
|
#include "main.hpp"
|
|
|
|
#include <SFML/Window/Event.hpp>
|
|
|
|
|
|
|
|
VALUE globalEventClass;
|
|
|
|
|
2010-11-04 17:56:54 +08:00
|
|
|
/* Joystick buttons events parameters (JoyButtonPressed, JoyButtonReleased). */
|
|
|
|
VALUE globalJoyButtonEventClass;
|
|
|
|
/* Joystick axis move event parameters (JoyMoved). */
|
|
|
|
VALUE globalJoyMoveEventClass;
|
|
|
|
/* Keyboard event parameters (KeyPressed, KeyReleased). */
|
|
|
|
VALUE globalKeyEventClass;
|
|
|
|
/* Mouse buttons events parameters (MouseButtonPressed, MouseButtonReleased). */
|
|
|
|
VALUE globalMouseButtonEventClass;
|
|
|
|
/* Mouse move event parameters (MouseMoved). */
|
|
|
|
VALUE globalMouseMoveEventClass;
|
|
|
|
/* Mouse wheel events parameters (MouseWheelMoved). */
|
|
|
|
VALUE globalMouseWheelEventClass;
|
|
|
|
/* Size events parameters (Resized). */
|
|
|
|
VALUE globalSizeEventClass;
|
|
|
|
/* Text event parameters (TextEntered). */
|
|
|
|
VALUE globalTextEventClass;
|
|
|
|
|
2010-11-04 06:33:57 +08:00
|
|
|
/* Free a heap allocated object
|
|
|
|
* Not accessible trough ruby directly!
|
|
|
|
*/
|
|
|
|
static void Event_Free( sf::Event *anObject )
|
|
|
|
{
|
|
|
|
delete anObject;
|
|
|
|
}
|
|
|
|
|
2010-11-06 04:06:30 +08:00
|
|
|
#define AXIS2NUM( x ) INT2NUM( static_cast< int > ( x ) )
|
|
|
|
#define NUM2AXIS( x ) static_cast< sf::Joy::Axis >( NUM2INT( x ) )
|
|
|
|
|
|
|
|
#define KEY2NUM( x ) INT2NUM( static_cast< int > ( x ) )
|
|
|
|
#define NUM2KEY( x ) static_cast< sf::Key::Code >( NUM2INT( x ) )
|
|
|
|
|
|
|
|
#define MOUSE2NUM( x ) INT2NUM( static_cast< int > ( x ) )
|
|
|
|
#define NUM2MOUSE( x ) static_cast< sf::Mouse::Button >( NUM2INT( x ) )
|
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
#define EVENT_TYPE_ACCESSORS( a, b, conv1 ) \
|
2010-11-06 04:06:30 +08:00
|
|
|
{ \
|
|
|
|
sf::Event:: a##Event * object = NULL; \
|
|
|
|
Data_Get_Struct( self, sf::Event:: a##Event, object ); \
|
|
|
|
return conv1 ( object-> b ); \
|
2010-11-05 05:29:09 +08:00
|
|
|
}
|
|
|
|
|
2010-11-06 04:06:30 +08:00
|
|
|
#define EVENT_TYPE_BOOL_ACCESSORS( a, b ) \
|
|
|
|
{ \
|
|
|
|
sf::Event:: a##Event * object = NULL; \
|
|
|
|
Data_Get_Struct( self, sf::Event:: a##Event, object ); \
|
|
|
|
if( object-> b == true ) \
|
|
|
|
return Qtrue; \
|
|
|
|
else \
|
|
|
|
return Qfalse; \
|
2010-11-05 05:29:09 +08:00
|
|
|
}
|
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* Index of the joystick (0 or 1). */
|
|
|
|
static VALUE JoyButtonEvent_GetJoystickId( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( JoyButton, JoystickId, INT2NUM )
|
|
|
|
/* Index of the button that has been pressed. */
|
|
|
|
static VALUE JoyButtonEvent_GetButton( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( JoyButton, Button, INT2NUM )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* Index of the joystick (0 or 1). */
|
|
|
|
static VALUE JoyMoveEvent_GetJoystickId( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( JoyMove, JoystickId, INT2NUM )
|
|
|
|
/* Axis on which the joystick moved. */
|
|
|
|
static VALUE JoyMoveEvent_GetAxis( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( JoyMove, Axis, AXIS2NUM )
|
|
|
|
/* New position on the axis (in range [-100, 100]). */
|
|
|
|
static VALUE JoyMoveEvent_GetPosition( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( JoyMove, Position, rb_float_new )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* Code of the key that has been pressed. */
|
|
|
|
static VALUE KeyEvent_GetCode( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( Key, Code, KEY2NUM )
|
|
|
|
/* Is the Alt key pressed? */
|
|
|
|
static VALUE KeyEvent_GetAlt( VALUE self )
|
|
|
|
EVENT_TYPE_BOOL_ACCESSORS( Key, Alt )
|
|
|
|
/* Is the Control key pressed? */
|
|
|
|
static VALUE KeyEvent_GetControl( VALUE self )
|
|
|
|
EVENT_TYPE_BOOL_ACCESSORS( Key, Control )
|
|
|
|
/* Is the Shift key pressed? */
|
|
|
|
static VALUE KeyEvent_GetShift( VALUE self )
|
|
|
|
EVENT_TYPE_BOOL_ACCESSORS( Key, Shift )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* Code of the button that has been pressed. */
|
|
|
|
static VALUE MouseButtonEvent_GetButton( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseButton, Button, MOUSE2NUM )
|
|
|
|
/* X position of the mouse pointer, relative to the left of the owner window */
|
|
|
|
static VALUE MouseButtonEvent_GetX( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseButton, X, INT2NUM )
|
|
|
|
/* Y position of the mouse pointer, relative to the top of the owner window */
|
|
|
|
static VALUE MouseButtonEvent_GetY( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseButton, Y, INT2NUM )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* X position of the mouse pointer, relative to the left of the owner window */
|
|
|
|
static VALUE MouseMoveEvent_GetX( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseMove, X, INT2NUM )
|
|
|
|
/* Y position of the mouse pointer, relative to the top of the owner window */
|
|
|
|
static VALUE MouseMoveEvent_GetY( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseMove, Y, INT2NUM )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* Number of ticks the wheel has moved (positive is up, negative is down). */
|
|
|
|
static VALUE MouseWheelEvent_GetDelta( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseWheel, Delta, INT2NUM )
|
|
|
|
/* X position of the mouse pointer, relative to the left of the owner window */
|
|
|
|
static VALUE MouseWheelEvent_GetX( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseWheel, X, INT2NUM )
|
|
|
|
/* Y position of the mouse pointer, relative to the top of the owner window */
|
|
|
|
static VALUE MouseWheelEvent_GetY( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( MouseWheel, Y, INT2NUM )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* New width, in pixels. */
|
|
|
|
static VALUE SizeEvent_GetWidth( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( Size, Width, INT2NUM )
|
|
|
|
/* New height, in pixels. */
|
|
|
|
static VALUE SizeEvent_GetHeight( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( Size, Height, INT2NUM )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* UTF-32 unicode value of the character. */
|
|
|
|
static VALUE TextEvent_GetUnicode( VALUE self )
|
|
|
|
EVENT_TYPE_ACCESSORS( Text, Unicode, INT2NUM )
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
/* */
|
2010-11-06 23:38:26 +08:00
|
|
|
static VALUE Event_Initialize( VALUE self, VALUE aType )
|
2010-11-04 22:41:47 +08:00
|
|
|
{
|
|
|
|
sf::Event * object = NULL;
|
|
|
|
Data_Get_Struct( self, sf::Event, object );
|
|
|
|
|
2010-11-06 23:38:26 +08:00
|
|
|
int typeNum = FIX2INT( aType );
|
|
|
|
if(typeNum >= 0 && typeNum < sf::Event::Count)
|
|
|
|
{
|
|
|
|
rb_iv_set( self, "@type", aType );
|
|
|
|
object->Type = static_cast< sf::Event::EventType >( typeNum );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rb_raise( rb_eTypeError, "expected Fixnum in range of 0...SFML::Event::Count" );
|
|
|
|
}
|
|
|
|
|
2010-11-05 00:58:25 +08:00
|
|
|
bool noSpecialType = false;
|
|
|
|
VALUE eventType;
|
2010-11-06 08:43:16 +08:00
|
|
|
const char * name = NULL;
|
2010-11-06 04:06:30 +08:00
|
|
|
switch( object->Type )
|
2010-11-05 00:58:25 +08:00
|
|
|
{
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::JoyButtonPressed:
|
|
|
|
case sf::Event::JoyButtonReleased:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalJoyButtonEventClass, 0, 0, &object->JoyButton );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@joyButton";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::JoyMoved:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalJoyMoveEventClass, 0, 0, &object->JoyMove );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@joyMove";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::KeyPressed:
|
|
|
|
case sf::Event::KeyReleased:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalKeyEventClass, 0, 0, &object->Key );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@key";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::MouseButtonPressed:
|
|
|
|
case sf::Event::MouseButtonReleased:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalMouseButtonEventClass, 0, 0, &object->MouseButton );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@mouseButton";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::MouseMoved:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalMouseMoveEventClass, 0, 0, &object->MouseMove );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@mouseMove";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::MouseWheelMoved:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalMouseWheelEventClass, 0, 0, &object->MouseWheel );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@mouseWheel";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::Resized:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalSizeEventClass, 0, 0, &object->Size );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@resized";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
2010-11-06 04:06:30 +08:00
|
|
|
case sf::Event::TextEntered:
|
2010-11-05 00:58:25 +08:00
|
|
|
eventType = Data_Wrap_Struct( globalTextEventClass, 0, 0, &object->Text );
|
2010-11-06 08:43:16 +08:00
|
|
|
name = "@text";
|
2010-11-05 00:58:25 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
noSpecialType = true;
|
|
|
|
};
|
2010-11-04 22:41:47 +08:00
|
|
|
|
2010-11-05 00:58:25 +08:00
|
|
|
if( noSpecialType == false )
|
|
|
|
{
|
|
|
|
rb_obj_call_init( eventType, 0, 0 );
|
|
|
|
rb_iv_set( eventType, "@internal__parent_ref", self );
|
2010-11-06 08:43:16 +08:00
|
|
|
rb_iv_set( self, name, eventType );
|
2010-11-05 00:58:25 +08:00
|
|
|
}
|
2010-11-04 22:41:47 +08:00
|
|
|
}
|
|
|
|
|
2010-12-04 03:47:41 +08:00
|
|
|
static VALUE Event_InitializeCopy( VALUE self, VALUE aSource )
|
|
|
|
{
|
|
|
|
sf::Event *object = NULL;
|
|
|
|
Data_Get_Struct( self, sf::Event, object );
|
|
|
|
sf::Event *source = NULL;
|
|
|
|
Data_Get_Struct( aSource, sf::Event, source );
|
|
|
|
*object = *source;
|
2010-12-05 23:40:24 +08:00
|
|
|
return Event_Initialize( self, INT2FIX( object->Type ) );
|
2010-12-04 03:47:41 +08:00
|
|
|
}
|
|
|
|
|
2010-11-04 06:33:57 +08:00
|
|
|
/* call-seq:
|
2010-11-16 21:25:59 +08:00
|
|
|
* Event.new(type) -> event
|
2010-11-04 06:33:57 +08:00
|
|
|
*
|
2010-11-16 21:25:59 +08:00
|
|
|
* You should never call this function directly. You should only aquire event's trough
|
|
|
|
* SFML::Window#getEvent or SFML::Window#waitEvent, if you need to pass data to a method
|
|
|
|
* that takes an event instance then make a proxy instance to simulate an event.
|
|
|
|
* NOTE: Using this method works but it will act constant as you can't access any values.
|
2010-11-04 06:33:57 +08:00
|
|
|
*/
|
2010-11-06 23:38:26 +08:00
|
|
|
static VALUE Event_New( int argc, VALUE * args, VALUE aKlass )
|
2010-11-04 06:33:57 +08:00
|
|
|
{
|
|
|
|
sf::Event *object = new sf::Event();
|
|
|
|
VALUE rbData = Data_Wrap_Struct( aKlass, 0, Event_Free, object );
|
2010-11-06 23:38:26 +08:00
|
|
|
rb_obj_call_init( rbData, argc, args );
|
2010-11-04 06:33:57 +08:00
|
|
|
return rbData;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Init_Event( void )
|
|
|
|
{
|
2010-11-17 00:03:50 +08:00
|
|
|
/* SFML namespace which contains the classes of this module. */
|
|
|
|
VALUE sfml = rb_define_module( "SFML" );
|
|
|
|
/* SFML::Event holds all the informations about a system event that just happened.
|
|
|
|
*
|
|
|
|
* Events are retrieved using the SFML::Window#GetEvent function.
|
|
|
|
*
|
|
|
|
* A SFML::Event instance contains the type of the event (mouse moved, key pressed, window closed, ...)
|
|
|
|
* as well as the details about this particular event. Please note that the event parameters are
|
|
|
|
* defined in a union, which means that only the member matching the type of the event will be properly
|
|
|
|
* filled; all other members will have undefined values and must not be read if the type of the event
|
|
|
|
* doesn't match. For example, if you received a KeyPressed event, then you must read the event.Key
|
|
|
|
* member, all other members such as event.MouseMove or event.Text will have undefined values.
|
|
|
|
*
|
|
|
|
* The ruby version differs from C++ in that the parameters are still stored in a union but that
|
|
|
|
* the values can be directly accessed from the event object. If you try to access any data which
|
|
|
|
* would be considered undefined then SFML::SomeKindOfException will be thrown.
|
|
|
|
*
|
|
|
|
* Usage example:
|
|
|
|
*
|
|
|
|
* while event = window.getEvent()
|
|
|
|
*
|
|
|
|
* # Request for closing the window
|
|
|
|
* if event.type == SFML::Event::Closed
|
|
|
|
* window.close
|
|
|
|
*
|
|
|
|
* # The escape key was pressed
|
|
|
|
* if ( event.type == sf::Event::KeyPressed ) && ( event.code == SFML::Key::Escape )
|
|
|
|
* window.close
|
|
|
|
*
|
|
|
|
* # The window was resized
|
|
|
|
* if event.type == SFML::Event::Resized
|
|
|
|
* DoSomethingWithTheNewSize(event.size);
|
|
|
|
*
|
|
|
|
* # etc ...
|
|
|
|
* end
|
|
|
|
*/
|
|
|
|
globalEventClass = rb_define_class_under( sfml, "Event", rb_cObject );
|
2010-11-05 05:29:09 +08:00
|
|
|
globalJoyButtonEventClass = rb_define_class_under( globalEventClass, "JoyButton", rb_cObject );
|
|
|
|
globalJoyMoveEventClass = rb_define_class_under( globalEventClass, "JoyMove", rb_cObject );
|
|
|
|
globalKeyEventClass = rb_define_class_under( globalEventClass, "Key", rb_cObject );
|
2010-11-06 04:06:30 +08:00
|
|
|
globalMouseButtonEventClass = rb_define_class_under( globalEventClass, "MouseButton", rb_cObject );
|
2010-11-05 05:29:09 +08:00
|
|
|
globalMouseMoveEventClass = rb_define_class_under( globalEventClass, "MouseMove", rb_cObject );
|
|
|
|
globalMouseWheelEventClass = rb_define_class_under( globalEventClass, "MouseWheel", rb_cObject );
|
|
|
|
globalSizeEventClass = rb_define_class_under( globalEventClass, "Size", rb_cObject );
|
|
|
|
globalTextEventClass = rb_define_class_under( globalEventClass, "Text", rb_cObject );
|
2010-11-04 06:33:57 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_const( globalEventClass, "Closed", INT2NUM( sf::Event::Closed ) );
|
|
|
|
rb_define_const( globalEventClass, "Resized", INT2NUM( sf::Event::Resized ) );
|
|
|
|
rb_define_const( globalEventClass, "LostFocus", INT2NUM( sf::Event::LostFocus ) );
|
|
|
|
rb_define_const( globalEventClass, "GainedFocus", INT2NUM( sf::Event::GainedFocus ) );
|
|
|
|
rb_define_const( globalEventClass, "TextEntered", INT2NUM( sf::Event::TextEntered ) );
|
|
|
|
rb_define_const( globalEventClass, "KeyPressed", INT2NUM( sf::Event::KeyPressed ) );
|
|
|
|
rb_define_const( globalEventClass, "KeyReleased", INT2NUM( sf::Event::KeyReleased ) );
|
|
|
|
rb_define_const( globalEventClass, "MouseWheelMoved", INT2NUM( sf::Event::MouseWheelMoved ) );
|
|
|
|
rb_define_const( globalEventClass, "MouseButtonPressed", INT2NUM( sf::Event::MouseButtonPressed ) );
|
|
|
|
rb_define_const( globalEventClass, "MouseButtonReleased", INT2NUM( sf::Event::MouseButtonReleased ) );
|
|
|
|
rb_define_const( globalEventClass, "MouseMoved", INT2NUM( sf::Event::MouseMoved ) );
|
|
|
|
rb_define_const( globalEventClass, "MouseEntered", INT2NUM( sf::Event::MouseEntered ) );
|
|
|
|
rb_define_const( globalEventClass, "MouseLeft", INT2NUM( sf::Event::MouseLeft ) );
|
|
|
|
rb_define_const( globalEventClass, "JoyButtonPressed", INT2NUM( sf::Event::JoyButtonPressed ) );
|
|
|
|
rb_define_const( globalEventClass, "JoyButtonReleased", INT2NUM( sf::Event::JoyButtonReleased ) );
|
|
|
|
rb_define_const( globalEventClass, "JoyMoved", INT2NUM( sf::Event::JoyMoved ) );
|
|
|
|
rb_define_const( globalEventClass, "Count", INT2NUM( sf::Event::Count ) );
|
2010-11-06 08:43:16 +08:00
|
|
|
|
2010-11-04 06:33:57 +08:00
|
|
|
// Class methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_singleton_method( globalEventClass, "new", Event_New, -1 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// Instance methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalEventClass, "initialize", Event_Initialize, 1 );
|
2010-12-04 03:47:41 +08:00
|
|
|
rb_define_method( globalEventClass, "initialize_copy", Event_InitializeCopy, 1 );
|
|
|
|
|
2010-11-15 17:08:22 +08:00
|
|
|
rb_define_attr( globalEventClass, "type", 1, 0 );
|
2010-11-06 08:43:16 +08:00
|
|
|
rb_define_attr( globalEventClass, "joyButton", 1, 0 );
|
|
|
|
rb_define_attr( globalEventClass, "joyMove", 1, 0 );
|
|
|
|
rb_define_attr( globalEventClass, "key", 1, 0 );
|
|
|
|
rb_define_attr( globalEventClass, "mouseButton", 1, 0 );
|
|
|
|
rb_define_attr( globalEventClass, "mouseMove", 1, 0 );
|
|
|
|
rb_define_attr( globalEventClass, "mouseWheel", 1, 0 );
|
|
|
|
rb_define_attr( globalEventClass, "size", 1, 0 );
|
|
|
|
rb_define_attr( globalEventClass, "text", 1, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// JoyButton methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalJoyButtonEventClass, "joystickId", JoyButtonEvent_GetJoystickId, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalJoyButtonEventClass, "button", JoyButtonEvent_GetButton, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// JoyMove methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalJoyMoveEventClass, "joystickId", JoyMoveEvent_GetJoystickId, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalJoyMoveEventClass, "axis", JoyMoveEvent_GetAxis, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalJoyMoveEventClass, "position", JoyMoveEvent_GetPosition, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// Key methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalKeyEventClass, "code", KeyEvent_GetCode, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalKeyEventClass, "alt", KeyEvent_GetAlt, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalKeyEventClass, "control", KeyEvent_GetControl, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalKeyEventClass, "shift", KeyEvent_GetShift, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// MouseButton methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseButtonEventClass, "button", MouseButtonEvent_GetButton, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseButtonEventClass, "x", MouseButtonEvent_GetX, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseButtonEventClass, "y", MouseButtonEvent_GetY, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// MouseMove methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseMoveEventClass, "x", MouseMoveEvent_GetX, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseMoveEventClass, "y", MouseMoveEvent_GetY, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// MouseWheel methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseWheelEventClass, "delta", MouseWheelEvent_GetDelta, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseWheelEventClass, "x", MouseWheelEvent_GetX, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalMouseWheelEventClass, "y", MouseWheelEvent_GetY, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// Size methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalSizeEventClass, "width", SizeEvent_GetWidth, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalSizeEventClass, "height", SizeEvent_GetWidth, 0 );
|
2010-11-05 05:29:09 +08:00
|
|
|
|
|
|
|
// Text methods
|
2010-11-17 00:03:50 +08:00
|
|
|
rb_define_method( globalTextEventClass, "unicode", TextEvent_GetUnicode, 0 );
|
2010-11-04 06:33:57 +08:00
|
|
|
}
|