2009-07-17 04:34:15 +04:00
|
|
|
/*
|
2011-01-21 04:21:09 +03:00
|
|
|
* OpenSCAD (www.openscad.org)
|
|
|
|
* Copyright (C) 2009-2011 Clifford Wolf <clifford@clifford.at> and
|
|
|
|
* Marius Kintel <marius@kintel.net>
|
2009-07-17 04:34:15 +04: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.
|
|
|
|
*
|
2010-02-01 12:34:18 +03:00
|
|
|
* As a special exception, you have permission to link this program
|
|
|
|
* with the CGAL library and distribute executables, as long as you
|
|
|
|
* follow the requirements of the GNU GPL in regard to all of the
|
|
|
|
* software in the executable aside from CGAL.
|
|
|
|
*
|
2009-07-17 04:34:15 +04:00
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2011-09-30 05:11:28 +04:00
|
|
|
#include "rotateextrudenode.h"
|
2010-01-30 07:26:05 +03:00
|
|
|
#include "module.h"
|
2013-04-09 08:28:16 +04:00
|
|
|
#include "evalcontext.h"
|
2010-01-06 13:48:51 +03:00
|
|
|
#include "printutils.h"
|
2013-05-09 14:12:58 +04:00
|
|
|
#include "fileutils.h"
|
2010-01-30 07:26:05 +03:00
|
|
|
#include "builtin.h"
|
|
|
|
#include "polyset.h"
|
2010-03-02 21:22:31 +03:00
|
|
|
#include "visitor.h"
|
2009-07-17 04:34:15 +04:00
|
|
|
|
2010-03-02 21:22:31 +03:00
|
|
|
#include <sstream>
|
2011-09-03 08:10:36 +04:00
|
|
|
#include <boost/assign/std/vector.hpp>
|
|
|
|
using namespace boost::assign; // bring 'operator+=()' into scope
|
2009-07-23 20:00:38 +04:00
|
|
|
|
2012-07-15 05:57:41 +04:00
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
2011-09-30 05:11:28 +04:00
|
|
|
class RotateExtrudeModule : public AbstractModule
|
2009-07-17 04:34:15 +04:00
|
|
|
{
|
|
|
|
public:
|
2011-09-30 05:11:28 +04:00
|
|
|
RotateExtrudeModule() { }
|
2014-11-17 08:57:36 +03:00
|
|
|
virtual AbstractNode *instantiate(const Context *ctx, const ModuleInstantiation *inst, EvalContext *evalctx) const;
|
2009-07-17 04:34:15 +04:00
|
|
|
};
|
|
|
|
|
2014-11-17 08:57:36 +03:00
|
|
|
AbstractNode *RotateExtrudeModule::instantiate(const Context *ctx, const ModuleInstantiation *inst, EvalContext *evalctx) const
|
2009-07-17 04:34:15 +04:00
|
|
|
{
|
2011-09-30 05:11:28 +04:00
|
|
|
RotateExtrudeNode *node = new RotateExtrudeNode(inst);
|
2009-07-17 04:34:15 +04:00
|
|
|
|
2013-04-19 02:34:14 +04:00
|
|
|
AssignmentList args;
|
2014-03-23 22:38:28 +04:00
|
|
|
args += Assignment("file"), Assignment("layer"), Assignment("origin"), Assignment("scale");
|
2009-07-17 04:34:15 +04:00
|
|
|
|
|
|
|
Context c(ctx);
|
2013-04-19 02:34:14 +04:00
|
|
|
c.setVariables(args, evalctx);
|
2014-11-25 08:45:00 +03:00
|
|
|
inst->scope.apply(*evalctx);
|
2009-07-17 04:34:15 +04:00
|
|
|
|
2014-11-23 08:59:17 +03:00
|
|
|
node->fn = c.lookup_variable("$fn")->toDouble();
|
|
|
|
node->fs = c.lookup_variable("$fs")->toDouble();
|
|
|
|
node->fa = c.lookup_variable("$fa")->toDouble();
|
2009-07-17 04:34:15 +04:00
|
|
|
|
2014-11-23 08:59:17 +03:00
|
|
|
ValuePtr file = c.lookup_variable("file");
|
|
|
|
ValuePtr layer = c.lookup_variable("layer", true);
|
|
|
|
ValuePtr convexity = c.lookup_variable("convexity", true);
|
|
|
|
ValuePtr origin = c.lookup_variable("origin", true);
|
|
|
|
ValuePtr scale = c.lookup_variable("scale", true);
|
2009-07-17 04:34:15 +04:00
|
|
|
|
2014-11-23 08:59:17 +03:00
|
|
|
if (!file->isUndefined()) {
|
2015-01-07 19:05:31 +03:00
|
|
|
printDeprecation("Support for reading files in rotate_extrude will be removed in future releases. Use a child import() instead.");
|
2014-11-23 08:59:17 +03:00
|
|
|
node->filename = lookup_file(file->toString(), inst->path(), c.documentPath());
|
2011-09-07 02:11:00 +04:00
|
|
|
}
|
2010-02-25 13:21:11 +03:00
|
|
|
|
2014-11-23 08:59:17 +03:00
|
|
|
node->layername = layer->isUndefined() ? "" : layer->toString();
|
|
|
|
node->convexity = (int)convexity->toDouble();
|
|
|
|
origin->getVec2(node->origin_x, node->origin_y);
|
|
|
|
node->scale = scale->toDouble();
|
2009-07-17 04:34:15 +04:00
|
|
|
|
|
|
|
if (node->convexity <= 0)
|
2015-01-29 08:11:52 +03:00
|
|
|
node->convexity = 2;
|
2009-07-17 04:34:15 +04:00
|
|
|
|
2009-07-20 21:45:39 +04:00
|
|
|
if (node->scale <= 0)
|
|
|
|
node->scale = 1;
|
|
|
|
|
2011-09-03 08:10:36 +04:00
|
|
|
if (node->filename.empty()) {
|
2013-04-20 01:52:01 +04:00
|
|
|
std::vector<AbstractNode *> instantiatednodes = inst->instantiateChildren(evalctx);
|
|
|
|
node->children.insert(node->children.end(), instantiatednodes.begin(), instantiatednodes.end());
|
2010-01-07 23:49:27 +03:00
|
|
|
}
|
|
|
|
|
2009-07-17 04:34:15 +04:00
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2011-09-30 05:11:28 +04:00
|
|
|
std::string RotateExtrudeNode::toString() const
|
2010-03-02 21:22:31 +03:00
|
|
|
{
|
|
|
|
std::stringstream stream;
|
|
|
|
|
2011-09-12 05:46:13 +04:00
|
|
|
stream << this->name() << "(";
|
|
|
|
if (!this->filename.empty()) { // Ignore deprecated parameters if empty
|
2012-07-15 23:29:14 +04:00
|
|
|
fs::path path((std::string)this->filename);
|
2011-09-12 05:46:13 +04:00
|
|
|
stream <<
|
2011-11-07 06:59:40 +04:00
|
|
|
"file = " << this->filename << ", "
|
|
|
|
"layer = " << QuotedString(this->layername) << ", "
|
2011-11-06 06:25:59 +04:00
|
|
|
"origin = [" << std::dec << this->origin_x << ", " << this->origin_y << "], "
|
2012-07-15 05:57:41 +04:00
|
|
|
"scale = " << this->scale << ", "
|
|
|
|
#ifndef OPENSCAD_TESTING
|
|
|
|
// timestamp is needed for caching, but disturbs the test framework
|
|
|
|
<< "timestamp = " << (fs::exists(path) ? fs::last_write_time(path) : 0) << ", "
|
|
|
|
#endif
|
|
|
|
;
|
2011-09-12 05:46:13 +04:00
|
|
|
}
|
|
|
|
stream <<
|
2010-03-02 21:22:31 +03:00
|
|
|
"convexity = " << this->convexity << ", "
|
|
|
|
"$fn = " << this->fn << ", $fa = " << this->fa << ", $fs = " << this->fs << ")";
|
|
|
|
|
|
|
|
return stream.str();
|
|
|
|
}
|
2011-11-06 21:37:12 +04:00
|
|
|
|
|
|
|
void register_builtin_dxf_rotate_extrude()
|
|
|
|
{
|
|
|
|
Builtins::init("dxf_rotate_extrude", new RotateExtrudeModule());
|
|
|
|
Builtins::init("rotate_extrude", new RotateExtrudeModule());
|
|
|
|
}
|