Merge branch 'master' of git.ucc.asn.au:ipdf/code
[ipdf/code.git] / src / ipdf.h
1 #ifndef _IPDF_H
2 #define _IPDF_H
3
4 #include "common.h"
5 #include "real.h"
6
7 namespace IPDF
8 {
9
10         inline Real Random(Real max=1, Real min=0)
11         {
12                 return min + (max-min) * ((Real)(rand() % (int)1e6) / 1e6);
13         }
14
15         typedef unsigned ObjectID;
16         typedef enum {RECT_FILLED, RECT_OUTLINE} ObjectType;
17
18         enum DocChunkTypes
19         {
20                 CT_NUMOBJS,
21                 CT_OBJTYPES,
22                 CT_OBJBOUNDS
23         };
24
25         struct Rect
26         {
27                 Real x; Real y; Real w; Real h;
28                 Rect() = default; // Needed so we can fread/fwrite this struct
29                 Rect(Real _x, Real _y, Real _w, Real _h) : x(_x), y(_y), w(_w), h(_h) {}
30                 std::string Str() 
31                 {
32                         std::stringstream s;
33                         s << "{" << x << ", " << y << ", " << w << ", " << h << "}";
34                         return s.str();
35                 }
36         };
37
38         struct Colour
39         {
40                 float r; float g; float b; float a;
41                 Colour() = default;
42                 Colour(float _r, float _g, float _b, float _a) : r(_r), g(_g), b(_b), a(_a) {}
43         };
44
45         struct Objects
46         {
47                 std::vector<ObjectType> types;          
48                 std::vector<Rect> bounds;
49         };
50
51         class View;
52 }
53
54
55 #endif //_IPDF_H

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