-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheh.cpp
276 lines (247 loc) · 7.21 KB
/
eh.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
//#include <glad/egl.h>
//#include <glad/gles2.h>
#include <stdexcept>
#undef eigen_assert
#define eigen_assert(x) \
if (!(x)) { throw (std::runtime_error("Put your message here")); }
#define GLFW_INCLUDE_NONE
#include <GLFW/glfw3.h>
#include <SDL2/SDL.h>
#include <SDL2/SDL_opengles2.h>
#include <X11/X.h>
#undef None
#define _SDL_H
#define X_H
#include <emscripten.h>
#ifndef __EMSCRIPTEN__
void emscripten_set_main_loop_arg(em_arg_callback_func func, void *arg, int fps, int simulate_infinite_loop)
{
for(;;)
(*func)(arg);
}
#define GLFW_EXPOSE_NATIVE_EGL 1
#include <GLFW/glfw3native.h>
#endif
#include <imgui/imgui.h>
#include <iostream>
#if 0
void igl_main_loop(void* arg);
#define EMSCRIPTEN_MAIN_LOOP igl_main_loop
#include "imgui-wasm.h"
#ifdef __EMSCRIPTEN__
#include <emscripten.h>
#define GL_GLEXT_PROTOTYPES
#define EGL_EGLEXT_PROTOTYPES
#include <GLFW/glfw3.h>
#define __glad_h_
#else
#include <glad/glad.h>
#endif
#endif
#undef Success
#include <igl/readOFF.h>
#include <igl/get_seconds.h>
#include <igl/readOFF.h>
#include <igl/writeOFF.h>
#include <igl/readOBJ.h>
#include <igl/writeOBJ.h>
#include <igl/read_triangle_mesh.h>
#include <igl/two_axis_valuator_fixed_up.h>
#include <igl/snap_to_canonical_view_quat.h>
#include <igl/file_dialog_open.h>
#include <igl/file_dialog_save.h>
#include <igl/unproject.h>
#include <igl/project.h>
#include <igl/opengl/ViewerCore.h>
#include <igl/trackball.h>
#include <igl/opengl/glfw/Viewer.h>
#include <igl/opengl/glfw/imgui/ImGuiMenu.h>
#include <igl/opengl/glfw/imgui/ImGuiHelpers.h>
// Some inspiration from
// https://github.com/Dav1dde/glad/blob/glad2/example/c/egl_gles2_glfw_emscripten.c
extern "C" {
FILE *popen(const char * /*command*/, const char * /*type*/)
{
return 0;
}
void _glfwTerminateVulkan(void)
{
puts("glfwTerminateVulkan() ???\n");
}
typedef void* (* GLADloadproc)(const char *name);
GLFWAPI void glfwGetWindowContentScale(GLFWwindow* /*handle*/,
float* xscale, float* yscale)
{
if(xscale) *xscale = 1.0;
if(yscale) *yscale = 1.0;
}
extern int gladLoadGLLoader(GLADloadproc);
extern GLFWAPI GLFWglproc glfwGetProcAddress(const char* procname);
}
class MyMenu : public igl::opengl::glfw::imgui::ImGuiMenu
{
public:
MyMenu() { }
};
#define EIEIO1(x, xi) \
try{ x; }catch(...) {std::cout << "pushBaryV(vi = " << vi << ", i = " << i << ") " #xi \
" [ " #x "] failed." << std::endl; throw; }
#define EIEIO2(x) \
try{ x; }catch(...) {std::cout << "pushBarys(i = " << i << ") failed." << std::endl; throw; }
IGL_INLINE void pushBary
( Eigen::MatrixXd & Vi
, Eigen::MatrixXi & Fi
, Eigen::MatrixXd & V
, int vi // vertex index
, int i // where in V to store the data
, double b
) {
double f;
EIEIO1(f = Vi(vi, 0), 0);
EIEIO1(V(i, 0) = f , 1);
EIEIO1(f = Vi(vi, 1), 2);
EIEIO1(V(i, 1) = f , 3);
EIEIO1(f = Vi(vi, 2), 4);
EIEIO1(V(i, 2) = f , 5);
EIEIO1(V(i, 3) = b , 6);
}
/*
Call pushBary for each vector indexed by the face at index fi
*/
IGL_INLINE void pushBarys
( Eigen::MatrixXd & Vi
, Eigen::MatrixXi & Fi
, Eigen::MatrixXd & V
, int fi
) {
int i0 = Fi(fi, 0);
int i1 = Fi(fi, 1);
int i2 = Fi(fi, 2);
pushBary(Vi, Fi, V, i0, fi*3+0, 0.0);
pushBary(Vi, Fi, V, i1, fi*3+1, 1.0);
pushBary(Vi, Fi, V, i2, fi*3+2, 2.0);
}
int main(int argc, char *argv[])
{
Eigen::MatrixXd V;
Eigen::MatrixXi F;
// std::vector<std::vector<double> > V;
// std::vector<std::vector<int> > F;
// Load a mesh in OFF format
#ifdef __EMSCRIPTEN__
igl::readOFF("/bunny.off", V, F);
#else
igl::readOFF("bunny.off", V, F);
#endif
// Init the viewer
igl::opengl::glfw::Viewer viewer;
// Attach a menu plugin
MyMenu menu;
viewer.plugins.push_back(&menu);
// Customize the menu
double doubleVariable = 0.1f; // Shared between two menus
// Add content to the default menu window
menu.callback_draw_viewer_menu = [&]()
{
// Draw parent menu content
menu.draw_viewer_menu();
// Add new group
if (ImGui::CollapsingHeader("New Group", ImGuiTreeNodeFlags_DefaultOpen))
{
// Expose variable directly ...
ImGui::InputDouble("double", &doubleVariable, 0, 0, "%.4f");
// ... or using a custom callback
static bool boolVariable = true;
if (ImGui::Checkbox("bool", &boolVariable))
{
// do something
std::cout << "boolVariable: " << std::boolalpha << boolVariable << std::endl;
}
// Expose an enumeration type
enum Orientation { Up=0, Down, Left, Right };
static Orientation dir = Up;
ImGui::Combo("Direction", (int *)(&dir), "Up\0Down\0Left\0Right\0\0");
// We can also use a std::vector<std::string> defined dynamically
static int num_choices = 3;
static std::vector<std::string> choices;
static int idx_choice = 0;
if (ImGui::InputInt("Num letters", &num_choices))
{
num_choices = std::max(1, std::min(26, num_choices));
}
if (num_choices != (int) choices.size())
{
choices.resize(num_choices);
for (int i = 0; i < num_choices; ++i)
choices[i] = std::string(1, 'A' + i);
if (idx_choice >= num_choices)
idx_choice = num_choices - 1;
}
ImGui::Combo("Letter", &idx_choice, choices);
// Add a button
if (ImGui::Button("Print Hello", ImVec2(-1,0)))
{
std::cout << "Hello\n";
}
}
};
// Draw additional windows
menu.callback_draw_custom_window = [&]()
{
// Define next window position + size
ImGui::SetNextWindowPos(ImVec2(180.f * menu.menu_scaling(), 10), ImGuiCond_FirstUseEver);
ImGui::SetNextWindowSize(ImVec2(200, 160), ImGuiCond_FirstUseEver);
ImGui::Begin(
"New Window", nullptr,
ImGuiWindowFlags_NoSavedSettings
);
// Expose the same variable directly ...
ImGui::PushItemWidth(-80);
ImGui::DragScalar("double", ImGuiDataType_Double, &doubleVariable, 0.1, 0, 0, "%.4f");
ImGui::PopItemWidth();
static std::string str = "bunny";
ImGui::InputText("Name", str);
ImGui::End();
};
//#ifndef __EMSCRIPTEN__
#if USE_BARYCENTRIC
// Plot the mesh
std::cout << "The matrix F is of size "
<< F.rows() << "x" << F.cols() << std::endl;
std::cout << "The matrix V is of size "
<< V.rows() << "x" << V.cols() << std::endl;
Eigen::MatrixXd Vt;
Vt.resize(F.rows()*3, 4);
std::cout << "The matrix Vt is of size "
<< Vt.rows() << "x" << Vt.cols() << std::endl;
//function triangulateTriStrip(aVert,aIndex,out)
for(Eigen::Index i = 0; i < F.rows(); ++i) {
int fl = F.cols();
switch(fl) {
case 3: // Triangle
try{
EIEIO2(pushBarys(V, F, Vt, i));
}catch(...) {
throw;
}
break;
case 4: //{ // Quad
//break; }
default:
std::cerr << "Unexpected Face entry of length " << fl << "\"." << std::endl;
return 1;
}
//console.log(aIndex[i],aIndex[i+1],aIndex[i+3],aIndex[i+2]);
}
for(Eigen::Index i = 0; i < F.rows(); ++i) {
F(i, 0) = i * 3 + 0;
F(i, 1) = i * 3 + 1;
F(i, 2) = i * 3 + 2;
}
viewer.data().set_mesh(Vt, F);
#else
viewer.data().set_mesh(V, F);
viewer.data().add_label(viewer.data().V.row(0) + viewer.data().V_normals.row(0).normalized()*0.005, "Hello World!");
#endif
viewer.launch();
}