Eclipse SUMO - Simulation of Urban MObility
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
netedit_main.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2001-2025 German Aerospace Center (DLR) and others.
4// This program and the accompanying materials are made available under the
5// terms of the Eclipse Public License 2.0 which is available at
6// https://www.eclipse.org/legal/epl-2.0/
7// This Source Code may also be made available under the following Secondary
8// Licenses when the conditions for such availability set forth in the Eclipse
9// Public License 2.0 are satisfied: GNU General Public License, version 2
10// or later which is available at
11// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13/****************************************************************************/
18// Main for netedit (adapted from guisim_main)
19/****************************************************************************/
20
21#include <signal.h>
26#include <utils/xml/XMLSubSys.h>
27
28#ifdef HAVE_VERSION_H
29#include <version.h>
30#endif
31
33#include "GNELoadThread.h"
35/*
36#ifdef _DEBUG_
37 #define SECUREEXCEPTION
38#endif
39*/
40
41// ===========================================================================
42// main function
43// ===========================================================================
44int
45main(int argc, char** argv) {
46 // make the output aware of threading
48 // get the options
49 auto& neteditOptions = OptionsCont::getOptions();
50 neteditOptions.setApplicationDescription(TL("Graphical editor for SUMO networks, demand and additional infrastructure."));
51 neteditOptions.setApplicationName("netedit", "Eclipse SUMO netedit Version " VERSION_STRING);
52 // preload registry from sumo to decide on language
53 FXRegistry reg("SUMO GUI", "sumo-gui");
54 reg.read();
55 // set language
56 gLanguage = reg.readStringEntry("gui", "language", gLanguage.c_str());
57 int ret = 0;
58 // run netedit with try-catch if we're in debug-mode
59#ifdef SECUREEXCEPTION
60 try {
61#endif
62 // initialise subsystems
64 // fill options
65 GNELoadThread::fillOptions(neteditOptions);
66 // set default options
68 // create tagPropertiesdatabase
69 const GNETagPropertiesDatabase* tagPropertiesDatabase = new GNETagPropertiesDatabase();
70 // set arguments called through console
71 OptionsIO::setArgs(argc, argv);
73 if (neteditOptions.processMetaOptions(false)) {
75 return 0;
76 } else if (neteditOptions.isSet("attribute-help-output")) {
77 tagPropertiesDatabase->writeAttributeHelp();
78 } else {
79 // Make application
80 FXApp application("SUMO netedit", "netedit");
81 // Open display
82 application.init(argc, argv);
83 int minor, major;
84 if (!FXGLVisual::supported(&application, major, minor)) {
85 throw ProcessError(TL("This system has no OpenGL support. Exiting."));
86 }
87 // build the main window
88 GNEApplicationWindow* netedit = new GNEApplicationWindow(&application, tagPropertiesDatabase, "*.netc.cfg,*.netccfg");
89 gLanguage = neteditOptions.getString("language");
90 gSchemeStorage.init(&application, true);
91 netedit->dependentBuild();
92 // Create app
93 application.addSignal(SIGINT, netedit, MID_HOTKEY_CTRL_Q_CLOSE);
94 application.create();
95 // Load configuration given on command line
96 if (argc > 1) {
97 // Set default options
98 OptionsIO::setArgs(argc, argv);
99 // load options
100 netedit->loadOptionOnStartup();
101 }
102 // focus window at startup
103 netedit->setFocus();
104 // Run
105 ret = application.run();
106 // delete elements
107 delete tagPropertiesDatabase;
108 delete netedit;
109 }
110#ifdef SECUREEXCEPTION
111 } catch (const std::exception& e) {
112 if (std::string(e.what()) != std::string("")) {
113 WRITE_ERROR(e.what());
114 }
115 MsgHandler::getErrorInstance()->inform("Quitting (on error).", false);
116 ret = 1;
117 } catch (...) {
118 MsgHandler::getErrorInstance()->inform("Quitting (on unknown error).", false);
119 ret = 1;
120 }
121#endif
123 return ret;
124}
125
126/****************************************************************************/
@ MID_HOTKEY_CTRL_Q_CLOSE
Main window closes.
Definition GUIAppEnum.h:115
GUICompleteSchemeStorage gSchemeStorage
#define WRITE_ERROR(msg)
Definition MsgHandler.h:292
#define TL(string)
Definition MsgHandler.h:301
std::string gLanguage
the language for GUI elements and messages
Definition StdDefs.cpp:34
The main window of Netedit.
void loadOptionOnStartup()
load net on startup
void dependentBuild()
build dependent
static void fillOptions(OptionsCont &neteditOptions)
clears and initializes the OptionsCont
static void setDefaultOptions(OptionsCont &neteditOptions)
sets required options for proper functioning
void writeAttributeHelp() const
write machine readable attribute help to file
void init(FXApp *app, bool netedit=false)
Initialises the storage with some default settings.
static MsgHandler * getErrorInstance()
Returns the instance to add errors to.
virtual void inform(std::string msg, bool addType=true)
adds a new error to the list
static void setFactory(Factory func)
Sets the factory function to use for new MsgHandlers.
Definition MsgHandler.h:64
static MsgHandler * create(MsgType type)
static OptionsCont & getOptions()
Retrieves the options.
static void setArgs(int argc, char **argv)
Stores the command line arguments for later parsing.
Definition OptionsIO.cpp:58
static void getOptions(const bool commandLineOnly=false)
Parses the command line arguments and loads the configuration.
Definition OptionsIO.cpp:74
static void close()
Closes all of an applications subsystems.
static void init()
Initialises the xml-subsystem.
Definition XMLSubSys.cpp:56
int main(int argc, char **argv)