70 #pragma GCC diagnostic push 71 #pragma GCC diagnostic ignored "-Wpedantic" 73 #include <gdal_priv.h> 75 #pragma GCC diagnostic pop 117 FXIMPLEMENT_ABSTRACT(
GUISUMOAbstractView, FXGLCanvas, GUISUMOAbstractViewMap, ARRAYNUMBER(GUISUMOAbstractViewMap))
124 FXGLCanvas(p, glVis, share, p,
MID_GLCANVAS, LAYOUT_SIDE_TOP | LAYOUT_FILL_X | LAYOUT_FILL_Y, 0, 0, 0, 0),
129 myMouseHotspotX(app.getDefaultCursor()->getHotX()),
130 myMouseHotspotY(app.getDefaultCursor()->getHotY()),
133 myUseToolTips(false),
134 myAmInitialised(false),
135 myViewportChooser(
nullptr),
136 myWindowCursorPositionX(getWidth() / 2),
137 myWindowCursorPositionY(getHeight() / 2),
138 myVisualizationChanger(
nullptr) {
141 flags |= FLAG_ENABLED;
142 myInEditMode =
false;
146 myVisualizationSettings->
gaming = myApp->isGaming();
159 for (std::vector<GUISUMOAbstractView::Decal>::iterator it =
myDecals.begin(); it !=
myDecals.end(); ++it) {
214 double xNet = bound.
xmin() + bound.
getWidth() * x / getWidth();
216 double yNet = bound.
ymin() + bound.
getHeight() * (getHeight() - y) / getHeight();
272 if (getWidth() == 0 || getHeight() == 0) {
291 glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
292 glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
297 glDisable(GL_DITHER);
300 glDisable(GL_LINE_SMOOTH);
329 std::vector<GUIGlObject*>
343 double maxLayer = -std::numeric_limits<double>::max();
345 for (
const auto &i : ids) {
360 double layer = (double)type;
365 layer =
dynamic_cast<Shape*
>(o)->getShapeLayer();
372 if (layer > maxLayer) {
387 std::vector<GUIGlID> result;
391 selection.
grow(radius);
395 for (
const auto &i : ids) {
419 std::vector<GUIGlObject*>
422 std::vector<GUIGlObject*> result;
426 selection.
grow(radius);
430 for (
const auto &i : ids) {
451 const int NB_HITS_MAX = 1024 * 1024;
453 static GUIGlID hits[NB_HITS_MAX];
454 static GLint nb_hits = 0;
455 glSelectBuffer(NB_HITS_MAX, hits);
467 nb_hits = glRenderMode(GL_RENDER);
471 std::vector<GUIGlID> result;
474 for (
int i = 0; i < nb_hits; ++i) {
477 for (
int j = 0; j < (int)numNames; j++) {
478 result.push_back(*ptr);
492 if (
object !=
nullptr) {
495 std::string label =
object->getFullName();
514 glEnable(GL_DEPTH_TEST);
529 glTranslated(0, 0, .55);
530 glColor3d(0.5, 0.5, 0.5);
533 while (ypos <= ymax) {
534 glVertex2d(xmin, ypos);
535 glVertex2d(xmax, ypos);
539 while (xpos <= xmax) {
540 glVertex2d(xpos, ymin);
541 glVertex2d(xpos, ymax);
545 glTranslated(0, 0, -.55);
554 const std::string text(
"10000000000");
556 int pixelSize = (int)
m2p((
double) length);
557 while (pixelSize <= 20) {
560 if (noDigits > (
int)text.length()) {
563 pixelSize = (int)
m2p((
double) length);
567 glMatrixMode(GL_PROJECTION);
570 glMatrixMode(GL_MODELVIEW);
576 glDisable(GL_TEXTURE_2D);
577 glDisable(GL_ALPHA_TEST);
579 glEnable(GL_DEPTH_TEST);
581 glTranslated(0, 0, z);
583 double len = (double) pixelSize / (
double)(getWidth() - 1) * (
double) 2.0;
585 double o = double(15) / double(getHeight());
587 double oo = double(5) / double(getHeight());
590 glVertex2d(-.98, -1. + o);
591 glVertex2d(-.98 + len, -1. + o);
593 glVertex2d(-.98, -1. + o);
594 glVertex2d(-.98, -1. + o2);
596 glVertex2d(-.98 + len, -1. + o);
597 glVertex2d(-.98 + len, -1. + o2);
601 const double fontHeight = 0.1 * 300. / getHeight();
602 const double fontWidth = 0.1 * 300. / getWidth();
610 glMatrixMode(GL_PROJECTION);
612 glMatrixMode(GL_MODELVIEW);
638 if (o !=
nullptr && dynamic_cast<GUIGlObject*>(o) !=
nullptr) {
639 if (applyZoom && zoomDist < 0) {
675 FXbool ret = FXGLCanvas::makeCurrent();
683 glViewport(0, 0, getWidth() - 1, getHeight() - 1);
730 FXEvent* e = (FXEvent*) data;
732 if ((e->state & CONTROLMASK) != 0) {
750 if (e->click_count == 2) {
751 handle(
this, FXSEL(SEL_DOUBLECLICKED, 0), data);
870 myApp->getCursorPosition(x, y, b);
888 return myPopup->onKeyPress(o, sel, data);
890 FXGLCanvas::onKeyPress(o, sel, data);
899 return myPopup->onKeyRelease(o, sel, data);
901 FXGLCanvas::onKeyRelease(o, sel, data);
910 #ifdef DEBUG_SNAPSHOT 911 std::cout <<
"add snapshot time=" << time <<
" file=" << file <<
"\n";
914 mySnapshots[time].push_back(std::make_tuple(file, width, height));
921 resize(width, height);
924 std::string errorMessage;
925 FXString ext = FXPath::extension(destFile.c_str());
926 const bool useGL2PS = ext ==
"ps" || ext ==
"eps" || ext ==
"pdf" || ext ==
"svg" || ext ==
"tex" || ext ==
"pgf";
928 const bool useVideo = destFile ==
"" || ext ==
"h264" || ext ==
"hevc";
939 glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
940 glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
945 glDisable(GL_DITHER);
948 glDisable(GL_LINE_SMOOTH);
954 GLint format = GL2PS_PS;
957 }
else if (ext ==
"eps") {
959 }
else if (ext ==
"pdf") {
961 }
else if (ext ==
"tex") {
963 }
else if (ext ==
"svg") {
965 }
else if (ext ==
"pgf") {
968 return "Could not save '" + destFile +
"'.\n Unrecognized format '" + std::string(ext.text()) +
"'.";
970 FILE* fp = fopen(destFile.c_str(),
"wb");
972 return "Could not save '" + destFile +
"'.\n Could not open file for writing";
974 GLint buffsize = 0, state = GL2PS_OVERFLOW;
976 glGetIntegerv(GL_VIEWPORT, viewport);
977 while (state == GL2PS_OVERFLOW) {
978 buffsize += 1024 * 1024;
979 gl2psBeginPage(destFile.c_str(),
"sumo-gui; http://sumo.dlr.de", viewport, format, GL2PS_SIMPLE_SORT,
980 GL2PS_DRAW_BACKGROUND | GL2PS_USE_CURRENT_VIEWPORT,
981 GL_RGBA, 0, NULL, 0, 0, 0, buffsize, fp,
"out.eps");
982 glMatrixMode(GL_MODELVIEW);
984 glDisable(GL_TEXTURE_2D);
985 glDisable(GL_ALPHA_TEST);
987 glEnable(GL_DEPTH_TEST);
996 glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
998 const float minB[2] = { (float)viewPort.
xmin(), (float)viewPort.
ymin() };
999 const float maxB[2] = { (float)viewPort.
xmax(), (float)viewPort.
ymax() };
1001 glEnable(GL_POLYGON_OFFSET_FILL);
1002 glEnable(GL_POLYGON_OFFSET_LINE);
1008 state = gl2psEndPage();
1013 return "Could not save '" + destFile +
"', gl2ps was not enabled at compile time.";
1023 FXMALLOC(&buf, FXColor, getWidth()*getHeight());
1025 glReadBuffer(GL_BACK);
1027 glReadPixels(0, 0, getWidth(), getHeight(), GL_RGBA, GL_UNSIGNED_BYTE, (GLvoid*)buf);
1031 int mwidth = getWidth();
1032 int mheight = getHeight();
1034 FXColor* pbb = buf + mwidth * (mheight - 1);
1045 }
while (paa < pbb);
1051 errorMessage =
"video";
1052 }
catch (std::runtime_error& err) {
1053 errorMessage = err.what();
1058 errorMessage =
"Could not save '" + destFile +
"'.";
1061 errorMessage =
"Could not save '" + destFile +
"'.\n" + e.what();
1065 return errorMessage;
1079 #ifdef DEBUG_SNAPSHOT 1080 std::cout <<
"check snapshots time=" << time <<
" registeredTimes=" <<
mySnapshots.size() <<
"\n";
1087 std::vector<std::tuple<std::string, int, int> > files = snapIt->second;
1090 for (
const auto& entry : files) {
1091 #ifdef DEBUG_SNAPSHOT 1092 std::cout <<
"make snapshot time=" << time <<
" file=" << file <<
"\n";
1094 const std::string& error =
makeSnapshot(std::get<0>(entry), std::get<1>(entry), std::get<2>(entry));
1095 if (error !=
"" && error !=
"video") {
1103 #ifdef DEBUG_SNAPSHOT 1104 std::cout <<
" files=" <<
toString(files) <<
" myApplicationSnapshots=" <<
joinToString(*myApplicationSnapshots,
",") <<
"\n";
1142 const FXint minSize = 100;
1143 const FXint minTitlebarHeight = 20;
1144 int x =
MAX2(0,
MIN2(getApp()->reg().readIntEntry(
1145 "VIEWPORT_DIALOG_SETTINGS",
"x", 150),
1146 getApp()->getRootWindow()->getWidth() - minSize));
1147 int y =
MAX2(minTitlebarHeight,
MIN2(getApp()->reg().readIntEntry(
1148 "VIEWPORT_DIALOG_SETTINGS",
"y", 150),
1149 getApp()->getRootWindow()->getHeight() - minSize));
1259 GDALDataset* poDataset = (GDALDataset*)GDALOpen(d.
filename.c_str(), GA_ReadOnly);
1260 if (poDataset == 0) {
1263 const int xSize = poDataset->GetRasterXSize();
1264 const int ySize = poDataset->GetRasterYSize();
1266 if (d.
width <= 0.) {
1267 double adfGeoTransform[6];
1268 if (poDataset->GetGeoTransform(adfGeoTransform) == CE_None) {
1269 Position topLeft(adfGeoTransform[0], adfGeoTransform[3]);
1270 const double horizontalSize = xSize * adfGeoTransform[1];
1271 const double verticalSize = ySize * adfGeoTransform[5];
1272 Position bottomRight(topLeft.
x() + horizontalSize, topLeft.
y() + verticalSize);
1274 d.
width = bottomRight.x() - topLeft.
x();
1275 d.
height = topLeft.
y() - bottomRight.y();
1276 d.
centerX = (topLeft.
x() + bottomRight.x()) / 2;
1277 d.
centerY = (topLeft.
y() + bottomRight.y()) / 2;
1285 if (d.
width <= 0.) {
1292 const int picSize = xSize * ySize;
1294 if (!FXMALLOC(&result, FXColor, picSize)) {
1298 for (
int j = 0; j < picSize; j++) {
1299 result[j] = FXRGB(0, 0, 0);
1302 for (
int i = 1; i <= poDataset->GetRasterCount(); i++) {
1303 GDALRasterBand* poBand = poDataset->GetRasterBand(i);
1305 if (poBand->GetColorInterpretation() == GCI_RedBand) {
1307 }
else if (poBand->GetColorInterpretation() == GCI_GreenBand) {
1309 }
else if (poBand->GetColorInterpretation() == GCI_BlueBand) {
1311 }
else if (poBand->GetColorInterpretation() == GCI_AlphaBand) {
1318 assert(xSize == poBand->GetXSize() && ySize == poBand->GetYSize());
1319 if (poBand->RasterIO(GF_Read, 0, 0, xSize, ySize, ((
unsigned char*)result) + shift, xSize, ySize, GDT_Byte, 4, 4 * xSize) == CE_Failure) {
1324 GDALClose(poDataset);
1326 return new FXImage(getApp(), result, IMAGE_OWNED | IMAGE_KEEP | IMAGE_SHMI | IMAGE_SHMP, xSize, ySize);
1338 for (std::vector<GUISUMOAbstractView::Decal>::iterator l =
myDecals.begin(); l !=
myDecals.end(); ++l) {
1346 if (img ==
nullptr) {
1361 glTranslated(center.
x(), center.
y(), d.
layer);
1365 glRotated(d.
rot, 0, 0, 1);
1367 double halfWidth = d.
width / 2.;
1368 double halfHeight = d.
height / 2.;
1370 halfWidth =
p2m(halfWidth);
1371 halfHeight =
p2m(halfHeight);
1423 glMatrixMode(GL_PROJECTION);
1428 glOrtho(0, getWidth(), 0, getHeight(), -
GLO_MAX - 1,
GLO_MAX + 1);
1429 glMatrixMode(GL_MODELVIEW);
1431 double scaleX = (double)getWidth() / bound.
getWidth();
1432 double scaleY = (double)getHeight() / bound.
getHeight();
1433 glScaled(scaleX, scaleY, 1);
1434 glTranslated(-bound.
xmin(), -bound.
ymin(), 0);
1480 screenRelative(false),
GUIDialog_EditViewport * getViewportEditor()
get the viewport and create it on first access
static void drawTexturedBox(int which, double size)
Draws a named texture as a box with the given size.
void paintGLGrid()
paints a grid
A decal (an image) that can be shown.
virtual long onConfigure(FXObject *, FXSelector, void *)
mouse functions
void showToolTips(bool val)
show tool tips
double ymin() const
Returns minimum y-coordinate.
std::vector< GUIGlID > getObjectsAtPosition(Position pos, double radius)
returns the ids of the object at position within the given (rectangular) radius using GL_SELECT ...
double xmax() const
Returns maximum x-coordinate.
bool haveGrabbed() const
Returns the information whether one of the spin dialers is grabbed.
GUICompleteSchemeStorage gSchemeStorage
bool showSizeLegend
Information whether the size legend shall be drawn.
virtual void centerTo(const Position &pos, double radius, bool applyZoom=true)=0
Centers the view to the given position, setting it to a size that covers the radius. Used for: Centering of vehicles and junctions */.
double scale
information about a lane's width (temporary, used for a single view)
FXImage * checkGDALImage(Decal &d)
check whether we can read image data or position with gdal
FXImage * image
The image pointer for later cleanup.
std::map< SUMOTime, std::vector< std::tuple< std::string, int, int > > > mySnapshots
Snapshots.
virtual long onDoubleClicked(FXObject *, FXSelector, void *)
void setDefault(const std::string &name)
Makes the scheme with the given name the default.
double z() const
Returns the z-position.
bool myAmInitialised
Internal information whether doInit() was called.
static void drawTextBox(const std::string &text, const Position &pos, const double layer, const double size, const RGBColor &txtColor=RGBColor::BLACK, const RGBColor &bgColor=RGBColor::WHITE, const RGBColor &borderColor=RGBColor::BLACK, const double angle=0, const double relBorder=0.05, const double relMargin=0.5)
draw Text box with given parameters
void add(const Position &pos)
Adds the given position to this one.
virtual void recenterView()
recenters the view
FXint myWindowCursorPositionY
virtual void setRotation(double rotation)=0
Sets the rotation.
std::vector< GUIGlID > getObjectsInBoundary(Boundary bound)
returns the ids of all objects in the given boundary
SUMORTree * myGrid
The visualization speed-up.
static GUIGlID add(FXImage *i)
Adds a texture to use.
void toggleSelection(GUIGlID id)
Toggles selection of an object.
bool gaming
whether the application is in gaming mode or not
virtual long onMouseMove(FXObject *, FXSelector, void *)
unsigned char alpha() const
Returns the alpha-amount of the color.
virtual long onMiddleBtnPress(FXObject *, FXSelector, void *)
Stores the information about how to visualize structures.
The dialog to change the view (gui) settings.
static GeoConvHelper & getProcessing()
the coordinate transformation to use for input conversion and processing
void setDelay(double delay)
Sets the delay of the parent application.
const double SUMO_const_laneWidth
void displayLegend()
a line with ticks, and the length information.
bool x2cartesian(Position &from, bool includeInBoundary=true)
Converts the given coordinate into a cartesian and optionally update myConvBoundary.
void updatePositionInformation() const
update position information
double y() const
Returns the y-position.
void remove(GUIDialog_EditViewport *)
remove viewport
GUIVisualizationSettings * getVisualisationSettings() const
get visualitation settings
GUIVisualizationTextSettings edgeValue
GUIMainWindow * myApp
The application.
Position snapToActiveGrid(const Position &pos) const
Returns a position that is mapped to the closest grid point if the grid is active.
static const double SENSITIVITY
double x() const
Returns the x-position.
virtual void saveFrame(const std::string &destFile, FXColor *buf)
Adds a frame to a video snapshot which will be initialized if neccessary.
MFXMutex myDecalsLock
The mutex to use before accessing the decals list in order to avoid thread conflicts.
double centerX
The center of the image in x-direction (net coordinates, in m)
bool screenRelative
Whether this image should be skipped in 2D-views.
static void drawText(const std::string &text, const Position &pos, const double layer, const double size, const RGBColor &col=RGBColor::BLACK, const double angle=0, int align=0, double width=-1)
virtual long onLeftBtnPress(FXObject *, FXSelector, void *)
double getWidth() const
Returns the width of the boudary (x-axis)
bool myInEditMode
Information whether too-tip informations shall be generated.
virtual void openObjectDialog()
virtual Boundary getCenteringBoundary() const =0
virtual double getRotation() const =0
Returns the rotation of the canvas stored in this changer.
void setOldValues(const Position &lookFrom, const Position &lookAt, double rotation)
Resets old values.
virtual long onKeyRelease(FXObject *o, FXSelector sel, void *data)
unsigned char blue() const
Returns the blue-amount of the color.
void saveViewport(const double x, const double y, const double z)
Makes the given viewport the default.
bool addAdditionalGLVisualisation(const GUIGlObject *const which)
Adds an object to call its additional visualisation method.
int glID
whether the decal shall be drawn in screen coordinates, rather than network coordinates ...
static const RGBColor BLACK
virtual void copyViewportTo(GUISUMOAbstractView *view)
copy the viewport to the given view
virtual void onGamingClick(Position)
on gaming click
GUIDialog_ViewSettings * myVisualizationChanger
Visualization changer.
virtual double getZPos() const =0
Returns the camera height corresponding to the current zoom factor.
void set(double x, double y)
set positions x and y
virtual void stopTrack()
stop track
GUIDialog_EditViewport * myViewportChooser
viewport chooser
virtual void setDelay(double)
Sets the delay of the parent application.
A RT-tree for efficient storing of SUMO's GL-objects.
double getGridHeight() const
get grid Height
bool dither
Information whether dithering shall be enabled.
double height
The height of the image (net coordinates in y-direction, in m)
void waitForSnapshots(const SUMOTime snapshotTime)
#define UNUSED_PARAMETER(x)
A class that stores a 2D geometrical boundary.
int myMouseHotspotX
Offset to the mouse-hotspot from the mouse position.
void addDecals(const std::vector< Decal > &decals)
add decals
double getDelay() const
Returns the delay of the parent application.
bool removeAdditionalGLVisualisation(const GUIGlObject *const which)
Removes an object from the list of objects that show additional things.
#define WRITE_WARNING(msg)
FXCondition mySnapshotCondition
the semaphore when waiting for snapshots to finish
double layer
The layer of the image.
double p2m(double pixel) const
pixels-to-meters conversion method
std::map< const GUIGlObject *, int > myAdditionallyDrawn
List of objects for which GUIGlObject::drawGLAdditional is called.
void cartesian2geo(Position &cartesian) const
Converts the given cartesian (shifted) position to its geo (lat/long) representation.
FXLabel & getCartesianLabel()
FXMutex mySnapshotsMutex
The mutex to use before accessing the decals list in order to avoid thread conflicts.
std::vector< GUIGlID > getObjectstUnderCursor()
returns the id of the objects under the cursor using GL_SELECT (including overlapped objects) ...
GUIVisualizationSizeSettings addSize
Boundary applyGLTransform(bool fixRatio=true)
applies gl-transformations to fit the Boundary given by myChanger onto the canvas. If fixRatio is true, this boundary will be enlarged to prevent anisotropic stretching. (this should be set to false when doing selections)
std::vector< Decal > myDecals
double getGridWidth() const
get grid width
GUIGlID getObjectAtPosition(Position pos)
returns the id of the object at position using GL_SELECT
static FXbool scalePower2(FXImage *image, int maxSize=(2<< 29))
int getLaneEdgeMode() const
Returns the number of the active lane (edge) coloring schme.
virtual GUIGlID getTrackedID() const
get tracked id
virtual void startTrack(int)
star track
virtual long onPaint(FXObject *, FXSelector, void *)
GUIGlObjectType getType() const
Returns the type of the object as coded in GUIGlObjectType.
std::string name
The name of this setting.
double gridXSize
Information about the grid spacings.
void showToolTipFor(const GUIGlID id)
invokes the tooltip for the given object
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
virtual void setStatusBarText(const std::string &)
virtual long onKeyPress(FXObject *o, FXSelector sel, void *data)
keyboard functions
static void sleep(long ms)
virtual void setViewport(double zoom, double xPos, double yPos)=0
Sets the viewport Used for: Adapting a new viewport.
bool isInEditMode()
returns true, if the edit button was pressed
void show()
show view settings dialog
A point in 2D or 3D with translation and scaling methods.
void setx(double x)
set position x
std::string makeSnapshot(const std::string &destFile, const int width=-1, const int height=-1)
Takes a snapshots and writes it into the given file.
virtual GUIGLObjectPopupMenu * getPopUpMenu(GUIMainWindow &app, GUISUMOAbstractView &parent)=0
Returns an own popup-menu.
FXComboBox & getColoringSchemesCombo()
static GUIGlObjectStorage gIDStorage
A single static instance of this class.
double rot
The rotation of the image in the ground plane (in degrees)
virtual void centerTo(GUIGlID id, bool applyZoom, double zoomDist=20)
centers to the chosen artifact
bool isGaming() const
return whether the gui is in gaming mode
GUIPerspectiveChanger & getChanger() const
get changer
virtual bool onLeftBtnRelease(void *data)
called when user releases left button
FXComboBox & getColoringSchemesCombo()
get coloring schemes combo
bool initialised
Whether this image was initialised (inserted as a texture)
double xmin() const
Returns minimum x-coordinate.
virtual bool onRightBtnRelease(void *data)
called when user releases right button
virtual void doInit()
doInit
double centerY
The center of the image in y-direction (net coordinates, in m)
Boundary & grow(double by)
extends the boundary by the given amount
virtual long onMouseWheel(FXObject *, FXSelector, void *)
virtual void checkSnapshots()
Checks whether it is time for a snapshot.
virtual ~GUISUMOAbstractView()
destructor
std::string filename
The path to the file the image is located at.
virtual double getZoom() const =0
Returns the zoom factor computed stored in this changer.
virtual void setViewportFromToRot(const Position &lookFrom, const Position &lookAt, double rotation)
applies the given viewport settings
double angle
The current view rotation angle.
virtual int doPaintGL(int, const Boundary &)
paint GL
Position screenPos2NetPos(int x, int y) const
Translate screen position to network position.
static FXbool saveImage(const std::string &file, int width, int height, FXColor *data)
GUIPerspectiveChanger * myChanger
The perspective changer.
bool myUseToolTips
use tool tips
virtual void onLeftBtnPress(void *data)
mouse functions
GUIGLObjectPopupMenu * myPopup
The current popup-menu.
RGBColor backgroundColor
The background color to use.
void destroyPopup()
destoys the popup
void setValues(double zoom, double xoff, double yoff, double rotation)
Sets the given values into the dialog.
FXint myWindowCursorPositionX
Position of the cursor relative to the window.
virtual long onMiddleBtnRelease(FXObject *, FXSelector, void *)
Boundary getViewport(bool fixRatio=true)
get viewport
double width
The width of the image (net coordinates in x-direction, in m)
virtual bool setColorScheme(const std::string &)
set color scheme
Position rotateAround2D(double rad, const Position &origin)
rotate this position by rad around origin and return the result
void unlock()
release mutex lock
virtual void showViewportEditor()
show viewport editor
FXbool makeCurrent()
A reimplementation due to some internal reasons.
virtual long onLeftBtnRelease(FXObject *, FXSelector, void *)
GUIVisualizationSettings & getDefault()
Returns the default scheme.
double m2p(double meter) const
meter-to-pixels conversion method
GUIGlObject * getNetObject() const
Returns the network object.
void setViewport(GUISUMOAbstractView *view)
Sets the default viewport.
GUIVisualizationSettings * myVisualizationSettings
visualization settings
Position myPopupPosition
The current popup-menu position.
double getHeight() const
Returns the height of the boundary (y-axis)
virtual void onMouseWheel(void *data)
called when user changes mouse wheel
bool isAdditionalGLVisualisationEnabled(GUIGlObject *const which) const
Check if an object is added in the additional GL visualitation.
unsigned char green() const
Returns the green-amount of the color.
virtual double getColorValue(const GUIVisualizationSettings &, int) const
void paintGL()
performs the painting of the simulation
virtual long onKeyPress(void *data)
called when user press a key
std::vector< GUIGlObject * > getGUIGlObjectsAtPosition(Position pos, double radius)
returns the GUIGlObjects at position within the given (rectangular) radius using GL_SELECT ...
void sety(double y)
set position y
void setWindowCursorPosition(FXint x, FXint y)
Returns the information whether rotation is allowd.
void setCurrent(GUIVisualizationSettings *settings)
Sets current settings (called if reopened)
void show()
overload show function to focus always in OK Button
static const GUIGlID INVALID_ID
static FXImage * loadImage(FXApp *a, const std::string &file)
static const GeoConvHelper & getFinal()
the coordinate transformation for writing the location element and for tracking the original coordina...
virtual double getDelay() const
Returns the delay (should be overwritten by subclasses if applicable)
bool showGrid
Information whether a grid shall be shown.
void drawDecals()
Draws the stored decals.
static int getMaxTextureSize()
return maximum number of pixels in x and y direction
virtual double getYPos() const =0
Returns the y-offset of the field to show stored in this changer.
void addSnapshot(SUMOTime time, const std::string &file, const int width=-1, const int height=-1)
Sets the snapshot time to file map.
GUIGlID getGlID() const
Returns the numerical id of the object.
Position getCenter() const
Returns the center of the boundary.
unsigned char red() const
Returns the red-amount of the color.
bool skip2D
Whether this image should be skipped in 2D-views.
virtual void onMouseMove(void *data)
called when user moves mouse
virtual SUMOTime getCurrentTimeStep() const
get the current simulation time
Position getPositionInformation() const
Returns the cursor's x/y position within the network.
Boundary getVisibleBoundary() const
get visible boundary
void updateToolTip()
A method that updates the tooltip.
A dialog to change the viewport.
virtual void onRightBtnPress(void *data)
called when user press right button
void unblockObject(GUIGlID id)
Marks an object as unblocked.
static bool UseMesoSim
this should be set at the same time as MSGlobals::gUseMesoSim
virtual void setViewportFrom(double xPos, double yPos, double zPos)=0
Alternative method for setting the viewport.
void showViewschemeEditor()
show viewsscheme editor
virtual long onRightBtnPress(FXObject *, FXSelector, void *)
void add(double x, double y, double z=0)
Makes the boundary include the given coordinate.
virtual long onMouseLeft(FXObject *, FXSelector, void *)
std::vector< GUIGlObject * > getGUIGlObjectsUnderCursor()
returns the GUIGlObject under the cursor using GL_SELECT (including overlapped objects) ...
GUIGlID getObjectUnderCursor()
returns the id of the front object under the cursor using GL_SELECT
bool drawForSelecting
whether drawing is performed for the purpose of selecting objects
double ymax() const
Returns maximum y-coordinate.
#define WRITE_MESSAGE(msg)
double getExaggeration(const GUIVisualizationSettings &s, const GUIGlObject *o, double factor=20) const
return the drawing size including exaggeration and constantSize values
GUIGlObject * getObjectBlocking(GUIGlID id)
Returns the object from the container locking it.
virtual long onKeyRelease(void *data)
called when user releases a key
virtual int Search(const float a_min[2], const float a_max[2], const GUIVisualizationSettings &c) const
Find all within search rectangle.
GUISelectedStorage gSelected
A global holder of selected objects.
virtual double getXPos() const =0
Returns the x-offset of the field to show stored in this changer.
FXDEFMAP(GUISUMOAbstractView) GUISUMOAbstractViewMap[]
std::string joinToString(const std::vector< T > &v, const T_BETWEEN &between, std::streamsize accuracy=gPrecision)
GUIGlChildWindow * myParent
The parent window.
virtual long onRightBtnRelease(FXObject *, FXSelector, void *)
static const Position INVALID
used to indicate that a position is valid
const Position & getPopupPosition() const
get position of current popup
void setz(double z)
set position z