X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fas3%2Fregistry.h;h=062e5dd66dc8e8600bc3c0fe76fb090783358d52;hb=cad2e08956148922b5a8b8bff8c8dbee884c854b;hp=f0ea362a186d5272815bb783f21d97d24b595c87;hpb=207d9e7c1d108915492ec59cfc3376b30e016b78;p=swftools.git diff --git a/lib/as3/registry.h b/lib/as3/registry.h index f0ea362..062e5dd 100644 --- a/lib/as3/registry.h +++ b/lib/as3/registry.h @@ -1,15 +1,117 @@ +/* registry.h + + Routines for compiling Flash2 AVM2 ABC Actionscript + + Extension module for the rfxswf library. + Part of the swftools package. + + Copyright (c) 2008 Matthias Kramm + + This program 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. + + This program 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 this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + #ifndef __abc_registry_h__ #define __abc_registry_h__ -multiname_t* registry_findclass(const char*package, const char*name); -multiname_t* registry_getanytype(); -multiname_t* registry_getobjectclass(); -multiname_t* registry_getnumberclass(); -multiname_t* registry_getstringclass(); -multiname_t* registry_getintclass(); -multiname_t* registry_getuintclass(); -multiname_t* registry_getbooleanclass(); - -multiname_t* registry_getsuperclass(multiname_t*m); - -multiname_t* registry_getMovieClip(); + +#include "pool.h" + +DECLARE(classinfo); +DECLARE_LIST(classinfo); +DECLARE(memberinfo); + +struct _classinfo { + /* this is very similar to a QNAME */ + U8 access; + U8 flags; + const char*package; + const char*name; + + classinfo_t*superclass; + dict_t members; + classinfo_t*interfaces[]; +}; +char classinfo_equals(classinfo_t*c1, classinfo_t*c2); + +#define MEMBER_SLOT 1 +#define MEMBER_METHOD 2 +struct _memberinfo { + U8 kind; + const char*name; + union { + classinfo_t*return_type; + classinfo_t*type; + }; + classinfo_list_t*params; + int slot; +}; + +extern type_t classinfo_type; +extern type_t function_signature_type; + +void registry_init(); + +classinfo_t* classinfo_register(int access, char*package, char*name, int num_interfaces); +memberinfo_t* memberinfo_register(classinfo_t*cls, const char*name, U8 type); + +// static multinames +classinfo_t* registry_getanytype(); +classinfo_t* registry_getobjectclass(); +classinfo_t* registry_getnumberclass(); +classinfo_t* registry_getstringclass(); +classinfo_t* registry_getintclass(); +classinfo_t* registry_getuintclass(); +classinfo_t* registry_getnullclass(); +classinfo_t* registry_getbooleanclass(); +classinfo_t* registry_getfunctionclass(); +classinfo_t* registry_getMovieClip(); +classinfo_t* registry_getfunctionclass(memberinfo_t*f); + +classinfo_t* registry_findclass(const char*package, const char*name); +memberinfo_t* registry_findmember(classinfo_t*cls, const char*name); + +void registry_fill_multiname(multiname_t*m, namespace_t*n, classinfo_t*c); +multiname_t* classinfo_to_multiname(classinfo_t*cls); + +char registry_isfunctionclass(); +/* convenience functions */ +#define sig2mname(x) classinfo_to_multiname(x) +#define TYPE_ANY registry_getanytype() +#define TYPE_IS_ANY(t) ((t) == registry_getanytype()) +#define TYPE_INT registry_getintclass() +#define TYPE_IS_INT(t) ((t) == registry_getintclass()) +#define TYPE_UINT registry_getuintclass() +#define TYPE_IS_UINT(t) ((t) == registry_getuintclass()) +#define TYPE_NUMBER registry_getnumberclass() +#define TYPE_IS_NUMBER(t) ((t) == registry_getnumberclass()) +#define TYPE_FLOAT registry_getnumberclass() +#define TYPE_IS_FLOAT(t) ((t) == registry_getnumberclass()) +#define TYPE_BOOLEAN registry_getbooleanclass() +#define TYPE_IS_BOOLEAN(t)((t) == registry_getbooleanclass()) +#define TYPE_STRING registry_getstringclass() +#define TYPE_IS_STRING(t) ((t) == registry_getstringclass()) + +#define TYPE_FUNCTION(f) registry_getfunctionclass(f) +#define TYPE_IS_FUNCTION(t) registry_isfunctionclass(t) + +#define TYPE_NULL registry_getnullclass() +#define TYPE_IS_NULL(t) ((t) == registry_getnullclass()) + +#define TYPE_IS_BUILTIN_SIMPLE(type) (TYPE_IS_INT(type) || \ + TYPE_IS_UINT(type) || \ + TYPE_IS_FLOAT(type) || \ + TYPE_IS_BOOLEAN(type) || \ + TYPE_IS_STRING(type)) + + #endif