Eclipse SUMO - Simulation of Urban MObility
Loading...
Searching...
No Matches
StdDefs.cpp
Go to the documentation of this file.
1/****************************************************************************/
2// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3// Copyright (C) 2014-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/****************************************************************************/
21/****************************************************************************/
22#include "StdDefs.h"
23#include <sstream>
24
25
26// set by option --precision (see SystemFrame.cpp)
27int gPrecision = 2;
31bool gHumanReadableTime = false;
32bool gSimulation = false;
34bool gLocaleInitialized = false;
38std::string gLanguage = "C";
39
42
43bool gDebugFlag1 = false;
44bool gDebugFlag2 = false;
45bool gDebugFlag3 = false;
46bool gDebugFlag4 = false;
47bool gDebugFlag5 = false;
48bool gDebugFlag6 = false;
49
50double truncate(double x, int fractionBits) {
51 return ceil(x * (1 << fractionBits)) / (1 << fractionBits);
52}
53
54double roundBits(double x, int fractionBits) {
55 const double x2 = x * (1 << fractionBits);
56 const double rounded = x2 < 0 ? ceil(x2 - 0.5) : floor(x2 + 0.5);
57 return rounded / (1 << fractionBits);
58}
59
60double roundDecimal(double x, int precision) {
61 const double p = pow(10, precision);
62 const double x2 = x * p;
63 return (x2 < 0 ? ceil(x2 - 0.5) : floor(x2 + 0.5)) / p;
64}
65
66double roundDecimalToEven(double x, int precision) {
67 const int p = (int)pow(10, precision);
68 return std::nearbyint(x * p) / p;
69}
70
71int
72getScalingQuota(double frac, int loaded) {
73 if (frac < 0 || frac == 1.) {
74 return 1;
75 }
76 const int base = (int)frac;
77 const int resolution = 1000;
78 const int intFrac = (int)floor((frac - base) * resolution + 0.5);
79 // apply % twice to avoid integer overflow
80 if (((loaded % resolution) * intFrac) % resolution < intFrac) {
81 return base + 1;
82 }
83 return base;
84}
85
86/****************************************************************************/
int gPrecisionEmissions
Definition StdDefs.cpp:28
int GUIDesignDialogButtonsHeight
the default height for dialog buttons
Definition StdDefs.cpp:41
bool gRoutingPreferences
Definition StdDefs.cpp:37
double roundDecimalToEven(double x, int precision)
round to the given number of decimal digits (bankers rounding)
Definition StdDefs.cpp:66
int getScalingQuota(double frac, int loaded)
Returns the number of instances of the current object that shall be emitted given the number of loade...
Definition StdDefs.cpp:72
double truncate(double x, int fractionBits)
discrds mantissa bits beyond the given number
Definition StdDefs.cpp:50
int gPrecision
the precision for floating point outputs
Definition StdDefs.cpp:27
bool gDebugFlag3
Definition StdDefs.cpp:45
double gWeightsRandomFactor
Definition StdDefs.cpp:35
double roundBits(double x, int fractionBits)
round to the given number of mantissa bits beyond the given number
Definition StdDefs.cpp:54
double gWeightsWalkOppositeFactor
Definition StdDefs.cpp:36
int gPrecisionRandom
Definition StdDefs.cpp:30
bool gDebugFlag5
Definition StdDefs.cpp:47
bool gLocaleInitialized
Definition StdDefs.cpp:34
std::string gLanguage
the language for GUI elements and messages
Definition StdDefs.cpp:38
bool gSimulation
Definition StdDefs.cpp:32
bool gDebugFlag2
Definition StdDefs.cpp:44
bool gHumanReadableTime
Definition StdDefs.cpp:31
bool gIgnoreUnknownVClass
Definition StdDefs.cpp:33
bool gDebugFlag6
Definition StdDefs.cpp:48
double roundDecimal(double x, int precision)
round to the given number of decimal digits
Definition StdDefs.cpp:60
bool gDebugFlag4
Definition StdDefs.cpp:46
bool gDebugFlag1
global utility flags for debugging
Definition StdDefs.cpp:43
int gPrecisionGeo
Definition StdDefs.cpp:29
int GUIDesignHeight
the default height for GUI elements
Definition StdDefs.cpp:40