2011-12-15 01:10:45 +00:00
|
|
|
// Cyphesis Online RPG Server and AI Engine
|
|
|
|
|
// Copyright (C) 2011 Alistair Riddoch
|
|
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
|
|
|
|
|
|
2011-12-20 15:23:37 +00:00
|
|
|
#ifndef RULESETS_PYTHON_SCRIPT_FACTORY_IMPL_H
|
|
|
|
|
#define RULESETS_PYTHON_SCRIPT_FACTORY_IMPL_H
|
|
|
|
|
|
2018-10-31 21:38:35 +01:00
|
|
|
#include <rules/ai/python/CyPy_BaseMind.h>
|
|
|
|
|
#include "rules/python/CyPy_LocatedEntity.h"
|
|
|
|
|
#include "rules/simulation/python/CyPy_Task.h"
|
2011-12-15 18:26:37 +00:00
|
|
|
#include "PythonScriptFactory.h"
|
2011-12-15 01:10:45 +00:00
|
|
|
|
2018-09-30 22:13:06 +02:00
|
|
|
#include "PythonWrapper.h"
|
2017-06-04 15:38:05 +02:00
|
|
|
#include "Python_Script_Utils.h"
|
2011-12-15 01:10:45 +00:00
|
|
|
|
|
|
|
|
/// \brief PythonScriptFactory constructor
|
|
|
|
|
///
|
|
|
|
|
/// @param package Name of the script package where the script type is
|
2018-04-30 23:34:58 +02:00
|
|
|
/// @param type Name of the script types instanced by this factory
|
2011-12-15 01:10:45 +00:00
|
|
|
|
2018-07-23 16:43:39 +02:00
|
|
|
Py::Object wrapPython(LocatedEntity* value) {
|
|
|
|
|
return CyPy_LocatedEntity::wrap(value);
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-15 01:10:45 +00:00
|
|
|
template <class T>
|
|
|
|
|
int PythonScriptFactory<T>::setup()
|
|
|
|
|
{
|
|
|
|
|
return load();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
|
const std::string & PythonScriptFactory<T>::package() const
|
|
|
|
|
{
|
|
|
|
|
return m_package;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-30 23:34:58 +02:00
|
|
|
template<class T>
|
2018-07-23 16:43:39 +02:00
|
|
|
Py::Object PythonScriptFactory<T>::createScript(T* entity) const
|
2011-12-15 01:10:45 +00:00
|
|
|
{
|
2018-07-24 21:18:26 +02:00
|
|
|
if (!this->m_class || this->m_class->isNull()) {
|
2018-07-23 16:43:39 +02:00
|
|
|
return Py::Null();
|
2011-12-15 01:10:45 +00:00
|
|
|
}
|
2018-07-23 16:43:39 +02:00
|
|
|
auto wrapper = wrapPython(entity);
|
|
|
|
|
if (wrapper.isNull()) {
|
|
|
|
|
return Py::Null();
|
2011-12-15 01:10:45 +00:00
|
|
|
}
|
2018-07-29 19:50:55 +02:00
|
|
|
try {
|
|
|
|
|
return this->m_class->apply(Py::TupleN(wrapper));
|
|
|
|
|
} catch (...) {
|
|
|
|
|
log(ERROR, String::compose("Error when creating script '%1.%2'.", this->m_package, this->m_type));
|
|
|
|
|
if (PyErr_Occurred() != nullptr) {
|
|
|
|
|
PyErr_Print();
|
|
|
|
|
}
|
|
|
|
|
return Py::None();
|
|
|
|
|
}
|
2018-04-30 23:34:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
|
int PythonScriptFactory<T>::addScript(T * entity) const
|
|
|
|
|
{
|
|
|
|
|
auto script = createScript(entity);
|
2018-07-24 21:18:26 +02:00
|
|
|
if (!script.isNone()) {
|
2018-09-30 22:13:06 +02:00
|
|
|
auto scriptInstance = new PythonWrapper(script);
|
2018-04-30 23:34:58 +02:00
|
|
|
entity->setScript(scriptInstance);
|
2011-12-15 01:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
2018-07-23 16:43:39 +02:00
|
|
|
return (script.isNull()) ? -1 : 0;
|
2011-12-15 01:10:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
|
int PythonScriptFactory<T>::refreshClass()
|
|
|
|
|
{
|
|
|
|
|
return refresh();
|
|
|
|
|
}
|
2011-12-20 15:23:37 +00:00
|
|
|
|
|
|
|
|
#endif // RULESETS_PYTHON_SCRIPT_FACTORY_IMPL_H
|