X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fmain.cpp;h=f1833034b9b674eb3428813bc52340e20ecb5e1d;hp=9cf0c68cc5a5edfd1997d3574d9d2ae75f2f9fa1;hb=7d41c1b8d1da72ef3e238f93ee7622ae9affb9de;hpb=e164c93218ed4599614f4f6e5e815429a3fedbf7 diff --git a/src/main.cpp b/src/main.cpp index 9cf0c68..f183303 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,10 +1,26 @@ #include "main.h" #include // Because we can. + +#include "controlpanel.h" + +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif +#include + + int main(int argc, char ** argv) { - Debug("Compiled with REAL = %d => \"%s\"", REAL, g_real_name[REAL]); + #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)); - Document doc; + Document doc("","fonts/ComicSans.ttf"); srand(time(NULL)); enum {OUTPUT_TO_BMP, LOOP} mode = LOOP; @@ -72,17 +88,42 @@ int main(int argc, char ** argv) if (input_filename != NULL) { - doc.Load(input_filename); + doc.LoadSVG(input_filename, Rect(0,0,Real(1)/Real(800),Real(1)/Real(600))); } else { - doc.Add(RECT_OUTLINE, Rect(0.5,0.5,1,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]); + + Screen scr; + View view(doc,scr, bounds); + + #ifndef CONTROLPANEL_DISABLED + ControlPanel::RunArgs args = {argc, argv, view, doc, scr}; + SDL_Thread * cp_thread = SDL_CreateThread(ControlPanel::Run, "ControlPanel", &args); + if (cp_thread == NULL) + { + Error("Couldn't create ControlPanel thread: %s", SDL_GetError()); + } + #endif //CONTROLPANEL_DISABLED if (mode == LOOP) - MainLoop(doc, bounds, c); - else if (mode == OUTPUT_TO_BMP) + MainLoop(doc, scr, view); + else if (mode == OUTPUT_TO_BMP) //TODO: Remove this shit OverlayBMP(doc, input_bmp, output_bmp, bounds, c); + + #ifndef CONTROLPANEL_DISABLED + + if (cp_thread != NULL) + { + int cp_return; + qApp->quit(); // will close the control panel + // (seems to not explode if the qApp has already been quit) + SDL_WaitThread(cp_thread, &cp_return); + Debug("ControlPanel thread returned %d", cp_return); + } + #endif //CONTROLPANEL_DISABLED return 0; }