| | |
| | | /* vim: set ts=4 sts=4 sw=4 noet : */ |
| | | #include <stdio.h> |
| | | #include <string.h> |
| | | #include <stdlib.h> |
| | |
| | | cur2=cur1->xmlChildrenNode; |
| | | while(cur2!=NULL){ |
| | | if ((!xmlStrcmp(cur2->name, (const xmlChar *)"Points"))){ |
| | | fprintf(stderr,"Found point data\n"); |
| | | //fprintf(stderr,"Found point data\n"); |
| | | if(vesicle!=NULL) |
| | | parseXMLVertexPosition(vesicle, doc, cur2); |
| | | } |
| | | if ((!xmlStrcmp(cur2->name, (const xmlChar *)"Cells"))){ |
| | | fprintf(stderr,"Found cell(Bonds) data\n"); |
| | | //fprintf(stderr,"Found cell(Bonds) data\n"); |
| | | if(vesicle!=NULL) |
| | | parseXMLBonds(vesicle, doc, cur2); |
| | | } |
| | |
| | | |
| | | /* TODO: filaments */ |
| | | |
| | | fprintf(stderr,"Restoration completed\n"); |
| | | ts_fprintf(stdout,"Restoration completed\n"); |
| | | // write_vertex_xml_file(vesicle,999); |
| | | // vesicle_free(vesicle); |
| | | // exit(0); |
| | |
| | | |
| | | /* this is a parser of additional data in xml */ |
| | | ts_vesicle *parseTrisurfTag(xmlDocPtr doc, xmlNodePtr cur){ |
| | | fprintf(stderr,"Parsing trisurf tag\n"); |
| | | //fprintf(stderr,"Parsing trisurf tag\n"); |
| | | xmlNodePtr child; |
| | | |
| | | #ifdef COMPRESS |
| | |
| | | inflateInit(&infstream); |
| | | inflate(&infstream, Z_NO_FLUSH); |
| | | inflateEnd(&infstream); |
| | | fprintf(stderr,"%lu\n",cLen); |
| | | //fprintf(stderr,"%lu\n",cLen); |
| | | subtree[infstream.total_out]='\0'; //zero terminate string |
| | | fprintf(stderr,"%s\n",subtree); |
| | | //fprintf(stderr,"%s\n",subtree); |
| | | |
| | | free(subtree); |
| | | #endif |
| | |
| | | for(i=0;i<3;i++) vtx[i]=strtok(NULL," "); |
| | | j++; |
| | | } |
| | | fprintf(stderr,"Parsing triangles %s j=%d\n",triangles,j); |
| | | //fprintf(stderr,"Parsing triangles %s j=%d\n",triangles,j); |
| | | |
| | | xmlFree(triangles); |
| | | return TS_SUCCESS; |
| | |
| | | j++; |
| | | for(i=0;i<3;i++) ntria[i]=strtok(NULL," "); |
| | | } |
| | | fprintf(stderr,"Parsing triangle neighbors j=%d\n",j); |
| | | //fprintf(stderr,"Parsing triangle neighbors j=%d\n",j); |
| | | |
| | | xmlFree(triangles); |
| | | return TS_SUCCESS; |
| | |
| | | } |
| | | child=child->next; |
| | | } |
| | | fprintf(stderr,"Vertices position j=%d\n",idx); |
| | | //fprintf(stderr,"Vertices position j=%d\n",idx); |
| | | |
| | | return TS_SUCCESS; |
| | | } |
| | |
| | | //find grafted vtx |
| | | if((vesicle->tape->nmono-1)==(idx-3*(vesicle->vlist->n-2))%(vesicle->tape->nmono)){ |
| | | polyidx=(idx-3*(vesicle->vlist->n-2))/(vesicle->tape->nmono); |
| | | fprintf(stderr,"poly=%d, vertex=%d\n",polyidx,atoi(token[0])); |
| | | //fprintf(stderr,"poly=%d, vertex=%d\n",polyidx,atoi(token[0])); |
| | | vesicle->poly_list->poly[polyidx]->grafted_vtx=vesicle->vlist->vtx[atoi(token[0])]; |
| | | vesicle->vlist->vtx[atoi(token[0])]->grafted_poly=vesicle->poly_list->poly[polyidx]; |
| | | } |
| | |
| | | xmlFree(conname); |
| | | child=child->next; |
| | | } |
| | | fprintf(stderr,"Bond data j=%d\n",idx); |
| | | //fprintf(stderr,"Bond data j=%d\n",idx); |
| | | return TS_SUCCESS; |
| | | } |
| | | |