Sha256: e971cdea72851056d01e7d5d397a341731461a6cac1b1db3fe6b48940cbfa36d

Contents?: true

Size: 1.28 KB

Versions: 3

Compression:

Stored size: 1.28 KB

Contents

#include "reflex/ruby/event.h"


#include "rays/ruby/point.h"
#include "defs.h"


RUCY_DEFINE_VALUE_FROM_TO(Reflex::MotionEvent)

#define THIS  to<Reflex::MotionEvent*>(self)

#define CHECK RUCY_CHECK_OBJ(Reflex::MotionEvent, self)


static
VALUE alloc(VALUE klass)
{
	return new_type<Reflex::MotionEvent>(klass);
}

static
VALUE initialize(VALUE self)
{
	CHECK;
	check_arg_count(__FILE__, __LINE__, "MotionEvent#initialize", argc, 0, 1);

	if (argc >= 1)
		THIS->gravity = to<Rays::Point>(argv[0]);

	return rb_call_super(0, NULL);
}

static
VALUE initialize_copy(VALUE self, VALUE obj)
{
	CHECK;
	*THIS = to<Reflex::MotionEvent&>(obj);
	return self;
}

static
VALUE gravity(VALUE self)
{
	CHECK;
	return value(THIS->gravity);
}


static Class cMotionEvent;

void
Init_motion_event ()
{
	Module mReflex = rb_define_module("Reflex");

	cMotionEvent = mReflex.define_class("MotionEvent", Reflex::event_class());
	rb_define_alloc_func(cMotionEvent, alloc);
	rb_define_private_method(cMotionEvent, "initialize", RUBY_METHOD_FUNC(initialize), -1);
	rb_define_private_method(cMotionEvent, "initialize_copy", RUBY_METHOD_FUNC(initialize_copy), 1);
	rb_define_method(cMotionEvent, "gravity", RUBY_METHOD_FUNC(gravity), 0);
}


namespace Reflex
{


	Class
	motion_event_class ()
	{
		return cMotionEvent;
	}


}// Reflex

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
reflexion-0.1.15 .doc/ext/reflex/motion_event.cpp
reflexion-0.1.14 .doc/ext/reflex/motion_event.cpp
reflexion-0.1.13 .doc/ext/reflex/motion_event.cpp