12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010 |
- // This file is part of libigl, a simple c++ geometry processing library.
- //
- // Copyright (C) 2014 Daniele Panozzo <daniele.panozzo@gmail.com>
- //
- // This Source Code Form is subject to the terms of the Mozilla Public License
- // v. 2.0. If a copy of the MPL was not distributed with this file, You can
- // obtain one at http://mozilla.org/MPL/2.0/.
- #include "Viewer.h"
- #include <igl/get_seconds.h>
- #ifdef _WIN32
- # include <windows.h>
- # undef max
- # undef min
- #endif
- #include <chrono>
- #include <thread>
- #ifndef __APPLE__
- # define GLEW_STATIC
- # include <GL/glew.h>
- #endif
- #ifdef __APPLE__
- # include <OpenGL/gl3.h>
- # define __gl_h_ /* Prevent inclusion of the old gl.h */
- #else
- # ifdef _WIN32
- # include <windows.h>
- # endif
- # include <GL/gl.h>
- #endif
- #include <Eigen/LU>
- #define GLFW_INCLUDE_GLU
- #include <GLFW/glfw3.h>
- #include <cmath>
- #include <cstdio>
- #include <sstream>
- #include <iomanip>
- #include <iostream>
- #include <fstream>
- #include <algorithm>
- #include <igl/project.h>
- #include <limits>
- #include <cassert>
- #ifdef ENABLE_XML_SERIALIZATION
- #include "igl/xml/XMLSerializer.h"
- #endif
- #include <igl/readOBJ.h>
- #include <igl/readOFF.h>
- #include <igl/adjacency_list.h>
- #include <igl/writeOBJ.h>
- #include <igl/writeOFF.h>
- #include <igl/massmatrix.h>
- #include <igl/file_dialog_open.h>
- #include <igl/file_dialog_save.h>
- #include <igl/quat_mult.h>
- #include <igl/axis_angle_to_quat.h>
- #include <igl/trackball.h>
- #include <igl/snap_to_canonical_view_quat.h>
- #include <igl/unproject.h>
- #include <igl/viewer/TextRenderer.h>
- // Internal global variables used for glfw event handling
- static igl::Viewer * __viewer;
- static double highdpi = 1;
- static double scroll_x = 0;
- static double scroll_y = 0;
- namespace {
- void TW_CALL copy_str(std::string& dst, const std::string& src)
- {
- dst = src;
- }
- }
- static void glfw_mouse_press(GLFWwindow* window, int button, int action, int modifier)
- {
- bool tw_used = TwEventMouseButtonGLFW(button, action);
- igl::Viewer::MouseButton mb;
- if (button == GLFW_MOUSE_BUTTON_1)
- mb = igl::Viewer::IGL_LEFT;
- else if (button == GLFW_MOUSE_BUTTON_2)
- mb = igl::Viewer::IGL_RIGHT;
- else //if (button == GLFW_MOUSE_BUTTON_3)
- mb = igl::Viewer::IGL_MIDDLE;
- if (action == GLFW_PRESS)
- {
- if(!tw_used)
- {
- __viewer->mouse_down(mb,modifier);
- }
- } else
- {
- // Always call mouse_up on up
- __viewer->mouse_up(mb,modifier);
- }
- }
- static void glfw_error_callback(int error, const char* description)
- {
- fputs(description, stderr);
- }
- int global_KMod = 0;
- int TwEventKeyGLFW3(int glfwKey, int glfwAction)
- {
- int handled = 0;
- // Register of modifiers state
- if (glfwAction==GLFW_PRESS)
- {
- switch (glfwKey)
- {
- case GLFW_KEY_LEFT_SHIFT:
- case GLFW_KEY_RIGHT_SHIFT:
- global_KMod |= TW_KMOD_SHIFT;
- break;
- case GLFW_KEY_LEFT_CONTROL:
- case GLFW_KEY_RIGHT_CONTROL:
- global_KMod |= TW_KMOD_CTRL;
- break;
- case GLFW_KEY_LEFT_ALT:
- case GLFW_KEY_RIGHT_ALT:
- global_KMod |= TW_KMOD_ALT;
- break;
- }
- }
- else
- {
- switch (glfwKey)
- {
- case GLFW_KEY_LEFT_SHIFT:
- case GLFW_KEY_RIGHT_SHIFT:
- global_KMod &= ~TW_KMOD_SHIFT;
- break;
- case GLFW_KEY_LEFT_CONTROL:
- case GLFW_KEY_RIGHT_CONTROL:
- global_KMod &= ~TW_KMOD_CTRL;
- break;
- case GLFW_KEY_LEFT_ALT:
- case GLFW_KEY_RIGHT_ALT:
- global_KMod &= ~TW_KMOD_ALT;
- break;
- }
- }
- // Process key pressed
- if (glfwAction==GLFW_PRESS)
- {
- int mod = global_KMod;
- int testkp = ((mod&TW_KMOD_CTRL) || (mod&TW_KMOD_ALT)) ? 1 : 0;
- if ((mod&TW_KMOD_CTRL) && glfwKey>0 && glfwKey<GLFW_KEY_ESCAPE ) // CTRL cases
- handled = TwKeyPressed(glfwKey, mod);
- else if (glfwKey>=GLFW_KEY_ESCAPE )
- {
- int k = 0;
- if (glfwKey>=GLFW_KEY_F1 && glfwKey<=GLFW_KEY_F15)
- k = TW_KEY_F1 + (glfwKey-GLFW_KEY_F1);
- else if (testkp && glfwKey>=GLFW_KEY_KP_0 && glfwKey<=GLFW_KEY_KP_9)
- k = '0' + (glfwKey-GLFW_KEY_KP_0);
- else
- {
- switch (glfwKey)
- {
- case GLFW_KEY_ESCAPE :
- k = TW_KEY_ESCAPE;
- break;
- case GLFW_KEY_UP:
- k = TW_KEY_UP;
- break;
- case GLFW_KEY_DOWN:
- k = TW_KEY_DOWN;
- break;
- case GLFW_KEY_LEFT:
- k = TW_KEY_LEFT;
- break;
- case GLFW_KEY_RIGHT:
- k = TW_KEY_RIGHT;
- break;
- case GLFW_KEY_TAB:
- k = TW_KEY_TAB;
- break;
- case GLFW_KEY_ENTER:
- k = TW_KEY_RETURN;
- break;
- case GLFW_KEY_BACKSPACE:
- k = TW_KEY_BACKSPACE;
- break;
- case GLFW_KEY_INSERT:
- k = TW_KEY_INSERT;
- break;
- case GLFW_KEY_DELETE:
- k = TW_KEY_DELETE;
- break;
- case GLFW_KEY_PAGE_UP:
- k = TW_KEY_PAGE_UP;
- break;
- case GLFW_KEY_PAGE_DOWN:
- k = TW_KEY_PAGE_DOWN;
- break;
- case GLFW_KEY_HOME:
- k = TW_KEY_HOME;
- break;
- case GLFW_KEY_END:
- k = TW_KEY_END;
- break;
- case GLFW_KEY_KP_ENTER:
- k = TW_KEY_RETURN;
- break;
- case GLFW_KEY_KP_DIVIDE:
- if (testkp)
- k = '/';
- break;
- case GLFW_KEY_KP_MULTIPLY:
- if (testkp)
- k = '*';
- break;
- case GLFW_KEY_KP_SUBTRACT:
- if (testkp)
- k = '-';
- break;
- case GLFW_KEY_KP_ADD:
- if (testkp)
- k = '+';
- break;
- case GLFW_KEY_KP_DECIMAL:
- if (testkp)
- k = '.';
- break;
- case GLFW_KEY_KP_EQUAL:
- if (testkp)
- k = '=';
- break;
- }
- }
- if (k>0)
- handled = TwKeyPressed(k, mod);
- }
- }
- return handled;
- }
- static void glfw_key_callback(GLFWwindow* window, int key, int scancode, int action, int modifier)
- {
- if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS)
- glfwSetWindowShouldClose(window, GL_TRUE);
- if (!TwEventKeyGLFW3(key,action))
- {
- if (action == GLFW_PRESS)
- __viewer->key_down(key, modifier);
- else
- __viewer->key_up(key, modifier);
- }
- }
- static void glfw_window_size(GLFWwindow* window, int width, int height)
- {
- int w = width*highdpi;
- int h = height*highdpi;
- __viewer->resize(w, h);
- TwWindowSize(w, h);
- const auto & bar = __viewer->bar;
- // Keep AntTweakBar on right side of screen and height == opengl height
- // get the current position of a bar
- int size[2];
- TwGetParam(bar, NULL, "size", TW_PARAM_INT32, 2, size);
- int pos[2];
- // Place bar on left side of opengl rect (padded by 10 pixels)
- pos[0] = 10;//max(10,(int)width - size[0] - 10);
- // place bar at top (padded by 10 pixels)
- pos[1] = 10;
- // Set height to new height of window (padded by 10 pixels on bottom)
- size[1] = highdpi*(height-pos[1]-10);
- TwSetParam(bar, NULL, "position", TW_PARAM_INT32, 2, pos);
- TwSetParam(bar, NULL, "size", TW_PARAM_INT32, 2,size);
- }
- static void glfw_mouse_move(GLFWwindow* window, double x, double y)
- {
- if(!TwEventMousePosGLFW(x*highdpi,y*highdpi) || __viewer->down)
- {
- // Call if TwBar hasn't used or if down
- __viewer->mouse_move(x*highdpi, y*highdpi);
- }
- }
- static void glfw_mouse_scroll(GLFWwindow* window, double x, double y)
- {
- using namespace std;
- scroll_x += x;
- scroll_y += y;
- if (!TwEventMouseWheelGLFW(scroll_y))
- __viewer->mouse_scroll(y);
- }
- static void glfw_char_callback(GLFWwindow* window, unsigned int c)
- {
- if ((c & 0xff00)==0)
- TwKeyPressed(c, global_KMod);
- }
- namespace igl
- {
- void Viewer::init()
- {
- // Create a tweak bar
- bar = TwNewBar("libIGL-Viewer");
- TwDefine(" libIGL-Viewer help='This is a simple 3D mesh viewer.' "); // Message added to the help bar->
- TwDefine(" libIGL-Viewer size='200 685'"); // change default tweak bar size
- TwDefine(" libIGL-Viewer color='76 76 127' "); // change default tweak bar color
- TwDefine(" libIGL-Viewer refresh=0.5"); // change refresh rate
- // ---------------------- LOADING ----------------------
- #ifdef ENABLE_XML_SERIALIZATION
- TwAddButton(bar,"Load Scene", load_scene_cb, this, "group='Workspace'");
- TwAddButton(bar,"Save Scene", save_scene_cb, this, "group='Workspace'");
- #endif
- #ifdef ENABLE_IO
- TwAddButton(bar,"Load Mesh", open_dialog_mesh, this, "group='Mesh' key=o");
- #endif
- // ---------------------- SCENE ----------------------
- TwAddButton(bar,"Center object", align_camera_center_cb, this,
- " group='Viewing Options'"
- " label='Center object' key=A help='Set the center of the camera to the mesh center.'");
- TwAddVarRW(bar, "Zoom", TW_TYPE_FLOAT, &(core.camera_zoom),
- " min=0.05 max=50 step=0.1 keyIncr=+ keyDecr=- help='Scale the object (1=original size).' group='Scene'");
- TwAddButton(bar,"SnapView", snap_to_canonical_quaternion_cb, this,
- " group='Scene'"
- " label='Snap to canonical view' key=Z "
- " help='Snaps view to nearest canonical view.'");
- TwAddVarRW(bar,"LightDir", TW_TYPE_DIR3F, core.light_position.data(),
- " group='Scene'"
- " label='Light direction' open help='Change the light direction.' ");
- // ---------------------- DRAW OPTIONS ----------------------
- TwAddVarRW(bar, "ToggleOrthographic", TW_TYPE_BOOLCPP, &(core.orthographic),
- " group='Viewing Options'"
- " label='Orthographic view' "
- " help='Toggles orthographic / perspective view. Default: perspective.'");
- TwAddVarRW(bar, "Rotation", TW_TYPE_QUAT4F, &(core.trackball_angle),
- " group='Viewing Options'"
- " label='Rotation'"
- " help='Rotates view.'");
- TwAddVarCB(bar,"Face-based Normals/Colors", TW_TYPE_BOOLCPP, set_face_based_cb, get_face_based_cb, this,
- " group='Draw options'"
- " label='Face-based' key=T help='Toggle per face shading/colors.' ");
- TwAddVarRW(bar,"Show texture", TW_TYPE_BOOLCPP, &(core.show_texture),
- " group='Draw options'");
- TwAddVarCB(bar,"Invert Normals", TW_TYPE_BOOLCPP, set_invert_normals_cb, get_invert_normals_cb, this,
- " group='Draw options'"
- " label='Invert normals' key=i help='Invert normal directions for inside out meshes.' ");
- TwAddVarRW(bar,"ShowOverlay", TW_TYPE_BOOLCPP, &(core.show_overlay),
- " group='Draw options'"
- " label='Show overlay' key=o help='Show the overlay layers.' ");
- TwAddVarRW(bar,"ShowOverlayDepth", TW_TYPE_BOOLCPP, &(core.show_overlay_depth),
- " group='Draw options'"
- " label='Show overlay depth test' help='Enable the depth test for overlay layer.' ");
- TwAddVarRW(bar,"Background color", TW_TYPE_COLOR3F,
- core.background_color.data(),
- " help='Select a background color' colormode=hls group='Draw options'");
- TwAddVarRW(bar, "LineColor", TW_TYPE_COLOR3F,
- core.line_color.data(),
- " label='Line color' help='Select a outline color' group='Draw options'");
- TwAddVarRW(bar,"Shininess",TW_TYPE_FLOAT,&core.shininess," group='Draw options'"
- " min=1 max=128");
- // ---------------------- Overlays ----------------------
- TwAddVarRW(bar,"Wireframe", TW_TYPE_BOOLCPP, &(core.show_lines),
- " group='Overlays'"
- " label='Wireframe' key=l help='Toggle wire frame of mesh'");
- TwAddVarRW(bar,"Fill", TW_TYPE_BOOLCPP, &(core.show_faces),
- " group='Overlays'"
- " label='Fill' key=t help='Display filled polygons of mesh'");
- TwAddVarRW(bar,"ShowVertexId", TW_TYPE_BOOLCPP, &(core.show_vertid),
- " group='Overlays'"
- " label='Show Vertex Labels' key=';' help='Toggle vertex indices'");
- TwAddVarRW(bar,"ShowFaceId", TW_TYPE_BOOLCPP, &(core.show_faceid),
- " group='Overlays'"
- " label='Show Faces Labels' key='CTRL+;' help='Toggle face"
- " indices'");
- core.init();
- if (callback_init)
- if (callback_init(*this))
- return;
- init_plugins();
- }
- Viewer::Viewer()
- {
- // Temporary variables initialization
- down = false;
- hack_never_moved = true;
- scroll_position = 0.0f;
- // Per face
- data.set_face_based(false);
- // C-style callbacks
- callback_init = 0;
- callback_pre_draw = 0;
- callback_post_draw = 0;
- callback_mouse_down = 0;
- callback_mouse_up = 0;
- callback_mouse_move = 0;
- callback_mouse_scroll = 0;
- callback_key_down = 0;
- callback_key_up = 0;
- callback_init_data = 0;
- callback_pre_draw_data = 0;
- callback_post_draw_data = 0;
- callback_mouse_down_data = 0;
- callback_mouse_up_data = 0;
- callback_mouse_move_data = 0;
- callback_mouse_scroll_data = 0;
- callback_key_down_data = 0;
- callback_key_up_data = 0;
- }
- void Viewer::init_plugins()
- {
- // Init all plugins
- for (unsigned int i = 0; i<plugins.size(); ++i)
- plugins[i]->init(this);
- }
- Viewer::~Viewer()
- {
- }
- void Viewer::shutdown_plugins()
- {
- for (unsigned int i = 0; i<plugins.size(); ++i)
- plugins[i]->shutdown();
- }
- bool Viewer::load_mesh_from_file(const char* mesh_file_name)
- {
- std::string mesh_file_name_string = std::string(mesh_file_name);
- // first try to load it with a plugin
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->load(mesh_file_name_string))
- return true;
- data.clear();
- size_t last_dot = mesh_file_name_string.rfind('.');
- if (last_dot == std::string::npos)
- {
- printf("Error: No file extension found in %s\n",mesh_file_name);
- return false;
- }
- std::string extension = mesh_file_name_string.substr(last_dot+1);
- if (extension == "off" || extension =="OFF")
- {
- if (!igl::readOFF(mesh_file_name_string, data.V, data.F))
- return false;
- }
- else if (extension == "obj" || extension =="OBJ")
- {
- Eigen::MatrixXd corner_normals;
- Eigen::MatrixXi fNormIndices;
- Eigen::MatrixXd UV_V;
- Eigen::MatrixXi UV_F;
- if (!(igl::readOBJ(mesh_file_name_string, data.V, data.F, corner_normals, fNormIndices, UV_V, UV_F)))
- return false;
- }
- else
- {
- // unrecognized file type
- printf("Error: %s is not a recognized file type.\n",extension.c_str());
- return false;
- }
- data.compute_normals();
- data.uniform_colors(Eigen::Vector3d(51.0/255.0,43.0/255.0,33.3/255.0),
- Eigen::Vector3d(255.0/255.0,228.0/255.0,58.0/255.0),
- Eigen::Vector3d(255.0/255.0,235.0/255.0,80.0/255.0));
- if (data.V_uv.rows() == 0)
- data.grid_texture();
- core.align_camera_center(data.V,data.F);
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->post_load())
- return true;
- return true;
- }
- bool Viewer::save_mesh_to_file(const char* mesh_file_name)
- {
- std::string mesh_file_name_string(mesh_file_name);
- // first try to load it with a plugin
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->save(mesh_file_name_string))
- return true;
- size_t last_dot = mesh_file_name_string.rfind('.');
- if (last_dot == std::string::npos)
- {
- // No file type determined
- printf("Error: No file extension found in %s\n",mesh_file_name);
- return false;
- }
- std::string extension = mesh_file_name_string.substr(last_dot+1);
- if (extension == "off" || extension =="OFF")
- {
- return igl::writeOFF(mesh_file_name_string,data.V,data.F);
- }
- else if (extension == "obj" || extension =="OBJ")
- {
- Eigen::MatrixXd corner_normals;
- Eigen::MatrixXi fNormIndices;
- Eigen::MatrixXd UV_V;
- Eigen::MatrixXi UV_F;
- return igl::writeOBJ(mesh_file_name_string, data.V,
- data.F, corner_normals, fNormIndices, UV_V, UV_F);
- }
- else
- {
- // unrecognized file type
- printf("Error: %s is not a recognized file type.\n",extension.c_str());
- return false;
- }
- return true;
- }
- bool Viewer::key_down(unsigned char key, int modifiers)
- {
- if (callback_key_down)
- if (callback_key_down(*this,key,modifiers))
- return true;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->key_down(key, modifiers))
- return true;
- if (key == 'S')
- mouse_scroll(1);
- if (key == 'A')
- mouse_scroll(-1);
- // Why aren't these handled view AntTweakBar?
- if (key == 'z') // Don't use 'Z' because that clobbers snap_to_canonical_view_quat
- core.trackball_angle << 0.0f, 0.0f, 0.0f, 1.0f;
- if (key == 'y')
- core.trackball_angle << -sqrt(2.0f)/2.0f, 0.0f, 0.0f, sqrt(2.0f)/2.0f;
- if (key == 'x')
- core.trackball_angle << -0.5f, -0.5f, -0.5f, 0.5f;
- return false;
- }
- bool Viewer::key_up(unsigned char key, int modifiers)
- {
- if (callback_key_up)
- if (callback_key_up(*this,key,modifiers))
- return true;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->key_up(key, modifiers))
- return true;
- return false;
- }
- bool Viewer::mouse_down(MouseButton button, int modifier)
- {
- if (callback_mouse_down)
- if (callback_mouse_down(*this,button,modifier))
- return true;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->mouse_down(button,modifier))
- return true;
- down = true;
- down_mouse_x = current_mouse_x;
- down_mouse_y = current_mouse_y;
- down_translation = core.model_translation;
- // Initialization code for the trackball
- Eigen::RowVector3d center;
- if (data.V.rows() == 0)
- center << 0,0,0;
- else
- center = data.V.colwise().sum()/data.V.rows();
- Eigen::Vector3f coord = igl::project(Eigen::Vector3f(center(0),center(1),center(2)), core.view * core.model, core.proj, core.viewport);
- down_mouse_z = coord[2];
- down_rotation = core.trackball_angle;
- mouse_mode = ROTATION;
- switch (button)
- {
- case IGL_LEFT:
- mouse_mode = ROTATION;
- break;
- case IGL_RIGHT:
- mouse_mode = TRANSLATE;
- break;
- default:
- mouse_mode = NOTHING;
- break;
- }
- return true;
- }
- bool Viewer::mouse_up(MouseButton button, int modifier)
- {
- down = false;
- if (callback_mouse_up)
- if (callback_mouse_up(*this,button,modifier))
- return true;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->mouse_up(button,modifier))
- return true;
- mouse_mode = NOTHING;
- return true;
- }
- bool Viewer::mouse_move(int mouse_x, int mouse_y)
- {
- if(hack_never_moved)
- {
- down_mouse_x = mouse_x;
- down_mouse_y = mouse_y;
- hack_never_moved = false;
- }
- current_mouse_x = mouse_x;
- current_mouse_y = mouse_y;
- if (callback_mouse_move)
- if (callback_mouse_move(*this,mouse_x,mouse_y))
- return true;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->mouse_move(mouse_x, mouse_y))
- return true;
- if (down)
- {
- switch (mouse_mode)
- {
- case ROTATION :
- {
- igl::trackball(core.viewport(2),
- core.viewport(3),
- 2.0f,
- down_rotation.data(),
- down_mouse_x,
- down_mouse_y,
- mouse_x,
- mouse_y,
- core.trackball_angle.data());
- //Eigen::Vector4f snapq = core.trackball_angle;
- break;
- }
- case TRANSLATE:
- {
- //translation
- Eigen::Vector3f pos1 = igl::unproject(Eigen::Vector3f(mouse_x, core.viewport[3] - mouse_y, down_mouse_z), core.view * core.model, core.proj, core.viewport);
- Eigen::Vector3f pos0 = igl::unproject(Eigen::Vector3f(down_mouse_x, core.viewport[3] - down_mouse_y, down_mouse_z), core.view * core.model, core.proj, core.viewport);
- Eigen::Vector3f diff = pos1 - pos0;
- core.model_translation = down_translation + Eigen::Vector3f(diff[0],diff[1],diff[2]);
- break;
- }
- case ZOOM:
- {
- //float delta = 0.001f * (mouse_x - down_mouse_x + mouse_y - down_mouse_y);
- float delta = 0.001f * (mouse_x - down_mouse_x + mouse_y - down_mouse_y);
- core.camera_zoom *= 1 + delta;
- down_mouse_x = mouse_x;
- down_mouse_y = mouse_y;
- break;
- }
- default:
- break;
- }
- }
- return true;
- }
- bool Viewer::mouse_scroll(float delta_y)
- {
- scroll_position += delta_y;
- if (callback_mouse_scroll)
- if (callback_mouse_scroll(*this,delta_y))
- return true;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->mouse_scroll(delta_y))
- return true;
- // Only zoom if there's actually a change
- if(delta_y != 0)
- {
- float mult = (1.0+((delta_y>0)?1.:-1.)*0.05);
- const float min_zoom = 0.1f;
- core.camera_zoom = (core.camera_zoom * mult > min_zoom ? core.camera_zoom * mult : min_zoom);
- }
- return true;
- }
- void Viewer::draw()
- {
- using namespace std;
- using namespace Eigen;
- core.clear_framebuffers();
- if (callback_pre_draw)
- if (callback_pre_draw(*this))
- return;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->pre_draw())
- return;
- core.draw(data,opengl);
- if (callback_post_draw)
- if (callback_post_draw(*this))
- return;
- for (unsigned int i = 0; i<plugins.size(); ++i)
- if (plugins[i]->post_draw())
- break;
- TwDraw();
- }
- bool Viewer::save_scene()
- {
- #ifdef ENABLE_XML_SERIALIZATION
- string fname = igl::file_dialog_save();
- if (fname.length() == 0)
- return false;
- ::igl::XMLSerializer serializer("Viewer");
- serializer.Add(data,"Data");
- serializer.Add(options,"Options");
- if (plugin_manager)
- for (unsigned int i = 0; i <plugin_manager->plugin_list.size(); ++i)
- serializer.Add(*(plugin_manager->plugin_list[i]),plugin_manager->plugin_list[i]->plugin_name);
- serializer.Save(fname.c_str(),true);
- #endif
- return true;
- }
- bool Viewer::load_scene()
- {
- #ifdef ENABLE_XML_SERIALIZATION
- string fname = igl::file_dialog_open();
- if (fname.length() == 0)
- return false;
- ::igl::XMLSerializer serializer("Viewer");
- serializer.Add(data,"Data");
- serializer.Add(options,"Options");
- if (plugin_manager)
- for (unsigned int i = 0; i <plugin_manager->plugin_list.size(); ++i)
- serializer.Add(*(plugin_manager->plugin_list[i]),plugin_manager->plugin_list[i]->plugin_name);
- serializer.Load(fname.c_str());
- #endif
- return true;
- }
- void Viewer::resize(int w, int h)
- {
- core.viewport = Eigen::Vector4f(0,0,w,h);
- }
- void TW_CALL Viewer::snap_to_canonical_quaternion_cb(void *clientData)
- {
- Eigen::Vector4f snapq = static_cast<Viewer *>(clientData)->core.trackball_angle;
- igl::snap_to_canonical_view_quat<float>(snapq.data(),1,static_cast<Viewer *>(clientData)->core.trackball_angle.data());
- }
- void TW_CALL Viewer::align_camera_center_cb(void *clientData)
- {
- static_cast<Viewer *>(clientData)->core.align_camera_center(
- static_cast<Viewer *>(clientData)->data.V,
- static_cast<Viewer *>(clientData)->data.F);
- }
- void TW_CALL Viewer::save_scene_cb(void *clientData)
- {
- static_cast<Viewer *>(clientData)->save_scene();
- }
- void TW_CALL Viewer::load_scene_cb(void *clientData)
- {
- static_cast<Viewer *>(clientData)->load_scene();
- }
- void TW_CALL Viewer::set_invert_normals_cb(const void *param, void *clientData)
- {
- Viewer *viewer = static_cast<Viewer *>(clientData);
- viewer->data.dirty |= ViewerData::DIRTY_NORMAL;
- viewer->core.invert_normals = *((bool *) param);
- }
- void TW_CALL Viewer::get_invert_normals_cb(void *param, void *clientData)
- {
- *((bool *) param) = static_cast<Viewer *>(clientData)->core.invert_normals;
- }
- void TW_CALL Viewer::set_face_based_cb(const void *param, void *clientData)
- {
- Viewer *viewer = static_cast<Viewer *>(clientData);
- viewer->data.set_face_based(*((bool *) param));
- }
- void TW_CALL Viewer::get_face_based_cb(void *param, void *clientData)
- {
- *((bool *) param) = static_cast<Viewer *>(clientData)->data.face_based;
- }
- void TW_CALL Viewer::open_dialog_mesh(void *clientData)
- {
- std::string fname = igl::file_dialog_open();
- if (fname.length() == 0)
- return;
- static_cast<Viewer *>(clientData)->load_mesh_from_file(fname.c_str());
- }
- int Viewer::launch(std::string filename)
- {
- GLFWwindow* window;
- glfwSetErrorCallback(glfw_error_callback);
- if (!glfwInit())
- return EXIT_FAILURE;
- glfwWindowHint(GLFW_SAMPLES, 16);
- glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
- glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
- #ifdef __APPLE__
- glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
- glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
- #endif
- window = glfwCreateWindow(1280, 800, "libigl viewer", NULL, NULL);
- if (!window)
- {
- glfwTerminate();
- return EXIT_FAILURE;
- }
- glfwMakeContextCurrent(window);
- #ifndef __APPLE__
- glewExperimental = true;
- GLenum err = glewInit();
- if (GLEW_OK != err)
- {
- /* Problem: glewInit failed, something is seriously wrong. */
- fprintf(stderr, "Error: %s\n", glewGetErrorString(err));
- }
- fprintf(stdout, "Status: Using GLEW %s\n", glewGetString(GLEW_VERSION));
- #endif
- #ifdef DEBUG
- int major, minor, rev;
- major = glfwGetWindowAttrib(window, GLFW_CONTEXT_VERSION_MAJOR);
- minor = glfwGetWindowAttrib(window, GLFW_CONTEXT_VERSION_MINOR);
- rev = glfwGetWindowAttrib(window, GLFW_CONTEXT_REVISION);
- printf("OpenGL version recieved: %d.%d.%d\n", major, minor, rev);
- printf("Supported OpenGL is %s\n", (const char*)glGetString(GL_VERSION));
- printf("Supported GLSL is %s\n", (const char*)glGetString(GL_SHADING_LANGUAGE_VERSION));
- #endif
- glfwSetInputMode(window,GLFW_CURSOR,GLFW_CURSOR_NORMAL);
- // Initialize AntTweakBar
- TwInit(TW_OPENGL_CORE, NULL);
- TwCopyStdStringToClientFunc(static_cast<TwCopyStdStringToClient>(::copy_str));
- // Initialize IGL viewer
- init();
- __viewer = this;
- // Register callbacks
- glfwSetKeyCallback(window, glfw_key_callback); glfwSetCursorPosCallback(window,glfw_mouse_move); glfwSetWindowSizeCallback(window,glfw_window_size); glfwSetMouseButtonCallback(window,glfw_mouse_press); glfwSetScrollCallback(window,glfw_mouse_scroll); glfwSetCharCallback(window, glfw_char_callback);
- // Handle retina displays (windows and mac)
- int width, height;
- glfwGetFramebufferSize(window, &width, &height);
- int width_window, height_window;
- glfwGetWindowSize(window, &width_window, &height_window);
- highdpi = width/width_window;
- glfw_window_size(window,width_window,height_window);
- opengl.init();
- // Load the mesh passed as input
- if (filename.size() > 0)
- load_mesh_from_file(filename.c_str());
- core.align_camera_center(data.V,data.F);
- // Rendering loop
- while (!glfwWindowShouldClose(window))
- {
- double tic = get_seconds();
- draw();
- glfwSwapBuffers(window);
- if(core.is_animating)
- {
- glfwPollEvents();
- // In microseconds
- double duration = 1000000.*(get_seconds()-tic);
- const double min_duration = 1000000./core.animation_max_fps;
- if(duration<min_duration)
- {
- std::this_thread::sleep_for(std::chrono::microseconds((int)(min_duration-duration)));
- }
- }
- else
- {
- glfwWaitEvents();
- }
- }
- opengl.free();
- core.shut();
- shutdown_plugins();
- glfwDestroyWindow(window);
- glfwTerminate();
- return EXIT_SUCCESS;
- }
- } // end namespace
|