ROOT logo
#ifndef ROOT_TGLPadUtils
#define ROOT_TGLPadUtils

#include <vector>

#ifndef ROOT_RStipples
#include "RStipples.h"
#endif
#ifndef ROOT_TPoint
#include "TPoint.h"
#endif
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif

class TGLPadPainter;//For friend declarations.

/*

All code here and in corresponding *.cxx file is only
for TGLPadPainter. So, it can be limited or wrong
for something else, but it's OK for TGLPadPainter.

*/

namespace Rgl {
namespace Pad {
/*
Auxiliary class to converts ROOT's polygon stipples from
RStipples.h into GL's stipples and hold them in a fStipples array.
*/
class PolygonStippleSet {
   friend class ::TGLPadPainter;
   friend class FillAttribSet;
private:
   std::vector<unsigned char> fStipples;
   
   static const UInt_t fgBitSwap[];
   static UInt_t SwapBits(UInt_t bits);
      
   enum EGeometry {
      kRowSize = 4,//For gl, stipple is a 32x32 pixel pattern. So, 4 GLubyte objects form a single line of a stipple.
      kNRows = 32,
      kStippleSize = kNRows * kRowSize//4 * 32 == 32 lines.   
   };
   
   enum EBitMasks {
      kLow4   = 0xf,
      kUp4    = 0xf0,
      k16Bits = 0xff
   };
public:
   PolygonStippleSet();
};

/*
RAII class to enable/disable selected stipple.
*/
class FillAttribSet {
   UInt_t fStipple;
public:
   FillAttribSet(const PolygonStippleSet & set, Bool_t ignoreStipple);
   ~FillAttribSet();
};

/*
"ROOT like" line stipples.
*/

extern const UShort_t gLineStipples[];
extern const UInt_t gMaxStipple;

/*
Set/unset line attributes.
*/
class LineAttribSet {
private:
   Bool_t fSmooth;
   UInt_t fStipple;
   Bool_t fSetWidth;
public:
   LineAttribSet(Bool_t smooth, UInt_t stipple, Double_t maxWidth, Bool_t setWidth);
   ~LineAttribSet();
};

/*
Marker painter. Most markers can be painted by standlone functions.
For circles, it can be usefull to precalculate the marker geometry
and use it for poly-markers.
*/
/*
Marker painter. Most markers can be painted by standlone functions.
For circles, it can be usefull to precalculate the marker geometry
and use it for poly-markers.
*/
class MarkerPainter {
private:
   //Different TArrMarker styles.
   mutable TPoint fStar[8];
   mutable TPoint fCross[4];
   
   mutable std::vector<TPoint> fCircle;
   
   enum {
      kSmallCirclePts = 80,
      kLargeCirclePts = 150
   };
   
public:
   //Each function draw n markers.
   void DrawDot(UInt_t n, const TPoint *xy)const;
   void DrawPlus(UInt_t n, const TPoint *xy)const;
   void DrawStar(UInt_t n, const TPoint *xy)const;
   void DrawX(UInt_t n, const TPoint *xy)const;
   void DrawFullDotSmall(UInt_t n, const TPoint *xy)const;
   void DrawFullDotMedium(UInt_t n, const TPoint *xy)const;
   
   void DrawCircle(UInt_t n, const TPoint *xy)const;
   void DrawFullDotLarge(UInt_t n, const TPoint *xy)const;
   
   void DrawFullSquare(UInt_t n, const TPoint *xy)const;
   void DrawFullTrianlgeUp(UInt_t n, const TPoint *xy)const;
   void DrawFullTrianlgeDown(UInt_t n, const TPoint *xy)const;
   void DrawDiamond(UInt_t n, const TPoint *xy)const;
   void DrawCross(UInt_t n, const TPoint *xy)const;
   void DrawFullStar(UInt_t n, const TPoint *xy)const;
   void DrawOpenStar(UInt_t n, const TPoint *xy)const;

};

class Tesselator {
public:
   Tesselator();
   ~Tesselator();
   
   void *GetTess()const
   {
      return fTess;
   }
private:
   void *fTess;
};

/*
In future, this should be an interface to per-pad FBO.
Currently, in only save sizes and coordinates (?)
*/
class OffScreenDevice {
   friend class ::TGLPadPainter;
public:
   OffScreenDevice(UInt_t w, UInt_t h, UInt_t x, UInt_t y, Bool_t top);
   
private:
   UInt_t fW;
   UInt_t fH;
   UInt_t fX;
   UInt_t fY;
   Bool_t fTop;
};

void ExtractRGB(Color_t colorIndex, Float_t * rgb);

class GLLimits {
public:
   GLLimits();

   Double_t GetMaxLineWidth()const;
   Double_t GetMaxPointSize()const;
private:
   mutable Double_t fMaxLineWidth;
   mutable Double_t fMaxPointSize;
};

}//namespace Pad
}//namespace Rgl

#endif
 TGLPadUtils.h:1
 TGLPadUtils.h:2
 TGLPadUtils.h:3
 TGLPadUtils.h:4
 TGLPadUtils.h:5
 TGLPadUtils.h:6
 TGLPadUtils.h:7
 TGLPadUtils.h:8
 TGLPadUtils.h:9
 TGLPadUtils.h:10
 TGLPadUtils.h:11
 TGLPadUtils.h:12
 TGLPadUtils.h:13
 TGLPadUtils.h:14
 TGLPadUtils.h:15
 TGLPadUtils.h:16
 TGLPadUtils.h:17
 TGLPadUtils.h:18
 TGLPadUtils.h:19
 TGLPadUtils.h:20
 TGLPadUtils.h:21
 TGLPadUtils.h:22
 TGLPadUtils.h:23
 TGLPadUtils.h:24
 TGLPadUtils.h:25
 TGLPadUtils.h:26
 TGLPadUtils.h:27
 TGLPadUtils.h:28
 TGLPadUtils.h:29
 TGLPadUtils.h:30
 TGLPadUtils.h:31
 TGLPadUtils.h:32
 TGLPadUtils.h:33
 TGLPadUtils.h:34
 TGLPadUtils.h:35
 TGLPadUtils.h:36
 TGLPadUtils.h:37
 TGLPadUtils.h:38
 TGLPadUtils.h:39
 TGLPadUtils.h:40
 TGLPadUtils.h:41
 TGLPadUtils.h:42
 TGLPadUtils.h:43
 TGLPadUtils.h:44
 TGLPadUtils.h:45
 TGLPadUtils.h:46
 TGLPadUtils.h:47
 TGLPadUtils.h:48
 TGLPadUtils.h:49
 TGLPadUtils.h:50
 TGLPadUtils.h:51
 TGLPadUtils.h:52
 TGLPadUtils.h:53
 TGLPadUtils.h:54
 TGLPadUtils.h:55
 TGLPadUtils.h:56
 TGLPadUtils.h:57
 TGLPadUtils.h:58
 TGLPadUtils.h:59
 TGLPadUtils.h:60
 TGLPadUtils.h:61
 TGLPadUtils.h:62
 TGLPadUtils.h:63
 TGLPadUtils.h:64
 TGLPadUtils.h:65
 TGLPadUtils.h:66
 TGLPadUtils.h:67
 TGLPadUtils.h:68
 TGLPadUtils.h:69
 TGLPadUtils.h:70
 TGLPadUtils.h:71
 TGLPadUtils.h:72
 TGLPadUtils.h:73
 TGLPadUtils.h:74
 TGLPadUtils.h:75
 TGLPadUtils.h:76
 TGLPadUtils.h:77
 TGLPadUtils.h:78
 TGLPadUtils.h:79
 TGLPadUtils.h:80
 TGLPadUtils.h:81
 TGLPadUtils.h:82
 TGLPadUtils.h:83
 TGLPadUtils.h:84
 TGLPadUtils.h:85
 TGLPadUtils.h:86
 TGLPadUtils.h:87
 TGLPadUtils.h:88
 TGLPadUtils.h:89
 TGLPadUtils.h:90
 TGLPadUtils.h:91
 TGLPadUtils.h:92
 TGLPadUtils.h:93
 TGLPadUtils.h:94
 TGLPadUtils.h:95
 TGLPadUtils.h:96
 TGLPadUtils.h:97
 TGLPadUtils.h:98
 TGLPadUtils.h:99
 TGLPadUtils.h:100
 TGLPadUtils.h:101
 TGLPadUtils.h:102
 TGLPadUtils.h:103
 TGLPadUtils.h:104
 TGLPadUtils.h:105
 TGLPadUtils.h:106
 TGLPadUtils.h:107
 TGLPadUtils.h:108
 TGLPadUtils.h:109
 TGLPadUtils.h:110
 TGLPadUtils.h:111
 TGLPadUtils.h:112
 TGLPadUtils.h:113
 TGLPadUtils.h:114
 TGLPadUtils.h:115
 TGLPadUtils.h:116
 TGLPadUtils.h:117
 TGLPadUtils.h:118
 TGLPadUtils.h:119
 TGLPadUtils.h:120
 TGLPadUtils.h:121
 TGLPadUtils.h:122
 TGLPadUtils.h:123
 TGLPadUtils.h:124
 TGLPadUtils.h:125
 TGLPadUtils.h:126
 TGLPadUtils.h:127
 TGLPadUtils.h:128
 TGLPadUtils.h:129
 TGLPadUtils.h:130
 TGLPadUtils.h:131
 TGLPadUtils.h:132
 TGLPadUtils.h:133
 TGLPadUtils.h:134
 TGLPadUtils.h:135
 TGLPadUtils.h:136
 TGLPadUtils.h:137
 TGLPadUtils.h:138
 TGLPadUtils.h:139
 TGLPadUtils.h:140
 TGLPadUtils.h:141
 TGLPadUtils.h:142
 TGLPadUtils.h:143
 TGLPadUtils.h:144
 TGLPadUtils.h:145
 TGLPadUtils.h:146
 TGLPadUtils.h:147
 TGLPadUtils.h:148
 TGLPadUtils.h:149
 TGLPadUtils.h:150
 TGLPadUtils.h:151
 TGLPadUtils.h:152
 TGLPadUtils.h:153
 TGLPadUtils.h:154
 TGLPadUtils.h:155
 TGLPadUtils.h:156
 TGLPadUtils.h:157
 TGLPadUtils.h:158
 TGLPadUtils.h:159
 TGLPadUtils.h:160
 TGLPadUtils.h:161
 TGLPadUtils.h:162
 TGLPadUtils.h:163
 TGLPadUtils.h:164
 TGLPadUtils.h:165
 TGLPadUtils.h:166
 TGLPadUtils.h:167
 TGLPadUtils.h:168
 TGLPadUtils.h:169
 TGLPadUtils.h:170
 TGLPadUtils.h:171
 TGLPadUtils.h:172
 TGLPadUtils.h:173
 TGLPadUtils.h:174
 TGLPadUtils.h:175
 TGLPadUtils.h:176
 TGLPadUtils.h:177