forked from emilk/sproxel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyConsole.cpp
136 lines (93 loc) · 2.63 KB
/
pyConsole.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#ifdef SPROXEL_USE_PYTHON
#include <QPlainTextEdit>
#include <QAction>
#include <QDir>
#include <QApplication>
#include <stdarg.h>
#include "pyConsole.h"
#include "ConsoleWidget.h"
#include "MainWindow.h"
#include "script.h"
//ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ//
static FILE *logFile=NULL;
//ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ//
static ConsoleWidget *console=NULL;
ConsoleWidget::ConsoleWidget(const QString &title, QWidget *parent)
: QPlainTextEdit(parent), viewAction(NULL)
{
setWindowTitle(title);
setReadOnly(true);
setFont(QFont("Lucida Console", 10, QFont::Bold));
setStyleSheet("background: black; color: #1e1;");
viewAction=new QAction(title, this);
viewAction->setCheckable(true);
viewAction->setChecked(true);
connect(viewAction, SIGNAL(toggled(bool)), this, SLOT(setVisible(bool)));
}
QSize ConsoleWidget::sizeHint() const
{
return QSize(800, 600);
}
//ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ//
void pycon_raw(const char *s)
{
if (logFile)
{
fputs(s, logFile);
fflush(logFile);
}
if (console) console->insertPlainText(s);
}
void pycon(const char *fmt, ...)
{
char buf[4096];
va_list ap; va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
pycon_raw(buf);
pycon_raw("\n");
}
//ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ//
static PyObject* console_write(PyObject *, PyObject *args)
{
const char *str;
if (!PyArg_ParseTuple(args, "s", &str)) return NULL;
pycon_raw(str);
Py_RETURN_NONE;
}
static PyMethodDef methods[]=
{
{ "write", console_write, METH_VARARGS, "Write to Sproxel console." },
{ NULL, NULL, 0, NULL }
};
//ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ//
void init_python_console()
{
//logFile=_wfopen((wchar_t*)exe_dir.filePath("log.txt").unicode(), L"wt");
console=new ConsoleWidget("Sproxel Python console");
console->show();
pycon("Starting Sproxel " SPROXEL_VERSION);
Py_InitModule("sproxelConsole", methods);
PyRun_SimpleString(
"import sys\n"
"import sproxelConsole\n"
"\n"
"class SproxelConsoleIO(object):\n"
" def write(self, s):\n"
" sproxelConsole.write(s)\n"
"\n"
"sys.stdout=SproxelConsoleIO()\n"
"sys.stderr=sys.stdout\n"
);
}
void close_python_console()
{
if (console) { delete console; console=NULL; }
if (logFile) { fclose(logFile); logFile=NULL; }
}
//ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ//
ConsoleWidget* get_python_console_widget()
{
return console;
}
#endif