FreeCAD

Форк
0
/
AssemblyObjectPyImp.cpp 
118 строк · 3.8 Кб
1
/***************************************************************************
2
 *   Copyright (c) 2014 Jürgen Riegel <juergen.riegel@web.de>              *
3
 *                                                                         *
4
 *   This file is part of the FreeCAD CAx development system.              *
5
 *                                                                         *
6
 *   This library is free software; you can redistribute it and/or         *
7
 *   modify it under the terms of the GNU Library General Public           *
8
 *   License as published by the Free Software Foundation; either          *
9
 *   version 2 of the License, or (at your option) any later version.      *
10
 *                                                                         *
11
 *   This library  is distributed in the hope that it will be useful,      *
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14
 *   GNU Library General Public License for more details.                  *
15
 *                                                                         *
16
 *   You should have received a copy of the GNU Library General Public     *
17
 *   License along with this library; see the file COPYING.LIB. If not,    *
18
 *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
19
 *   Suite 330, Boston, MA  02111-1307, USA                                *
20
 *                                                                         *
21
 ***************************************************************************/
22

23

24
#include "PreCompiled.h"
25

26
// inclusion of the generated files (generated out of AssemblyObject.xml)
27
#include "AssemblyObjectPy.h"
28
#include "AssemblyObjectPy.cpp"
29

30
using namespace Assembly;
31

32
// returns a string which represents the object e.g. when printed in python
33
std::string AssemblyObjectPy::representation() const
34
{
35
    return {"<Assembly object>"};
36
}
37

38
PyObject* AssemblyObjectPy::getCustomAttributes(const char* /*attr*/) const
39
{
40
    return nullptr;
41
}
42

43
int AssemblyObjectPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
44
{
45
    return 0;
46
}
47

48
PyObject* AssemblyObjectPy::solve(PyObject* args)
49
{
50
    PyObject* enableUndoPy;
51
    bool enableUndo;
52

53
    if (!PyArg_ParseTuple(args, "O!", &PyBool_Type, &enableUndoPy)) {
54
        PyErr_Clear();
55
        if (!PyArg_ParseTuple(args, "")) {
56
            return nullptr;
57
        }
58
        else {
59
            enableUndo = false;
60
        }
61
    }
62
    else {
63
        enableUndo = Base::asBoolean(enableUndoPy);
64
    }
65

66
    int ret = this->getAssemblyObjectPtr()->solve(enableUndo);
67
    return Py_BuildValue("i", ret);
68
}
69

70
PyObject* AssemblyObjectPy::undoSolve(PyObject* args)
71
{
72
    if (!PyArg_ParseTuple(args, "")) {
73
        return nullptr;
74
    }
75
    this->getAssemblyObjectPtr()->undoSolve();
76
    Py_Return;
77
}
78

79
PyObject* AssemblyObjectPy::clearUndo(PyObject* args)
80
{
81
    if (!PyArg_ParseTuple(args, "")) {
82
        return nullptr;
83
    }
84
    this->getAssemblyObjectPtr()->clearUndo();
85
    Py_Return;
86
}
87

88
PyObject* AssemblyObjectPy::isPartConnected(PyObject* args)
89
{
90
    PyObject* pyobj;
91

92
    if (!PyArg_ParseTuple(args, "O", &pyobj)) {
93
        return nullptr;
94
    }
95
    auto* obj = static_cast<App::DocumentObjectPy*>(pyobj)->getDocumentObjectPtr();
96
    bool ok = this->getAssemblyObjectPtr()->isPartConnected(obj);
97
    return Py_BuildValue("O", (ok ? Py_True : Py_False));
98
}
99

100
PyObject* AssemblyObjectPy::exportAsASMT(PyObject* args)
101
{
102
    char* utf8Name;
103
    if (!PyArg_ParseTuple(args, "et", "utf-8", &utf8Name)) {
104
        return nullptr;
105
    }
106

107
    std::string fileName = utf8Name;
108
    PyMem_Free(utf8Name);
109

110
    if (fileName.empty()) {
111
        PyErr_SetString(PyExc_ValueError, "Passed string is empty");
112
        return nullptr;
113
    }
114

115
    this->getAssemblyObjectPtr()->exportAsASMT(fileName);
116

117
    Py_Return;
118
}
119

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.