X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fipdf.h;h=633c8ef12c2dc3da64681f61f56e5738c53f2717;hp=c34f5ed57adea2908484cf548f24904e1ac977f3;hb=888817a67a9d840be66b52811b01eb77f10ff3e6;hpb=32cd67ec48271c176eba218e082fcf5824aa8e6c diff --git a/src/ipdf.h b/src/ipdf.h index c34f5ed..633c8ef 100644 --- a/src/ipdf.h +++ b/src/ipdf.h @@ -3,41 +3,54 @@ #include "common.h" #include "real.h" +#include "bezier.h" +#include "rect.h" + +#include "path.h" namespace IPDF { inline Real Random(Real max=1, Real min=0) { - return min + (max-min) * ((Real)(rand() % (int)1e6) / 1e6); + return min + (max-min) * (Real(rand() % (int)1e6) / Real(1e6)); } typedef unsigned ObjectID; - typedef enum {RECT_FILLED, RECT_OUTLINE} ObjectType; + /** Type of object + * NOTE: Extra entry in the enum so we can use this as an array index + */ + typedef enum + { + CIRCLE_FILLED = 0, + RECT_FILLED, + RECT_OUTLINE, + BEZIER, + PATH, + NUMBER_OF_OBJECT_TYPES + } ObjectType; enum DocChunkTypes { + CT_NUMOBJS, CT_OBJTYPES, - CT_OBJBOUNDS - }; - - struct Rect - { - Real x; Real y; Real w; Real h; - Rect() = default; // Needed so we can fread/fwrite this struct - Rect(Real _x, Real _y, Real _w, Real _h) : x(_x), y(_y), w(_w), h(_h) {} - std::string Str() - { - std::stringstream s; - s << "{" << x << ", " << y << ", " << w << ", " << h << "}"; - return s.str(); - } + CT_OBJBOUNDS, + CT_OBJINDICES, + CT_OBJBEZIERS, + CT_OBJPATHS }; struct Objects { - std::vector types; - std::vector bounds; + /** Used by all objects **/ + std::vector types; // types of objects + std::vector bounds; // rectangle bounds of objects + /** Used by BEZIER and GROUP to identify data position in relevant vector **/ + std::vector data_indices; + /** Used by BEZIER only **/ + std::vector beziers; // bezier curves - look up by data_indices + /** Used by PATH only **/ + std::vector paths; }; class View;