X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fpython%2Ftags.c;h=f28f1b667b9134f0ef220b1c9d834bd8c5cc01a3;hb=459a2fa9fdbd9f8e41d5911e2aafce21c0fc7225;hp=1550b18846a25c87b91add3efe4df628c5c93fa1;hpb=20b361a8e7ceffe15bee45dc67ca79f729fc7813;p=swftools.git diff --git a/lib/python/tags.c b/lib/python/tags.c index 1550b18..f28f1b6 100644 --- a/lib/python/tags.c +++ b/lib/python/tags.c @@ -83,6 +83,7 @@ static tag_internals_t font_tag = typedef struct _placeobject_internal { SWFPLACEOBJECT* po; + PyObject*character; } placeobject_internal_t; staticforward tag_internals_t placeobject_tag; @@ -96,10 +97,25 @@ static void po_dealloc(tag_internals_t*self) } static int po_parse(tag_internals_t*self) { - placeobject_internal_t*pi = (placeobject_internal_t*)self->data; - /* TODO */ - PyErr_SetString(PyExc_Exception, setError("Font parsing not implemented yet")); - return 0; + placeobject_internal_t*i = (placeobject_internal_t*)self->data; + if(i->po) + return 1; + if(!self->tag) + return 0; + SWFPLACEOBJECT* swfpo = malloc(sizeof(SWFPLACEOBJECT)); + swf_GetPlaceObject(self->tag, swfpo); + i->po = swfpo; + swf_DeleteTag(self->tag);self->tag = 0; + + if(i->po->id) { + i->character = tagmap_id2obj(self->tagmap, i->po->id); + if(i->character) { + Py_INCREF(i->character); + } else { + //PyErr_Clear(); //? + } + } + return 1; } static int po_fillTAG(tag_internals_t*self) { @@ -108,6 +124,33 @@ static int po_fillTAG(tag_internals_t*self) swf_SetPlaceObject(self->tag, pi->po); return 1; } +static PyObject* po_getattr(tag_internals_t*self,char*a) +{ + placeobject_internal_t*i = (placeobject_internal_t*)self->data; + if(!po_parse(self)) + return PY_ERROR("Couldn't parse placeobject"); + if(!strcmp(a, "character")) { + if(!i->character) + return PY_NONE; + Py_INCREF(i->character); //TODO: ?? + return i->character; + } else if(!strcmp(a, "matrix")) { + return f_Matrix2(&i->po->matrix); + } else if(!strcmp(a, "cxform")) { + /* TODO */ + return 0; + } + return 0; +} +static int po_setattr(tag_internals_t*self,char*a, PyObject*obj) +{ + placeobject_internal_t*si = (placeobject_internal_t*)self->data; + if(!strcmp(a, "cxform")) { + /* TODO */ + return 0; + } + return -1; +} static PyObject* po_create(PyObject* self, PyObject* args, PyObject* kwargs,char move) { static char *kwlist[] = {"character", "depth", "matrix", "colortransform", "ratio", "name", "clipdepth", "action", NULL}; @@ -177,8 +220,8 @@ static tag_internals_t placeobject_tag = parse: po_parse, fillTAG: po_fillTAG, dealloc: po_dealloc, - getattr: 0, - setattr: 0, + getattr: po_getattr, + setattr: po_setattr, tagfunctions: 0, datasize: sizeof(placeobject_internal_t), }; @@ -516,6 +559,22 @@ static void image_dealloc(tag_internals_t*self) free(pi->rgba);pi->rgba = 0; } } +static int image_parse(tag_internals_t*self) +{ + image_internal_t*i= (image_internal_t*)self->data; + if(i->rgba) + return 1; + if(!self->tag) + return 0; + + i->rgba = swf_ExtractImage(self->tag, &i->width, &i->height); + i->bpp = 32; + i->isindexed = 0; + i->islossless = 1; + + swf_DeleteTag(self->tag);self->tag = 0; + return 1; +} static int imagetag_getWidth(PyObject* self) { tag_internals_t*itag = tag_getinternals(self); @@ -553,12 +612,24 @@ static PyObject* f_DefineImage(PyObject* self, PyObject* args, PyObject* kwargs) return (PyObject*)tag; } +static PyObject* image_getattr(tag_internals_t*self,char*a) +{ + image_internal_t*i = (image_internal_t*)self->data; + if(!strcmp(a, "image")) { + if(!i->rgba) { + image_parse(self); + } + PyObject* image = rgba_to_image(i->rgba, i->width, i->height); + return image; + } + return 0; +} static tag_internals_t image_tag = { - parse: 0, + parse: image_parse, fillTAG: image_fillTAG, dealloc: image_dealloc, - getattr: 0, + getattr: image_getattr, setattr: 0, tagfunctions: 0, datasize: sizeof(image_internal_t), @@ -580,6 +651,19 @@ static int shape_fillTAG(tag_internals_t*self) swf_SetShape2(self->tag, ti->shape2); return 1; } +static int shape_parse(tag_internals_t*self) +{ + shape_internal_t*i= (shape_internal_t*)self->data; + if(i->shape2) + return 1; + if(!self->tag) + return 0; + SHAPE2* shape2 = malloc(sizeof(SHAPE2)); + swf_ParseDefineShape(self->tag, shape2); + i->shape2 = shape2; + swf_DeleteTag(self->tag);self->tag = 0; + return 1; +} static void shape_dealloc(tag_internals_t*self) { shape_internal_t*pi = (shape_internal_t*)self->data; @@ -685,6 +769,8 @@ static PyObject* f_DefineShape(PyObject* self, PyObject* args, PyObject* kwargs) static PyObject* shape_getfillstyles(PyObject*self, PyObject*args) { tag_internals_t*itag = tag_getinternals(self); + if(!shape_parse(itag)) + return PY_ERROR("Couldn't parse shape"); shape_internal_t*fi = (shape_internal_t*)itag->data; int num = fi->shape2->numfillstyles; return Py_BuildValue("i", num); @@ -692,19 +778,89 @@ static PyObject* shape_getfillstyles(PyObject*self, PyObject*args) static PyObject* shape_getlinestyles(PyObject*self, PyObject*args) { tag_internals_t*itag = tag_getinternals(self); + if(!shape_parse(itag)) + return PY_ERROR("Couldn't parse shape"); shape_internal_t*fi = (shape_internal_t*)itag->data; int num = fi->shape2->numlinestyles; return Py_BuildValue("i", num); } +static PyObject* shape_getfillstyle(PyObject*self, PyObject*args) +{ + tag_internals_t*itag = tag_getinternals(self); + if(!shape_parse(itag)) + return PY_ERROR("Couldn't parse shape"); + shape_internal_t*fi = (shape_internal_t*)itag->data; + int nr = 0; + if(!PyArg_ParseTuple(args, "i", &nr)) + return NULL; + + int num = fi->shape2->numfillstyles; + if(nr < 0 || nr >=num) + return PY_ERROR("fillstyle index out of range"); + return f_FillStyle2(fi->shape2->fillstyles[nr]); +} +static PyObject* shape_getlinestyle(PyObject*self, PyObject*args) +{ + tag_internals_t*itag = tag_getinternals(self); + if(!shape_parse(itag)) + return PY_ERROR("Couldn't parse shape"); + shape_internal_t*fi = (shape_internal_t*)itag->data; + int nr = 0; + if(!PyArg_ParseTuple(args, "i", &nr)) + return NULL; + + int num = fi->shape2->numfillstyles; + if(nr < 0 || nr >=num) + return PY_ERROR("fillstyle index out of range"); + return f_LineStyle3(fi->shape2->linestyles[nr]); +} +static PyObject* shape_setfillstyle(PyObject*self, PyObject*args) +{ + tag_internals_t*itag = tag_getinternals(self); + if(!shape_parse(itag)) + return PY_ERROR("Couldn't parse shape"); + shape_internal_t*fi = (shape_internal_t*)itag->data; + int nr = 0; + PyObject*fs = 0; + if(!PyArg_ParseTuple(args, "iO!", &nr, &FillStyleClass, &fs)) + return NULL; + + int num = fi->shape2->numfillstyles; + if(nr < 0 || nr >=num) + return PY_ERROR("fillstyle index out of range"); + fi->shape2->fillstyles[nr] = fillstyle_getFillStyle(fs); + return PY_NONE; +} +static PyObject* shape_setlinestyle(PyObject*self, PyObject*args) +{ + tag_internals_t*itag = tag_getinternals(self); + if(!shape_parse(itag)) + return PY_ERROR("Couldn't parse shape"); + shape_internal_t*fi = (shape_internal_t*)itag->data; + int nr = 0; + PyObject*ls = 0; + if(!PyArg_ParseTuple(args, "iO!", &nr, &LineStyleClass, &ls)) + return NULL; + + int num = fi->shape2->numlinestyles; + if(nr < 0 || nr >=num) + return PY_ERROR("linestyle index out of range"); + fi->shape2->linestyles[nr] = linestyle_getLineStyle(ls); + return PY_NONE; +} static PyMethodDef shape_methods[] = -{{"fillstyles", shape_getfillstyles, METH_VARARGS, "get's the number of fillstyles"}, - {"linestyles", shape_getlinestyles, METH_VARARGS, "get's the number of linestyles"}, +{{"numfillstyles", shape_getfillstyles, METH_VARARGS, "get's the number of fillstyles"}, + {"numlinestyles", shape_getlinestyles, METH_VARARGS, "get's the number of linestyles"}, + {"getfillstyle", shape_getfillstyle, METH_VARARGS, "get's one fillstyle"}, + {"getlinestyle", shape_getlinestyle, METH_VARARGS, "get's one linestyle"}, + {"setfillstyle", shape_setfillstyle, METH_VARARGS, "set's one fillstyle"}, + {"setlinestyle", shape_setlinestyle, METH_VARARGS, "set's one linestyle"}, {NULL, NULL, 0, NULL} }; static tag_internals_t shape_tag = { - parse: 0, + parse: shape_parse, fillTAG: shape_fillTAG, dealloc: shape_dealloc, getattr: 0, @@ -817,10 +973,10 @@ static PyObject* videostream_addFrame(PyObject*self, PyObject*args, PyObject*kwa static char *kwlist[] = {"image", "quant", "type", NULL}; if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|is", kwlist, &image, &quant, &type)) return NULL; - if(fi->stream->width != image_getWidth(image)) { + if(fi->stream->owidth != image_getWidth(image)) { PyErr_SetString(PyExc_Exception, setError("bad image width %d!=%d", image_getWidth(image), fi->stream->width));return 0; } - if(fi->stream->height != image_getHeight(image)) { + if(fi->stream->oheight != image_getHeight(image)) { PyErr_SetString(PyExc_Exception, setError("bad image width %d!=%d", image_getHeight(image), fi->stream->height));return 0; } PyObject*tag = tag_new(&videoframe_tag); @@ -1001,7 +1157,6 @@ static tag_internals_t videoframe_tag = }; //============================================================================ - static PyMethodDef TagMethods[] = { /* TAGS */ @@ -1018,6 +1173,7 @@ static PyMethodDef TagMethods[] = {"Shape", (PyCFunction)f_DefineShape, METH_KEYWORDS, "Create an SWF Shape Tag."}, {"ShowFrame", (PyCFunction)f_ShowFrame, METH_KEYWORDS, "Create an SWF Show Frame Tag."}, {"Sprite", (PyCFunction)f_Sprite, METH_KEYWORDS, "Create an SWF Sprite Tag."}, + {NULL, NULL, 0, NULL} }; PyMethodDef* tags_getMethods()