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

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