2012-12-28 20:21:05 +00:00
|
|
|
/*
|
|
|
|
|
* 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 2
|
|
|
|
|
* 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, write to the Free Software Foundation,
|
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __FREESTYLE_PYTHON_INTERPRETER_H__
|
|
|
|
|
#define __FREESTYLE_PYTHON_INTERPRETER_H__
|
|
|
|
|
|
2019-02-06 15:42:22 +11:00
|
|
|
/** \file \ingroup freestyle
|
2012-12-28 20:21:05 +00:00
|
|
|
* \brief Python Interpreter
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
2014-04-17 12:25:41 +09:00
|
|
|
|
|
|
|
|
extern "C" {
|
2012-12-28 20:21:05 +00:00
|
|
|
#include <Python.h>
|
2014-04-17 12:25:41 +09:00
|
|
|
}
|
2012-12-28 20:21:05 +00:00
|
|
|
|
|
|
|
|
#include "StringUtils.h"
|
|
|
|
|
#include "Interpreter.h"
|
2008-04-30 15:41:54 +00:00
|
|
|
|
2008-05-26 19:52:55 +00:00
|
|
|
//soc
|
|
|
|
|
extern "C" {
|
2009-09-28 03:56:31 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
2012-12-28 20:21:05 +00:00
|
|
|
|
2010-07-26 01:23:27 +00:00
|
|
|
#include "DNA_text_types.h"
|
2012-12-28 20:21:05 +00:00
|
|
|
|
2009-09-28 03:56:31 +00:00
|
|
|
#include "BKE_context.h"
|
2008-12-10 18:36:56 +00:00
|
|
|
#include "BKE_global.h"
|
2012-12-28 20:21:05 +00:00
|
|
|
#include "BKE_library.h"
|
|
|
|
|
#include "BKE_main.h"
|
2009-09-28 03:56:31 +00:00
|
|
|
#include "BKE_report.h"
|
2008-05-26 19:52:55 +00:00
|
|
|
#include "BKE_text.h"
|
2012-12-28 20:21:05 +00:00
|
|
|
|
2008-05-26 19:52:55 +00:00
|
|
|
#include "BPY_extern.h"
|
2015-04-28 23:18:32 +09:00
|
|
|
|
2017-11-29 21:11:29 +11:00
|
|
|
#include "bpy_capi_utils.h"
|
2008-05-26 19:52:55 +00:00
|
|
|
}
|
|
|
|
|
|
2013-04-09 00:46:49 +00:00
|
|
|
namespace Freestyle {
|
|
|
|
|
|
2014-04-17 14:19:10 +09:00
|
|
|
class PythonInterpreter : public Interpreter
|
2008-04-30 15:41:54 +00:00
|
|
|
{
|
2012-12-28 20:21:05 +00:00
|
|
|
public:
|
|
|
|
|
PythonInterpreter()
|
|
|
|
|
{
|
|
|
|
|
_language = "Python";
|
|
|
|
|
_context = 0;
|
2013-04-20 21:15:17 +00:00
|
|
|
memset(&_freestyle_bmain, 0, sizeof(Main));
|
2012-12-28 20:21:05 +00:00
|
|
|
}
|
2008-04-30 15:41:54 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
void setContext(bContext *C)
|
|
|
|
|
{
|
|
|
|
|
_context = C;
|
|
|
|
|
}
|
2009-11-10 00:03:31 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
int interpretFile(const string& filename)
|
|
|
|
|
{
|
|
|
|
|
ReportList *reports = CTX_wm_reports(_context);
|
|
|
|
|
BKE_reports_clear(reports);
|
|
|
|
|
char *fn = const_cast<char*>(filename.c_str());
|
2009-10-15 03:32:53 +00:00
|
|
|
#if 0
|
2015-12-31 21:15:29 +11:00
|
|
|
bool ok = BPY_execute_filepath(_context, fn, reports);
|
2009-10-15 03:32:53 +00:00
|
|
|
#else
|
2015-12-31 21:15:29 +11:00
|
|
|
bool ok;
|
2018-06-25 12:02:20 +02:00
|
|
|
Text *text = BKE_text_load(&_freestyle_bmain, fn, G_MAIN->name);
|
2012-12-28 20:21:05 +00:00
|
|
|
if (text) {
|
2015-12-31 21:15:29 +11:00
|
|
|
ok = BPY_execute_text(_context, text, reports, false);
|
2019-01-14 21:24:25 +01:00
|
|
|
BKE_id_delete(&_freestyle_bmain, text);
|
2012-12-28 20:21:05 +00:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
BKE_reportf(reports, RPT_ERROR, "Cannot open file: %s", fn);
|
2015-12-31 21:15:29 +11:00
|
|
|
ok = false;
|
2012-12-28 20:21:05 +00:00
|
|
|
}
|
2009-10-15 03:32:53 +00:00
|
|
|
#endif
|
2009-08-23 16:03:12 +00:00
|
|
|
|
2015-12-31 21:15:29 +11:00
|
|
|
if (ok == false) {
|
2013-01-03 23:27:20 +00:00
|
|
|
cerr << "\nError executing Python script from PythonInterpreter::interpretFile" << endl;
|
|
|
|
|
cerr << "File: " << fn << endl;
|
|
|
|
|
cerr << "Errors: " << endl;
|
2012-12-28 20:21:05 +00:00
|
|
|
BKE_reports_print(reports, RPT_ERROR);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// cleaning up
|
|
|
|
|
BKE_reports_clear(reports);
|
|
|
|
|
|
|
|
|
|
return 0;
|
2009-09-28 03:56:31 +00:00
|
|
|
}
|
|
|
|
|
|
2015-04-28 23:18:32 +09:00
|
|
|
int interpretString(const string& str, const string& name)
|
|
|
|
|
{
|
|
|
|
|
ReportList *reports = CTX_wm_reports(_context);
|
|
|
|
|
|
|
|
|
|
BKE_reports_clear(reports);
|
|
|
|
|
|
2018-11-10 10:55:04 +11:00
|
|
|
if (!BPY_execute_string(_context, NULL, str.c_str())) {
|
2015-04-28 23:18:32 +09:00
|
|
|
BPy_errors_to_report(reports);
|
|
|
|
|
cerr << "\nError executing Python script from PythonInterpreter::interpretString" << endl;
|
|
|
|
|
cerr << "Name: " << name << endl;
|
|
|
|
|
cerr << "Errors: " << endl;
|
|
|
|
|
BKE_reports_print(reports, RPT_ERROR);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BKE_reports_clear(reports);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-03 03:36:33 +00:00
|
|
|
int interpretText(struct Text *text, const string& name)
|
|
|
|
|
{
|
2012-12-28 20:21:05 +00:00
|
|
|
ReportList *reports = CTX_wm_reports(_context);
|
2010-07-26 01:23:27 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
BKE_reports_clear(reports);
|
2010-07-26 01:23:27 +00:00
|
|
|
|
2015-12-31 21:15:29 +11:00
|
|
|
if (!BPY_execute_text(_context, text, reports, false)) {
|
2013-01-03 23:27:20 +00:00
|
|
|
cerr << "\nError executing Python script from PythonInterpreter::interpretText" << endl;
|
|
|
|
|
cerr << "Name: " << name << endl;
|
|
|
|
|
cerr << "Errors: " << endl;
|
2012-12-28 20:21:05 +00:00
|
|
|
BKE_reports_print(reports, RPT_ERROR);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2010-07-26 01:23:27 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
BKE_reports_clear(reports);
|
2010-07-26 01:23:27 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
return 0;
|
2010-07-26 01:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
void reset()
|
|
|
|
|
{
|
2014-04-11 16:35:46 +09:00
|
|
|
// nothing to do
|
2012-12-28 20:21:05 +00:00
|
|
|
}
|
2008-04-30 15:41:54 +00:00
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
private:
|
|
|
|
|
bContext *_context;
|
2013-04-18 08:58:21 +00:00
|
|
|
Main _freestyle_bmain;
|
2008-04-30 15:41:54 +00:00
|
|
|
};
|
|
|
|
|
|
2013-04-09 00:46:49 +00:00
|
|
|
} /* namespace Freestyle */
|
|
|
|
|
|
2012-12-28 20:21:05 +00:00
|
|
|
#endif // __FREESTYLE_PYTHON_INTERPRETER_H__
|