GithubHelp home page GithubHelp logo

typec's Introduction

typec

C/C++ reflection / visitor generator

Example:

$ typec -f transform.type > transform.type.h

transform.type

extern quat;
extern vec3;

struct Transform
{
	protected:
		vec3 translation;
		quat rotation;
		vec3 scale;
};

transform.type.h

...

typedef struct
{
	vec3 translation;
	quat rotation;
	vec3 scale;
} Transform; //struct 0, total index: 0

typedef enum
{
	k_ETypeTransform = 0,
} k_EType;
...

static int vt_fn_visit_type_0_field_0(Transform *inst, TypeFieldVisitor *visitor, void *ctx)
{
	int changed_count = 0;
	if(visitor->visit_vec3)
	{
		return visitor->visit_vec3(ctx, NULL, (vec3*)&inst->translation, 1);
	}
	else if(visitor->visit)
	{
		return visitor->visit(ctx, NULL, (void*)&inst->translation, sizeof(vec3), 1);
	}
	return changed_count;
}
...

...
static int vt_fn_visit_type_0_(void *data, TypeFieldVisitor *visitor, void *ctx, const char *field_name)
{
	Transform *inst = (Transform*)data;
	int changed_count = 0;
	changed_count += vt_fn_visit_type_0_field_0(inst, visitor, ctx);
	changed_count += vt_fn_visit_type_0_field_1(inst, visitor, ctx);
	changed_count += vt_fn_visit_type_0_field_2(inst, visitor, ctx);
	return changed_count;
}
...

typec's People

Contributors

riicchhaarrd avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.