Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb Sample Visualizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal Engeler
RBComb Sample Visualizer
Commits
6b9aa01d
Commit
6b9aa01d
authored
1 year ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added top wafer, stack enabling, more controls, control bugfixes
parent
24cd401a
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gui/src/main.cpp
+212
-49
212 additions, 49 deletions
gui/src/main.cpp
with
212 additions
and
49 deletions
gui/src/main.cpp
+
212
−
49
View file @
6b9aa01d
...
...
@@ -38,14 +38,20 @@ int main(int argc, char** argv) {
//Define materials
Material
mat_gold
{
glm
::
vec4
(
255.
f
/
256.
f
,
215.
f
/
256.
f
,
0.
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
1.
f
,
0.
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
0.
f
,
0.3
f
,
1.
f
),
glm
::
vec4
(
0.3
f
,
0.
f
,
0.0
f
,
1.
f
)
};
Material
mat_wafer
{
glm
::
vec4
(
0.561
f
,
0.51
f
,
1.0
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
1.
f
,
0.
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
0.
f
,
0.3
f
,
1.
f
),
glm
::
vec4
(
0.3
f
,
0.
f
,
0.0
f
,
1.
f
)
};
Material
mat_drum
{
glm
::
vec4
(
0.804
f
,
0.51
f
,
1.0
f
,
1.0
f
),
glm
::
vec4
(
0.
f
,
0.85
f
,
0.
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
0.
f
,
0.15
f
,
1.
f
),
glm
::
vec4
(
0.15
f
,
0.
f
,
0.0
f
,
1.
f
)
};
Material
mat_wafer_top
{
glm
::
vec4
(
0.461
f
,
0.41
f
,
9.0
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
1.
f
,
0.
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
0.
f
,
0.3
f
,
1.
f
),
glm
::
vec4
(
0.3
f
,
0.
f
,
0.0
f
,
1.
f
)
};
Material
mat_drum
{
glm
::
vec4
(
0.804
f
,
0.51
f
,
1.0
f
,
0.9
f
),
glm
::
vec4
(
0.
f
,
0.85
f
,
0.
f
,
1.
f
),
glm
::
vec4
(
0.
f
,
0.
f
,
0.15
f
,
1.
f
),
glm
::
vec4
(
0.15
f
,
0.
f
,
0.0
f
,
1.
f
)
};
//Load layers
Layer
bottom_metal
(
"Bottom Metal"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
bottom_metal_single
\\
bottom_metal.obj"
,
0.0
f
,
mat_gold
);
Layer
bottom_drums
(
"Bottom Drums"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
bottom_drums_single
\\
bottom_drums.obj"
,
0.0
f
,
mat_drum
);
Layer
bottom_silicon
(
"Bottom Silicon"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
bottom_silicon_single
\\
bottom_silicon.obj"
,
0.0
f
,
mat_wafer
);
Layer
bottom_drums
(
"Bottom Drums"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
bottom_drums_single
\\
bottom_drums.obj"
,
0.0
f
,
mat_drum
);
Layer
bottom_silicon
(
"Bottom Silicon"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
bottom_silicon_single
\\
bottom_silicon.obj"
,
0.0
f
,
mat_wafer
);
Layer
top_metal
(
"Top Metal"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
top_metal_single
\\
top_metal.obj"
,
0.0
f
,
mat_gold
);
Layer
top_drums
(
"Top Drums"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
top_drums_single
\\
top_drums.obj"
,
0.0
f
,
mat_drum
);
Layer
top_silicon
(
"Top Silicon"
,
"C:
\\
Users
\\
Pascal
\\
repos
\\
rbcomb-sample-visualizer
\\
data_generation
\\
python
\\
models
\\
top_silicon_single
\\
top_silicon.obj"
,
0.0
f
,
mat_wafer_top
);
MetadataManager
::
addLayer
(
bottom_metal
);
MetadataManager
::
addLayer
(
bottom_drums
);
MetadataManager
::
addLayer
(
top_metal
);
MetadataManager
::
addLayer
(
top_drums
);
std
::
cout
<<
"Error Code: "
<<
glGetError
()
<<
std
::
endl
;
std
::
cout
<<
"GL_NO_ERROR: "
<<
GL_NO_ERROR
<<
std
::
endl
;
...
...
@@ -62,6 +68,8 @@ int main(int argc, char** argv) {
int
draw_mode
=
0
;
bool
top_mirrored
=
false
;
size_t
count
=
0
;
auto
start
=
std
::
chrono
::
high_resolution_clock
::
now
();
while
(
!
InputState
::
should_quit
)
{
...
...
@@ -88,6 +96,12 @@ int main(int argc, char** argv) {
else
if
(
SelectionManager
::
selectedLayerName
==
bottom_drums
.
name
())
{
bottom_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
0
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_metal
.
name
())
{
top_metal
.
setObjectState
(
SelectionManager
::
selectedIndex
,
0
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_drums
.
name
())
{
top_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
0
);
}
}
}
else
if
(
InputState
::
s_click
)
{
...
...
@@ -100,6 +114,12 @@ int main(int argc, char** argv) {
else
if
(
SelectionManager
::
selectedLayerName
==
bottom_drums
.
name
())
{
bottom_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
1
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_metal
.
name
())
{
top_metal
.
setObjectState
(
SelectionManager
::
selectedIndex
,
1
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_drums
.
name
())
{
top_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
1
);
}
}
}
else
if
(
InputState
::
b_click
)
{
...
...
@@ -112,24 +132,44 @@ int main(int argc, char** argv) {
else
if
(
SelectionManager
::
selectedLayerName
==
bottom_drums
.
name
())
{
bottom_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
2
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_metal
.
name
())
{
top_metal
.
setObjectState
(
SelectionManager
::
selectedIndex
,
2
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_drums
.
name
())
{
top_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
2
);
}
}
}
else
if
(
InputState
::
lmb_click
)
{
//select object
int
selected_index
=
bot
to
m
_metal
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
);
int
selected_index
=
VisibilityManager
::
enableTop
?
to
p
_metal
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
selected_index
!=
-
1
)
{
SelectionManager
::
selectedIndex
=
selected_index
;
SelectionManager
::
selectedLayerName
=
bot
to
m
_metal
.
name
();
SelectionManager
::
selectedLayerName
=
to
p
_metal
.
name
();
}
else
{
selected_index
=
bot
to
m
_drums
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
);
selected_index
=
VisibilityManager
::
enableTop
?
to
p
_drums
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
selected_index
!=
-
1
)
{
SelectionManager
::
selectedIndex
=
selected_index
;
SelectionManager
::
selectedLayerName
=
bot
to
m
_drums
.
name
();
SelectionManager
::
selectedLayerName
=
to
p
_drums
.
name
();
}
else
{
SelectionManager
::
selectedIndex
=
-
1
;
SelectionManager
::
selectedLayerName
=
""
;
else
{
selected_index
=
VisibilityManager
::
enableBottom
?
bottom_metal
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
selected_index
!=
-
1
)
{
SelectionManager
::
selectedIndex
=
selected_index
;
SelectionManager
::
selectedLayerName
=
bottom_metal
.
name
();
}
else
{
selected_index
=
VisibilityManager
::
enableBottom
?
bottom_drums
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
selected_index
!=
-
1
)
{
SelectionManager
::
selectedIndex
=
selected_index
;
SelectionManager
::
selectedLayerName
=
bottom_drums
.
name
();
}
else
{
SelectionManager
::
selectedIndex
=
-
1
;
SelectionManager
::
selectedLayerName
=
""
;
}
}
}
}
#ifndef NDEBUG
...
...
@@ -195,14 +235,26 @@ int main(int argc, char** argv) {
camera
.
ProcessMouseZoom
(
1
);
}
}
SelectionManager
::
hoveredIndex
=
bot
to
m
_metal
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
);
SelectionManager
::
hoveredIndex
=
VisibilityManager
::
enableTop
?
to
p
_metal
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
SelectionManager
::
hoveredIndex
!=
-
1
)
{
SelectionManager
::
hoveredLayerName
=
bot
to
m
_metal
.
name
();
SelectionManager
::
hoveredLayerName
=
to
p
_metal
.
name
();
}
else
{
SelectionManager
::
hoveredIndex
=
bot
to
m
_drums
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
);
SelectionManager
::
hoveredIndex
=
VisibilityManager
::
enableTop
?
to
p
_drums
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
SelectionManager
::
hoveredIndex
!=
-
1
)
{
SelectionManager
::
hoveredLayerName
=
bottom_drums
.
name
();
SelectionManager
::
hoveredLayerName
=
top_drums
.
name
();
}
else
{
SelectionManager
::
hoveredIndex
=
VisibilityManager
::
enableBottom
?
bottom_metal
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
SelectionManager
::
hoveredIndex
!=
-
1
)
{
SelectionManager
::
hoveredLayerName
=
bottom_metal
.
name
();
}
else
{
SelectionManager
::
hoveredIndex
=
VisibilityManager
::
enableBottom
?
bottom_drums
.
selectObject
(
InputState
::
umpos_x
,
HEIGHT
-
InputState
::
umpos_y
,
projection
,
view
,
model
)
:
-
1
;
if
(
SelectionManager
::
hoveredIndex
!=
-
1
)
{
SelectionManager
::
hoveredLayerName
=
bottom_drums
.
name
();
}
}
}
}
...
...
@@ -263,6 +315,12 @@ int main(int argc, char** argv) {
else
if
(
SelectionManager
::
selectedLayerName
==
bottom_drums
.
name
())
{
bottom_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
object_status
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_metal
.
name
())
{
top_metal
.
setObjectState
(
SelectionManager
::
selectedIndex
,
object_status
);
}
else
if
(
SelectionManager
::
selectedLayerName
==
top_drums
.
name
())
{
top_drums
.
setObjectState
(
SelectionManager
::
selectedIndex
,
object_status
);
}
}
}
ImGui
::
NewLine
();
...
...
@@ -279,11 +337,14 @@ int main(int argc, char** argv) {
//Layer Window
ImGui
::
Begin
(
"Layers"
);
ImGui
::
NewLine
();
//BOTTOM METAL
text
=
"Layer: "
+
bottom_metal
.
name
();
ImGui
::
Text
(
text
.
c_str
());
text
=
"Objects: "
+
std
::
to_string
(
bottom_metal
.
numObjects
());
ImGui
::
Text
(
text
.
c_str
());
char
input_text
[
256
];
static
char
input_text
[
256
]
=
""
;
ImGui
::
InputText
(
"Metadata File"
,
input_text
,
IM_ARRAYSIZE
(
input_text
));
if
(
ImGui
::
Button
(
"Save"
))
{
std
::
string
path
=
METADATA_PATH
+
std
::
string
(
input_text
);
...
...
@@ -297,29 +358,91 @@ int main(int argc, char** argv) {
//push data to GPU
bottom_metal
.
setAllObjectStates
(
MetadataManager
::
getLayerData
(
bottom_metal
.
name
()));
}
ImGui
::
NewLine
();
ImGui
::
Separator
();
ImGui
::
NewLine
();
//BOTTOM DRUMS
text
=
"Layer: "
+
bottom_drums
.
name
();
ImGui
::
Text
(
text
.
c_str
());
text
=
"Objects: "
+
std
::
to_string
(
bottom_drums
.
numObjects
());
ImGui
::
Text
(
text
.
c_str
());
char
input_text2
[
256
];
static
char
input_text2
[
256
]
=
""
;
ImGui
::
InputText
(
"Metadata File "
,
input_text2
,
IM_ARRAYSIZE
(
input_text2
));
if
(
ImGui
::
Button
(
"Save
2
"
))
{
if
(
ImGui
::
Button
(
"Save
"
))
{
std
::
string
path
=
METADATA_PATH
+
std
::
string
(
input_text2
);
MetadataManager
::
save
(
path
,
bottom_drums
.
name
());
}
ImGui
::
SameLine
();
if
(
ImGui
::
Button
(
"Load
2
"
))
{
if
(
ImGui
::
Button
(
"Load
"
))
{
std
::
string
path
=
METADATA_PATH
+
std
::
string
(
input_text2
);
MetadataManager
::
load
(
path
,
bottom_drums
.
name
());
//push data to GPU
bottom_drums
.
setAllObjectStates
(
MetadataManager
::
getLayerData
(
bottom_drums
.
name
()));
}
ImGui
::
NewLine
();
ImGui
::
Separator
();
ImGui
::
Separator
();
ImGui
::
NewLine
();
//TOP METAL
text
=
"Layer: "
+
top_metal
.
name
();
ImGui
::
Text
(
text
.
c_str
());
text
=
"Objects: "
+
std
::
to_string
(
top_metal
.
numObjects
());
ImGui
::
Text
(
text
.
c_str
());
static
char
input_text3
[
256
]
=
""
;
ImGui
::
InputText
(
"Metadata File "
,
input_text3
,
IM_ARRAYSIZE
(
input_text3
));
if
(
ImGui
::
Button
(
"Save "
))
{
std
::
string
path
=
METADATA_PATH
+
std
::
string
(
input_text3
);
MetadataManager
::
save
(
path
,
top_metal
.
name
());
}
ImGui
::
SameLine
();
if
(
ImGui
::
Button
(
"Load "
))
{
std
::
string
path
=
METADATA_PATH
+
std
::
string
(
input_text3
);
MetadataManager
::
load
(
path
,
top_metal
.
name
());
//push data to GPU
top_metal
.
setAllObjectStates
(
MetadataManager
::
getLayerData
(
top_metal
.
name
()));
}
ImGui
::
NewLine
();
ImGui
::
Separator
();
ImGui
::
NewLine
();
//TOP DRUMS
text
=
"Layer: "
+
top_drums
.
name
();
ImGui
::
Text
(
text
.
c_str
());
text
=
"Objects: "
+
std
::
to_string
(
top_drums
.
numObjects
());
ImGui
::
Text
(
text
.
c_str
());
static
char
input_text4
[
256
]
=
""
;
ImGui
::
InputText
(
"Metadata File "
,
input_text4
,
IM_ARRAYSIZE
(
input_text4
));
if
(
ImGui
::
Button
(
"Save "
))
{
std
::
string
path
=
METADATA_PATH
+
std
::
string
(
input_text4
);
MetadataManager
::
save
(
path
,
top_drums
.
name
());
}
ImGui
::
SameLine
();
if
(
ImGui
::
Button
(
"Load "
))
{
std
::
string
path
=
METADATA_PATH
+
std
::
string
(
input_text4
);
MetadataManager
::
load
(
path
,
top_drums
.
name
());
//push data to GPU
top_drums
.
setAllObjectStates
(
MetadataManager
::
getLayerData
(
top_drums
.
name
()));
}
ImGui
::
NewLine
();
ImGui
::
Separator
();
ImGui
::
Separator
();
ImGui
::
NewLine
();
ImGui
::
Text
(
"Controls"
);
ImGui
::
NewLine
();
ImGui
::
Text
(
"Bottom Top"
);
ImGui
::
SliderFloat
(
"Opacity Mixer"
,
&
VisibilityManager
::
opacityMixer
,
0.
f
,
1.
f
);
ImGui
::
Checkbox
(
"Mirror Top"
,
&
top_mirrored
);
top_metal
.
setMirrorState
(
top_mirrored
);
top_drums
.
setMirrorState
(
top_mirrored
);
top_silicon
.
setMirrorState
(
top_mirrored
);
ImGui
::
Checkbox
(
"Enable Top"
,
&
VisibilityManager
::
enableTop
);
ImGui
::
SameLine
();
ImGui
::
Checkbox
(
"Enable Bottom"
,
&
VisibilityManager
::
enableBottom
);
ImGui
::
End
();
//Draw Window
...
...
@@ -342,38 +465,78 @@ int main(int argc, char** argv) {
/*Draw here*/
//Wafer
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
bottom_silicon
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
-
1
,
VisibilityManager
::
bottomOpacity
());
}
else
{
bottom_silicon
.
draw
(
projection
,
view
,
model
,
0
,
-
1
,
VisibilityManager
::
bottomOpacity
());
}
//Drum layer
int
selected_index
=
-
1
;
if
(
SelectionManager
::
selectedLayerName
==
bottom_drums
.
name
())
{
selected_index
=
SelectionManager
::
selectedIndex
;
}
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
bottom_drums
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
}
else
{
bottom_drums
.
draw
(
projection
,
view
,
model
,
draw_mode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
}
//Metal layer
selected_index
=
-
1
;
if
(
SelectionManager
::
selectedLayerName
==
bottom_metal
.
name
())
{
selected_index
=
SelectionManager
::
selectedIndex
;
}
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
bottom_metal
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
//Bottom Stack
if
(
VisibilityManager
::
enableBottom
)
{
//Bottom Wafer
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
bottom_silicon
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
-
1
,
VisibilityManager
::
bottomOpacity
());
}
else
{
bottom_silicon
.
draw
(
projection
,
view
,
model
,
0
,
-
1
,
VisibilityManager
::
bottomOpacity
());
}
//Bottom Drum layer
int
selected_index
=
-
1
;
if
(
SelectionManager
::
selectedLayerName
==
bottom_drums
.
name
())
{
selected_index
=
SelectionManager
::
selectedIndex
;
}
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
bottom_drums
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
}
else
{
bottom_drums
.
draw
(
projection
,
view
,
model
,
draw_mode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
}
//Bottom Metal layer
selected_index
=
-
1
;
if
(
SelectionManager
::
selectedLayerName
==
bottom_metal
.
name
())
{
selected_index
=
SelectionManager
::
selectedIndex
;
}
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
bottom_metal
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
}
else
{
bottom_metal
.
draw
(
projection
,
view
,
model
,
draw_mode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
}
}
else
{
bottom_metal
.
draw
(
projection
,
view
,
model
,
draw_mode
,
selected_index
,
VisibilityManager
::
bottomOpacity
());
//Top Stack
if
(
VisibilityManager
::
enableTop
)
{
//Top Drum layer
int
selected_index
=
-
1
;
if
(
SelectionManager
::
selectedLayerName
==
top_drums
.
name
())
{
selected_index
=
SelectionManager
::
selectedIndex
;
}
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
top_drums
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
selected_index
,
VisibilityManager
::
topOpacity
());
}
else
{
top_drums
.
draw
(
projection
,
view
,
model
,
draw_mode
,
selected_index
,
VisibilityManager
::
topOpacity
());
}
//Top Metal layer
selected_index
=
-
1
;
if
(
SelectionManager
::
selectedLayerName
==
top_metal
.
name
())
{
selected_index
=
SelectionManager
::
selectedIndex
;
}
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
top_metal
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
selected_index
,
VisibilityManager
::
topOpacity
());
}
else
{
top_metal
.
draw
(
projection
,
view
,
model
,
draw_mode
,
selected_index
,
VisibilityManager
::
topOpacity
());
}
//Top Wafer
if
(
InputState
::
space_pressed
)
{
//highlight selection
int
tempDrawingMode
=
7
;
top_silicon
.
draw
(
projection
,
view
,
model
,
tempDrawingMode
,
-
1
,
VisibilityManager
::
topOpacity
());
}
else
{
top_silicon
.
draw
(
projection
,
view
,
model
,
0
,
-
1
,
VisibilityManager
::
topOpacity
());
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment