SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GLHelper Class Reference

Some methods which help to draw certain geometrical objects in openGL. More...

#include <GLHelper.h>

Static Public Member Functions

static void drawBoxLine (const Position &beg, SUMOReal rot, SUMOReal visLength, SUMOReal width)
 Draws a thick line. More...
 
static void drawBoxLine (const Position &beg1, const Position &beg2, SUMOReal rot, SUMOReal visLength, SUMOReal width)
 Draws a thick line using the mean of both given points as begin position. More...
 
static void drawBoxLines (const PositionVector &geom, const std::vector< SUMOReal > &rots, const std::vector< SUMOReal > &lengths, SUMOReal width, int cornerDetail=0)
 Draws thick lines. More...
 
static void drawBoxLines (const PositionVector &geom1, const PositionVector &geom2, const std::vector< SUMOReal > &rots, const std::vector< SUMOReal > &lengths, SUMOReal width)
 Draws thick lines using the mean of the points given in the point lists as begin positions. More...
 
static void drawBoxLines (const PositionVector &geom, SUMOReal width)
 Draws thick lines. More...
 
static void drawFilledCircle (SUMOReal width, int steps=8)
 Draws a filled circle around (0,0) More...
 
static void drawFilledCircle (SUMOReal width, int steps, SUMOReal beg, SUMOReal end)
 Draws a filled circle around (0,0) More...
 
static void drawFilledPoly (const PositionVector &v, bool close)
 Draws a filled polygon described by the list of points. More...
 
static void drawFilledPolyTesselated (const PositionVector &v, bool close)
 Draws a filled polygon described by the list of points. More...
 
static void drawLine (const Position &beg, SUMOReal rot, SUMOReal visLength)
 Draws a thin line. More...
 
static void drawLine (const Position &beg1, const Position &beg2, SUMOReal rot, SUMOReal visLength)
 Draws a thin line using the mean of both given points as begin position. More...
 
static void drawLine (const PositionVector &v)
 Draws a thin line along the given position vector. More...
 
static void drawLine (const Position &beg, const Position &end)
 Draws a thin line between the two points. More...
 
static void drawOutlineCircle (SUMOReal width, SUMOReal iwidth, int steps=8)
 Draws an unfilled circle around (0,0) More...
 
static void drawOutlineCircle (SUMOReal width, SUMOReal iwidth, int steps, SUMOReal beg, SUMOReal end)
 Draws an unfilled circle around (0,0) More...
 
static void drawText (const std::string &text, const Position &pos, const SUMOReal layer, const SUMOReal size, const RGBColor &col=RGBColor::BLACK, const SUMOReal angle=0)
 draw Text with given parameters More...
 
static void drawTextBox (const std::string &text, const Position &pos, const SUMOReal layer, const SUMOReal size, const RGBColor &txtColor=RGBColor::BLACK, const RGBColor &bgColor=RGBColor::WHITE, const RGBColor &borderColor=RGBColor::BLACK, const SUMOReal angle=0)
 draw Text box with given parameters More...
 
static void drawTriangleAtEnd (const Line &l, SUMOReal tLength, SUMOReal tWidth)
 Draws a triangle at the end of the given line. More...
 
static RGBColor getColor ()
 gets the gl-color More...
 
static void setColor (const RGBColor &c)
 Sets the gl-color to this value. More...
 

Static Private Attributes

static std::vector< std::pair
< SUMOReal, SUMOReal > > 
myCircleCoords
 Storage for precomputed sin/cos-values describing a circle. More...
 

Detailed Description

Some methods which help to draw certain geometrical objects in openGL.

This class offers some static methods for drawing primitives in openGL.

Definition at line 51 of file GLHelper.h.

Member Function Documentation

void GLHelper::drawBoxLine ( const Position beg,
SUMOReal  rot,
SUMOReal  visLength,
SUMOReal  width 
)
static

Draws a thick line.

The line is drawn as a GL_QUADS.

Parameters
[in]begThe begin position of the line
[in]rotThe direction the line shall be drawn to (in radiants)
[in]visLengthThe length of the line
[in]widthThe width of the line

Definition at line 124 of file GLHelper.cpp.

References Position::x(), and Position::y().

Referenced by GUIVehicle::drawAction_drawVehicleAsPoly(), GUILane::drawArrows(), drawBoxLines(), GUIE3Collector::MyWrapper::drawSingleCrossing(), and drawTextBox().

void GLHelper::drawBoxLine ( const Position beg1,
const Position beg2,
SUMOReal  rot,
SUMOReal  visLength,
SUMOReal  width 
)
static

Draws a thick line using the mean of both given points as begin position.

The line is drawn as a GL_QUADS.

Parameters
[in]beg1One of the begin positions of the line to use the mean of
[in]beg2One of the begin positions of the line to use the mean of
[in]rotThe direction the line shall be drawn to (in radiants)
[in]visLengthThe length of the line
[in]widthThe width of the line

Definition at line 140 of file GLHelper.cpp.

References Position::x(), and Position::y().

void GLHelper::drawBoxLines ( const PositionVector geom,
const std::vector< SUMOReal > &  rots,
const std::vector< SUMOReal > &  lengths,
SUMOReal  width,
int  cornerDetail = 0 
)
static

Draws thick lines.

Each line is drawn using drawBoxLine.

Parameters
[in]geomThe list of begin positions of the lines
[in]rotsThe directions the lines shall be drawn to (in radiants)
[in]lengthsThe lengths of the lines
[in]widthThe width of the lines
[in]cornerDetailDetail level for filling the corners between angled segments
See also
drawBoxLine

Definition at line 157 of file GLHelper.cpp.

References drawBoxLine(), and drawFilledCircle().

Referenced by GUIVehicle::drawBestLanes(), GUIPerson::drawGL(), GUIBusStop::drawGL(), GUI_E2_ZS_Collector::MyWrapper::drawGL(), GUILane::drawGL(), GUILane::drawMarkings(), GUIVehicle::drawRouteHelper(), and GUIPolygon::performTesselation().

void GLHelper::drawBoxLines ( const PositionVector geom1,
const PositionVector geom2,
const std::vector< SUMOReal > &  rots,
const std::vector< SUMOReal > &  lengths,
SUMOReal  width 
)
static

Draws thick lines using the mean of the points given in the point lists as begin positions.

Each line is drawn using drawBoxLine.

Parameters
[in]geom1One of the lists to obtain the lines' begin positions to use the mean of
[in]geom2One of the lists to obtain the lines' begin positions to use the mean of
[in]rotsThe directions the lines shall be drawn to (in radiants)
[in]lengthsThe lengths of the lines
[in]widthThe width of the lines
See also
drawBoxLine

Definition at line 178 of file GLHelper.cpp.

References drawBoxLine(), and MIN4().

void GLHelper::drawBoxLines ( const PositionVector geom,
SUMOReal  width 
)
static

Draws thick lines.

Widths and length are computed internally by this method, each line is then drawn using drawBoxLine.

Parameters
[in]geomThe list of begin positions of the lines
[in]widthThe width of the lines
See also
drawBoxLine

Definition at line 191 of file GLHelper.cpp.

References Position::distanceTo(), drawBoxLine(), RAD2DEG, Position::x(), and Position::y().

void GLHelper::drawFilledCircle ( SUMOReal  width,
int  steps = 8 
)
static

Draws a filled circle around (0,0)

The circle is drawn by calling drawFilledCircle(width, steps, 0, 360).

Parameters
[in]widthThe width of the circle
[in]stepsThe number of steps to divide the circle into

Definition at line 256 of file GLHelper.cpp.

Referenced by GUIPerson::drawAction_drawAsPoly(), drawAction_drawBlinker(), GUIVehicle::drawAction_drawVehicleAsPoly(), drawAction_drawVehicleBrakeLight(), drawBoxLines(), GUITrafficLightLogicWrapper::drawGL(), GUILaneSpeedTrigger::drawGL(), GUIPointOfInterest::drawGL(), GUIBusStop::drawGL(), GUITriggeredRerouter::GUITriggeredRerouterEdge::drawGL(), and GUIVehicle::drawLinkItem().

void GLHelper::drawFilledCircle ( SUMOReal  width,
int  steps,
SUMOReal  beg,
SUMOReal  end 
)
static

Draws a filled circle around (0,0)

The circle is drawn use GL_TRIANGLES.

Parameters
[in]widthThe width of the circle
[in]stepsThe number of steps to divide the circle into
[in]begThe begin angle in degress
[in]endThe end angle in degress

Definition at line 262 of file GLHelper.cpp.

References DEG2RAD, myCircleCoords, and SUMOReal.

void GLHelper::drawFilledPoly ( const PositionVector v,
bool  close 
)
static

Draws a filled polygon described by the list of points.

Note
this only works well for convex polygons
Parameters
[in]vThe polygon to draw
[in]closeWhether the first point shall be appended

Definition at line 71 of file GLHelper.cpp.

References Position::x(), and Position::y().

Referenced by GUIJunctionWrapper::drawGL(), and GUILane::drawGL().

void GLHelper::drawFilledPolyTesselated ( const PositionVector v,
bool  close 
)
static

Draws a filled polygon described by the list of points.

Note
this works for convex and concave polygons but is slower than drawFilledPoly
Parameters
[in]vThe polygon to draw
[in]closeWhether the first point shall be appended

Definition at line 90 of file GLHelper.cpp.

References combCallback().

Referenced by GUIJunctionWrapper::drawGL(), and GUILane::drawGL().

void GLHelper::drawLine ( const Position beg,
SUMOReal  rot,
SUMOReal  visLength 
)
static

Draws a thin line.

The line is drawn as a GL_LINES.

Parameters
[in]begThe begin position of the line
[in]rotThe direction the line shall be drawn to (in radiants)
[in]visLengthThe length of the line

Definition at line 205 of file GLHelper.cpp.

References Position::x(), and Position::y().

Referenced by GUIVehicle::drawBestLanes(), GUI_E2_ZS_Collector::MyWrapper::drawGL(), GUILane::drawGL(), and GUIPolygon::performTesselation().

void GLHelper::drawLine ( const Position beg1,
const Position beg2,
SUMOReal  rot,
SUMOReal  visLength 
)
static

Draws a thin line using the mean of both given points as begin position.

The line is drawn as a GL_LINES.

Parameters
[in]beg1One of the begin positions of the line to use the mean of
[in]beg2One of the begin positions of the line to use the mean of
[in]rotThe direction the line shall be drawn to (in radiants)
[in]visLengthThe length of the line

Definition at line 218 of file GLHelper.cpp.

References Position::x(), and Position::y().

void GLHelper::drawLine ( const PositionVector v)
static

Draws a thin line along the given position vector.

The line is drawn as a GL_LINES.

Parameters
[in]vThe positions vector to use

Definition at line 233 of file GLHelper.cpp.

void GLHelper::drawLine ( const Position beg,
const Position end 
)
static

Draws a thin line between the two points.

The line is drawn as a GL_LINES.

Parameters
[in]begBegin of the line
[in]endEnd of the line

Definition at line 246 of file GLHelper.cpp.

References Position::x(), and Position::y().

void GLHelper::drawOutlineCircle ( SUMOReal  width,
SUMOReal  iwidth,
int  steps = 8 
)
static

Draws an unfilled circle around (0,0)

The circle is drawn by calling drawOutlineCircle(width, iwidth, steps, 0, 360).

Parameters
[in]widthThe (outer) width of the circle
[in]iwidthThe inner width of the circle
[in]stepsThe number of steps to divide the circle into

Definition at line 294 of file GLHelper.cpp.

void GLHelper::drawOutlineCircle ( SUMOReal  width,
SUMOReal  iwidth,
int  steps,
SUMOReal  beg,
SUMOReal  end 
)
static

Draws an unfilled circle around (0,0)

The circle is drawn use GL_TRIANGLES.

Parameters
[in]widthThe (outer) width of the circle
[in]iwidthThe inner width of the circle
[in]stepsThe number of steps to divide the circle into
[in]begThe begin angle in degress
[in]endThe end angle in degress

Definition at line 300 of file GLHelper.cpp.

References DEG2RAD, myCircleCoords, and SUMOReal.

void GLHelper::drawText ( const std::string &  text,
const Position pos,
const SUMOReal  layer,
const SUMOReal  size,
const RGBColor col = RGBColor::BLACK,
const SUMOReal  angle = 0 
)
static
void GLHelper::drawTextBox ( const std::string &  text,
const Position pos,
const SUMOReal  layer,
const SUMOReal  size,
const RGBColor txtColor = RGBColor::BLACK,
const RGBColor bgColor = RGBColor::WHITE,
const RGBColor borderColor = RGBColor::BLACK,
const SUMOReal  angle = 0 
)
static
void GLHelper::drawTriangleAtEnd ( const Line l,
SUMOReal  tLength,
SUMOReal  tWidth 
)
static

Draws a triangle at the end of the given line.

Parameters
[in]lThe line at which end the triangle shall be drawn
[in]tLengthThe length of the triangle
[in]tWidthThe width of the triangle

Definition at line 341 of file GLHelper.cpp.

References Line::atan2DegreeAngle(), Line::getPositionAtDistance(), Line::length(), and Line::p2().

Referenced by GUILane::drawArrows(), GUILane::drawLane2LaneConnections(), and GUIE3Collector::MyWrapper::drawSingleCrossing().

RGBColor GLHelper::getColor ( )
static

Field Documentation

std::vector< std::pair< SUMOReal, SUMOReal > > GLHelper::myCircleCoords
staticprivate

Storage for precomputed sin/cos-values describing a circle.

Definition at line 267 of file GLHelper.h.

Referenced by drawFilledCircle(), and drawOutlineCircle().


The documentation for this class was generated from the following files: