X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=d65dc6018945cfb0157723c33f158772da04650c;hp=2612afca1acad968bf0db867a79136e1a428cf85;hb=888817a67a9d840be66b52811b01eb77f10ff3e6;hpb=6dd539966821debd18e0b86ed126742cd81d7fc9 diff --git a/src/main.cpp b/src/main.cpp index 2612afc..d65dc60 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3,18 +3,28 @@ #include "controlpanel.h" +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif +#include int main(int argc, char ** argv) { + #if REALTYPE == REAL_IRRAM + iRRAM_initialize(argc,argv); + #endif + #ifndef __STDC_IEC_559__ Warn("__STDC_IEC_559__ not defined. IEEE 754 floating point not fully supported.\n"); #endif + // We want to crash if we ever get a NaN. + feenableexcept(FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW); - Debug("Compiled with REAL = %d => \"%s\" sizeof(Real) == %d bytes", REAL, g_real_name[REAL], sizeof(Real)); + Debug("Compiled with REAL = %d => \"%s\" sizeof(Real) == %d bytes", REALTYPE, g_real_name[REALTYPE], sizeof(Real)); - Document doc; + Document doc("","fonts/ComicSans.ttf"); srand(time(NULL)); enum {OUTPUT_TO_BMP, LOOP} mode = LOOP; @@ -46,22 +56,6 @@ int main(int argc, char ** argv) output_bmp = argv[i]; break; - case 'c': - { - Debug("Reading paint colour"); - for (int j = 1; j <= 4; ++j) - { - if (i+j >= argc) - Fatal("No %d colour component following -c switch", j); - char * e; - float * comp = (j == 1) ? (&c.r) : ((j == 2) ? (&c.g) : ((j == 3) ? (&c.b) : &(c.a))); - *comp = strtof(argv[i+j], &e); - if (*e != '\0') - Fatal("Colour component %d not a valid float", j); - } - i += 4; - break; - } case 'b': { Debug("Reading view bounds"); @@ -86,9 +80,7 @@ int main(int argc, char ** argv) } else { - //doc.AddBezier(Bezier(0,0, 1,0.5, 0.5,1, 1,1)); - doc.AddText("The quick brown\nfox jumps over\nthe lazy dog",0.1,0,0.5); - //doc.AddBezier(Bezier(0,0,0,0.1,0,0.1,0,0.1)); + doc.Add(RECT_OUTLINE, Rect(0,0,0,0),0); // hack to stop segfault if document is empty (:S) } Debug("Start!"); Rect bounds(b[0],b[1],b[2],b[3]);