296 lines
9.5 KiB
C++
296 lines
9.5 KiB
C++
/***************************************************************************
|
|
* Copyright (c) 2014 Yorik van Havre <yorik@uncreated.net> *
|
|
* *
|
|
* This file is part of the FreeCAD CAx development system. *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 Library General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Library General Public *
|
|
* License along with this library; see the file COPYING.LIB. If not, *
|
|
* write to the Free Software Foundation, Inc., 59 Temple Place, *
|
|
* Suite 330, Boston, MA 02111-1307, USA *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
#include "PreCompiled.h"
|
|
#include "Base/Reader.h"
|
|
#include "Mod/Path/App/Tool.h"
|
|
#include "Mod/Path/App/Tooltable.h"
|
|
|
|
// inclusion of the generated files (generated out of ToolPy.xml and TooltablePy.xml)
|
|
#include "ToolPy.h"
|
|
#include "ToolPy.cpp"
|
|
|
|
using namespace Path;
|
|
|
|
#define PYSTRING_FROMSTRING(str) PyUnicode_FromString(str)
|
|
#define PYINT_TYPE PyLong_Type
|
|
#define PYINT_FROMLONG(l) PyLong_FromLong(l)
|
|
#define PYINT_ASLONG(o) PyLong_AsLong(o)
|
|
|
|
|
|
// returns a string which represents the object e.g. when printed in python
|
|
std::string ToolPy::representation(void) const
|
|
{
|
|
std::stringstream str;
|
|
str.precision(5);
|
|
str << "Tool ";
|
|
str << getToolPtr()->Name;
|
|
return str.str();
|
|
}
|
|
|
|
PyObject *ToolPy::PyMake(struct _typeobject *, PyObject *, PyObject *) // Python wrapper
|
|
{
|
|
// create a new instance of ToolPy and the Twin object
|
|
return new ToolPy(new Tool);
|
|
}
|
|
|
|
// constructor method
|
|
int ToolPy::PyInit(PyObject* args, PyObject* kwd)
|
|
{
|
|
char *name="Default tool";
|
|
char *type = "Undefined";
|
|
char *mat = "Undefined";
|
|
PyObject *dia = nullptr;
|
|
PyObject *len = nullptr;
|
|
PyObject *fla = nullptr;
|
|
PyObject *cor = nullptr;
|
|
PyObject *ang = nullptr;
|
|
PyObject *hei = nullptr;
|
|
int version = 1;
|
|
|
|
static char *kwlist[] = {"name", "tooltype", "material", "diameter", "lengthOffset", "flatRadius", "cornerRadius", "cuttingEdgeAngle", "cuttingEdgeHeight" , "version", nullptr};
|
|
|
|
PyObject *dict = nullptr;
|
|
if (!kwd && (PyObject_TypeCheck(args, &PyDict_Type) || PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict))) {
|
|
static PyObject *arg = PyTuple_New(0);
|
|
if (PyObject_TypeCheck(args, &PyDict_Type)) {
|
|
dict = args;
|
|
}
|
|
if (!PyArg_ParseTupleAndKeywords(arg, dict, "|sssOOOOOOi", kwlist, &name, &type, &mat, &dia, &len, &fla, &cor, &ang, &hei, &version)) {
|
|
return -1;
|
|
}
|
|
} else {
|
|
PyErr_Clear();
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwd, "|sssOOOOOO", kwlist, &name, &type, &mat, &dia, &len, &fla, &cor, &ang, &hei)) {
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
if (1 != version) {
|
|
PyErr_SetString(PyExc_TypeError, "Unsupported Tool template version");
|
|
return -1;
|
|
}
|
|
|
|
getToolPtr()->Name = name;
|
|
|
|
std::string typeStr(type);
|
|
getToolPtr()->Type = Tool::getToolType(typeStr);
|
|
|
|
std::string matStr(mat);
|
|
getToolPtr()->Material = Tool::getToolMaterial(matStr);
|
|
|
|
getToolPtr()->Diameter = dia ? PyFloat_AsDouble(dia) : 0.0;
|
|
getToolPtr()->LengthOffset = len ? PyFloat_AsDouble(len) : 0.0;
|
|
getToolPtr()->FlatRadius = fla ? PyFloat_AsDouble(fla) : 0.0;
|
|
getToolPtr()->CornerRadius = cor ? PyFloat_AsDouble(cor) : 0.0;
|
|
getToolPtr()->CuttingEdgeAngle = ang ? PyFloat_AsDouble(ang) : 180.0;
|
|
getToolPtr()->CuttingEdgeHeight = hei ? PyFloat_AsDouble(hei) : 0.0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// attributes get/setters
|
|
|
|
Py::String ToolPy::getName(void) const
|
|
{
|
|
return Py::String(getToolPtr()->Name.c_str());
|
|
}
|
|
|
|
void ToolPy::setName(Py::String arg)
|
|
{
|
|
std::string name = arg.as_std_string();
|
|
getToolPtr()->Name = name;
|
|
}
|
|
|
|
Py::String ToolPy::getToolType(void) const
|
|
{
|
|
return Py::String(Tool::TypeName(getToolPtr()->Type));
|
|
}
|
|
|
|
void ToolPy::setToolType(Py::String arg)
|
|
{
|
|
std::string typeStr(arg.as_std_string());
|
|
getToolPtr()->Type = Tool::getToolType(typeStr);
|
|
|
|
}
|
|
|
|
Py::String ToolPy::getMaterial(void) const
|
|
{
|
|
return Py::String(Tool::MaterialName(getToolPtr()->Material));
|
|
}
|
|
|
|
void ToolPy::setMaterial(Py::String arg)
|
|
{
|
|
std::string matStr(arg.as_std_string());
|
|
getToolPtr()->Material = Tool::getToolMaterial(matStr);
|
|
}
|
|
|
|
Py::Float ToolPy::getDiameter(void) const
|
|
{
|
|
return Py::Float(getToolPtr()->Diameter);
|
|
}
|
|
|
|
void ToolPy::setDiameter(Py::Float arg)
|
|
{
|
|
getToolPtr()->Diameter = arg.operator double();
|
|
}
|
|
|
|
Py::Float ToolPy::getLengthOffset(void) const
|
|
{
|
|
return Py::Float(getToolPtr()->LengthOffset);
|
|
}
|
|
|
|
void ToolPy::setLengthOffset(Py::Float arg)
|
|
{
|
|
getToolPtr()->LengthOffset = arg.operator double();
|
|
}
|
|
|
|
Py::Float ToolPy::getFlatRadius(void) const
|
|
{
|
|
return Py::Float(getToolPtr()->FlatRadius);
|
|
}
|
|
|
|
void ToolPy::setFlatRadius(Py::Float arg)
|
|
{
|
|
getToolPtr()->FlatRadius = arg.operator double();
|
|
}
|
|
|
|
Py::Float ToolPy::getCornerRadius(void) const
|
|
{
|
|
return Py::Float(getToolPtr()->CornerRadius);
|
|
}
|
|
|
|
void ToolPy::setCornerRadius(Py::Float arg)
|
|
{
|
|
getToolPtr()->CornerRadius = arg.operator double();
|
|
}
|
|
|
|
Py::Float ToolPy::getCuttingEdgeAngle(void) const
|
|
{
|
|
return Py::Float(getToolPtr()->CuttingEdgeAngle);
|
|
}
|
|
|
|
void ToolPy::setCuttingEdgeAngle(Py::Float arg)
|
|
{
|
|
getToolPtr()->CuttingEdgeAngle = arg.operator double();
|
|
}
|
|
|
|
Py::Float ToolPy::getCuttingEdgeHeight(void) const
|
|
{
|
|
return Py::Float(getToolPtr()->CuttingEdgeHeight);
|
|
}
|
|
|
|
void ToolPy::setCuttingEdgeHeight(Py::Float arg)
|
|
{
|
|
getToolPtr()->CuttingEdgeHeight = arg.operator double();
|
|
}
|
|
|
|
// custom attributes get/set
|
|
|
|
PyObject *ToolPy::getCustomAttributes(const char* /*attr*/) const
|
|
{
|
|
return nullptr;
|
|
}
|
|
|
|
int ToolPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
PyObject* ToolPy::copy(PyObject * args)
|
|
{
|
|
if (PyArg_ParseTuple(args, "")) {
|
|
return new ToolPy(new Path::Tool(*getToolPtr()));
|
|
}
|
|
throw Py::TypeError("This method accepts no argument");
|
|
}
|
|
|
|
PyObject* ToolPy::setFromTemplate(PyObject * args)
|
|
{
|
|
char *pstr = nullptr;
|
|
if (PyArg_ParseTuple(args, "s", &pstr)) {
|
|
// embed actual string in dummy tag so XMLReader can consume that on construction
|
|
std::ostringstream os;
|
|
os << "<snippet>" << pstr << "</snippet>";
|
|
std::istringstream is(os.str());
|
|
Base::XMLReader reader("", is);
|
|
getToolPtr()->Restore(reader);
|
|
Py_Return ;
|
|
}
|
|
|
|
PyErr_Clear();
|
|
if (!PyInit(args, nullptr)) {
|
|
Py_Return ;
|
|
}
|
|
|
|
PyErr_SetString(PyExc_TypeError, "argument must be a string or dictionary");
|
|
return nullptr;
|
|
}
|
|
|
|
PyObject* ToolPy::templateAttrs(PyObject * args)
|
|
{
|
|
if (!args || PyArg_ParseTuple(args, "")) {
|
|
PyObject *dict = PyDict_New();
|
|
PyDict_SetItemString(dict, "version", PYINT_FROMLONG(1));
|
|
PyDict_SetItemString(dict, "name", PYSTRING_FROMSTRING(getToolPtr()->Name.c_str()));
|
|
PyDict_SetItemString(dict, "tooltype",PYSTRING_FROMSTRING(Tool::TypeName(getToolPtr()->Type)));
|
|
PyDict_SetItemString(dict, "material", PYSTRING_FROMSTRING(Tool::MaterialName(getToolPtr()->Material)));
|
|
PyDict_SetItemString(dict, "diameter", PyFloat_FromDouble(getToolPtr()->Diameter));
|
|
PyDict_SetItemString(dict, "lengthOffset", PyFloat_FromDouble(getToolPtr()->LengthOffset));
|
|
PyDict_SetItemString(dict, "flatRadius", PyFloat_FromDouble(getToolPtr()->FlatRadius));
|
|
PyDict_SetItemString(dict, "cornerRadius", PyFloat_FromDouble(getToolPtr()->CornerRadius));
|
|
PyDict_SetItemString(dict, "cuttingEdgeAngle", PyFloat_FromDouble(getToolPtr()->CuttingEdgeAngle));
|
|
PyDict_SetItemString(dict, "cuttingEdgeHeight", PyFloat_FromDouble(getToolPtr()->CuttingEdgeHeight));
|
|
return dict;
|
|
}
|
|
throw Py::TypeError("This method accepts no argument");
|
|
}
|
|
|
|
PyObject* ToolPy::getToolTypes(PyObject * args)
|
|
{
|
|
if (PyArg_ParseTuple(args, "")) {
|
|
std::vector<std::string> toolTypes = Tool::ToolTypes();
|
|
Py::List list;
|
|
for(unsigned i = 0; i != toolTypes.size(); i++) {
|
|
|
|
list.append(Py::asObject(PYSTRING_FROMSTRING(toolTypes[i].c_str())));
|
|
}
|
|
return Py::new_reference_to(list);
|
|
}
|
|
throw Py::TypeError("This method accepts no argument");
|
|
}
|
|
|
|
PyObject* ToolPy::getToolMaterials(PyObject * args)
|
|
{
|
|
if (PyArg_ParseTuple(args, "")) {
|
|
std::vector<std::string> toolMaterials = Tool::ToolMaterials();
|
|
Py::List list;;
|
|
for(unsigned i = 0; i != toolMaterials.size(); i++) {
|
|
|
|
list.append(Py::asObject(PYSTRING_FROMSTRING(toolMaterials[i].c_str())));
|
|
}
|
|
return Py::new_reference_to(list);
|
|
}
|
|
throw Py::TypeError("This method accepts no argument");
|
|
}
|