-
-
Notifications
You must be signed in to change notification settings - Fork 710
/
Copy pathmain.cpp
80 lines (67 loc) · 1.76 KB
/
main.cpp
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include "dearpygui.h"
#include "mvContext.h"
#include <Windows.h>
#include <fstream>
#include <string>
#include <sstream>
#include <filesystem>
#include "mvViewport.h"
namespace fs = std::filesystem;
void runTest(std::string test)
{
auto ss = std::ostringstream{};
std::ifstream input_file("../../testing/" + test + ".py");
#ifndef MV_TESTS_ONLY
ss << "should_exit = False\n";
#else
ss << "should_exit = True\n";
#endif
ss << input_file.rdbuf();
PyRun_SimpleString(ss.str().c_str());
}
int main(int argc, char* argv[])
{
GenerateStubFile("../../dearpygui");
GenerateDearPyGuiFile("../../dearpygui");
GenerateDearPyGuiFileRTD("../../dearpygui");
#ifdef MV_RELEASE
HWND hWnd = GetConsoleWindow();
ShowWindow(hWnd, SW_SHOW);
#else
HWND hWnd = GetConsoleWindow();
ShowWindow(hWnd, SW_SHOW);
#endif
// add our custom module
PyImport_AppendInittab("_dearpygui", &PyInit__dearpygui);
// set path and start the interpreter
wchar_t* path = Py_DecodeLocale("../../thirdparty/DearPyGui_Ext/;../../sandbox/;../../thirdparty/cpython/Lib;../../thirdparty/cpython/PCbuild/amd64;../..", nullptr);
Py_SetPath(path);
Py_NoSiteFlag = 1; // this must be set to 1
Py_DontWriteBytecodeFlag = 1;
// initialize python
Py_Initialize();
if (!Py_IsInitialized())
{
printf("Error initializing Python interpreter\n");
return 1;
}
PyObject* mmarvel = PyImport_ImportModule("_dearpygui");
// tests
runTest("simple_tests");
#ifndef MV_TESTS_ONLY
// sandbox
{
auto ss = std::ostringstream{};
std::ifstream input_file("../../sandbox/sandbox.py");
ss << input_file.rdbuf();
int result = PyRun_SimpleString(ss.str().c_str());
}
#endif
// check if error occurred
if (!PyErr_Occurred())
Py_XDECREF(mmarvel);
else
PyErr_Print();
}