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

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