Use Gmprat for Path bounds with TRANSFORM_BEZIERS_TO_PATH
[ipdf/code.git] / src / document.cpp
1 #include "document.h"
2 #include "bezier.h"
3 #include <cstdio>
4 #include <fstream>
5
6 #include "../contrib/pugixml-1.4/src/pugixml.cpp"
7
8 #include "stb_truetype.h"
9
10 using namespace IPDF;
11 using namespace std;
12
13 //TODO: Make this work for variable sized Reals
14
15 // Loads an std::vector<T> of size num_elements from a file.
16 template<typename T>
17 static void LoadStructVector(FILE *src_file, size_t num_elems, std::vector<T>& dest)
18 {
19         size_t structsread = 0;
20         dest.resize(num_elems);
21         structsread = fread(dest.data(), sizeof(T), num_elems, src_file);
22         if (structsread != num_elems)
23                 Fatal("Only read %u structs (expected %u)!", structsread, num_elems);
24 }
25
26 // Saves an std::vector<T> to a file. Size must be saves separately.
27 template<typename T>
28 static void SaveStructVector(FILE *dst_file, std::vector<T>& src)
29 {
30         size_t written = 0;
31         written = fwrite(src.data(), sizeof(T), src.size(), dst_file);
32         if (written != src.size())
33                 Fatal("Only wrote %u structs (expected %u)!", written, src.size());
34 }
35
36 static void WriteChunkHeader(FILE *dst_file, DocChunkTypes type, uint32_t size)
37 {
38         size_t written = 0;
39         written = fwrite(&type, sizeof(type), 1, dst_file);
40         if (written != 1)
41                 Fatal("Could not write Chunk header! (ID)");
42         written = fwrite(&size, sizeof(size), 1, dst_file);
43         if (written != 1)
44                 Fatal("Could not write Chunk header (size)!");
45 }
46
47 static bool ReadChunkHeader(FILE *src_file, DocChunkTypes& type, uint32_t& size)
48 {
49         if (fread(&type, sizeof(DocChunkTypes), 1, src_file) != 1)
50                 return false;
51         if (fread(&size, sizeof(uint32_t), 1, src_file) != 1)
52                 return false;
53         return true;
54 }
55
56 void Document::Save(const string & filename)
57 {
58         Debug("Saving document to file \"%s\"...", filename.c_str());
59         FILE * file = fopen(filename.c_str(), "w");
60         if (file == NULL)
61                 Fatal("Couldn't open file \"%s\" - %s", filename.c_str(), strerror(errno));
62
63         size_t written;
64         Debug("Number of objects (%u)...", ObjectCount());
65         WriteChunkHeader(file, CT_NUMOBJS, sizeof(m_count));
66         written = fwrite(&m_count, sizeof(m_count), 1, file);
67         if (written != 1)
68                 Fatal("Failed to write number of objects!");
69
70         Debug("Object types...");
71         WriteChunkHeader(file, CT_OBJTYPES, m_objects.types.size() * sizeof(ObjectType));
72         SaveStructVector<ObjectType>(file, m_objects.types);
73
74         Debug("Object bounds...");
75         WriteChunkHeader(file, CT_OBJBOUNDS, m_objects.bounds.size() * sizeof(Rect));
76         SaveStructVector<Rect>(file, m_objects.bounds);
77
78         Debug("Object data indices...");
79         WriteChunkHeader(file, CT_OBJINDICES, m_objects.data_indices.size() * sizeof(unsigned));
80         SaveStructVector<unsigned>(file, m_objects.data_indices);
81         
82         Debug("Bezier data...");
83         WriteChunkHeader(file, CT_OBJBEZIERS, m_objects.beziers.size() * sizeof(uint8_t));
84         SaveStructVector<Bezier>(file, m_objects.beziers);
85
86         int err = fclose(file);
87         if (err != 0)
88                 Fatal("Failed to close file \"%s\" - %s", filename.c_str(), strerror(err));
89
90         Debug("Successfully saved %u objects to \"%s\"", ObjectCount(), filename.c_str());
91 }
92
93 #ifndef QUADTREE_DISABLED
94
95 void Document::GenBaseQuadtree()
96 {
97         m_quadtree.nodes.push_back(QuadTreeNode{QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, QTC_UNKNOWN, 0, ObjectCount(), -1});
98         m_quadtree.root_id = 0;
99 }
100
101 int Document::ClipObjectToQuadChild(int object_id, QuadTreeNodeChildren type)
102 {
103         switch (m_objects.types[object_id])
104         {
105         case RECT_FILLED:
106         case RECT_OUTLINE:
107         case PATH:
108                 {
109                 Rect obj_bounds = TransformToQuadChild(m_objects.bounds[object_id], type);
110                 if (obj_bounds.x < 0)
111                 {
112                         obj_bounds.w += obj_bounds.x;
113                         obj_bounds.x = 0;
114                 }
115                 if (obj_bounds.y < 0)
116                 {
117                         obj_bounds.h += obj_bounds.y;
118                         obj_bounds.y = 0;
119                 }
120                 if (obj_bounds.x + obj_bounds.w > 1)
121                 {
122                         obj_bounds.w += (1 - (obj_bounds.x + obj_bounds.w));
123                 }
124                 if (obj_bounds.y + obj_bounds.h > 1)
125                 {
126                         obj_bounds.h += (1 - (obj_bounds.y + obj_bounds.h));
127                 }
128                 m_objects.bounds.push_back(obj_bounds);
129                 m_objects.types.push_back(m_objects.types[object_id]);
130                 m_objects.data_indices.push_back(m_objects.data_indices[object_id]);
131                 return 1;
132                 }
133         case BEZIER:
134                 {
135                 // If we're entirely within the quadtree node, no clipping need occur.
136                 if (ContainedInQuadChild(m_objects.bounds[object_id], type))
137                 {
138                         m_objects.bounds.push_back(TransformToQuadChild(m_objects.bounds[object_id], type));
139                         m_objects.types.push_back(m_objects.types[object_id]);
140                         m_objects.data_indices.push_back(m_objects.data_indices[object_id]);
141                         return 1;
142                 }
143                 Rect clip_bezier_bounds = TransformRectCoordinates(m_objects.bounds[object_id], TransformFromQuadChild(Rect{0,0,1,1}, type)); 
144                 std::vector<Bezier> new_curves = m_objects.beziers[m_objects.data_indices[object_id]].ClipToRectangle(clip_bezier_bounds);
145                 for (size_t i = 0; i < new_curves.size(); ++i)
146                 {
147                         Rect new_bounds = TransformToQuadChild(m_objects.bounds[object_id], type);
148                         Bezier new_curve_data = new_curves[i].ToAbsolute(TransformToQuadChild(m_objects.bounds[object_id],type));
149                         new_bounds = new_curve_data.SolveBounds();
150                         Debug("New bounds: %s", new_bounds.Str().c_str());
151                         new_curve_data = new_curve_data.ToRelative(new_bounds);
152                         unsigned index = AddBezierData(new_curve_data);
153                         m_objects.bounds.push_back(new_bounds);
154                         m_objects.types.push_back(BEZIER);
155                         m_objects.data_indices.push_back(index);
156                 }
157                 return new_curves.size();
158                 }
159         default:
160                 Debug("Adding %s -> %s", m_objects.bounds[object_id].Str().c_str(), TransformToQuadChild(m_objects.bounds[object_id], type).Str().c_str());
161                 m_objects.bounds.push_back(TransformToQuadChild(m_objects.bounds[object_id], type));
162                 m_objects.types.push_back(m_objects.types[object_id]);
163                 m_objects.data_indices.push_back(m_objects.data_indices[object_id]);
164                 return 1;
165         }
166         return 0;
167 }
168 QuadTreeIndex Document::GenQuadChild(QuadTreeIndex parent, QuadTreeNodeChildren type)
169 {
170         QuadTreeIndex new_index = m_quadtree.nodes.size();
171         Debug("-------------- Generating Quadtree Node %d (parent %d) ----------------------", new_index, parent);
172         m_quadtree.nodes.push_back(QuadTreeNode{QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, parent, type, 0, 0, -1});
173
174         m_quadtree.nodes[new_index].object_begin = m_objects.bounds.size();
175         for (unsigned i = m_quadtree.nodes[parent].object_begin; i < m_quadtree.nodes[parent].object_end; ++i)
176         {
177                 if (IntersectsQuadChild(m_objects.bounds[i], type))
178                 {
179                         m_count += ClipObjectToQuadChild(i, type);
180                 }
181         }
182         m_quadtree.nodes[new_index].object_end = m_objects.bounds.size();
183         switch (type)
184         {
185                 case QTC_TOP_LEFT:
186                         m_quadtree.nodes[parent].top_left = new_index;
187                         break;
188                 case QTC_TOP_RIGHT:
189                         m_quadtree.nodes[parent].top_right = new_index;
190                         break;
191                 case QTC_BOTTOM_LEFT:
192                         m_quadtree.nodes[parent].bottom_left = new_index;
193                         break;
194                 case QTC_BOTTOM_RIGHT:
195                         m_quadtree.nodes[parent].bottom_right = new_index;
196                         break;
197                 default:
198                         Fatal("Tried to add a QuadTree child of invalid type!");
199         }
200         return new_index;
201 }
202
203 // Reparent a quadtree node, making it the "type" child of a new node.
204 QuadTreeIndex Document::GenQuadParent(QuadTreeIndex child, QuadTreeNodeChildren type)
205 {
206         QuadTreeIndex new_index = m_quadtree.nodes.size();
207         m_quadtree.nodes.push_back(QuadTreeNode{QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, -1, QTC_UNKNOWN, 0, 0, -1});
208
209         m_quadtree.nodes[new_index].object_begin = m_objects.bounds.size();
210         for (unsigned i = m_quadtree.nodes[child].object_begin; i < m_quadtree.nodes[child].object_end; ++i)
211         {
212                 m_objects.bounds.push_back(TransformFromQuadChild(m_objects.bounds[i], type));
213                 m_objects.types.push_back(m_objects.types[i]);
214                 m_objects.data_indices.push_back(m_objects.data_indices[i]);
215                 m_count++;
216         }
217         m_quadtree.nodes[new_index].object_end = m_objects.bounds.size();
218         switch (type)
219         {
220                 case QTC_TOP_LEFT:
221                         m_quadtree.nodes[new_index].top_left = child;
222                         break;
223                 case QTC_TOP_RIGHT:
224                         m_quadtree.nodes[new_index].top_right = child;
225                         break;
226                 case QTC_BOTTOM_LEFT:
227                         m_quadtree.nodes[new_index].bottom_left = child;
228                         break;
229                 case QTC_BOTTOM_RIGHT:
230                         m_quadtree.nodes[new_index].bottom_right = child;
231                         break;
232                 default:
233                         Fatal("Tried to add a QuadTree child of invalid type!");
234         }
235         return new_index;
236 }
237
238 #endif
239
240 void Document::Load(const string & filename)
241 {
242         m_objects.bounds.clear();
243         m_count = 0;
244         if (filename == "")
245         {
246                 Debug("Loaded empty document.");
247                 return;
248         }
249         Debug("Loading document from file \"%s\"", filename.c_str());
250         FILE * file = fopen(filename.c_str(), "r");
251         if (file == NULL)
252                 Fatal("Couldn't open file \"%s\"", filename.c_str(), strerror(errno));
253
254         size_t read;
255
256         DocChunkTypes chunk_type;
257         uint32_t chunk_size;
258         while (ReadChunkHeader(file, chunk_type, chunk_size))
259         {
260                 switch(chunk_type)
261                 {
262                 case CT_NUMOBJS:
263                         read = fread(&m_count, sizeof(m_count), 1, file);
264                         if (read != 1)
265                                 Fatal("Failed to read number of objects!");
266                         Debug("Number of objects: %u", ObjectCount());
267                         break;
268                 case CT_OBJTYPES:
269                         Debug("Object types...");
270                         LoadStructVector<ObjectType>(file, chunk_size/sizeof(ObjectType), m_objects.types);
271                         break;
272                 case CT_OBJBOUNDS:
273                         Debug("Object bounds...");
274                         LoadStructVector<Rect>(file, chunk_size/sizeof(Rect), m_objects.bounds);
275                         break;
276                 case CT_OBJINDICES:
277                         Debug("Object data indices...");
278                         LoadStructVector<unsigned>(file, chunk_size/sizeof(unsigned), m_objects.data_indices);
279                         break;
280                 case CT_OBJBEZIERS:
281                         Debug("Bezier data...");
282                         LoadStructVector<Bezier>(file, chunk_size/sizeof(Bezier), m_objects.beziers);
283                         break;
284                         
285                 case CT_OBJPATHS:
286                         Debug("Path data...");
287                         Warn("Not handled because lazy");
288                         break;
289                 }
290         }
291         Debug("Successfully loaded %u objects from \"%s\"", ObjectCount(), filename.c_str());
292 #ifndef QUADTREE_DISABLED
293         if (m_quadtree.root_id == QUADTREE_EMPTY)
294         {
295                 GenBaseQuadtree();
296         }
297 #endif
298 }
299
300 unsigned Document::AddPath(unsigned start_index, unsigned end_index, const Colour & fill, const Colour & stroke)
301 {
302         Path path(m_objects, start_index, end_index, fill, stroke);
303         unsigned data_index = AddPathData(path);
304         Rect bounds = path.SolveBounds(m_objects);
305         unsigned result = Add(PATH, bounds,data_index);
306         m_objects.paths[data_index].m_index = result;
307         //Debug("Added path %u -> %u (%u objects) colour {%u,%u,%u,%u}, stroke {%u,%u,%u,%u}", start_index, end_index, (end_index - start_index), fill.r, fill.g, fill.b, fill.a, stroke.r, stroke.g, stroke.b, stroke.a);
308         return result;
309 }
310
311 /**
312  * Add a Bezier using Absolute coords
313  */
314 unsigned Document::AddBezier(const Bezier & bezier)
315 {
316         Rect bounds = bezier.SolveBounds();
317         Bezier data = bezier.ToRelative(bounds); // Relative
318         if (data.ToAbsolute(bounds) != bezier)
319         {
320                 Warn("%s != %s", data.ToAbsolute(bounds).Str().c_str(),
321                         bezier.Str().c_str());
322                 Warn("ToAbsolute on ToRelative does not give original Bezier");
323         }
324         unsigned index = AddBezierData(data);
325         return Add(BEZIER, bounds, index);
326 }
327
328 unsigned Document::Add(ObjectType type, const Rect & bounds, unsigned data_index, QuadTreeIndex qti)
329 {
330         m_objects.types.push_back(type);
331         m_objects.bounds.push_back(bounds);
332         m_objects.data_indices.push_back(data_index);
333 #ifndef QUADTREE_DISABLED
334         if (qti != -1)
335         {
336                 if (m_count == m_quadtree.nodes[qti].object_end+1)
337                 {
338                         m_quadtree.nodes[qti].object_end++;
339                 }
340                 else
341                 {
342                         QuadTreeIndex overlay = m_quadtree.nodes.size();
343                         m_quadtree.nodes.push_back(m_quadtree.nodes[qti]);
344                         m_quadtree.nodes[overlay].object_begin = m_count;
345                         m_quadtree.nodes[overlay].object_end = m_count+1;
346                         m_quadtree.nodes[qti].next_overlay = overlay;
347                 }
348         }
349 #endif
350         return (m_count++); // Why can't we just use the size of types or something?
351 }
352
353 unsigned Document::AddBezierData(const Bezier & bezier)
354 {
355         m_objects.beziers.push_back(bezier);
356         return m_objects.beziers.size()-1;
357 }
358
359 unsigned Document::AddPathData(const Path & path)
360 {
361         m_objects.paths.push_back(path);
362         return m_objects.paths.size()-1;
363 }
364
365 void Document::DebugDumpObjects()
366 {
367         Debug("Objects for Document %p are:", this);
368         for (unsigned id = 0; id < ObjectCount(); ++id)
369         {
370                 Debug("%u. \tType: %u\tBounds: %s", id, m_objects.types[id], m_objects.bounds[id].Str().c_str());
371         }
372 }
373
374 bool Document::operator==(const Document & equ) const
375 {
376         return (ObjectCount() == equ.ObjectCount() 
377                 && memcmp(m_objects.bounds.data(), equ.m_objects.bounds.data(), ObjectCount() * sizeof(Rect)) == 0
378                 && memcmp(m_objects.data_indices.data(), equ.m_objects.data_indices.data(), ObjectCount() * sizeof(unsigned)) == 0
379                 && memcmp(m_objects.beziers.data(), equ.m_objects.beziers.data(), m_objects.beziers.size() * sizeof(Bezier)) == 0);
380 }
381
382
383
384 // Behold my amazing tokenizing abilities
385 static string & GetToken(const string & d, string & token, unsigned & i, const string & delims = "()[],{}<>;:=")
386 {
387         token.clear();
388         while (i < d.size() && iswspace(d[i]))
389         {
390                 ++i;
391         }
392         
393         while (i < d.size())
394         {
395                 if (iswspace(d[i]) || strchr(delims.c_str(),d[i]) != NULL)
396                 {
397                         if (token.size() == 0 && !iswspace(d[i]))
398                         {
399                                 token += d[i++];
400                         }
401                         break;  
402                 }
403                 token += d[i++];
404         }
405         //Debug("Got token \"%s\"", token.c_str());
406         return token;
407 }
408
409 static void GetXYPair(const string & d, Real & x, Real & y, unsigned & i,const string & delims = "()[],{}<>;:=")
410 {
411         string token("");
412         while (GetToken(d, token, i, delims) == ",");
413         x = RealFromStr(token);
414         if (GetToken(d, token, i, delims) != ",")
415         {
416                 Fatal("Expected \",\" seperating x,y pair");
417         }
418         y = RealFromStr(GetToken(d,token,i,delims));
419 }
420
421 static bool GetKeyValuePair(const string & d, string & key, string & value, unsigned & i, const string & delims = "()[],{}<>;:=")
422 {
423         key = "";
424         string token;
425         while (GetToken(d, token, i, delims) == ":" || token == ";");
426         key = token;
427         if (GetToken(d, token, i, delims) != ":")
428         {
429                 Error("Expected \":\" seperating key:value pair");
430                 return false;
431         }
432         value = "";
433         GetToken(d, value, i, delims);
434         return true;
435 }
436
437 static void TransformXYPair(Real & x, Real & y, const SVGMatrix & transform)
438 {
439         Real x0(x);
440         x = transform.a * x + transform.c * y + transform.e;
441         y = transform.b * x0 + transform.d * y + transform.f;
442 }
443
444 void Document::ParseSVGTransform(const string & s, SVGMatrix & transform)
445 {
446         //Debug("Parsing transform %s", s.c_str());
447         string token;
448         string command;
449         unsigned i = 0;
450         
451         while (i < s.size())
452         {
453                 GetToken(s, command, i);
454                 if (command == "," || command == "" || command == ":")
455                 {
456                         if (i < s.size())
457                                 GetToken(s, command, i);
458                         else
459                                 return;
460                 }
461                 //Debug("Token is \"%s\"", command.c_str());
462         
463                 SVGMatrix delta = {1,0,0,0,1,0};
464         
465         
466                 assert(GetToken(s,token, i) == "(");
467                 if (command == "translate")
468                 {
469                         GetXYPair(s, delta.e, delta.f, i);
470                         assert(GetToken(s,token, i) == ")");    
471                 }
472                 else if (command == "matrix")
473                 {
474                         GetXYPair(s, delta.a, delta.b,i);
475                         GetXYPair(s, delta.c, delta.d,i);
476                         GetXYPair(s, delta.e, delta.f,i);
477                         assert(GetToken(s,token, i) == ")");    
478                 }
479                 else if (command == "scale")
480                 {
481                         delta.a = RealFromStr(GetToken(s,token,i));
482                         GetToken(s, token, i);
483                         if (token == ",")
484                         {
485                                 delta.d = RealFromStr(GetToken(s,token,i));
486                                 assert(GetToken(s, token, i) == ")");
487                         }
488                         else
489                         {
490                                 delta.d = delta.a;
491                                 assert(token == ")");
492                         }
493                         
494                 }
495                 else
496                 {
497                         Warn("Unrecognised transform \"%s\", using identity", command.c_str());
498                 }
499         
500                 //Debug("Old transform is {%f,%f,%f,%f,%f,%f}", transform.a, transform.b, transform.c, transform.d,transform.e,transform.f);
501                 //Debug("Delta transform is {%f,%f,%f,%f,%f,%f}", delta.a, delta.b, delta.c, delta.d,delta.e,delta.f);
502         
503                 SVGMatrix old(transform);
504                 transform.a = old.a * delta.a + old.c * delta.b;
505                 transform.c = old.a * delta.c + old.c * delta.d;
506                 transform.e = old.a * delta.e + old.c * delta.f + old.e;
507         
508                 transform.b = old.b * delta.a + old.d * delta.b;
509                 transform.d = old.b * delta.c + old.d * delta.d;
510                 transform.f = old.b * delta.e + old.d * delta.f + old.f;
511         
512                 //Debug("New transform is {%f,%f,%f,%f,%f,%f}", transform.a, transform.b, transform.c, transform.d,transform.e,transform.f);
513         }
514 }
515
516 inline Colour ParseColourString(const string & colour_str)
517 {
518         Colour c(0,0,0,0);
519         if (colour_str == "red")
520                 c = {255,0,0,255};
521         else if (colour_str == "blue")
522                 c = {0,0,255,255};
523         else if (colour_str == "green")
524                 c = {0,255,0,255};
525         else if (colour_str == "black")
526                 c = {0,0,0,255};
527         else if (colour_str == "white")
528                 c = {255,255,255,255};
529         else if (colour_str.size() == 7 && colour_str[0] == '#')
530         {
531                 //Debug("Parse colour string: \"%s\"", colour_str.c_str());
532                 char comp[3] = {colour_str[1], colour_str[2], '\0'};
533                 c.r = strtoul(comp, NULL, 16);
534                 comp[0] = colour_str[3]; comp[1] = colour_str[4];
535                 c.g = strtoul(comp, NULL, 16);
536                 comp[0] = colour_str[5]; comp[1] = colour_str[6];
537                 c.b = strtoul(comp, NULL, 16);
538                 c.a = 255;
539                 //Debug("Colour is: %u, %u, %u, %u", c.r, c.g, c.b, c.a);
540         }
541         return c;
542 }
543
544 void Document::ParseSVGNode(pugi::xml_node & root, SVGMatrix & parent_transform)
545 {
546         //Debug("Parse node <%s>", root.name());
547
548         
549         // Centre the SVGs
550         if (strcmp(root.name(),"svg") == 0)
551         {
552                 Real ww = RealFromStr(root.attribute("width").as_string());
553                 Real hh = RealFromStr(root.attribute("height").as_string());
554                 parent_transform.e -= parent_transform.a * ww/Real(2);
555                 parent_transform.f -= parent_transform.d * hh/Real(2);
556         }
557         
558         for (pugi::xml_node child = root.first_child(); child; child = child.next_sibling())
559         {
560                 SVGMatrix transform(parent_transform);  
561                 pugi::xml_attribute attrib_trans = child.attribute("transform");
562                 if (!attrib_trans.empty())
563                 {
564                         ParseSVGTransform(attrib_trans.as_string(), transform);
565                 }
566                 
567                 
568                 
569                 if (strcmp(child.name(), "svg") == 0 || strcmp(child.name(),"g") == 0
570                         || strcmp(child.name(), "group") == 0)
571                 {
572                         
573                         ParseSVGNode(child, transform);
574                         continue;
575                 }
576                 else if (strcmp(child.name(), "path") == 0)
577                 {
578                         string d = child.attribute("d").as_string();
579                         //Debug("Path data attribute is \"%s\"", d.c_str());
580                         bool closed = false;
581                         pair<unsigned, unsigned> range = ParseSVGPathData(d, transform, closed);
582                         if (true && range.first < m_count && range.second < m_count)//(closed)
583                         {
584                                 
585                                 string colour_str("");
586                                 map<string, string> style;
587                                 if (child.attribute("style"))
588                                 {
589                                         ParseSVGStyleData(child.attribute("style").as_string(), style);
590                                 }
591                                 
592                                 // Determine shading colour
593                                 if (child.attribute("fill"))
594                                 {
595                                         colour_str = child.attribute("fill").as_string();
596                                 }
597                                 else if (style.find("fill") != style.end())
598                                 {
599                                         colour_str = style["fill"];
600                                 }
601                                 Colour fill = ParseColourString(colour_str);
602                                 Colour stroke = fill;
603                         
604                                 if (child.attribute("stroke"))
605                                 {
606                                         colour_str = child.attribute("stroke").as_string();
607                                         stroke = ParseColourString(colour_str);
608                                 }
609                                 else if (style.find("stroke") != style.end())
610                                 {
611                                         colour_str = style["stroke"];
612                                         stroke = ParseColourString(colour_str);
613                                 }
614                                 
615                                 
616                                 // Determin shading alpha
617                                 if (child.attribute("fill-opacity"))
618                                 {
619                                         fill.a = 255*child.attribute("fill-opacity").as_float();
620                                 }
621                                 else if (style.find("fill-opacity") != style.end())
622                                 {
623                                         fill.a = 255*strtod(style["fill-opacity"].c_str(), NULL);
624                                 }
625                                 if (child.attribute("stroke-opacity"))
626                                 {
627                                         stroke.a = 255*child.attribute("stroke-opacity").as_float();
628                                 }
629                                 else if (style.find("stroke-opacity") != style.end())
630                                 {
631                                         stroke.a = 255*strtod(style["stroke-opacity"].c_str(), NULL);
632                                 }
633                                 AddPath(range.first, range.second, fill, stroke);
634                         }
635                         
636                 }
637                 else if (strcmp(child.name(), "line") == 0)
638                 {
639                         Real x0(child.attribute("x1").as_float());
640                         Real y0(child.attribute("y1").as_float());
641                         Real x1(child.attribute("x2").as_float());
642                         Real y1(child.attribute("y2").as_float());
643                         TransformXYPair(x0,y0,transform);
644                         TransformXYPair(x1,y1,transform);
645                         AddBezier(Bezier(x0,y0,x1,y1,x1,y1,x1,y1));
646                 }
647                 else if (strcmp(child.name(), "rect") == 0)
648                 {
649                         Real coords[4];
650                         const char * attrib_names[] = {"x", "y", "width", "height"};
651                         for (size_t i = 0; i < 4; ++i)
652                                 coords[i] = child.attribute(attrib_names[i]).as_float();
653                         
654                         Real x2(coords[0]+coords[2]);
655                         Real y2(coords[1]+coords[3]);
656                         TransformXYPair(coords[0],coords[1],transform); // x, y, transform
657                         TransformXYPair(x2,y2,transform);
658                         coords[2] = x2 - coords[0];
659                         coords[3] = y2 - coords[1];
660                         
661                         bool outline = !(child.attribute("fill") && strcmp(child.attribute("fill").as_string(),"none") != 0);
662                         Add(outline?RECT_OUTLINE:RECT_FILLED, Rect(coords[0], coords[1], coords[2], coords[3]),0);
663                 }
664                 else if (strcmp(child.name(), "circle") == 0)
665                 {
666                         Real cx = child.attribute("cx").as_float();
667                         Real cy = child.attribute("cy").as_float();
668                         Real r = child.attribute("r").as_float();
669                         
670                         Real x = (cx - r);
671                         Real y = (cy - r);
672                         TransformXYPair(x,y,transform);
673                         Real w = Real(2)*r*transform.a; // width scales
674                         Real h = Real(2)*r*transform.d; // height scales
675                         
676                         
677                         Rect rect(x,y,w,h);
678                         Add(CIRCLE_FILLED, rect,0);
679                         Debug("Added Circle %s", rect.Str().c_str());                   
680                 }
681                 else if (strcmp(child.name(), "text") == 0)
682                 {
683                         Real x = child.attribute("x").as_float();
684                         Real y = child.attribute("y").as_float();
685                         TransformXYPair(x,y,transform);
686                         Debug("Add text \"%s\"", child.child_value());
687                         AddText(child.child_value(), 0.05, x, y);
688                 }
689         }
690 }
691
692 void Document::ParseSVGStyleData(const string & style, map<string, string> & results)
693 {
694         unsigned i = 0;
695         string key;
696         string value;
697         while (i < style.size() && GetKeyValuePair(style, key, value, i))
698         {
699                 results[key] = value;
700         }
701 }
702
703 /**
704  * Parse an SVG string into a rectangle
705  */
706 void Document::ParseSVG(const string & input, const Rect & bounds)
707 {
708         using namespace pugi;
709         
710         xml_document doc_xml;
711         xml_parse_result result = doc_xml.load(input.c_str());
712         
713         if (!result)
714                 Error("Couldn't parse SVG input - %s", result.description());
715                 
716         Debug("Loaded XML - %s", result.description());
717         SVGMatrix transform = {bounds.w, 0,bounds.x, 0,bounds.h,bounds.y};
718         ParseSVGNode(doc_xml, transform);
719 }
720
721 /**
722  * Load an SVG into a rectangle
723  */
724 void Document::LoadSVG(const string & filename, const Rect & bounds)
725 {
726         using namespace pugi;
727         
728         xml_document doc_xml;
729         ifstream input(filename.c_str(), ios_base::in);
730         xml_parse_result result = doc_xml.load(input);
731         
732         if (!result)
733                 Error("Couldn't load \"%s\" - %s", filename.c_str(), result.description());
734                 
735         Debug("Loaded XML from \"%s\" - %s", filename.c_str(), result.description());
736         
737         input.close();
738                                                 // a c e, b d f
739         SVGMatrix transform = {bounds.w,0 ,bounds.x, 0,bounds.h,bounds.y};
740         ParseSVGNode(doc_xml, transform);
741 }
742
743
744
745 // Fear the wrath of the tokenizing svg data
746 // Seriously this isn't really very DOM-like at all is it?
747 pair<unsigned, unsigned> Document::ParseSVGPathData(const string & d, const SVGMatrix & transform, bool & closed)
748 {
749         closed = false;
750         Real x[4] = {0,0,0,0};
751         Real y[4] = {0,0,0,0};
752         
753         string token("");
754         string command("m");
755         
756         Real x0(0);
757         Real y0(0);
758         
759         unsigned i = 0;
760         unsigned prev_i = 0;
761         
762         bool start = false;
763         
764
765         static string delims("()[],{}<>;:=LlHhVvmMqQzZcC");
766
767         pair<unsigned, unsigned> range(m_count, m_count);
768         
769         while (i < d.size() && GetToken(d, token, i, delims).size() > 0)
770         {
771                 if (isalpha(token[0]))
772                         command = token;
773                 else
774                 {
775                         i = prev_i; // hax
776                         if(command == "")
777                                 command = "L";
778                 }
779                 
780                 bool relative = islower(command[0]);
781                         
782                 if (command == "m" || command == "M")
783                 {
784                         //Debug("Construct moveto command");
785                         Real dx = RealFromStr(GetToken(d,token,i,delims));
786                         assert(GetToken(d,token,i,delims) == ",");
787                         Real dy = RealFromStr(GetToken(d,token,i,delims));
788                         
789                         x[0] = (relative) ? x[0] + dx : dx;
790                         y[0] = (relative) ? y[0] + dy : dy;
791                         
792                         x0 = x[0];
793                         y0 = y[0];
794                         //Debug("mmoveto %f,%f", Float(x[0]),Float(y[0]));
795                         command = (command == "m") ? "l" : "L";
796                 }
797                 else if (command == "c" || command == "C" || command == "q" || command == "Q")
798                 {
799                         //Debug("Construct curveto command");
800                         Real dx = RealFromStr(GetToken(d,token,i,delims));
801                         assert(GetToken(d,token,i,delims) == ",");
802                         Real dy = RealFromStr(GetToken(d,token,i,delims));
803                         
804                         x[1] = (relative) ? x[0] + dx : dx;
805                         y[1] = (relative) ? y[0] + dy : dy;
806                         
807                         dx = RealFromStr(GetToken(d,token,i,delims));
808                         assert(GetToken(d,token,i,delims) == ",");
809                         dy = RealFromStr(GetToken(d,token,i,delims));
810                         
811                         x[2] = (relative) ? x[0] + dx : dx;
812                         y[2] = (relative) ? y[0] + dy : dy;
813                         
814                         if (command != "q" && command != "Q")
815                         {
816                                 dx = RealFromStr(GetToken(d,token,i,delims));
817                                 assert(GetToken(d,token,i,delims) == ",");
818                                 dy = RealFromStr(GetToken(d,token,i,delims));
819                                 x[3] = (relative) ? x[0] + dx : dx;
820                                 y[3] = (relative) ? y[0] + dy : dy;
821                         }
822                         else
823                         {
824                                 x[3] = x[2];
825                                 y[3] = y[2];
826                                 Real old_x1(x[1]), old_y1(y[1]);
827                                 x[1] = x[0] + Real(2) * (old_x1 - x[0])/ Real(3);
828                                 y[1] = y[0] + Real(2) * (old_y1 - y[0])/ Real(3);
829                                 x[2] = x[3] + Real(2) * (old_x1 - x[3])/ Real(3);
830                                 y[2] = y[3] + Real(2) * (old_y1 - y[3])/ Real(3);
831                         }
832                         
833                         Real x3(x[3]);
834                         Real y3(y[3]);
835                         for (int j = 0; j < 4; ++j)
836                                 TransformXYPair(x[j],y[j], transform);
837
838                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[2],y[2],x[3],y[3]));
839                         
840                         //Debug("[%u] curveto %f,%f %f,%f %f,%f", index, Float(x[1]),Float(y[1]),Float(x[2]),Float(y[2]),Float(x[3]),Float(y[3]));
841                         
842                         x[0] = x3;
843                         y[0] = y3;
844
845                         
846                 }
847                 else if (command == "l" || command == "L" || command == "h" || command == "H" || command == "v" || command == "V")
848                 {
849                         //Debug("Construct lineto command, relative %d", relative);
850                 
851                         Real dx = RealFromStr(GetToken(d,token,i,delims));
852                         Real dy = 0;
853                         if (command == "l" || command == "L")
854                         {
855                                 assert(GetToken(d,token,i,delims) == ",");
856                                 dy = RealFromStr(GetToken(d,token,i,delims));
857                         }
858                         else if (command == "v" || command == "V")
859                         {
860                                 swap(dx,dy);
861                         }
862                         
863                         x[1] = (relative) ? x[0] + dx : dx;
864                         y[1] = (relative) ? y[0] + dy : dy;
865                         if (command == "v" || command == "V")
866                         {
867                                 x[1] = x[0];
868                         }
869                         else if (command == "h" || command == "H")
870                         {
871                                 y[1] = y[0];
872                         }
873                         
874                         Real x1(x[1]);
875                         Real y1(y[1]);
876                         
877                         TransformXYPair(x[0],y[0],transform);
878                         TransformXYPair(x[1],y[1],transform);
879
880
881                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[1],y[1],x[1],y[1]));
882                         
883                         //Debug("[%u] lineto %f,%f %f,%f", index, Float(x[0]),Float(y[0]),Float(x[1]),Float(y[1]));
884                         
885                         x[0] = x1;
886                         y[0] = y1;
887
888                 }
889                 else if (command == "z" || command == "Z")
890                 {
891                         //Debug("Construct returnto command");
892                         x[1] = x0;
893                         y[1] = y0;
894                         x[2] = x0;
895                         y[2] = y0;
896                         x[3] = x0;
897                         y[3] = y0;
898                         
899                         Real x3(x[3]);
900                         Real y3(y[3]);
901                         for (int j = 0; j < 4; ++j)
902                                 TransformXYPair(x[j],y[j], transform);
903
904                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[2],y[2],x[3],y[3]));
905                         //Debug("[%u] returnto %f,%f %f,%f", index, Float(x[0]),Float(y[0]),Float(x[1]),Float(y[1]));
906                         
907                         x[0] = x3;
908                         y[0] = y3;
909                         command = "m";
910                         closed = true;
911                 }
912                 else
913                 {
914                         Warn("Unrecognised command \"%s\", set to \"m\"", command.c_str());
915                         command = "m";
916                 }
917                 
918                 if (!start)
919                 {
920                         x0 = x[0];
921                         y0 = y[0];
922                         start = true;
923                 }
924                 prev_i = i;
925         }
926         return range;
927 }
928
929 void Document::SetFont(const string & font_filename)
930 {
931         if (m_font_data != NULL)
932         {
933                 free(m_font_data);
934         }
935         
936         FILE *font_file = fopen(font_filename.c_str(), "rb");
937         fseek(font_file, 0, SEEK_END);
938         size_t font_file_size = ftell(font_file);
939         fseek(font_file, 0, SEEK_SET);
940         m_font_data = (unsigned char*)malloc(font_file_size);
941         size_t read = fread(m_font_data, 1, font_file_size, font_file);
942         if (read != font_file_size)
943         {
944                 Fatal("Failed to read font data from \"%s\" - Read %u bytes expected %u - %s", font_filename.c_str(), read, font_file_size, strerror(errno));
945         }
946         fclose(font_file);
947         stbtt_InitFont(&m_font, m_font_data, 0);
948 }
949
950 void Document::AddText(const string & text, Real scale, Real x, Real y)
951 {
952         if (m_font_data == NULL)
953         {
954                 Warn("No font loaded");
955                 return;
956         }
957                 
958         Real x0(x);
959         //Real y0(y);
960         int ascent = 0, descent = 0, line_gap = 0;
961         stbtt_GetFontVMetrics(&m_font, &ascent, &descent, &line_gap);
962         Real font_scale = scale;
963         font_scale /= Real(ascent - descent);
964         Real y_advance = Real(font_scale) * Real(ascent - descent + line_gap);
965         for (unsigned i = 0; i < text.size(); ++i)
966         {
967                 if (text[i] == '\n')
968                 {
969                         y += y_advance;
970                         x = x0;
971                 }
972                 if (!isprint(text[i]))
973                         continue;
974                         
975                 int advance_width = 0, left_side_bearing = 0, kerning = 0;
976                 stbtt_GetCodepointHMetrics(&m_font, text[i], &advance_width, &left_side_bearing);
977                 if (i >= 1)
978                 {
979                         kerning = stbtt_GetCodepointKernAdvance(&m_font, text[i-1], text[i]);
980                 }
981                 x += font_scale * Real(kerning);
982                 AddFontGlyphAtPoint(&m_font, text[i], font_scale, x, y);
983                 x += font_scale * Real(advance_width);
984         }
985 }
986
987 void Document::AddFontGlyphAtPoint(stbtt_fontinfo *font, int character, Real scale, Real x, Real y)
988 {
989         int glyph_index = stbtt_FindGlyphIndex(font, character);
990
991         // Check if there is actully a glyph to render.
992         if (stbtt_IsGlyphEmpty(font, glyph_index))
993         {
994                 return;
995         }
996
997         stbtt_vertex *instructions;
998         int num_instructions = stbtt_GetGlyphShape(font, glyph_index, &instructions);
999
1000         Real current_x(0), current_y(0);
1001         unsigned start_index = m_count;
1002         unsigned end_index = m_count;
1003         for (int i = 0; i < num_instructions; ++i)
1004         {
1005                 // TTF uses 16-bit signed ints for coordinates:
1006                 // with the y-axis inverted compared to us.
1007                 // Convert and scale any data.
1008                 Real inst_x = Real(instructions[i].x)*scale;
1009                 Real inst_y = Real(instructions[i].y)*-scale;
1010                 Real inst_cx = Real(instructions[i].cx)*scale;
1011                 Real inst_cy = Real(instructions[i].cy)*-scale;
1012                 Real old_x(current_x), old_y(current_y);
1013                 current_x = inst_x;
1014                 current_y = inst_y;
1015                 
1016                 switch(instructions[i].type)
1017                 {
1018                 // Move To
1019                 case STBTT_vmove:
1020                         break;
1021                 // Line To
1022                 case STBTT_vline:
1023                         end_index = AddBezier(Bezier(old_x + x, old_y + y, old_x + x, old_y + y, current_x + x, current_y + y, current_x + x, current_y + y));
1024                         break;
1025                 // Quadratic Bezier To:
1026                 case STBTT_vcurve:
1027                         // Quadratic -> Cubic:
1028                         // - Endpoints are the same.
1029                         // - cubic1 = quad0+(2/3)*(quad1-quad0)
1030                         // - cubic2 = quad2+(2/3)*(quad1-quad2)
1031                         end_index = AddBezier(Bezier(old_x + x, old_y + y, old_x + Real(2)*(inst_cx-old_x)/Real(3) + x, old_y + Real(2)*(inst_cy-old_y)/Real(3) + y,
1032                                                 current_x + Real(2)*(inst_cx-current_x)/Real(3) + x, current_y + Real(2)*(inst_cy-current_y)/Real(3) + y, current_x + x, current_y + y));
1033                         break;
1034                 }
1035         }
1036         
1037         if (start_index < m_count && end_index < m_count)
1038         {
1039                 AddPath(start_index, end_index);
1040         }
1041         //Debug("Added Glyph \"%c\" at %f %f, scale %f", (char)character, Float(x), Float(y), Float(scale));
1042
1043         stbtt_FreeShape(font, instructions);
1044 }
1045
1046 void Document::TransformObjectBounds(const SVGMatrix & transform)
1047 {
1048         for (unsigned i = 0; i < m_count; ++i)
1049         {
1050                 TransformXYPair(m_objects.bounds[i].x, m_objects.bounds[i].y, transform);
1051                 m_objects.bounds[i].w *= transform.a;
1052                 m_objects.bounds[i].h *= transform.d;
1053         }
1054 }
1055
1056 void Document::TranslateObjects(const Real & dx, const Real & dy, ObjectType type)
1057 {
1058         #ifdef TRANSFORM_BEZIERS_TO_PATH
1059                 for (unsigned i = 0; i < m_objects.paths.size(); ++i)
1060                 {
1061                         Path & p = m_objects.paths[i];
1062                         p.x += dx;
1063                         p.y += dy;
1064                 }
1065                 return;
1066         #endif  
1067         
1068         for (unsigned i = 0; i < m_count; ++i)
1069         {
1070                 if (type == NUMBER_OF_OBJECT_TYPES || m_objects.types[i] == type)
1071                 {
1072                         m_objects.bounds[i].x += dx;
1073                         m_objects.bounds[i].y += dy;
1074                 }
1075         }
1076 }
1077
1078 void Document::ScaleObjectsAboutPoint(const Real & x, const Real & y, const Real & scale_amount, ObjectType type)
1079 {
1080         #ifdef TRANSFORM_BEZIERS_TO_PATH
1081                 for (unsigned i = 0; i < m_objects.paths.size(); ++i)
1082                 {
1083                         Path & p = m_objects.paths[i];
1084                         p.w /= scale_amount;
1085                         p.h /= scale_amount;
1086                         p.x -= x;
1087                         p.x /= scale_amount;
1088                         p.x += x;
1089                         p.y -= y;
1090                         p.y /= scale_amount;
1091                         p.y += y;
1092                 }
1093                 return;
1094         #endif
1095         
1096         for (unsigned i = 0; i < m_count; ++i)
1097         {
1098                 if (type != NUMBER_OF_OBJECT_TYPES && m_objects.types[i] != type)
1099                         continue;
1100                 
1101                 m_objects.bounds[i].w /= scale_amount;
1102                 m_objects.bounds[i].h /= scale_amount;
1103                 //m_objects.bounds[i].x = x + (m_objects.bounds[i].x-x)/scale_amount;
1104                 //m_objects.bounds[i].y = y + (m_objects.bounds[i].y-x)/scale_amount;
1105                 m_objects.bounds[i].x -= x;
1106                 m_objects.bounds[i].x /= scale_amount;
1107                 m_objects.bounds[i].x += x;
1108                 
1109                 m_objects.bounds[i].y -= y;
1110                 m_objects.bounds[i].y /= scale_amount;
1111                 m_objects.bounds[i].y += y;
1112         }
1113
1114 }
1115
1116

UCC git Repository :: git.ucc.asn.au