Begun work on the Event class. This is a quite tricky one because of the union.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1605 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-11-04 09:56:54 +00:00
parent 51066ce55d
commit 31d438dd87

View File

@ -36,8 +36,8 @@
* member, all other members such as event.MouseMove or event.Text will have undefined values. * 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 ruby version differs from C++ in that the parameters are still stored in a union but that
* the values are directly accessible from the event object. If you try to access any data which * the values can be directly accessed from the event object. If you try to access any data which
* would be considered undefined then a SFML::SomeKindOfException will be thrown. * would be considered undefined then SFML::SomeKindOfException will be thrown.
* *
* Usage example: * Usage example:
* *
@ -53,13 +53,30 @@
* *
* # The window was resized * # The window was resized
* if event.type == SFML::Event::Resized * if event.type == SFML::Event::Resized
* DoSomethingWithTheNewSize(event.width, event.height); * DoSomethingWithTheNewSize(event.size);
* *
* # etc ... * # etc ...
* end * end
*/ */
VALUE globalEventClass; VALUE globalEventClass;
/* 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;
/* Free a heap allocated object /* Free a heap allocated object
* Not accessible trough ruby directly! * Not accessible trough ruby directly!
*/ */
@ -84,6 +101,14 @@ static VALUE Event_New( VALUE aKlass )
void Init_Event( void ) void Init_Event( void )
{ {
globalEventClass = rb_define_class_under( GetNamespace(), "Event", rb_cObject ); globalEventClass = rb_define_class_under( GetNamespace(), "Event", rb_cObject );
globalJoyButtonEventClass = rb_define_class_under( globalEventClass, "JoyButton" );
globalJoyMoveEventClass = rb_define_class_under( globalEventClass, "JoyMove" );
globalKeyEventClass = rb_define_class_under( globalEventClass, "Key" );
globalMouseButtonEventClass = rb_define_class_under( globalEventClass, "MouseButton" );
globalMouseMoveEventClass = rb_define_class_under( globalEventClass, "MouseMove" );
globalMouseWheelEventClass = rb_define_class_under( globalEventClass, "MouseWheel" );
globalSizeEventEventClass = rb_define_class_under( globalEventClass, "Size" );
globalTextEventEventClass = rb_define_class_under( globalEventClass, "Text" );
// Class methods // Class methods
rb_define_singleton_method( globalEventClass, "new", FUNCPTR( Event_New ), 0 ); rb_define_singleton_method( globalEventClass, "new", FUNCPTR( Event_New ), 0 );