6754faaf208e8af824c1b190f2f04d6509766093
[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()});
98         m_quadtree.root_id = 0;
99         GenQuadChild(0, QTC_TOP_LEFT);
100 }
101
102 int Document::ClipObjectToQuadChild(int object_id, QuadTreeNodeChildren type)
103 {
104         switch (m_objects.types[object_id])
105         {
106         case RECT_FILLED:
107         case RECT_OUTLINE:
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         default:
134                 Debug("Adding %s -> %s", m_objects.bounds[object_id].Str().c_str(), TransformToQuadChild(m_objects.bounds[object_id], type).Str().c_str());
135                 m_objects.bounds.push_back(TransformToQuadChild(m_objects.bounds[object_id], type));
136                 m_objects.types.push_back(m_objects.types[object_id]);
137                 m_objects.data_indices.push_back(m_objects.data_indices[object_id]);
138                 return 1;
139         }
140         return 0;
141 }
142 QuadTreeIndex Document::GenQuadChild(QuadTreeIndex parent, QuadTreeNodeChildren type)
143 {
144         QuadTreeIndex new_index = m_quadtree.nodes.size();
145         m_quadtree.nodes.push_back(QuadTreeNode{QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, parent, type, 0, 0});
146
147         m_quadtree.nodes[new_index].object_begin = m_objects.bounds.size();
148         for (unsigned i = m_quadtree.nodes[parent].object_begin; i < m_quadtree.nodes[parent].object_end; ++i)
149         {
150                 if (IntersectsQuadChild(m_objects.bounds[i], type))
151                 {
152                         m_count += ClipObjectToQuadChild(i, type);
153                 }
154         }
155         m_quadtree.nodes[new_index].object_end = m_objects.bounds.size();
156         switch (type)
157         {
158                 case QTC_TOP_LEFT:
159                         m_quadtree.nodes[parent].top_left = new_index;
160                         break;
161                 case QTC_TOP_RIGHT:
162                         m_quadtree.nodes[parent].top_right = new_index;
163                         break;
164                 case QTC_BOTTOM_LEFT:
165                         m_quadtree.nodes[parent].bottom_left = new_index;
166                         break;
167                 case QTC_BOTTOM_RIGHT:
168                         m_quadtree.nodes[parent].bottom_right = new_index;
169                         break;
170                 default:
171                         Fatal("Tried to add a QuadTree child of invalid type!");
172         }
173         return new_index;
174 }
175
176 // Reparent a quadtree node, making it the "type" child of a new node.
177 QuadTreeIndex Document::GenQuadParent(QuadTreeIndex child, QuadTreeNodeChildren type)
178 {
179         QuadTreeIndex new_index = m_quadtree.nodes.size();
180         m_quadtree.nodes.push_back(QuadTreeNode{QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, QUADTREE_EMPTY, -1, QTC_UNKNOWN, 0, 0});
181
182         m_quadtree.nodes[new_index].object_begin = m_objects.bounds.size();
183         for (unsigned i = m_quadtree.nodes[child].object_begin; i < m_quadtree.nodes[child].object_end; ++i)
184         {
185                 m_objects.bounds.push_back(TransformFromQuadChild(m_objects.bounds[i], type));
186                 m_objects.types.push_back(m_objects.types[i]);
187                 m_objects.data_indices.push_back(m_objects.data_indices[i]);
188                 m_count++;
189         }
190         m_quadtree.nodes[new_index].object_end = m_objects.bounds.size();
191         switch (type)
192         {
193                 case QTC_TOP_LEFT:
194                         m_quadtree.nodes[new_index].top_left = child;
195                         break;
196                 case QTC_TOP_RIGHT:
197                         m_quadtree.nodes[new_index].top_right = child;
198                         break;
199                 case QTC_BOTTOM_LEFT:
200                         m_quadtree.nodes[new_index].bottom_left = child;
201                         break;
202                 case QTC_BOTTOM_RIGHT:
203                         m_quadtree.nodes[new_index].bottom_right = child;
204                         break;
205                 default:
206                         Fatal("Tried to add a QuadTree child of invalid type!");
207         }
208         return new_index;
209 }
210
211 #endif
212
213 void Document::Load(const string & filename)
214 {
215         m_objects.bounds.clear();
216         m_count = 0;
217         if (filename == "")
218         {
219                 Debug("Loaded empty document.");
220                 return;
221         }
222         Debug("Loading document from file \"%s\"", filename.c_str());
223         FILE * file = fopen(filename.c_str(), "r");
224         if (file == NULL)
225                 Fatal("Couldn't open file \"%s\"", filename.c_str(), strerror(errno));
226
227         size_t read;
228
229         DocChunkTypes chunk_type;
230         uint32_t chunk_size;
231         while (ReadChunkHeader(file, chunk_type, chunk_size))
232         {
233                 switch(chunk_type)
234                 {
235                 case CT_NUMOBJS:
236                         read = fread(&m_count, sizeof(m_count), 1, file);
237                         if (read != 1)
238                                 Fatal("Failed to read number of objects!");
239                         Debug("Number of objects: %u", ObjectCount());
240                         break;
241                 case CT_OBJTYPES:
242                         Debug("Object types...");
243                         LoadStructVector<ObjectType>(file, chunk_size/sizeof(ObjectType), m_objects.types);
244                         break;
245                 case CT_OBJBOUNDS:
246                         Debug("Object bounds...");
247                         LoadStructVector<Rect>(file, chunk_size/sizeof(Rect), m_objects.bounds);
248                         break;
249                 case CT_OBJINDICES:
250                         Debug("Object data indices...");
251                         LoadStructVector<unsigned>(file, chunk_size/sizeof(unsigned), m_objects.data_indices);
252                         break;
253                 case CT_OBJBEZIERS:
254                         Debug("Bezier data...");
255                         LoadStructVector<Bezier>(file, chunk_size/sizeof(Bezier), m_objects.beziers);
256                         break;
257                         
258                 case CT_OBJGROUPS:
259                         Debug("Group data...");
260                         Warn("Not handled because lazy");
261                         break;
262                 }
263         }
264         Debug("Successfully loaded %u objects from \"%s\"", ObjectCount(), filename.c_str());
265 #ifndef QUADTREE_DISABLED
266         if (m_quadtree.root_id == QUADTREE_EMPTY)
267         {
268                 GenBaseQuadtree();
269         }
270 #endif
271 }
272
273 unsigned Document::AddGroup(unsigned start_index, unsigned end_index)
274 {
275         Real xmin = 0; Real ymin = 0; 
276         Real xmax = 0; Real ymax = 0;
277         
278         for (unsigned i = start_index; i <= end_index; ++i)
279         {
280                 Rect & objb = m_objects.bounds[i];
281                 
282                 if (i == start_index || objb.x < xmin)
283                         xmin = objb.x;
284                 if (i == start_index || (objb.x+objb.w) > xmax)
285                         xmax = (objb.x+objb.w);
286                         
287                 if (i == start_index || objb.y < ymin)
288                         ymin = objb.y;
289                 if (i == start_index || (objb.y+objb.h) > ymax)
290                         ymax = objb.y;
291         }
292         
293         Rect bounds(xmin,ymin, xmax-xmin, ymax-ymin);
294         unsigned result = Add(GROUP, bounds,0);
295         m_objects.groups[m_count-1].first = start_index;
296         m_objects.groups[m_count-1].second = end_index;
297         return result;
298 }
299
300 unsigned Document::AddBezier(const Bezier & bezier)
301 {
302         unsigned index = AddBezierData(bezier);
303         return Add(BEZIER, bezier.SolveBounds(), index);
304 }
305
306 unsigned Document::Add(ObjectType type, const Rect & bounds, unsigned data_index)
307 {
308         m_objects.types.push_back(type);
309         m_objects.bounds.push_back(bounds);
310         m_objects.data_indices.push_back(data_index);
311         m_objects.groups.push_back(pair<unsigned, unsigned>(data_index, data_index));
312         return (m_count++); // Why can't we just use the size of types or something?
313 }
314
315 unsigned Document::AddBezierData(const Bezier & bezier)
316 {
317         m_objects.beziers.push_back(bezier);
318         return m_objects.beziers.size()-1;
319 }
320
321
322 void Document::DebugDumpObjects()
323 {
324         Debug("Objects for Document %p are:", this);
325         for (unsigned id = 0; id < ObjectCount(); ++id)
326         {
327                 Debug("%u. \tType: %u\tBounds: %s", id, m_objects.types[id], m_objects.bounds[id].Str().c_str());
328         }
329 }
330
331 bool Document::operator==(const Document & equ) const
332 {
333         return (ObjectCount() == equ.ObjectCount() 
334                 && memcmp(m_objects.bounds.data(), equ.m_objects.bounds.data(), ObjectCount() * sizeof(Rect)) == 0
335                 && memcmp(m_objects.data_indices.data(), equ.m_objects.data_indices.data(), ObjectCount() * sizeof(unsigned)) == 0
336                 && memcmp(m_objects.beziers.data(), equ.m_objects.beziers.data(), m_objects.beziers.size() * sizeof(Bezier)) == 0);
337 }
338
339
340
341 // Behold my amazing tokenizing abilities
342 static string & GetToken(const string & d, string & token, unsigned & i, const string & delims = "()[],{}<>;:=")
343 {
344         token.clear();
345         while (i < d.size() && iswspace(d[i]))
346         {
347                 ++i;
348         }
349         
350         while (i < d.size())
351         {
352                 if (iswspace(d[i]) || strchr(delims.c_str(),d[i]) != NULL)
353                 {
354                         if (token.size() == 0 && !iswspace(d[i]))
355                         {
356                                 token += d[i++];
357                         }
358                         break;  
359                 }
360                 token += d[i++];
361         }
362         //Debug("Got token \"%s\"", token.c_str());
363         return token;
364 }
365
366 static void GetXYPair(const string & d, Real & x, Real & y, unsigned & i,const string & delims = "()[],{}<>;:=")
367 {
368         string token("");
369         while (GetToken(d, token, i, delims) == ",");
370         x = strtod(token.c_str(),NULL);
371         if (GetToken(d, token, i, delims) != ",")
372         {
373                 Fatal("Expected \",\" seperating x,y pair");
374         }
375         y = strtod(GetToken(d, token, i, delims).c_str(),NULL);
376 }
377
378 static void TransformXYPair(Real & x, Real & y, const SVGMatrix & transform)
379 {
380         Real x0(x);
381         x = transform.a * x + transform.c * y + transform.e;
382         y = transform.b * x0 + transform.d * y + transform.f;
383 }
384
385 void Document::ParseSVGTransform(const string & s, SVGMatrix & transform)
386 {
387         Debug("Parsing transform %s", s.c_str());
388         string token;
389         string command;
390         unsigned i = 0;
391         
392         while (i < s.size())
393         {
394                 GetToken(s, command, i);
395                 if (command == "," || command == "" || command == ":")
396                 {
397                         if (i < s.size())
398                                 GetToken(s, command, i);
399                         else
400                                 return;
401                 }
402                 Debug("Token is \"%s\"", command.c_str());
403         
404                 SVGMatrix delta = {1,0,0,0,1,0};
405         
406         
407                 assert(GetToken(s,token, i) == "(");
408                 if (command == "translate")
409                 {
410                         GetXYPair(s, delta.e, delta.f, i);
411                         assert(GetToken(s,token, i) == ")");    
412                 }
413                 else if (command == "matrix")
414                 {
415                         GetXYPair(s, delta.a, delta.b,i);
416                         GetXYPair(s, delta.c, delta.d,i);
417                         GetXYPair(s, delta.e, delta.f,i);
418                         assert(GetToken(s,token, i) == ")");    
419                 }
420                 else if (command == "scale")
421                 {
422                         delta.a = (strtod(GetToken(s,token,i).c_str(), NULL));
423                         GetToken(s, token, i);
424                         if (token == ",")
425                         {
426                                 delta.d = (strtod(GetToken(s,token,i).c_str(), NULL));
427                                 assert(GetToken(s, token, i) == ")");
428                         }
429                         else
430                         {
431                                 delta.d = delta.a;
432                                 assert(token == ")");
433                         }
434                         
435                 }
436                 else
437                 {
438                         Warn("Unrecognised transform \"%s\", using identity", command.c_str());
439                 }
440         
441                 Debug("Old transform is {%f,%f,%f,%f,%f,%f}", transform.a, transform.b, transform.c, transform.d,transform.e,transform.f);
442                 Debug("Delta transform is {%f,%f,%f,%f,%f,%f}", delta.a, delta.b, delta.c, delta.d,delta.e,delta.f);
443         
444                 SVGMatrix old(transform);
445                 transform.a = old.a * delta.a + old.c * delta.b;
446                 transform.c = old.a * delta.c + old.c * delta.d;
447                 transform.e = old.a * delta.e + old.c * delta.f + old.e;
448         
449                 transform.b = old.b * delta.a + old.d * delta.b;
450                 transform.d = old.b * delta.c + old.d * delta.d;
451                 transform.f = old.b * delta.e + old.d * delta.f + old.f;
452         
453                 Debug("New transform is {%f,%f,%f,%f,%f,%f}", transform.a, transform.b, transform.c, transform.d,transform.e,transform.f);
454         }
455 }
456
457 void Document::ParseSVGNode(pugi::xml_node & root, SVGMatrix & parent_transform)
458 {
459         Debug("Parse node <%s>", root.name());
460
461                 
462         for (pugi::xml_node child = root.first_child(); child; child = child.next_sibling())
463         {
464                 SVGMatrix transform(parent_transform);  
465                 pugi::xml_attribute attrib_trans = child.attribute("transform");
466                 if (!attrib_trans.empty())
467                 {
468                         ParseSVGTransform(attrib_trans.as_string(), transform);
469                 }
470                 
471                 if (strcmp(child.name(), "svg") == 0 || strcmp(child.name(),"g") == 0
472                         || strcmp(child.name(), "group") == 0)
473                 {
474                         
475                         ParseSVGNode(child, transform);
476                         continue;
477                 }
478                 else if (strcmp(child.name(), "path") == 0)
479                 {
480                         string d = child.attribute("d").as_string();
481                         Debug("Path data attribute is \"%s\"", d.c_str());
482                         pair<unsigned, unsigned> range = ParseSVGPathData(d, transform);
483                         AddGroup(range.first, range.second);
484                         
485                 }
486                 else if (strcmp(child.name(), "line") == 0)
487                 {
488                         Real x0(child.attribute("x1").as_float());
489                         Real y0(child.attribute("y1").as_float());
490                         Real x1(child.attribute("x2").as_float());
491                         Real y1(child.attribute("y2").as_float());
492                         TransformXYPair(x0,y0,transform);
493                         TransformXYPair(x1,y1,transform);
494                         AddBezier(Bezier(x0,y0,x1,y1,x1,y1,x1,y1));
495                 }
496                 else if (strcmp(child.name(), "rect") == 0)
497                 {
498                         Real coords[4];
499                         const char * attrib_names[] = {"x", "y", "width", "height"};
500                         for (size_t i = 0; i < 4; ++i)
501                                 coords[i] = child.attribute(attrib_names[i]).as_float();
502                         
503                         Real x2(coords[0]+coords[2]);
504                         Real y2(coords[1]+coords[3]);
505                         TransformXYPair(coords[0],coords[1],transform); // x, y, transform
506                         TransformXYPair(x2,y2,transform);
507                         coords[2] = x2 - coords[0];
508                         coords[3] = y2 - coords[1];
509                         
510                         bool outline = !(child.attribute("fill") && strcmp(child.attribute("fill").as_string(),"none") != 0);
511                         Add(outline?RECT_OUTLINE:RECT_FILLED, Rect(coords[0], coords[1], coords[2], coords[3]),0);
512                 }
513                 else if (strcmp(child.name(), "circle") == 0)
514                 {
515                         Real cx = child.attribute("cx").as_float();
516                         Real cy = child.attribute("cy").as_float();
517                         Real r = child.attribute("r").as_float();
518                         
519                         Real x = (cx - r);
520                         Real y = (cy - r);
521                         TransformXYPair(x,y,transform);
522                         Real w = Real(2)*r*transform.a; // width scales
523                         Real h = Real(2)*r*transform.d; // height scales
524                         
525                         
526                         Rect rect(x,y,w,h);
527                         Add(CIRCLE_FILLED, rect,0);
528                         Debug("Added Circle %s", rect.Str().c_str());                   
529                 }
530                 else if (strcmp(child.name(), "text") == 0)
531                 {
532                         Real x = child.attribute("x").as_float();
533                         Real y = child.attribute("y").as_float();
534                         TransformXYPair(x,y,transform);
535                         Debug("Add text \"%s\"", child.child_value());
536                         AddText(child.child_value(), 0.05, x, y);
537                 }
538         }
539 }
540
541 /**
542  * Load an SVG into a rectangle
543  */
544 void Document::LoadSVG(const string & filename, const Rect & bounds)
545 {
546         using namespace pugi;
547         
548         xml_document doc_xml;
549         ifstream input(filename.c_str(), ios_base::in);
550         xml_parse_result result = doc_xml.load(input);
551         
552         if (!result)
553                 Fatal("Couldn't load \"%s\" - %s", filename.c_str(), result.description());
554                 
555         Debug("Loaded XML - %s", result.description());
556         
557         input.close();
558                                                 // a c e, b d f
559         SVGMatrix transform = {bounds.w, 0,bounds.x, 0,bounds.h,bounds.y};
560         ParseSVGNode(doc_xml, transform);
561 }
562
563
564
565 // Fear the wrath of the tokenizing svg data
566 // Seriously this isn't really very DOM-like at all is it?
567 pair<unsigned, unsigned> Document::ParseSVGPathData(const string & d, const SVGMatrix & transform)
568 {
569         Real x[4] = {0,0,0,0};
570         Real y[4] = {0,0,0,0};
571         
572         string token("");
573         string command("m");
574         
575         Real x0(0);
576         Real y0(0);
577         
578         unsigned i = 0;
579         unsigned prev_i = 0;
580         
581         bool start = false;
582         
583
584         static string delims("()[],{}<>;:=LlHhVvmMqQzZcC");
585
586         pair<unsigned, unsigned> range(m_count, m_count);
587         
588         while (i < d.size() && GetToken(d, token, i, delims).size() > 0)
589         {
590                 if (isalpha(token[0]))
591                         command = token;
592                 else
593                 {
594                         i = prev_i; // hax
595                         if(command == "")
596                                 command = "L";
597                 }
598                 
599                 bool relative = islower(command[0]);
600                         
601                 if (command == "m" || command == "M")
602                 {
603                         //Debug("Construct moveto command");
604                         Real dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
605                         assert(GetToken(d,token,i,delims) == ",");
606                         Real dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
607                         
608                         x[0] = (relative) ? x[0] + dx : dx;
609                         y[0] = (relative) ? y[0] + dy : dy;
610                         
611                         //Debug("mmoveto %f,%f", Float(x[0]),Float(y[0]));
612                         command = (command == "m") ? "l" : "L";
613                 }
614                 else if (command == "c" || command == "C" || command == "q" || command == "Q")
615                 {
616                         //Debug("Construct curveto command");
617                         Real dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
618                         assert(GetToken(d,token,i,delims) == ",");
619                         Real dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
620                         
621                         x[1] = (relative) ? x[0] + dx : dx;
622                         y[1] = (relative) ? y[0] + dy : dy;
623                         
624                         dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
625                         assert(GetToken(d,token,i,delims) == ",");
626                         dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
627                         
628                         x[2] = (relative) ? x[0] + dx : dx;
629                         y[2] = (relative) ? y[0] + dy : dy;
630                         
631                         if (command != "q" && command != "Q")
632                         {
633                                 dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
634                                 assert(GetToken(d,token,i,delims) == ",");
635                                 dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
636                                 x[3] = (relative) ? x[0] + dx : dx;
637                                 y[3] = (relative) ? y[0] + dy : dy;
638                         }
639                         else
640                         {
641                                 x[3] = x[2];
642                                 y[3] = y[2];
643                                 Real old_x1(x[1]), old_y1(y[1]);
644                                 x[1] = x[0] + Real(2) * (old_x1 - x[0])/ Real(3);
645                                 y[1] = y[0] + Real(2) * (old_y1 - y[0])/ Real(3);
646                                 x[2] = x[3] + Real(2) * (old_x1 - x[3])/ Real(3);
647                                 y[2] = y[3] + Real(2) * (old_y1 - y[3])/ Real(3);
648                         }
649                         
650                         Real x3(x[3]);
651                         Real y3(y[3]);
652                         for (int j = 0; j < 4; ++j)
653                                 TransformXYPair(x[j],y[j], transform);
654
655                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[2],y[2],x[3],y[3]));
656                         
657                         //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]));
658                         
659                         x[0] = x3;
660                         y[0] = y3;
661
662                         
663                 }
664                 else if (command == "l" || command == "L" || command == "h" || command == "H" || command == "v" || command == "V")
665                 {
666                         Debug("Construct lineto command, relative %d", relative);
667                 
668                         Real dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
669                         Real dy;
670                         if (command == "l" || command == "L")
671                         {
672                                 assert(GetToken(d,token,i,delims) == ",");
673                                 dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
674                         }
675                         else if (command == "v" || command == "V")
676                         {
677                                 swap(dx,dy);
678                         }
679                         
680                         x[1] = (relative) ? x[0] + dx : dx;
681                         y[1] = (relative) ? y[0] + dy : dy;
682                         if (command == "v" || command == "V")
683                         {
684                                 x[1] = x[0];
685                         }
686                         else if (command == "h" || command == "H")
687                         {
688                                 y[1] = y[0];
689                         }
690                         
691                         Real x1(x[1]);
692                         Real y1(y[1]);
693                         
694                         TransformXYPair(x[0],y[0],transform);
695                         TransformXYPair(x[1],y[1],transform);
696
697
698                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[1],y[1],x[1],y[1]));
699                         
700                         //Debug("[%u] lineto %f,%f %f,%f", index, Float(x[0]),Float(y[0]),Float(x[1]),Float(y[1]));
701                         
702                         x[0] = x1;
703                         y[0] = y1;
704
705                 }
706                 else if (command == "z" || command == "Z")
707                 {
708                         //Debug("Construct returnto command");
709                         x[1] = x0;
710                         y[1] = y0;
711                         x[2] = x0;
712                         y[2] = y0;
713                         x[3] = x0;
714                         y[3] = y0;
715                         
716                         Real x3(x[3]);
717                         Real y3(y[3]);
718                         for (int j = 0; j < 4; ++j)
719                                 TransformXYPair(x[j],y[j], transform);
720
721                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[2],y[2],x[3],y[3]));
722                         //Debug("[%u] returnto %f,%f %f,%f", index, Float(x[0]),Float(y[0]),Float(x[1]),Float(y[1]));
723                         
724                         x[0] = x3;
725                         y[0] = y3;
726                         command = "m";
727                 }
728                 else
729                 {
730                         Warn("Unrecognised command \"%s\", set to \"m\"", command.c_str());
731                         command = "m";
732                 }
733                 
734                 if (!start)
735                 {
736                         x0 = x[0];
737                         y0 = y[0];
738                         start = true;
739                 }
740                 prev_i = i;
741         }
742         return range;
743 }
744
745 void Document::SetFont(const string & font_filename)
746 {
747         if (m_font_data != NULL)
748         {
749                 free(m_font_data);
750         }
751         
752         FILE *font_file = fopen("DejaVuSansMono.ttf", "rb");
753         fseek(font_file, 0, SEEK_END);
754         size_t font_file_size = ftell(font_file);
755         fseek(font_file, 0, SEEK_SET);
756         m_font_data = (unsigned char*)malloc(font_file_size);
757         size_t read = fread(m_font_data, 1, font_file_size, font_file);
758         if (read != font_file_size)
759         {
760                 Fatal("Failed to read font data from \"%s\" - Read %u bytes expected %u - %s", font_filename.c_str(), read, font_file_size, strerror(errno));
761         }
762         fclose(font_file);
763         stbtt_InitFont(&m_font, m_font_data, 0);
764 }
765
766 void Document::AddText(const string & text, Real scale, Real x, Real y)
767 {
768         if (m_font_data == NULL)
769         {
770                 Warn("No font loaded");
771                 return;
772         }
773                 
774         float font_scale = stbtt_ScaleForPixelHeight(&m_font, scale);
775         Real x0(x);
776         //Real y0(y);
777         int ascent = 0, descent = 0, line_gap = 0;
778         stbtt_GetFontVMetrics(&m_font, &ascent, &descent, &line_gap);
779         Real y_advance = Real(font_scale) * Real(ascent - descent + line_gap);
780         for (unsigned i = 0; i < text.size(); ++i)
781         {
782                 if (text[i] == '\n')
783                 {
784                         y += y_advance;
785                         x = x0;
786                 }
787                 if (!isprint(text[i]))
788                         continue;
789                         
790                 int advance_width = 0, left_side_bearing = 0, kerning = 0;
791                 stbtt_GetCodepointHMetrics(&m_font, text[i], &advance_width, &left_side_bearing);
792                 if (i > 1)
793                 {
794                         kerning = stbtt_GetCodepointKernAdvance(&m_font, text[i-1], text[i]);
795                 }
796                 x += Real(font_scale) * Real(left_side_bearing + kerning);
797                 AddFontGlyphAtPoint(&m_font, text[i], font_scale, x, y);
798                 x += Real(font_scale) * Real(advance_width);
799         }
800 }
801
802 void Document::AddFontGlyphAtPoint(stbtt_fontinfo *font, int character, Real scale, Real x, Real y)
803 {
804         int glyph_index = stbtt_FindGlyphIndex(font, character);
805
806         // Check if there is actully a glyph to render.
807         if (stbtt_IsGlyphEmpty(font, glyph_index))
808         {
809                 return;
810         }
811
812         stbtt_vertex *instructions;
813         int num_instructions = stbtt_GetGlyphShape(font, glyph_index, &instructions);
814
815         Real current_x(0), current_y(0);
816
817         for (int i = 0; i < num_instructions; ++i)
818         {
819                 // TTF uses 16-bit signed ints for coordinates:
820                 // with the y-axis inverted compared to us.
821                 // Convert and scale any data.
822                 Real inst_x = Real(instructions[i].x)*scale;
823                 Real inst_y = Real(instructions[i].y)*-scale;
824                 Real inst_cx = Real(instructions[i].cx)*scale;
825                 Real inst_cy = Real(instructions[i].cy)*-scale;
826                 Real old_x(current_x), old_y(current_y);
827                 current_x = inst_x;
828                 current_y = inst_y;
829                 unsigned bezier_index;
830                 switch(instructions[i].type)
831                 {
832                 // Move To
833                 case STBTT_vmove:
834                         break;
835                 // Line To
836                 case STBTT_vline:
837                         bezier_index = AddBezierData(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));
838                         Add(BEZIER,Rect(0,0,1,1),bezier_index);
839                         break;
840                 // Quadratic Bezier To:
841                 case STBTT_vcurve:
842                         // Quadratic -> Cubic:
843                         // - Endpoints are the same.
844                         // - cubic1 = quad0+(2/3)*(quad1-quad0)
845                         // - cubic2 = quad2+(2/3)*(quad1-quad2)
846                         bezier_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,
847                                                 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));
848                         break;
849                 }
850         }
851
852         stbtt_FreeShape(font, instructions);
853 }

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