summaryrefslogtreecommitdiff
path: root/openEMS/tools/global.h
blob: c3bb524436eaa23e14545d0426ee842b70c806c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
*	Copyright (C) 2010 Sebastian Held <sebastian.held@gmx.de>
*
*	This program is free software: you can redistribute it and/or modify
*	it under the terms of the GNU General Public License as published by
*	the Free Software Foundation, either version 3 of the License, or
*	(at your option) any later version.
*
*	This program is distributed in the hope that it will be useful,
*	but WITHOUT ANY WARRANTY; without even the implied warranty of
*	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
*	GNU General Public License for more details.
*
*	You should have received a copy of the GNU General Public License
*	along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef GLOBAL_H
#define GLOBAL_H

#include <sstream>

#define UNUSED(x) (void)(x);

class Global
{
public:
	Global();

	//! Show all possible (global) command line arguments
	void ShowArguments(std::ostream& ostr, std::string front=std::string());

	//! Parse the given command line arguments
	bool parseCommandLineArgument( const char *argv );

	bool showProbeDiscretization() const {return m_showProbeDiscretization;}

	//! Returns true if native field dumps are requested...
	bool NativeFieldDumps() const {return m_nativeFieldDumps;}
	//! Set dumps to use native fields.
	void SetNativeFieldDumps(bool val) {m_nativeFieldDumps=val;}

	//! Set the verbose level
	void SetVerboseLevel(int level) {m_VerboseLevel=level;m_SavedVerboseLevel=level;}
	//! Get the verbose level
	int GetVerboseLevel() const {return m_VerboseLevel;}

	//! Set a new verbose level temporarily, restore it with RestoreVerboseLevel()
	void SetTempVerboseLevel(int level) {m_SavedVerboseLevel=m_VerboseLevel;m_VerboseLevel=level;}
	//! Restore the temporarily overwritten verbose level
	void RestoreVerboseLevel() {m_VerboseLevel=m_SavedVerboseLevel;}

protected:
	bool m_showProbeDiscretization;
	bool m_nativeFieldDumps;
	int m_VerboseLevel;
	int m_SavedVerboseLevel;
};

extern Global g_settings;

// declare a parameter as unused
#define UNUSED(x) (void)(x);

#endif // GLOBAL_H