OpenCPN Partial API docs
Loading...
Searching...
No Matches
safe_mode.cpp
1#include <cstdio>
2#include <string>
3#include <fstream>
4
5#include <wx/dialog.h>
6#include <wx/filename.h>
7#include <wx/sizer.h>
8
9#include "model/base_platform.h"
10#include "model/cmdline.h"
11#include "model/ocpn_utils.h"
12#include "model/safe_mode.h"
13
14namespace safe_mode {
15
16#ifdef _WIN32
17static std::string SEP("\\");
18#else
19static std::string SEP("/");
20#endif
21
22bool safe_mode = false;
23
24std::string check_file_path() {
25 std::string path = g_BasePlatform->GetPrivateDataDir().ToStdString();
26 path += SEP;
27 path += "startcheck.dat";
28 return path;
29}
30
31void set_mode(bool mode) {
32 safe_mode = mode;
33 g_bdisable_opengl = g_bdisable_opengl || mode;
34}
35
36bool get_mode() { return safe_mode; }
37
39void clear_check() { remove(check_file_path().c_str()); }
40
41} // namespace safe_mode
wxString & GetPrivateDataDir()
Return dir path for opencpn.log, etc., respecting -c cli option.
Global variables reflecting command line options and arguments.
Safe mode handling.
Definition safe_mode.cpp:14
void clear_check()
Mark last run as successful.
Definition safe_mode.cpp:39
Miscellaneous utilities, many of which string related.