Make bezier control point coordinates relative
[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+objb.h);
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 /**
301  * Add a Bezier using Absolute coords
302  */
303 unsigned Document::AddBezier(const Bezier & bezier)
304 {
305         Rect bounds = bezier.SolveBounds();
306         Bezier data = bezier.ToRelative(bounds); // Relative
307         unsigned index = AddBezierData(data);
308         return Add(BEZIER, bounds, index);
309 }
310
311 unsigned Document::Add(ObjectType type, const Rect & bounds, unsigned data_index)
312 {
313         m_objects.types.push_back(type);
314         m_objects.bounds.push_back(bounds);
315         m_objects.data_indices.push_back(data_index);
316         m_objects.groups.push_back(pair<unsigned, unsigned>(data_index, data_index));
317         return (m_count++); // Why can't we just use the size of types or something?
318 }
319
320 unsigned Document::AddBezierData(const Bezier & bezier)
321 {
322         m_objects.beziers.push_back(bezier);
323         return m_objects.beziers.size()-1;
324 }
325
326
327 void Document::DebugDumpObjects()
328 {
329         Debug("Objects for Document %p are:", this);
330         for (unsigned id = 0; id < ObjectCount(); ++id)
331         {
332                 Debug("%u. \tType: %u\tBounds: %s", id, m_objects.types[id], m_objects.bounds[id].Str().c_str());
333         }
334 }
335
336 bool Document::operator==(const Document & equ) const
337 {
338         return (ObjectCount() == equ.ObjectCount() 
339                 && memcmp(m_objects.bounds.data(), equ.m_objects.bounds.data(), ObjectCount() * sizeof(Rect)) == 0
340                 && memcmp(m_objects.data_indices.data(), equ.m_objects.data_indices.data(), ObjectCount() * sizeof(unsigned)) == 0
341                 && memcmp(m_objects.beziers.data(), equ.m_objects.beziers.data(), m_objects.beziers.size() * sizeof(Bezier)) == 0);
342 }
343
344
345
346 // Behold my amazing tokenizing abilities
347 static string & GetToken(const string & d, string & token, unsigned & i, const string & delims = "()[],{}<>;:=")
348 {
349         token.clear();
350         while (i < d.size() && iswspace(d[i]))
351         {
352                 ++i;
353         }
354         
355         while (i < d.size())
356         {
357                 if (iswspace(d[i]) || strchr(delims.c_str(),d[i]) != NULL)
358                 {
359                         if (token.size() == 0 && !iswspace(d[i]))
360                         {
361                                 token += d[i++];
362                         }
363                         break;  
364                 }
365                 token += d[i++];
366         }
367         //Debug("Got token \"%s\"", token.c_str());
368         return token;
369 }
370
371 static void GetXYPair(const string & d, Real & x, Real & y, unsigned & i,const string & delims = "()[],{}<>;:=")
372 {
373         string token("");
374         while (GetToken(d, token, i, delims) == ",");
375         x = strtod(token.c_str(),NULL);
376         if (GetToken(d, token, i, delims) != ",")
377         {
378                 Fatal("Expected \",\" seperating x,y pair");
379         }
380         y = strtod(GetToken(d, token, i, delims).c_str(),NULL);
381 }
382
383 static void TransformXYPair(Real & x, Real & y, const SVGMatrix & transform)
384 {
385         Real x0(x);
386         x = transform.a * x + transform.c * y + transform.e;
387         y = transform.b * x0 + transform.d * y + transform.f;
388 }
389
390 void Document::ParseSVGTransform(const string & s, SVGMatrix & transform)
391 {
392         Debug("Parsing transform %s", s.c_str());
393         string token;
394         string command;
395         unsigned i = 0;
396         
397         while (i < s.size())
398         {
399                 GetToken(s, command, i);
400                 if (command == "," || command == "" || command == ":")
401                 {
402                         if (i < s.size())
403                                 GetToken(s, command, i);
404                         else
405                                 return;
406                 }
407                 Debug("Token is \"%s\"", command.c_str());
408         
409                 SVGMatrix delta = {1,0,0,0,1,0};
410         
411         
412                 assert(GetToken(s,token, i) == "(");
413                 if (command == "translate")
414                 {
415                         GetXYPair(s, delta.e, delta.f, i);
416                         assert(GetToken(s,token, i) == ")");    
417                 }
418                 else if (command == "matrix")
419                 {
420                         GetXYPair(s, delta.a, delta.b,i);
421                         GetXYPair(s, delta.c, delta.d,i);
422                         GetXYPair(s, delta.e, delta.f,i);
423                         assert(GetToken(s,token, i) == ")");    
424                 }
425                 else if (command == "scale")
426                 {
427                         delta.a = (strtod(GetToken(s,token,i).c_str(), NULL));
428                         GetToken(s, token, i);
429                         if (token == ",")
430                         {
431                                 delta.d = (strtod(GetToken(s,token,i).c_str(), NULL));
432                                 assert(GetToken(s, token, i) == ")");
433                         }
434                         else
435                         {
436                                 delta.d = delta.a;
437                                 assert(token == ")");
438                         }
439                         
440                 }
441                 else
442                 {
443                         Warn("Unrecognised transform \"%s\", using identity", command.c_str());
444                 }
445         
446                 Debug("Old transform is {%f,%f,%f,%f,%f,%f}", transform.a, transform.b, transform.c, transform.d,transform.e,transform.f);
447                 Debug("Delta transform is {%f,%f,%f,%f,%f,%f}", delta.a, delta.b, delta.c, delta.d,delta.e,delta.f);
448         
449                 SVGMatrix old(transform);
450                 transform.a = old.a * delta.a + old.c * delta.b;
451                 transform.c = old.a * delta.c + old.c * delta.d;
452                 transform.e = old.a * delta.e + old.c * delta.f + old.e;
453         
454                 transform.b = old.b * delta.a + old.d * delta.b;
455                 transform.d = old.b * delta.c + old.d * delta.d;
456                 transform.f = old.b * delta.e + old.d * delta.f + old.f;
457         
458                 Debug("New transform is {%f,%f,%f,%f,%f,%f}", transform.a, transform.b, transform.c, transform.d,transform.e,transform.f);
459         }
460 }
461
462 void Document::ParseSVGNode(pugi::xml_node & root, SVGMatrix & parent_transform)
463 {
464         Debug("Parse node <%s>", root.name());
465
466                 
467         for (pugi::xml_node child = root.first_child(); child; child = child.next_sibling())
468         {
469                 SVGMatrix transform(parent_transform);  
470                 pugi::xml_attribute attrib_trans = child.attribute("transform");
471                 if (!attrib_trans.empty())
472                 {
473                         ParseSVGTransform(attrib_trans.as_string(), transform);
474                 }
475                 
476                 if (strcmp(child.name(), "svg") == 0 || strcmp(child.name(),"g") == 0
477                         || strcmp(child.name(), "group") == 0)
478                 {
479                         
480                         ParseSVGNode(child, transform);
481                         continue;
482                 }
483                 else if (strcmp(child.name(), "path") == 0)
484                 {
485                         string d = child.attribute("d").as_string();
486                         Debug("Path data attribute is \"%s\"", d.c_str());
487                         pair<unsigned, unsigned> range = ParseSVGPathData(d, transform);
488                         AddGroup(range.first, range.second);
489                         
490                 }
491                 else if (strcmp(child.name(), "line") == 0)
492                 {
493                         Real x0(child.attribute("x1").as_float());
494                         Real y0(child.attribute("y1").as_float());
495                         Real x1(child.attribute("x2").as_float());
496                         Real y1(child.attribute("y2").as_float());
497                         TransformXYPair(x0,y0,transform);
498                         TransformXYPair(x1,y1,transform);
499                         AddBezier(Bezier(x0,y0,x1,y1,x1,y1,x1,y1));
500                 }
501                 else if (strcmp(child.name(), "rect") == 0)
502                 {
503                         Real coords[4];
504                         const char * attrib_names[] = {"x", "y", "width", "height"};
505                         for (size_t i = 0; i < 4; ++i)
506                                 coords[i] = child.attribute(attrib_names[i]).as_float();
507                         
508                         Real x2(coords[0]+coords[2]);
509                         Real y2(coords[1]+coords[3]);
510                         TransformXYPair(coords[0],coords[1],transform); // x, y, transform
511                         TransformXYPair(x2,y2,transform);
512                         coords[2] = x2 - coords[0];
513                         coords[3] = y2 - coords[1];
514                         
515                         bool outline = !(child.attribute("fill") && strcmp(child.attribute("fill").as_string(),"none") != 0);
516                         Add(outline?RECT_OUTLINE:RECT_FILLED, Rect(coords[0], coords[1], coords[2], coords[3]),0);
517                 }
518                 else if (strcmp(child.name(), "circle") == 0)
519                 {
520                         Real cx = child.attribute("cx").as_float();
521                         Real cy = child.attribute("cy").as_float();
522                         Real r = child.attribute("r").as_float();
523                         
524                         Real x = (cx - r);
525                         Real y = (cy - r);
526                         TransformXYPair(x,y,transform);
527                         Real w = Real(2)*r*transform.a; // width scales
528                         Real h = Real(2)*r*transform.d; // height scales
529                         
530                         
531                         Rect rect(x,y,w,h);
532                         Add(CIRCLE_FILLED, rect,0);
533                         Debug("Added Circle %s", rect.Str().c_str());                   
534                 }
535                 else if (strcmp(child.name(), "text") == 0)
536                 {
537                         Real x = child.attribute("x").as_float();
538                         Real y = child.attribute("y").as_float();
539                         TransformXYPair(x,y,transform);
540                         Debug("Add text \"%s\"", child.child_value());
541                         AddText(child.child_value(), 0.05, x, y);
542                 }
543         }
544 }
545
546 /**
547  * Load an SVG into a rectangle
548  */
549 void Document::LoadSVG(const string & filename, const Rect & bounds)
550 {
551         using namespace pugi;
552         
553         xml_document doc_xml;
554         ifstream input(filename.c_str(), ios_base::in);
555         xml_parse_result result = doc_xml.load(input);
556         
557         if (!result)
558                 Fatal("Couldn't load \"%s\" - %s", filename.c_str(), result.description());
559                 
560         Debug("Loaded XML - %s", result.description());
561         
562         input.close();
563                                                 // a c e, b d f
564         SVGMatrix transform = {bounds.w, 0,bounds.x, 0,bounds.h,bounds.y};
565         ParseSVGNode(doc_xml, transform);
566 }
567
568
569
570 // Fear the wrath of the tokenizing svg data
571 // Seriously this isn't really very DOM-like at all is it?
572 pair<unsigned, unsigned> Document::ParseSVGPathData(const string & d, const SVGMatrix & transform)
573 {
574         Real x[4] = {0,0,0,0};
575         Real y[4] = {0,0,0,0};
576         
577         string token("");
578         string command("m");
579         
580         Real x0(0);
581         Real y0(0);
582         
583         unsigned i = 0;
584         unsigned prev_i = 0;
585         
586         bool start = false;
587         
588
589         static string delims("()[],{}<>;:=LlHhVvmMqQzZcC");
590
591         pair<unsigned, unsigned> range(m_count, m_count);
592         
593         while (i < d.size() && GetToken(d, token, i, delims).size() > 0)
594         {
595                 if (isalpha(token[0]))
596                         command = token;
597                 else
598                 {
599                         i = prev_i; // hax
600                         if(command == "")
601                                 command = "L";
602                 }
603                 
604                 bool relative = islower(command[0]);
605                         
606                 if (command == "m" || command == "M")
607                 {
608                         //Debug("Construct moveto command");
609                         Real dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
610                         assert(GetToken(d,token,i,delims) == ",");
611                         Real dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
612                         
613                         x[0] = (relative) ? x[0] + dx : dx;
614                         y[0] = (relative) ? y[0] + dy : dy;
615                         
616                         //Debug("mmoveto %f,%f", Float(x[0]),Float(y[0]));
617                         command = (command == "m") ? "l" : "L";
618                 }
619                 else if (command == "c" || command == "C" || command == "q" || command == "Q")
620                 {
621                         //Debug("Construct curveto command");
622                         Real dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
623                         assert(GetToken(d,token,i,delims) == ",");
624                         Real dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
625                         
626                         x[1] = (relative) ? x[0] + dx : dx;
627                         y[1] = (relative) ? y[0] + dy : dy;
628                         
629                         dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
630                         assert(GetToken(d,token,i,delims) == ",");
631                         dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
632                         
633                         x[2] = (relative) ? x[0] + dx : dx;
634                         y[2] = (relative) ? y[0] + dy : dy;
635                         
636                         if (command != "q" && command != "Q")
637                         {
638                                 dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
639                                 assert(GetToken(d,token,i,delims) == ",");
640                                 dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
641                                 x[3] = (relative) ? x[0] + dx : dx;
642                                 y[3] = (relative) ? y[0] + dy : dy;
643                         }
644                         else
645                         {
646                                 x[3] = x[2];
647                                 y[3] = y[2];
648                                 Real old_x1(x[1]), old_y1(y[1]);
649                                 x[1] = x[0] + Real(2) * (old_x1 - x[0])/ Real(3);
650                                 y[1] = y[0] + Real(2) * (old_y1 - y[0])/ Real(3);
651                                 x[2] = x[3] + Real(2) * (old_x1 - x[3])/ Real(3);
652                                 y[2] = y[3] + Real(2) * (old_y1 - y[3])/ Real(3);
653                         }
654                         
655                         Real x3(x[3]);
656                         Real y3(y[3]);
657                         for (int j = 0; j < 4; ++j)
658                                 TransformXYPair(x[j],y[j], transform);
659
660                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[2],y[2],x[3],y[3]));
661                         
662                         //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]));
663                         
664                         x[0] = x3;
665                         y[0] = y3;
666
667                         
668                 }
669                 else if (command == "l" || command == "L" || command == "h" || command == "H" || command == "v" || command == "V")
670                 {
671                         Debug("Construct lineto command, relative %d", relative);
672                 
673                         Real dx = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
674                         Real dy;
675                         if (command == "l" || command == "L")
676                         {
677                                 assert(GetToken(d,token,i,delims) == ",");
678                                 dy = Real(strtod(GetToken(d,token,i,delims).c_str(),NULL));
679                         }
680                         else if (command == "v" || command == "V")
681                         {
682                                 swap(dx,dy);
683                         }
684                         
685                         x[1] = (relative) ? x[0] + dx : dx;
686                         y[1] = (relative) ? y[0] + dy : dy;
687                         if (command == "v" || command == "V")
688                         {
689                                 x[1] = x[0];
690                         }
691                         else if (command == "h" || command == "H")
692                         {
693                                 y[1] = y[0];
694                         }
695                         
696                         Real x1(x[1]);
697                         Real y1(y[1]);
698                         
699                         TransformXYPair(x[0],y[0],transform);
700                         TransformXYPair(x[1],y[1],transform);
701
702
703                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[1],y[1],x[1],y[1]));
704                         
705                         //Debug("[%u] lineto %f,%f %f,%f", index, Float(x[0]),Float(y[0]),Float(x[1]),Float(y[1]));
706                         
707                         x[0] = x1;
708                         y[0] = y1;
709
710                 }
711                 else if (command == "z" || command == "Z")
712                 {
713                         //Debug("Construct returnto command");
714                         x[1] = x0;
715                         y[1] = y0;
716                         x[2] = x0;
717                         y[2] = y0;
718                         x[3] = x0;
719                         y[3] = y0;
720                         
721                         Real x3(x[3]);
722                         Real y3(y[3]);
723                         for (int j = 0; j < 4; ++j)
724                                 TransformXYPair(x[j],y[j], transform);
725
726                         range.second = AddBezier(Bezier(x[0],y[0],x[1],y[1],x[2],y[2],x[3],y[3]));
727                         //Debug("[%u] returnto %f,%f %f,%f", index, Float(x[0]),Float(y[0]),Float(x[1]),Float(y[1]));
728                         
729                         x[0] = x3;
730                         y[0] = y3;
731                         command = "m";
732                 }
733                 else
734                 {
735                         Warn("Unrecognised command \"%s\", set to \"m\"", command.c_str());
736                         command = "m";
737                 }
738                 
739                 if (!start)
740                 {
741                         x0 = x[0];
742                         y0 = y[0];
743                         start = true;
744                 }
745                 prev_i = i;
746         }
747         return range;
748 }
749
750 void Document::SetFont(const string & font_filename)
751 {
752         if (m_font_data != NULL)
753         {
754                 free(m_font_data);
755         }
756         
757         FILE *font_file = fopen("DejaVuSansMono.ttf", "rb");
758         fseek(font_file, 0, SEEK_END);
759         size_t font_file_size = ftell(font_file);
760         fseek(font_file, 0, SEEK_SET);
761         m_font_data = (unsigned char*)malloc(font_file_size);
762         size_t read = fread(m_font_data, 1, font_file_size, font_file);
763         if (read != font_file_size)
764         {
765                 Fatal("Failed to read font data from \"%s\" - Read %u bytes expected %u - %s", font_filename.c_str(), read, font_file_size, strerror(errno));
766         }
767         fclose(font_file);
768         stbtt_InitFont(&m_font, m_font_data, 0);
769 }
770
771 void Document::AddText(const string & text, Real scale, Real x, Real y)
772 {
773         if (m_font_data == NULL)
774         {
775                 Warn("No font loaded");
776                 return;
777         }
778                 
779         float font_scale = stbtt_ScaleForPixelHeight(&m_font, scale);
780         Real x0(x);
781         //Real y0(y);
782         int ascent = 0, descent = 0, line_gap = 0;
783         stbtt_GetFontVMetrics(&m_font, &ascent, &descent, &line_gap);
784         Real y_advance = Real(font_scale) * Real(ascent - descent + line_gap);
785         for (unsigned i = 0; i < text.size(); ++i)
786         {
787                 if (text[i] == '\n')
788                 {
789                         y += y_advance;
790                         x = x0;
791                 }
792                 if (!isprint(text[i]))
793                         continue;
794                         
795                 int advance_width = 0, left_side_bearing = 0, kerning = 0;
796                 stbtt_GetCodepointHMetrics(&m_font, text[i], &advance_width, &left_side_bearing);
797                 if (i > 1)
798                 {
799                         kerning = stbtt_GetCodepointKernAdvance(&m_font, text[i-1], text[i]);
800                 }
801                 x += Real(font_scale) * Real(left_side_bearing + kerning);
802                 AddFontGlyphAtPoint(&m_font, text[i], font_scale, x, y);
803                 x += Real(font_scale) * Real(advance_width);
804         }
805 }
806
807 void Document::AddFontGlyphAtPoint(stbtt_fontinfo *font, int character, Real scale, Real x, Real y)
808 {
809         int glyph_index = stbtt_FindGlyphIndex(font, character);
810
811         // Check if there is actully a glyph to render.
812         if (stbtt_IsGlyphEmpty(font, glyph_index))
813         {
814                 return;
815         }
816
817         stbtt_vertex *instructions;
818         int num_instructions = stbtt_GetGlyphShape(font, glyph_index, &instructions);
819
820         Real current_x(0), current_y(0);
821
822         for (int i = 0; i < num_instructions; ++i)
823         {
824                 // TTF uses 16-bit signed ints for coordinates:
825                 // with the y-axis inverted compared to us.
826                 // Convert and scale any data.
827                 Real inst_x = Real(instructions[i].x)*scale;
828                 Real inst_y = Real(instructions[i].y)*-scale;
829                 Real inst_cx = Real(instructions[i].cx)*scale;
830                 Real inst_cy = Real(instructions[i].cy)*-scale;
831                 Real old_x(current_x), old_y(current_y);
832                 current_x = inst_x;
833                 current_y = inst_y;
834                 //unsigned bezier_index;
835                 switch(instructions[i].type)
836                 {
837                 // Move To
838                 case STBTT_vmove:
839                         break;
840                 // Line To
841                 case STBTT_vline:
842                         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));
843                         //Add(BEZIER,Rect(0,0,1,1),bezier_index);
844                         break;
845                 // Quadratic Bezier To:
846                 case STBTT_vcurve:
847                         // Quadratic -> Cubic:
848                         // - Endpoints are the same.
849                         // - cubic1 = quad0+(2/3)*(quad1-quad0)
850                         // - cubic2 = quad2+(2/3)*(quad1-quad2)
851                         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,
852                                                 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));
853                         break;
854                 }
855         }
856
857         stbtt_FreeShape(font, instructions);
858 }

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