2012-12-18 00:51:25 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup freestyle
|
2012-12-18 00:51:25 +00:00
|
|
|
*/
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2014-04-17 12:37:08 +09:00
|
|
|
extern "C" {
|
|
|
|
|
#include <Python.h>
|
|
|
|
|
}
|
|
|
|
|
|
2008-05-18 13:01:52 +00:00
|
|
|
#include <string>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <float.h>
|
|
|
|
|
|
2008-12-10 21:51:58 +00:00
|
|
|
#include "AppView.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
#include "AppCanvas.h"
|
|
|
|
|
#include "AppConfig.h"
|
2012-12-18 00:51:25 +00:00
|
|
|
#include "Controller.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
#include "../image/Image.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
#include "../scene_graph/NodeDrawingStyle.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
#include "../scene_graph/NodeShape.h"
|
|
|
|
|
#include "../scene_graph/NodeTransform.h"
|
2017-11-22 10:52:39 -02:00
|
|
|
#include "../scene_graph/NodeViewLayer.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
#include "../scene_graph/ScenePrettyPrinter.h"
|
2012-12-18 00:51:25 +00:00
|
|
|
#include "../scene_graph/VertexRep.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
|
|
|
|
|
#include "../stroke/PSStrokeRenderer.h"
|
|
|
|
|
#include "../stroke/TextStrokeRenderer.h"
|
2012-12-18 00:51:25 +00:00
|
|
|
#include "../stroke/StrokeTesselator.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
#include "../stroke/StyleModule.h"
|
|
|
|
|
|
|
|
|
|
#include "../system/StringUtils.h"
|
2012-12-18 00:51:25 +00:00
|
|
|
#include "../system/PythonInterpreter.h"
|
|
|
|
|
|
|
|
|
|
#include "../view_map/SteerableViewMap.h"
|
|
|
|
|
#include "../view_map/ViewMap.h"
|
|
|
|
|
#include "../view_map/ViewMapIO.h"
|
|
|
|
|
#include "../view_map/ViewMapTesselator.h"
|
|
|
|
|
|
|
|
|
|
#include "../winged_edge/Curvature.h"
|
|
|
|
|
#include "../winged_edge/WEdge.h"
|
|
|
|
|
#include "../winged_edge/WingedEdgeBuilder.h"
|
|
|
|
|
#include "../winged_edge/WXEdgeBuilder.h"
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2009-10-05 01:27:35 +00:00
|
|
|
#include "../blender_interface/BlenderFileLoader.h"
|
|
|
|
|
#include "../blender_interface/BlenderStrokeRenderer.h"
|
2010-07-26 01:23:27 +00:00
|
|
|
#include "../blender_interface/BlenderStyleModule.h"
|
2008-12-10 21:51:58 +00:00
|
|
|
|
2013-01-03 23:27:20 +00:00
|
|
|
#include "BKE_global.h"
|
2014-04-17 12:55:17 +09:00
|
|
|
#include "BLI_utildefines.h"
|
2014-11-23 14:37:13 +01:00
|
|
|
#include "BLI_path_util.h"
|
2013-01-03 23:27:20 +00:00
|
|
|
|
2011-03-14 00:36:27 +00:00
|
|
|
#include "DNA_freestyle_types.h"
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
#include "FRS_freestyle.h"
|
2008-12-10 21:51:58 +00:00
|
|
|
|
2013-04-09 00:46:49 +00:00
|
|
|
namespace Freestyle {
|
2008-12-10 21:51:58 +00:00
|
|
|
|
2009-11-10 00:03:31 +00:00
|
|
|
Controller::Controller()
|
2008-05-18 13:01:52 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
const string sep(Config::DIR_SEP.c_str());
|
2012-12-18 00:51:25 +00:00
|
|
|
#if 0
|
2019-04-17 08:24:14 +02:00
|
|
|
const string filename = Config::Path::getInstance()->getHomeDir() + sep + Config::OPTIONS_DIR +
|
|
|
|
|
sep + Config::OPTIONS_CURRENT_DIRS_FILE;
|
2019-04-17 06:17:24 +02:00
|
|
|
_current_dirs = new ConfigIO(filename, Config::APPLICATION_NAME + "CurrentDirs", true);
|
2012-12-18 00:51:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_RootNode = new NodeGroup;
|
|
|
|
|
_RootNode->addRef();
|
2012-12-18 00:51:25 +00:00
|
|
|
|
|
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
_SilhouetteNode = NULL;
|
|
|
|
|
_ProjectedSilhouette = NULL;
|
|
|
|
|
_VisibleProjectedSilhouette = NULL;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_DebugNode = new NodeGroup;
|
|
|
|
|
_DebugNode->addRef();
|
2014-08-14 16:58:17 +09:00
|
|
|
#endif
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_winged_edge = NULL;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_pView = NULL;
|
|
|
|
|
_pRenderMonitor = NULL;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_edgeTesselationNature = (Nature::SILHOUETTE | Nature::BORDER | Nature::CREASE);
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_ProgressBar = new ProgressBar;
|
|
|
|
|
_SceneNumFaces = 0;
|
2015-08-09 23:36:53 +09:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
_minEdgeSize = DBL_MAX;
|
2015-08-09 23:36:53 +09:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
_EPSILON = 1.0e-6;
|
|
|
|
|
_bboxDiag = 0;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_ViewMap = 0;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_Canvas = 0;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_adaptive_traditional;
|
|
|
|
|
//_VisibilityAlgo = ViewMapBuilder::ray_casting;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_Canvas = new AppCanvas;
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_inter = new PythonInterpreter();
|
|
|
|
|
_EnableViewMapCache = false;
|
|
|
|
|
_EnableQI = true;
|
|
|
|
|
_EnableFaceSmoothness = false;
|
|
|
|
|
_ComputeRidges = true;
|
|
|
|
|
_ComputeSteerableViewMap = false;
|
|
|
|
|
_ComputeSuggestive = true;
|
|
|
|
|
_ComputeMaterialBoundaries = true;
|
|
|
|
|
_sphereRadius = 1.0;
|
|
|
|
|
_creaseAngle = 134.43;
|
|
|
|
|
prevSceneHash = -1.0;
|
2008-05-26 16:19:30 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
init_options();
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Controller::~Controller()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
if (NULL != _RootNode) {
|
|
|
|
|
int ref = _RootNode->destroy();
|
2019-05-31 22:51:19 +10:00
|
|
|
if (0 == ref) {
|
2019-04-17 06:17:24 +02:00
|
|
|
delete _RootNode;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2014-08-14 16:58:17 +09:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (NULL != _SilhouetteNode) {
|
|
|
|
|
int ref = _SilhouetteNode->destroy();
|
|
|
|
|
if (0 == ref)
|
|
|
|
|
delete _SilhouetteNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NULL != _DebugNode) {
|
|
|
|
|
int ref = _DebugNode->destroy();
|
|
|
|
|
if (0 == ref)
|
|
|
|
|
delete _DebugNode;
|
|
|
|
|
}
|
2014-08-14 16:58:17 +09:00
|
|
|
#endif
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (_winged_edge) {
|
|
|
|
|
delete _winged_edge;
|
|
|
|
|
_winged_edge = NULL;
|
|
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (0 != _ViewMap) {
|
|
|
|
|
delete _ViewMap;
|
|
|
|
|
_ViewMap = 0;
|
|
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (0 != _Canvas) {
|
|
|
|
|
delete _Canvas;
|
|
|
|
|
_Canvas = 0;
|
|
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (_inter) {
|
|
|
|
|
delete _inter;
|
|
|
|
|
_inter = NULL;
|
|
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (_ProgressBar) {
|
|
|
|
|
delete _ProgressBar;
|
|
|
|
|
_ProgressBar = NULL;
|
|
|
|
|
}
|
2013-05-15 01:30:03 +00:00
|
|
|
|
2019-04-30 17:50:57 +10:00
|
|
|
// delete _current_dirs;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2008-12-10 21:51:58 +00:00
|
|
|
void Controller::setView(AppView *iView)
|
2008-05-18 13:01:52 +00:00
|
|
|
{
|
2019-05-31 22:51:19 +10:00
|
|
|
if (NULL == iView) {
|
2019-04-17 06:17:24 +02:00
|
|
|
return;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_pView = iView;
|
|
|
|
|
_Canvas->setViewer(_pView);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-07-16 23:29:12 +00:00
|
|
|
void Controller::setRenderMonitor(RenderMonitor *iRenderMonitor)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_pRenderMonitor = iRenderMonitor;
|
2012-07-16 23:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
2010-02-16 21:44:18 +00:00
|
|
|
void Controller::setPassDiffuse(float *buf, int width, int height)
|
2010-02-14 03:17:52 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
AppCanvas *app_canvas = dynamic_cast<AppCanvas *>(_Canvas);
|
|
|
|
|
BLI_assert(app_canvas != 0);
|
|
|
|
|
app_canvas->setPassDiffuse(buf, width, height);
|
2010-02-14 03:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
2010-02-16 21:44:18 +00:00
|
|
|
void Controller::setPassZ(float *buf, int width, int height)
|
2010-02-14 03:17:52 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
AppCanvas *app_canvas = dynamic_cast<AppCanvas *>(_Canvas);
|
|
|
|
|
BLI_assert(app_canvas != 0);
|
|
|
|
|
app_canvas->setPassZ(buf, width, height);
|
2010-02-14 03:17:52 +00:00
|
|
|
}
|
|
|
|
|
|
2009-11-10 00:03:31 +00:00
|
|
|
void Controller::setContext(bContext *C)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
PythonInterpreter *py_inter = dynamic_cast<PythonInterpreter *>(_inter);
|
|
|
|
|
py_inter->setContext(C);
|
2009-11-10 00:03:31 +00:00
|
|
|
}
|
|
|
|
|
|
2014-01-28 23:24:59 +09:00
|
|
|
bool Controller::hitViewMapCache()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
if (!_EnableViewMapCache) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (sceneHashFunc.match()) {
|
|
|
|
|
return (NULL != _ViewMap);
|
|
|
|
|
}
|
|
|
|
|
sceneHashFunc.store();
|
|
|
|
|
return false;
|
2014-01-28 23:24:59 +09:00
|
|
|
}
|
|
|
|
|
|
2019-01-24 07:08:19 +01:00
|
|
|
int Controller::LoadMesh(Render *re, ViewLayer *view_layer, Depsgraph *depsgraph)
|
2008-08-07 15:04:25 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
BlenderFileLoader loader(re, view_layer, depsgraph);
|
|
|
|
|
|
|
|
|
|
loader.setRenderMonitor(_pRenderMonitor);
|
|
|
|
|
|
|
|
|
|
_Chrono.start();
|
|
|
|
|
|
|
|
|
|
NodeGroup *blenderScene = loader.Load();
|
|
|
|
|
|
|
|
|
|
if (blenderScene == NULL) {
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Cannot load scene" << endl;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (blenderScene->numberOfChildren() < 1) {
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Empty scene" << endl;
|
|
|
|
|
}
|
|
|
|
|
blenderScene->destroy();
|
|
|
|
|
delete blenderScene;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
real duration = _Chrono.stop();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Scene loaded" << endl;
|
|
|
|
|
printf("Mesh cleaning : %lf\n", duration);
|
|
|
|
|
printf("View map cache : %s\n", _EnableViewMapCache ? "enabled" : "disabled");
|
|
|
|
|
}
|
|
|
|
|
_SceneNumFaces += loader.numFacesRead();
|
2008-08-07 15:04:25 +00:00
|
|
|
|
2015-08-09 23:36:53 +09:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (loader.minEdgeSize() < _minEdgeSize) {
|
|
|
|
|
_minEdgeSize = loader.minEdgeSize();
|
|
|
|
|
}
|
2015-08-09 23:36:53 +09:00
|
|
|
#endif
|
2008-08-07 15:04:25 +00:00
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
#if 0 // DEBUG
|
2019-04-17 06:17:24 +02:00
|
|
|
ScenePrettyPrinter spp;
|
|
|
|
|
blenderScene->accept(spp);
|
2012-12-18 00:51:25 +00:00
|
|
|
#endif
|
2008-08-07 15:04:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_RootNode->AddChild(blenderScene);
|
|
|
|
|
_RootNode->UpdateBBox(); // FIXME: Correct that by making a Renderer to compute the bbox
|
|
|
|
|
|
|
|
|
|
_pView->setModel(_RootNode);
|
|
|
|
|
//_pView->FitBBox();
|
|
|
|
|
|
2019-05-31 22:51:19 +10:00
|
|
|
if (_pRenderMonitor->testBreak()) {
|
2019-04-17 06:17:24 +02:00
|
|
|
return 0;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
|
if (_EnableViewMapCache) {
|
|
|
|
|
|
|
|
|
|
NodeCamera *cam;
|
2019-05-31 22:51:19 +10:00
|
|
|
if (g_freestyle.proj[3][3] != 0.0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
cam = new NodeOrthographicCamera;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
|
|
|
|
else {
|
2019-04-17 06:17:24 +02:00
|
|
|
cam = new NodePerspectiveCamera;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
double proj[16];
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
for (int j = 0; j < 4; j++) {
|
|
|
|
|
proj[i * 4 + j] = g_freestyle.proj[i][j];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cam->setProjectionMatrix(proj);
|
|
|
|
|
_RootNode->AddChild(cam);
|
|
|
|
|
_RootNode->AddChild(new NodeViewLayer(*re->scene, *view_layer));
|
|
|
|
|
|
|
|
|
|
sceneHashFunc.reset();
|
2019-04-30 17:50:57 +10:00
|
|
|
// blenderScene->accept(sceneHashFunc);
|
2019-04-17 06:17:24 +02:00
|
|
|
_RootNode->accept(sceneHashFunc);
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Scene hash : " << sceneHashFunc.toString() << endl;
|
|
|
|
|
}
|
|
|
|
|
if (hitViewMapCache()) {
|
|
|
|
|
ClearRootNode();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
delete _ViewMap;
|
|
|
|
|
_ViewMap = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_Chrono.start();
|
|
|
|
|
|
|
|
|
|
WXEdgeBuilder wx_builder;
|
|
|
|
|
wx_builder.setRenderMonitor(_pRenderMonitor);
|
|
|
|
|
blenderScene->accept(wx_builder);
|
|
|
|
|
_winged_edge = wx_builder.getWingedEdge();
|
|
|
|
|
|
|
|
|
|
duration = _Chrono.stop();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
printf("WEdge building : %lf\n", duration);
|
|
|
|
|
}
|
2008-08-07 15:04:25 +00:00
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
_pView->setDebug(_DebugNode);
|
|
|
|
|
|
|
|
|
|
// delete stuff
|
|
|
|
|
if (0 != ws_builder) {
|
|
|
|
|
delete ws_builder;
|
|
|
|
|
ws_builder = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
soc QFileInfo qfi(iFileName);
|
2019-04-17 08:24:14 +02:00
|
|
|
soc string basename((const char *)qfi.fileName().toAscii().data());
|
2019-04-17 06:17:24 +02:00
|
|
|
char cleaned[FILE_MAX];
|
|
|
|
|
BLI_strncpy(cleaned, iFileName, FILE_MAX);
|
|
|
|
|
BLI_cleanup_file(NULL, cleaned);
|
|
|
|
|
string basename = string(cleaned);
|
2012-12-18 00:51:25 +00:00
|
|
|
#endif
|
2008-08-07 15:04:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_ListOfModels.push_back("Blender_models");
|
2008-08-07 15:04:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_Scene3dBBox = _RootNode->bbox();
|
2013-08-24 11:42:00 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_bboxDiag = (_RootNode->bbox().getMax() - _RootNode->bbox().getMin()).norm();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Triangles nb : " << _SceneNumFaces << " imported, " << _winged_edge->getNumFaces()
|
|
|
|
|
<< " retained" << endl;
|
|
|
|
|
cout << "Bounding Box : " << _bboxDiag << endl;
|
|
|
|
|
}
|
2010-12-03 23:17:49 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
ClearRootNode();
|
2010-12-03 23:17:49 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
_SceneNumFaces = _winged_edge->getNumFaces();
|
|
|
|
|
if (_SceneNumFaces == 0) {
|
|
|
|
|
DeleteWingedEdge();
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2014-05-22 22:37:35 +09:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
return 0;
|
2008-08-07 15:04:25 +00:00
|
|
|
}
|
|
|
|
|
|
2008-05-18 13:01:52 +00:00
|
|
|
void Controller::CloseFile()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
WShape::setCurrentId(0);
|
|
|
|
|
_ListOfModels.clear();
|
2010-12-03 23:17:49 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// We deallocate the memory:
|
|
|
|
|
ClearRootNode();
|
|
|
|
|
DeleteWingedEdge();
|
|
|
|
|
DeleteViewMap();
|
2010-12-03 23:17:49 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// clears the canvas
|
|
|
|
|
_Canvas->Clear();
|
2010-12-03 23:17:49 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// soc: reset passes
|
|
|
|
|
setPassDiffuse(NULL, 0, 0);
|
|
|
|
|
setPassZ(NULL, 0, 0);
|
2010-12-03 23:17:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::ClearRootNode()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_pView->DetachModel();
|
|
|
|
|
if (NULL != _RootNode) {
|
|
|
|
|
int ref = _RootNode->destroy();
|
2019-05-31 22:51:19 +10:00
|
|
|
if (0 == ref) {
|
2019-04-17 06:17:24 +02:00
|
|
|
_RootNode->addRef();
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
_RootNode->clearBBox();
|
|
|
|
|
}
|
2010-12-03 23:17:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::DeleteWingedEdge()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
if (_winged_edge) {
|
|
|
|
|
delete _winged_edge;
|
|
|
|
|
_winged_edge = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// clears the grid
|
|
|
|
|
_Grid.clear();
|
|
|
|
|
_Scene3dBBox.clear();
|
|
|
|
|
_SceneNumFaces = 0;
|
2015-08-09 23:36:53 +09:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
_minEdgeSize = DBL_MAX;
|
2015-08-09 23:36:53 +09:00
|
|
|
#endif
|
2010-12-03 23:17:49 +00:00
|
|
|
}
|
|
|
|
|
|
2014-01-28 23:24:59 +09:00
|
|
|
void Controller::DeleteViewMap(bool freeCache)
|
2010-12-03 23:17:49 +00:00
|
|
|
{
|
2014-08-14 16:58:17 +09:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
_pView->DetachSilhouette();
|
|
|
|
|
if (NULL != _SilhouetteNode) {
|
|
|
|
|
int ref = _SilhouetteNode->destroy();
|
|
|
|
|
if (0 == ref) {
|
|
|
|
|
delete _SilhouetteNode;
|
|
|
|
|
_SilhouetteNode = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (NULL != _ProjectedSilhouette) {
|
|
|
|
|
int ref = _ProjectedSilhouette->destroy();
|
|
|
|
|
if (0 == ref) {
|
|
|
|
|
delete _ProjectedSilhouette;
|
|
|
|
|
_ProjectedSilhouette = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (NULL != _VisibleProjectedSilhouette) {
|
|
|
|
|
int ref = _VisibleProjectedSilhouette->destroy();
|
|
|
|
|
if (0 == ref) {
|
|
|
|
|
delete _VisibleProjectedSilhouette;
|
|
|
|
|
_VisibleProjectedSilhouette = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_pView->DetachDebug();
|
|
|
|
|
if (NULL != _DebugNode) {
|
|
|
|
|
int ref = _DebugNode->destroy();
|
|
|
|
|
if (0 == ref)
|
|
|
|
|
_DebugNode->addRef();
|
|
|
|
|
}
|
2014-08-14 16:58:17 +09:00
|
|
|
#endif
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (NULL != _ViewMap) {
|
|
|
|
|
if (freeCache || !_EnableViewMapCache) {
|
|
|
|
|
delete _ViewMap;
|
|
|
|
|
_ViewMap = NULL;
|
|
|
|
|
prevSceneHash = -1.0;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
_ViewMap->Clean();
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::ComputeViewMap()
|
|
|
|
|
{
|
2019-05-31 22:51:19 +10:00
|
|
|
if (!_ListOfModels.size()) {
|
2019-04-17 06:17:24 +02:00
|
|
|
return;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
DeleteViewMap(true);
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// retrieve the 3D viewpoint and transformations information
|
|
|
|
|
//----------------------------------------------------------
|
|
|
|
|
// Save the viewpoint context at the view level in order
|
|
|
|
|
// to be able to restore it later:
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// Restore the context of view:
|
|
|
|
|
// we need to perform all these operations while the
|
|
|
|
|
// 3D context is on.
|
|
|
|
|
Vec3f vp(UNPACK3(g_freestyle.viewpoint));
|
The GL-based renderer was removed. Freestyle now uses Blender's internal renderer to raster strokes.
The render generated from Freestyle's data is currently stored in the original scene's render structure ( as 'freestyle_render'): when the render database is generated, the scene's geometrical data is first imported into Freestyle and strokes are calculated. The generated strokes are used to create a Blender scene, rendered independently. The render result is used in the rendering loop.
The final rendering is performed the same way edge rendering is, in a function ('freestyle_enhance_add') operating on each individual render part. Freestyle strokes are only included if the toggle button "Freestyle" (in the 'Output' panel) is active and if the "Freestyle" render layer is also selected. Freestyle's panel appears when the toggle button 'Freestyle' is active.
IMPORTANT: as of now, rendering ONLY works when OSA is disabled and when Xparts = Yparts = 1. If these settings are not set, a bogus image will be created.
To make the render happen, many modifications had to be made:
- the Canvas::Draw and Operators::create methods no longer render strokes. They only generate shading and locational information.
- a BlenderStrokeRenderer class was added to turn Freestyle's strokes into a Blender scene. Basically, the scene consists of strokes in their projected image 2D coordinates and an orthographic camera centered in the middle of the corresponding canvas. The scene is rendered using vertex colors, in shadeless mode (therefore, no lamp is needed). BlenderStrokeRenderer uses the old GLTextureManager to load textures (as required by the StrokeRenderer class), even though stroke textures are probably not supported (not tested). After the scene is rendered, it is safely and automatically discarded.
- AppCanvas' code was greatly reduced to the bare minimum. The former AppCanvas would use an OpenGL-based back buffer and z buffer to determine the scene's color and depth information. In the future, this data will be determined from the corresponding render passes. Currently, the integration is not achieved so all style modules using depth/color information are sure to fail.
- before, Freestyle needed an OpenGL context to determine the camera's information and to compute the view map. As of now, the modelview and projection matrices are fully determined using data provided by Blender. This means both perspective and orthographic projections are supported. The AppGLWidget will very soon be removed completely.
2008-12-01 21:30:44 +00:00
|
|
|
|
2013-01-03 23:27:20 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "mv" << endl;
|
|
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
real mv[4][4];
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
for (int j = 0; j < 4; j++) {
|
|
|
|
|
mv[i][j] = g_freestyle.mv[i][j];
|
2013-01-03 23:27:20 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << mv[i][j] << " ";
|
|
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << endl;
|
|
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2013-01-03 23:27:20 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "\nproj" << endl;
|
|
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
real proj[4][4];
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
for (int j = 0; j < 4; j++) {
|
|
|
|
|
proj[i][j] = g_freestyle.proj[i][j];
|
2013-01-03 23:27:20 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << proj[i][j] << " ";
|
|
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << endl;
|
|
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#endif
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
The GL-based renderer was removed. Freestyle now uses Blender's internal renderer to raster strokes.
The render generated from Freestyle's data is currently stored in the original scene's render structure ( as 'freestyle_render'): when the render database is generated, the scene's geometrical data is first imported into Freestyle and strokes are calculated. The generated strokes are used to create a Blender scene, rendered independently. The render result is used in the rendering loop.
The final rendering is performed the same way edge rendering is, in a function ('freestyle_enhance_add') operating on each individual render part. Freestyle strokes are only included if the toggle button "Freestyle" (in the 'Output' panel) is active and if the "Freestyle" render layer is also selected. Freestyle's panel appears when the toggle button 'Freestyle' is active.
IMPORTANT: as of now, rendering ONLY works when OSA is disabled and when Xparts = Yparts = 1. If these settings are not set, a bogus image will be created.
To make the render happen, many modifications had to be made:
- the Canvas::Draw and Operators::create methods no longer render strokes. They only generate shading and locational information.
- a BlenderStrokeRenderer class was added to turn Freestyle's strokes into a Blender scene. Basically, the scene consists of strokes in their projected image 2D coordinates and an orthographic camera centered in the middle of the corresponding canvas. The scene is rendered using vertex colors, in shadeless mode (therefore, no lamp is needed). BlenderStrokeRenderer uses the old GLTextureManager to load textures (as required by the StrokeRenderer class), even though stroke textures are probably not supported (not tested). After the scene is rendered, it is safely and automatically discarded.
- AppCanvas' code was greatly reduced to the bare minimum. The former AppCanvas would use an OpenGL-based back buffer and z buffer to determine the scene's color and depth information. In the future, this data will be determined from the corresponding render passes. Currently, the integration is not achieved so all style modules using depth/color information are sure to fail.
- before, Freestyle needed an OpenGL context to determine the camera's information and to compute the view map. As of now, the modelview and projection matrices are fully determined using data provided by Blender. This means both perspective and orthographic projections are supported. The AppGLWidget will very soon be removed completely.
2008-12-01 21:30:44 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
int viewport[4];
|
2019-05-31 22:51:19 +10:00
|
|
|
for (int i = 0; i < 4; i++) {
|
2019-04-17 06:17:24 +02:00
|
|
|
viewport[i] = g_freestyle.viewport[i];
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2009-04-12 07:02:03 +00:00
|
|
|
|
2013-01-03 23:27:20 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "\nfocal:" << _pView->GetFocalLength() << endl << endl;
|
|
|
|
|
}
|
2013-01-03 23:27:20 +00:00
|
|
|
#endif
|
The GL-based renderer was removed. Freestyle now uses Blender's internal renderer to raster strokes.
The render generated from Freestyle's data is currently stored in the original scene's render structure ( as 'freestyle_render'): when the render database is generated, the scene's geometrical data is first imported into Freestyle and strokes are calculated. The generated strokes are used to create a Blender scene, rendered independently. The render result is used in the rendering loop.
The final rendering is performed the same way edge rendering is, in a function ('freestyle_enhance_add') operating on each individual render part. Freestyle strokes are only included if the toggle button "Freestyle" (in the 'Output' panel) is active and if the "Freestyle" render layer is also selected. Freestyle's panel appears when the toggle button 'Freestyle' is active.
IMPORTANT: as of now, rendering ONLY works when OSA is disabled and when Xparts = Yparts = 1. If these settings are not set, a bogus image will be created.
To make the render happen, many modifications had to be made:
- the Canvas::Draw and Operators::create methods no longer render strokes. They only generate shading and locational information.
- a BlenderStrokeRenderer class was added to turn Freestyle's strokes into a Blender scene. Basically, the scene consists of strokes in their projected image 2D coordinates and an orthographic camera centered in the middle of the corresponding canvas. The scene is rendered using vertex colors, in shadeless mode (therefore, no lamp is needed). BlenderStrokeRenderer uses the old GLTextureManager to load textures (as required by the StrokeRenderer class), even though stroke textures are probably not supported (not tested). After the scene is rendered, it is safely and automatically discarded.
- AppCanvas' code was greatly reduced to the bare minimum. The former AppCanvas would use an OpenGL-based back buffer and z buffer to determine the scene's color and depth information. In the future, this data will be determined from the corresponding render passes. Currently, the integration is not achieved so all style modules using depth/color information are sure to fail.
- before, Freestyle needed an OpenGL context to determine the camera's information and to compute the view map. As of now, the modelview and projection matrices are fully determined using data provided by Blender. This means both perspective and orthographic projections are supported. The AppGLWidget will very soon be removed completely.
2008-12-01 21:30:44 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// Flag the WXEdge structure for silhouette edge detection:
|
|
|
|
|
//----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "\n=== Detecting silhouette edges ===" << endl;
|
|
|
|
|
}
|
|
|
|
|
_Chrono.start();
|
|
|
|
|
|
|
|
|
|
edgeDetector.setViewpoint(vp);
|
|
|
|
|
edgeDetector.enableOrthographicProjection(proj[3][3] != 0.0);
|
|
|
|
|
edgeDetector.enableRidgesAndValleysFlag(_ComputeRidges);
|
|
|
|
|
edgeDetector.enableSuggestiveContours(_ComputeSuggestive);
|
|
|
|
|
edgeDetector.enableMaterialBoundaries(_ComputeMaterialBoundaries);
|
|
|
|
|
edgeDetector.enableFaceSmoothness(_EnableFaceSmoothness);
|
|
|
|
|
edgeDetector.setCreaseAngle(_creaseAngle);
|
|
|
|
|
edgeDetector.setSphereRadius(_sphereRadius);
|
|
|
|
|
edgeDetector.setSuggestiveContourKrDerivativeEpsilon(_suggestiveContourKrDerivativeEpsilon);
|
|
|
|
|
edgeDetector.setRenderMonitor(_pRenderMonitor);
|
|
|
|
|
edgeDetector.processShapes(*_winged_edge);
|
|
|
|
|
|
|
|
|
|
real duration = _Chrono.stop();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
printf("Feature lines : %lf\n", duration);
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-31 22:51:19 +10:00
|
|
|
if (_pRenderMonitor->testBreak()) {
|
2019-04-17 06:17:24 +02:00
|
|
|
return;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
|
// Builds the view map structure from the flagged WSEdge structure:
|
|
|
|
|
//----------------------------------------------------------
|
|
|
|
|
ViewMapBuilder vmBuilder;
|
|
|
|
|
vmBuilder.setEnableQI(_EnableQI);
|
|
|
|
|
vmBuilder.setViewpoint(vp);
|
|
|
|
|
vmBuilder.setTransform(
|
|
|
|
|
mv, proj, viewport, _pView->GetFocalLength(), _pView->GetAspect(), _pView->GetFovyRadian());
|
|
|
|
|
vmBuilder.setFrustum(_pView->znear(), _pView->zfar());
|
|
|
|
|
vmBuilder.setGrid(&_Grid);
|
|
|
|
|
vmBuilder.setRenderMonitor(_pRenderMonitor);
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2014-08-14 16:58:17 +09:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
// Builds a tesselated form of the silhouette for display purpose:
|
|
|
|
|
//---------------------------------------------------------------
|
|
|
|
|
ViewMapTesselator3D sTesselator3d;
|
|
|
|
|
ViewMapTesselator2D sTesselator2d;
|
|
|
|
|
sTesselator2d.setNature(_edgeTesselationNature);
|
|
|
|
|
sTesselator3d.setNature(_edgeTesselationNature);
|
2014-08-14 16:58:17 +09:00
|
|
|
#endif
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "\n=== Building the view map ===" << endl;
|
|
|
|
|
}
|
|
|
|
|
_Chrono.start();
|
|
|
|
|
// Build View Map
|
|
|
|
|
_ViewMap = vmBuilder.BuildViewMap(
|
|
|
|
|
*_winged_edge, _VisibilityAlgo, _EPSILON, _Scene3dBBox, _SceneNumFaces);
|
|
|
|
|
_ViewMap->setScene3dBBox(_Scene3dBBox);
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
printf("ViewMap edge count : %i\n", _ViewMap->viewedges_size());
|
|
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2014-08-14 16:58:17 +09:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
// Tesselate the 3D edges:
|
|
|
|
|
_SilhouetteNode = sTesselator3d.Tesselate(_ViewMap);
|
|
|
|
|
_SilhouetteNode->addRef();
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// Tesselate 2D edges
|
|
|
|
|
_ProjectedSilhouette = sTesselator2d.Tesselate(_ViewMap);
|
|
|
|
|
_ProjectedSilhouette->addRef();
|
2012-12-18 00:51:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
duration = _Chrono.stop();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
printf("ViewMap building : %lf\n", duration);
|
|
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
|
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
_pView->AddSilhouette(_SilhouetteNode);
|
|
|
|
|
_pView->AddSilhouette(_WRoot);
|
|
|
|
|
_pView->Add2DSilhouette(_ProjectedSilhouette);
|
|
|
|
|
_pView->Add2DVisibleSilhouette(_VisibleProjectedSilhouette);
|
|
|
|
|
_pView->AddDebug(_DebugNode);
|
2014-08-14 16:58:17 +09:00
|
|
|
#endif
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// Draw the steerable density map:
|
|
|
|
|
//--------------------------------
|
|
|
|
|
if (_ComputeSteerableViewMap) {
|
|
|
|
|
ComputeSteerableViewMap();
|
|
|
|
|
}
|
|
|
|
|
// Reset Style modules modification flags
|
|
|
|
|
resetModified(true);
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
DeleteWingedEdge();
|
2012-12-18 00:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::ComputeSteerableViewMap()
|
|
|
|
|
{
|
2019-04-30 17:50:57 +10:00
|
|
|
#if 0 // soc
|
2019-04-17 06:17:24 +02:00
|
|
|
if ((!_Canvas) || (!_ViewMap))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Build 4 nodes containing the edges in the 4 directions
|
|
|
|
|
NodeGroup *ng[Canvas::NB_STEERABLE_VIEWMAP];
|
|
|
|
|
unsigned i;
|
2019-04-17 08:24:14 +02:00
|
|
|
real c =
|
|
|
|
|
32.0f /
|
|
|
|
|
255.0f; // see SteerableViewMap::readSteerableViewMapPixel() for information about this 32.
|
2019-04-17 06:17:24 +02:00
|
|
|
for (i = 0; i < Canvas::NB_STEERABLE_VIEWMAP; ++i) {
|
|
|
|
|
ng[i] = new NodeGroup;
|
|
|
|
|
}
|
|
|
|
|
NodeShape *completeNS = new NodeShape;
|
2019-04-17 08:24:14 +02:00
|
|
|
completeNS->material().setDiffuse(c, c, c, 1);
|
|
|
|
|
ng[Canvas::NB_STEERABLE_VIEWMAP - 1]->AddChild(completeNS);
|
2019-04-17 06:17:24 +02:00
|
|
|
SteerableViewMap *svm = _Canvas->getSteerableViewMap();
|
|
|
|
|
svm->Reset();
|
|
|
|
|
|
2019-04-17 08:24:14 +02:00
|
|
|
ViewMap::fedges_container &fedges = _ViewMap->FEdges();
|
2019-04-17 06:17:24 +02:00
|
|
|
LineRep *fRep;
|
|
|
|
|
NodeShape *ns;
|
2019-04-17 08:24:14 +02:00
|
|
|
for (ViewMap::fedges_container::iterator f = fedges.begin(), fend = fedges.end(); f != fend;
|
|
|
|
|
++f) {
|
2019-04-17 06:17:24 +02:00
|
|
|
if ((*f)->viewedge()->qi() != 0)
|
|
|
|
|
continue;
|
|
|
|
|
fRep = new LineRep((*f)->vertexA()->point2d(), (*f)->vertexB()->point2d());
|
2019-04-17 08:24:14 +02:00
|
|
|
completeNS->AddRep(fRep); // add to the complete map anyway
|
2019-04-17 06:17:24 +02:00
|
|
|
double *oweights = svm->AddFEdge(*f);
|
|
|
|
|
for (i = 0; i < (Canvas::NB_STEERABLE_VIEWMAP - 1); ++i) {
|
|
|
|
|
ns = new NodeShape;
|
2019-04-17 08:24:14 +02:00
|
|
|
double wc = oweights[i] * c;
|
2019-04-17 06:17:24 +02:00
|
|
|
if (oweights[i] == 0)
|
|
|
|
|
continue;
|
|
|
|
|
ns->material().setDiffuse(wc, wc, wc, 1);
|
|
|
|
|
ns->AddRep(fRep);
|
|
|
|
|
ng[i]->AddChild(ns);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GrayImage *img[Canvas::NB_STEERABLE_VIEWMAP];
|
|
|
|
|
//#ifdef WIN32
|
|
|
|
|
QGLBasicWidget offscreenBuffer(_pView, "SteerableViewMap", _pView->width(), _pView->height());
|
|
|
|
|
QPixmap pm;
|
|
|
|
|
QImage qimg;
|
|
|
|
|
for (i = 0; i < Canvas::NB_STEERABLE_VIEWMAP; ++i) {
|
|
|
|
|
offscreenBuffer.AddNode(ng[i]);
|
|
|
|
|
# if 0
|
|
|
|
|
img[i] = new GrayImage(_pView->width(), _pView->height());
|
|
|
|
|
offscreenBuffer.readPixels(0,0,_pView->width(), _pView->height(), img[i]->getArray());
|
|
|
|
|
# endif
|
|
|
|
|
pm = offscreenBuffer.renderPixmap(_pView->width(), _pView->height());
|
|
|
|
|
|
|
|
|
|
if (pm.isNull()) {
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "BuildViewMap Warning: couldn't render the steerable ViewMap" << endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//pm.save(QString("steerable") + QString::number(i) + QString(".bmp"), "BMP");
|
|
|
|
|
// FIXME!! Lost of time !
|
|
|
|
|
qimg = pm.toImage();
|
|
|
|
|
// FIXME !! again!
|
|
|
|
|
img[i] = new GrayImage(_pView->width(), _pView->height());
|
|
|
|
|
for (unsigned int y = 0; y < img[i]->height(); ++y) {
|
|
|
|
|
for (unsigned int x = 0; x < img[i]->width(); ++x) {
|
|
|
|
|
//img[i]->setPixel(x, y, (float)qGray(qimg.pixel(x, y)) / 255.0f);
|
|
|
|
|
img[i]->setPixel(x, y, (float)qGray(qimg.pixel(x, y)));
|
|
|
|
|
//float c = qGray(qimg.pixel(x, y));
|
|
|
|
|
//img[i]->setPixel(x, y, qGray(qimg.pixel(x, y)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
offscreenBuffer.DetachNode(ng[i]);
|
|
|
|
|
ng[i]->destroy();
|
|
|
|
|
delete ng[i];
|
|
|
|
|
// check
|
|
|
|
|
# if 0
|
|
|
|
|
qimg = QImage(_pView->width(), _pView->height(), 32);
|
|
|
|
|
for (unsigned int y = 0; y < img[i]->height(); ++y) {
|
|
|
|
|
for (unsigned int x = 0; x < img[i]->width(); ++x) {
|
|
|
|
|
float v = img[i]->pixel(x, y);
|
|
|
|
|
qimg.setPixel(x, y, qRgb(v, v, v));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
qimg.save(QString("newsteerable") + QString::number(i) + QString(".bmp"), "BMP");
|
|
|
|
|
# endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svm->buildImagesPyramids(img, false, 0, 1.0f);
|
2012-12-18 00:51:25 +00:00
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::saveSteerableViewMapImages()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
SteerableViewMap *svm = _Canvas->getSteerableViewMap();
|
|
|
|
|
if (!svm) {
|
|
|
|
|
cerr << "the Steerable ViewMap has not been computed yet" << endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
svm->saveSteerableViewMap();
|
2012-12-18 00:51:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::toggleVisibilityAlgo()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
if (_VisibilityAlgo == ViewMapBuilder::ray_casting) {
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_fast;
|
|
|
|
|
}
|
|
|
|
|
else if (_VisibilityAlgo == ViewMapBuilder::ray_casting_fast) {
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_very_fast;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting;
|
|
|
|
|
}
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2011-03-14 00:36:27 +00:00
|
|
|
void Controller::setVisibilityAlgo(int algo)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
switch (algo) {
|
|
|
|
|
case FREESTYLE_ALGO_REGULAR:
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting;
|
|
|
|
|
break;
|
|
|
|
|
case FREESTYLE_ALGO_FAST:
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_fast;
|
|
|
|
|
break;
|
|
|
|
|
case FREESTYLE_ALGO_VERYFAST:
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_very_fast;
|
|
|
|
|
break;
|
|
|
|
|
case FREESTYLE_ALGO_CULLED_ADAPTIVE_TRADITIONAL:
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_culled_adaptive_traditional;
|
|
|
|
|
break;
|
|
|
|
|
case FREESTYLE_ALGO_ADAPTIVE_TRADITIONAL:
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_adaptive_traditional;
|
|
|
|
|
break;
|
|
|
|
|
case FREESTYLE_ALGO_CULLED_ADAPTIVE_CUMULATIVE:
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_culled_adaptive_cumulative;
|
|
|
|
|
break;
|
|
|
|
|
case FREESTYLE_ALGO_ADAPTIVE_CUMULATIVE:
|
|
|
|
|
_VisibilityAlgo = ViewMapBuilder::ray_casting_adaptive_cumulative;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2011-03-14 00:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int Controller::getVisibilityAlgo()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
switch (_VisibilityAlgo) {
|
|
|
|
|
case ViewMapBuilder::ray_casting:
|
|
|
|
|
return FREESTYLE_ALGO_REGULAR;
|
|
|
|
|
case ViewMapBuilder::ray_casting_fast:
|
|
|
|
|
return FREESTYLE_ALGO_FAST;
|
|
|
|
|
case ViewMapBuilder::ray_casting_very_fast:
|
|
|
|
|
return FREESTYLE_ALGO_VERYFAST;
|
|
|
|
|
case ViewMapBuilder::ray_casting_culled_adaptive_traditional:
|
|
|
|
|
return FREESTYLE_ALGO_CULLED_ADAPTIVE_TRADITIONAL;
|
|
|
|
|
case ViewMapBuilder::ray_casting_adaptive_traditional:
|
|
|
|
|
return FREESTYLE_ALGO_ADAPTIVE_TRADITIONAL;
|
|
|
|
|
case ViewMapBuilder::ray_casting_culled_adaptive_cumulative:
|
|
|
|
|
return FREESTYLE_ALGO_CULLED_ADAPTIVE_CUMULATIVE;
|
|
|
|
|
case ViewMapBuilder::ray_casting_adaptive_cumulative:
|
|
|
|
|
return FREESTYLE_ALGO_ADAPTIVE_CUMULATIVE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ray_casting_adaptive_traditional is the most exact replacement
|
|
|
|
|
// for legacy code
|
|
|
|
|
return FREESTYLE_ALGO_ADAPTIVE_TRADITIONAL;
|
2011-03-14 00:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
2014-01-28 23:24:59 +09:00
|
|
|
void Controller::setViewMapCache(bool iBool)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_EnableViewMapCache = iBool;
|
2014-01-28 23:24:59 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Controller::getViewMapCache() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
return _EnableViewMapCache;
|
2014-01-28 23:24:59 +09:00
|
|
|
}
|
|
|
|
|
|
2008-05-18 13:01:52 +00:00
|
|
|
void Controller::setQuantitativeInvisibility(bool iBool)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_EnableQI = iBool;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Controller::getQuantitativeInvisibility() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
return _EnableQI;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2011-03-14 00:36:27 +00:00
|
|
|
void Controller::setFaceSmoothness(bool iBool)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_EnableFaceSmoothness = iBool;
|
2011-03-14 00:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Controller::getFaceSmoothness() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
return _EnableFaceSmoothness;
|
2011-03-14 00:36:27 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::setComputeRidgesAndValleysFlag(bool iBool)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_ComputeRidges = iBool;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
bool Controller::getComputeRidgesAndValleysFlag() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
return _ComputeRidges;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
2010-05-22 22:21:15 +00:00
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::setComputeSuggestiveContoursFlag(bool b)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_ComputeSuggestive = b;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
|
|
|
|
bool Controller::getComputeSuggestiveContoursFlag() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
return _ComputeSuggestive;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
2010-05-22 22:21:15 +00:00
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::setComputeMaterialBoundariesFlag(bool b)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_ComputeMaterialBoundaries = b;
|
2010-05-22 22:21:15 +00:00
|
|
|
}
|
2012-12-18 00:51:25 +00:00
|
|
|
|
|
|
|
|
bool Controller::getComputeMaterialBoundariesFlag() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
return _ComputeMaterialBoundaries;
|
2010-05-22 22:21:15 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::setComputeSteerableViewMapFlag(bool iBool)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_ComputeSteerableViewMap = iBool;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
bool Controller::getComputeSteerableViewMapFlag() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
return _ComputeSteerableViewMap;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2016-05-05 23:09:22 +09:00
|
|
|
int Controller::DrawStrokes()
|
2008-05-18 13:01:52 +00:00
|
|
|
{
|
2019-05-31 22:51:19 +10:00
|
|
|
if (_ViewMap == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
return 0;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "\n=== Stroke drawing ===" << endl;
|
|
|
|
|
}
|
|
|
|
|
_Chrono.start();
|
|
|
|
|
_Canvas->Draw();
|
|
|
|
|
real d = _Chrono.stop();
|
|
|
|
|
int strokeCount = _Canvas->getStrokeCount();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Strokes generation : " << d << endl;
|
|
|
|
|
cout << "Stroke count : " << strokeCount << endl;
|
|
|
|
|
}
|
|
|
|
|
resetModified();
|
|
|
|
|
DeleteViewMap();
|
|
|
|
|
return strokeCount;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2010-03-28 17:46:10 +00:00
|
|
|
void Controller::ResetRenderCount()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_render_count = 0;
|
2010-03-28 17:46:10 +00:00
|
|
|
}
|
|
|
|
|
|
2013-06-11 02:32:01 +00:00
|
|
|
Render *Controller::RenderStrokes(Render *re, bool render)
|
2012-12-18 00:51:25 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
int totmesh = 0;
|
|
|
|
|
_Chrono.start();
|
|
|
|
|
BlenderStrokeRenderer *blenderRenderer = new BlenderStrokeRenderer(re, ++_render_count);
|
|
|
|
|
if (render) {
|
|
|
|
|
_Canvas->Render(blenderRenderer);
|
|
|
|
|
totmesh = blenderRenderer->GenerateScene();
|
|
|
|
|
}
|
|
|
|
|
real d = _Chrono.stop();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Temporary scene generation: " << d << endl;
|
|
|
|
|
}
|
|
|
|
|
_Chrono.start();
|
|
|
|
|
Render *freestyle_render = blenderRenderer->RenderScene(re, render);
|
|
|
|
|
d = _Chrono.stop();
|
|
|
|
|
if (G.debug & G_DEBUG_FREESTYLE) {
|
|
|
|
|
cout << "Stroke rendering : " << d << endl;
|
|
|
|
|
|
|
|
|
|
uintptr_t mem_in_use = MEM_get_memory_in_use();
|
|
|
|
|
uintptr_t mmap_in_use = MEM_get_mapped_memory_in_use();
|
|
|
|
|
uintptr_t peak_memory = MEM_get_peak_memory();
|
|
|
|
|
|
|
|
|
|
float megs_used_memory = (mem_in_use - mmap_in_use) / (1024.0 * 1024.0);
|
|
|
|
|
float mmap_used_memory = (mmap_in_use) / (1024.0 * 1024.0);
|
|
|
|
|
float megs_peak_memory = (peak_memory) / (1024.0 * 1024.0);
|
|
|
|
|
|
|
|
|
|
printf("%d objs, %d verts, %d faces, mem %.2fM (%.2fM, peak %.2fM)\n",
|
|
|
|
|
totmesh,
|
|
|
|
|
freestyle_render->i.totvert,
|
|
|
|
|
freestyle_render->i.totface,
|
|
|
|
|
megs_used_memory,
|
|
|
|
|
mmap_used_memory,
|
|
|
|
|
megs_peak_memory);
|
|
|
|
|
}
|
|
|
|
|
delete blenderRenderer;
|
|
|
|
|
|
|
|
|
|
return freestyle_render;
|
The GL-based renderer was removed. Freestyle now uses Blender's internal renderer to raster strokes.
The render generated from Freestyle's data is currently stored in the original scene's render structure ( as 'freestyle_render'): when the render database is generated, the scene's geometrical data is first imported into Freestyle and strokes are calculated. The generated strokes are used to create a Blender scene, rendered independently. The render result is used in the rendering loop.
The final rendering is performed the same way edge rendering is, in a function ('freestyle_enhance_add') operating on each individual render part. Freestyle strokes are only included if the toggle button "Freestyle" (in the 'Output' panel) is active and if the "Freestyle" render layer is also selected. Freestyle's panel appears when the toggle button 'Freestyle' is active.
IMPORTANT: as of now, rendering ONLY works when OSA is disabled and when Xparts = Yparts = 1. If these settings are not set, a bogus image will be created.
To make the render happen, many modifications had to be made:
- the Canvas::Draw and Operators::create methods no longer render strokes. They only generate shading and locational information.
- a BlenderStrokeRenderer class was added to turn Freestyle's strokes into a Blender scene. Basically, the scene consists of strokes in their projected image 2D coordinates and an orthographic camera centered in the middle of the corresponding canvas. The scene is rendered using vertex colors, in shadeless mode (therefore, no lamp is needed). BlenderStrokeRenderer uses the old GLTextureManager to load textures (as required by the StrokeRenderer class), even though stroke textures are probably not supported (not tested). After the scene is rendered, it is safely and automatically discarded.
- AppCanvas' code was greatly reduced to the bare minimum. The former AppCanvas would use an OpenGL-based back buffer and z buffer to determine the scene's color and depth information. In the future, this data will be determined from the corresponding render passes. Currently, the integration is not achieved so all style modules using depth/color information are sure to fail.
- before, Freestyle needed an OpenGL context to determine the camera's information and to compute the view map. As of now, the modelview and projection matrices are fully determined using data provided by Blender. This means both perspective and orthographic projections are supported. The AppGLWidget will very soon be removed completely.
2008-12-01 21:30:44 +00:00
|
|
|
}
|
|
|
|
|
|
2008-05-18 13:01:52 +00:00
|
|
|
void Controller::InsertStyleModule(unsigned index, const char *iFileName)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
if (!BLI_path_extension_check(iFileName, ".py")) {
|
|
|
|
|
cerr << "Error: Cannot load \"" << string(iFileName) << "\", unknown extension" << endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
StyleModule *sm = new StyleModule(iFileName, _inter);
|
|
|
|
|
_Canvas->InsertStyleModule(index, sm);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2015-04-28 23:18:32 +09:00
|
|
|
void Controller::InsertStyleModule(unsigned index, const char *iName, const char *iBuffer)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
StyleModule *sm = new BufferedStyleModule(iBuffer, iName, _inter);
|
|
|
|
|
_Canvas->InsertStyleModule(index, sm);
|
2015-04-28 23:18:32 +09:00
|
|
|
}
|
|
|
|
|
|
2014-07-19 18:52:32 +09:00
|
|
|
void Controller::InsertStyleModule(unsigned index, const char *iName, struct Text *iText)
|
2010-07-26 01:23:27 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
StyleModule *sm = new BlenderStyleModule(iText, iName, _inter);
|
|
|
|
|
_Canvas->InsertStyleModule(index, sm);
|
2010-07-26 01:23:27 +00:00
|
|
|
}
|
|
|
|
|
|
2015-03-27 15:50:18 +05:00
|
|
|
void Controller::AddStyleModule(const char * /*iFileName*/)
|
2008-05-18 13:01:52 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
//_pStyleWindow->Add(iFileName);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::RemoveStyleModule(unsigned index)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_Canvas->RemoveStyleModule(index);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::Clear()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_Canvas->Clear();
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
void Controller::ReloadStyleModule(unsigned index, const char *iFileName)
|
2008-05-18 13:01:52 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
StyleModule *sm = new StyleModule(iFileName, _inter);
|
|
|
|
|
_Canvas->ReplaceStyleModule(index, sm);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::SwapStyleModules(unsigned i1, unsigned i2)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_Canvas->SwapStyleModules(i1, i2);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::toggleLayer(unsigned index, bool iDisplay)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_Canvas->setVisible(index, iDisplay);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::setModified(unsigned index, bool iMod)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
//_pStyleWindow->setModified(index, iMod);
|
|
|
|
|
_Canvas->setModified(index, iMod);
|
|
|
|
|
updateCausalStyleModules(index + 1);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::updateCausalStyleModules(unsigned index)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
vector<unsigned> vec;
|
|
|
|
|
_Canvas->causalStyleModules(vec, index);
|
|
|
|
|
for (vector<unsigned>::const_iterator it = vec.begin(); it != vec.end(); it++) {
|
|
|
|
|
//_pStyleWindow->setModified(*it, true);
|
|
|
|
|
_Canvas->setModified(*it, true);
|
|
|
|
|
}
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::resetModified(bool iMod)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
//_pStyleWindow->resetModified(iMod);
|
|
|
|
|
_Canvas->resetModified(iMod);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
NodeGroup *Controller::BuildRep(vector<ViewEdge *>::iterator vedges_begin,
|
|
|
|
|
vector<ViewEdge *>::iterator vedges_end)
|
2008-05-18 13:01:52 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
ViewMapTesselator2D tesselator2D;
|
|
|
|
|
FrsMaterial mat;
|
|
|
|
|
mat.setDiffuse(1, 1, 0.3, 1);
|
|
|
|
|
tesselator2D.setFrsMaterial(mat);
|
2008-05-18 13:01:52 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
return (tesselator2D.Tesselate(vedges_begin, vedges_end));
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Controller::toggleEdgeTesselationNature(Nature::EdgeNature iNature)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
_edgeTesselationNature ^= (iNature);
|
|
|
|
|
ComputeViewMap();
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
void Controller::setModelsDir(const string & /*dir*/)
|
2012-12-18 00:51:25 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
//_current_dirs->setValue("models/dir", dir);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
string Controller::getModelsDir() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
string dir = ".";
|
|
|
|
|
//_current_dirs->getValue("models/dir", dir);
|
|
|
|
|
return dir;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
void Controller::setModulesDir(const string & /*dir*/)
|
2012-12-18 00:51:25 +00:00
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
//_current_dirs->setValue("modules/dir", dir);
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
string Controller::getModulesDir() const
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
string dir = ".";
|
|
|
|
|
//_current_dirs->getValue("modules/dir", dir);
|
|
|
|
|
return dir;
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::resetInterpreter()
|
|
|
|
|
{
|
2019-05-31 22:51:19 +10:00
|
|
|
if (_inter) {
|
2019-04-17 06:17:24 +02:00
|
|
|
_inter->reset();
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
|
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::displayDensityCurves(int x, int y)
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
SteerableViewMap *svm = _Canvas->getSteerableViewMap();
|
2019-05-31 22:51:19 +10:00
|
|
|
if (!svm) {
|
2019-04-17 06:17:24 +02:00
|
|
|
return;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
|
unsigned int i, j;
|
|
|
|
|
typedef vector<Vec3r> densityCurve;
|
|
|
|
|
vector<densityCurve> curves(svm->getNumberOfOrientations() + 1);
|
|
|
|
|
vector<densityCurve> curvesDirection(svm->getNumberOfPyramidLevels());
|
|
|
|
|
|
|
|
|
|
// collect the curves values
|
|
|
|
|
unsigned nbCurves = svm->getNumberOfOrientations() + 1;
|
|
|
|
|
unsigned nbPoints = svm->getNumberOfPyramidLevels();
|
2019-05-31 22:51:19 +10:00
|
|
|
if (!nbPoints) {
|
2019-04-17 06:17:24 +02:00
|
|
|
return;
|
2019-05-31 22:51:19 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
|
// build the density/nbLevels curves for each orientation
|
|
|
|
|
for (i = 0; i < nbCurves; ++i) {
|
|
|
|
|
for (j = 0; j < nbPoints; ++j) {
|
|
|
|
|
curves[i].push_back(Vec3r(j, svm->readSteerableViewMapPixel(i, j, x, y), 0));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// build the density/nbOrientations curves for each level
|
|
|
|
|
for (i = 0; i < nbPoints; ++i) {
|
|
|
|
|
for (j = 0; j < nbCurves; ++j) {
|
|
|
|
|
curvesDirection[i].push_back(Vec3r(j, svm->readSteerableViewMapPixel(j, i, x, y), 0));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// display the curves
|
2012-12-18 00:51:25 +00:00
|
|
|
#if 0
|
2019-04-17 06:17:24 +02:00
|
|
|
for (i = 0; i < nbCurves; ++i)
|
2019-04-17 08:24:14 +02:00
|
|
|
_pDensityCurvesWindow->setOrientationCurve(
|
|
|
|
|
i, Vec2d(0, 0), Vec2d(nbPoints, 1), curves[i], "scale", "density");
|
2019-04-17 06:17:24 +02:00
|
|
|
for (i = 1; i <= 8; ++i)
|
2019-04-17 08:24:14 +02:00
|
|
|
_pDensityCurvesWindow->setLevelCurve(
|
|
|
|
|
i, Vec2d(0, 0), Vec2d(nbCurves, 1), curvesDirection[i], "orientation", "density");
|
2019-04-17 06:17:24 +02:00
|
|
|
_pDensityCurvesWindow->show();
|
2012-12-18 00:51:25 +00:00
|
|
|
#endif
|
2008-05-18 13:01:52 +00:00
|
|
|
}
|
2008-05-26 16:19:30 +00:00
|
|
|
|
2012-12-18 00:51:25 +00:00
|
|
|
void Controller::init_options()
|
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
// from AppOptionsWindow.cpp
|
|
|
|
|
// Default init options
|
2008-05-26 19:52:55 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
Config::Path *cpath = Config::Path::getInstance();
|
2012-12-18 00:51:25 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// Directories
|
|
|
|
|
ViewMapIO::Options::setModelsPath(cpath->getModelsPath());
|
|
|
|
|
TextureManager::Options::setPatternsPath(cpath->getPatternsPath());
|
|
|
|
|
TextureManager::Options::setBrushesPath(cpath->getModelsPath());
|
2008-05-26 19:52:55 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// ViewMap Format
|
|
|
|
|
ViewMapIO::Options::rmFlags(ViewMapIO::Options::FLOAT_VECTORS);
|
|
|
|
|
ViewMapIO::Options::rmFlags(ViewMapIO::Options::NO_OCCLUDERS);
|
|
|
|
|
setComputeSteerableViewMapFlag(false);
|
2008-05-26 19:52:55 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// Visibility
|
|
|
|
|
setQuantitativeInvisibility(true);
|
2008-05-26 19:52:55 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// soc: initialize canvas
|
|
|
|
|
_Canvas->init();
|
2010-02-16 21:44:18 +00:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
// soc: initialize passes
|
|
|
|
|
setPassDiffuse(NULL, 0, 0);
|
|
|
|
|
setPassZ(NULL, 0, 0);
|
2008-05-26 16:19:30 +00:00
|
|
|
}
|
2013-04-09 00:46:49 +00:00
|
|
|
|
|
|
|
|
} /* namespace Freestyle */
|