Mercurial > MadButterfly
view nodejs/coord.cc @ 560:ce7a35abcb0d Android_Skia
Function to instantiate coord for Javascript
author | Thinker K.F. Li <thinker@branda.to> |
---|---|
date | Mon, 07 Jun 2010 11:47:34 +0800 |
parents | 0ca8437a91fa |
children | 1b6402f07cd4 |
line wrap: on
line source
#include <stdio.h> #include <v8.h> extern "C" { #include "mb.h" #include "mb_X_supp.h" #include "mb_tools.h" #include "X_supp_njs.h" } #include "mbfly_njs.h" #ifndef ASSERT #define ASSERT(x) #endif using namespace v8; static Handle<Value> xnjsmb_coord_get_index(uint32_t index, const AccessorInfo &info) { HandleScope scope; Handle<Object> self; coord_t *coord; co_aix v; if(index < 0 || index >= 6) THROW("Invalid index"); self = info.This(); coord = (coord_t *)UNWRAP(self); v = coord_get_matrix(coord)[index]; return Number::New(v); } static Handle<Value> xnjsmb_coord_set_index(uint32_t index, Local<Value> value, const AccessorInfo &info) { HandleScope scope; Handle<Object> self; Handle<Object> js_rt; redraw_man_t *rdman; coord_t *coord; co_aix v; if(index < 0 || index >= 6) THROW("Invalid Index"); if(!value->IsNumber()) THROW("Invalid value"); self = info.This(); coord = (coord_t *)UNWRAP(self); v = value->NumberValue(); coord_get_matrix(coord)[index] = v; js_rt = GET(self, "mbrt")->ToObject(); rdman = xnjsmb_rt_rdman(js_rt); rdman_coord_changed(rdman, coord); return value; } static Persistent<ObjectTemplate> coord_obj_temp; static void xnjsmb_init_temp(void) { coord_obj_temp = Persistent<ObjectTemplate>(ObjectTemplate::New()); coord_obj_temp->SetIndexedPropertyHandler(xnjsmb_coord_get_index, xnjsmb_coord_set_index); coord_obj_temp->SetInternalFieldCount(1); } /*! \brief Create a coord object associated with the rdman of the runtime. * * Two internal fields, coord and rdman. */ Handle<Value> xnjsmb_coord_new(const Arguments &args) { HandleScope scope; Handle<Object> js_rt; Handle<Object> coord_obj, parent_obj; njs_runtime_t *rt; redraw_man_t *rdman; coord_t *coord, *parent = NULL; int argc; static int init_temp = 0; if(!init_temp) { xnjsmb_init_temp(); init_temp = 1; } argc = args.Length(); if(argc > 1) THROW("Too many arguments (> 1)"); js_rt = args.This(); rt = (njs_runtime_t *)UNWRAP(js_rt); rdman = X_njs_MB_rdman(rt); if(argc == 1) { parent_obj = args[0]->ToObject(); parent = (coord_t *)UNWRAP(parent_obj); } /* * Set Javascript object */ coord = rdman_coord_new(rdman, parent); ASSERT(coord != NULL); coord_obj = coord_obj_temp->NewInstance(); ASSERT(coord_obj != NULL); WRAP(coord_obj, coord); if(parent != NULL) SET(coord_obj, "parent", parent_obj); SET(coord_obj, "mbrt", js_rt); return coord_obj; }