Keep information on first file creation year, and update my email address yet again.
		
			
				
	
	
		
			205 lines
		
	
	
	
		
			5.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			205 lines
		
	
	
	
		
			5.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
** etc-binding.cpp
 | 
						|
**
 | 
						|
** This file is part of mkxp.
 | 
						|
**
 | 
						|
** Copyright (C) 2013 - 2021 Amaryllis Kulla <ancurio@mapleshrine.eu>
 | 
						|
**
 | 
						|
** mkxp is free software: you can redistribute it and/or modify
 | 
						|
** it under the terms of the GNU General Public License as published by
 | 
						|
** the Free Software Foundation, either version 2 of the License, or
 | 
						|
** (at your option) any later version.
 | 
						|
**
 | 
						|
** mkxp is distributed in the hope that it will be useful,
 | 
						|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
** GNU General Public License for more details.
 | 
						|
**
 | 
						|
** You should have received a copy of the GNU General Public License
 | 
						|
** along with mkxp.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
*/
 | 
						|
 | 
						|
#include "etc.h"
 | 
						|
#include "binding-util.h"
 | 
						|
#include "binding-types.h"
 | 
						|
#include "serializable-binding.h"
 | 
						|
 | 
						|
#define ATTR_RW(Type, Attr, arg_type, mrb_val, arg_t_s) \
 | 
						|
	MRB_METHOD(Type##Get##Attr) \
 | 
						|
	{ \
 | 
						|
		Type *p = getPrivateData<Type>(mrb, self); \
 | 
						|
	 \
 | 
						|
		return mrb_##mrb_val##_value(p->get##Attr()); \
 | 
						|
	} \
 | 
						|
\
 | 
						|
	MRB_METHOD(Type##Set##Attr) \
 | 
						|
	{ \
 | 
						|
		Type *p = getPrivateData<Type>(mrb, self); \
 | 
						|
	 \
 | 
						|
		arg_type arg; \
 | 
						|
		mrb_get_args(mrb, arg_t_s, &arg); \
 | 
						|
	 \
 | 
						|
		p->set##Attr(arg); \
 | 
						|
		UPDATE_F \
 | 
						|
	 \
 | 
						|
		return mrb_##mrb_val##_value(arg); \
 | 
						|
	}
 | 
						|
 | 
						|
#define EQUAL_FUN(Typ) \
 | 
						|
	MRB_METHOD(Typ##Equal) \
 | 
						|
	{ \
 | 
						|
		Typ *p = getPrivateData<Typ>(mrb, self); \
 | 
						|
		mrb_value otherObj; \
 | 
						|
		Typ *other; \
 | 
						|
		mrb_get_args(mrb, "o", &otherObj); \
 | 
						|
		RClass *klass = mrb_obj_class(mrb, self); \
 | 
						|
		RClass *otherKlass = mrb_obj_class(mrb, otherObj); \
 | 
						|
		if (klass != otherKlass) \
 | 
						|
			return mrb_false_value(); \
 | 
						|
		other = getPrivateDataCheck<Typ>(mrb, otherObj, Typ##Type); \
 | 
						|
		return mrb_bool_value(*p == *other); \
 | 
						|
	}
 | 
						|
 | 
						|
#define ATTR_FLOAT_RW(Type, attr) ATTR_RW(Type, attr, mrb_float, _float, "f")
 | 
						|
#define ATTR_INT_RW(Type, attr)   ATTR_RW(Type, attr, mrb_int, fixnum, "i")
 | 
						|
 | 
						|
#define UPDATE_F p->updateInternal();
 | 
						|
ATTR_FLOAT_RW(Color, Red)
 | 
						|
ATTR_FLOAT_RW(Color, Green)
 | 
						|
ATTR_FLOAT_RW(Color, Blue)
 | 
						|
ATTR_FLOAT_RW(Color, Alpha)
 | 
						|
 | 
						|
ATTR_FLOAT_RW(Tone, Red)
 | 
						|
ATTR_FLOAT_RW(Tone, Green)
 | 
						|
ATTR_FLOAT_RW(Tone, Blue)
 | 
						|
ATTR_FLOAT_RW(Tone, Gray)
 | 
						|
 | 
						|
#undef UPDATE_F
 | 
						|
#define UPDATE_F
 | 
						|
ATTR_INT_RW(Rect, X)
 | 
						|
ATTR_INT_RW(Rect, Y)
 | 
						|
ATTR_INT_RW(Rect, Width)
 | 
						|
ATTR_INT_RW(Rect, Height)
 | 
						|
 | 
						|
EQUAL_FUN(Color)
 | 
						|
EQUAL_FUN(Tone)
 | 
						|
EQUAL_FUN(Rect)
 | 
						|
 | 
						|
DEF_TYPE(Color);
 | 
						|
DEF_TYPE(Tone);
 | 
						|
DEF_TYPE(Rect);
 | 
						|
 | 
						|
#define INIT_FUN(Klass, param_type, param_t_s, last_param_def) \
 | 
						|
	MRB_METHOD(Klass##Initialize) \
 | 
						|
	{ \
 | 
						|
		param_type p1, p2, p3, p4 = last_param_def; \
 | 
						|
		mrb_get_args(mrb, param_t_s, &p1, &p2, &p3, &p4); \
 | 
						|
		Klass *k = new Klass(p1, p2, p3, p4); \
 | 
						|
		setPrivateData(self, k, Klass##Type); \
 | 
						|
		return self; \
 | 
						|
	}
 | 
						|
 | 
						|
INIT_FUN(Color, mrb_float, "fff|f", 255)
 | 
						|
INIT_FUN(Tone, mrb_float, "fff|f", 0)
 | 
						|
INIT_FUN(Rect, mrb_int, "iiii", 0)
 | 
						|
 | 
						|
#define SET_FUN(Klass, param_type, param_t_s, last_param_def) \
 | 
						|
	MRB_METHOD(Klass##Set) \
 | 
						|
	{ \
 | 
						|
		param_type p1, p2, p3, p4 = last_param_def; \
 | 
						|
		mrb_get_args(mrb, param_t_s, &p1, &p2, &p3, &p4); \
 | 
						|
		Klass *k = getPrivateData<Klass>(mrb, self); \
 | 
						|
		k->set(p1, p2, p3, p4); \
 | 
						|
		return self; \
 | 
						|
	}
 | 
						|
 | 
						|
SET_FUN(Color, mrb_float, "fff|f", 255)
 | 
						|
SET_FUN(Tone, mrb_float, "fff|f", 0)
 | 
						|
SET_FUN(Rect, mrb_int, "iiii", 0)
 | 
						|
 | 
						|
MRB_METHOD(RectEmpty)
 | 
						|
{
 | 
						|
	Rect *r = getPrivateData<Rect>(mrb, self);
 | 
						|
 | 
						|
	r->empty();
 | 
						|
 | 
						|
	return mrb_nil_value();
 | 
						|
}
 | 
						|
 | 
						|
static char buffer[64];
 | 
						|
 | 
						|
MRB_METHOD(ColorStringify)
 | 
						|
{
 | 
						|
	Color *c = getPrivateData<Color>(mrb, self);
 | 
						|
 | 
						|
	sprintf(buffer, "(%f, %f, %f, %f)", c->red, c->green, c->blue, c->alpha);
 | 
						|
 | 
						|
	return mrb_str_new_cstr(mrb, buffer);
 | 
						|
}
 | 
						|
 | 
						|
MRB_METHOD(ToneStringify)
 | 
						|
{
 | 
						|
	Tone *t = getPrivateData<Tone>(mrb, self);
 | 
						|
 | 
						|
	sprintf(buffer, "(%f, %f, %f, %f)", t->red, t->green, t->blue, t->gray);
 | 
						|
 | 
						|
	return mrb_str_new_cstr(mrb, buffer);
 | 
						|
}
 | 
						|
 | 
						|
MRB_METHOD(RectStringify)
 | 
						|
{
 | 
						|
	Rect *r = getPrivateData<Rect>(mrb, self);
 | 
						|
 | 
						|
	sprintf(buffer, "(%d, %d, %d, %d)", r->x, r->y, r->width, r->height);
 | 
						|
 | 
						|
	return mrb_str_new_cstr(mrb, buffer);
 | 
						|
}
 | 
						|
 | 
						|
MARSH_LOAD_FUN(Color)
 | 
						|
MARSH_LOAD_FUN(Tone)
 | 
						|
MARSH_LOAD_FUN(Rect)
 | 
						|
 | 
						|
INITCOPY_FUN(Tone)
 | 
						|
INITCOPY_FUN(Color)
 | 
						|
INITCOPY_FUN(Rect)
 | 
						|
 | 
						|
#define MRB_ATTR_R(Class, Attr, sym) mrb_define_method(mrb, klass, sym, Class##Get##Attr, MRB_ARGS_NONE())
 | 
						|
#define MRB_ATTR_W(Class, Attr, sym) mrb_define_method(mrb, klass, sym "=", Class##Set##Attr, MRB_ARGS_REQ(1))
 | 
						|
#define MRB_ATTR_RW(Class, Attr, sym) { MRB_ATTR_R(Class, Attr, sym); MRB_ATTR_W(Class, Attr, sym); }
 | 
						|
 | 
						|
#define INIT_BIND(Klass) \
 | 
						|
{ \
 | 
						|
	klass = defineClass(mrb, #Klass); \
 | 
						|
	mrb_define_class_method(mrb, klass, "_load", Klass##Load, MRB_ARGS_REQ(1)); \
 | 
						|
	serializableBindingInit<Klass>(mrb, klass); \
 | 
						|
	mrb_define_method(mrb, klass, "initialize", Klass##Initialize, MRB_ARGS_REQ(3) | MRB_ARGS_OPT(1)); \
 | 
						|
	mrb_define_method(mrb, klass, "initialize_copy", Klass##InitializeCopy, MRB_ARGS_REQ(1)); \
 | 
						|
	mrb_define_method(mrb, klass, "set", Klass##Set, MRB_ARGS_REQ(3) | MRB_ARGS_OPT(1)); \
 | 
						|
	mrb_define_method(mrb, klass, "==", Klass##Equal, MRB_ARGS_REQ(1)); \
 | 
						|
	mrb_define_method(mrb, klass, "to_s", Klass##Stringify, MRB_ARGS_NONE()); \
 | 
						|
	mrb_define_method(mrb, klass, "inspect", Klass##Stringify, MRB_ARGS_NONE()); \
 | 
						|
}
 | 
						|
 | 
						|
void etcBindingInit(mrb_state *mrb)
 | 
						|
{
 | 
						|
	RClass *klass;
 | 
						|
 | 
						|
	INIT_BIND(Color);
 | 
						|
	MRB_ATTR_RW(Color, Red,   "red"  );
 | 
						|
	MRB_ATTR_RW(Color, Green, "green");
 | 
						|
	MRB_ATTR_RW(Color, Blue,  "blue" );
 | 
						|
	MRB_ATTR_RW(Color, Alpha, "alpha");
 | 
						|
 | 
						|
	INIT_BIND(Tone);
 | 
						|
	MRB_ATTR_RW(Tone, Red,   "red"  );
 | 
						|
	MRB_ATTR_RW(Tone, Green, "green");
 | 
						|
	MRB_ATTR_RW(Tone, Blue,  "blue" );
 | 
						|
	MRB_ATTR_RW(Tone, Gray,  "gray" );
 | 
						|
 | 
						|
	INIT_BIND(Rect);
 | 
						|
	MRB_ATTR_RW(Rect, X,      "x"     );
 | 
						|
	MRB_ATTR_RW(Rect, Y,      "y"     );
 | 
						|
	MRB_ATTR_RW(Rect, Width,  "width" );
 | 
						|
	MRB_ATTR_RW(Rect, Height, "height");
 | 
						|
	mrb_define_method(mrb, klass, "empty", RectEmpty, MRB_ARGS_NONE());
 | 
						|
}
 |