Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
freecad_x3d
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
freecad_x3d
Commits
927bbdda
Commit
927bbdda
authored
Dec 16, 2015
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.touch events 2.help 3.+nobuttons
parent
d75140ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
162 additions
and
36 deletions
+162
-36
viewmodel.js
x3d_web_viewer/viewmodel.js
+162
-36
No files found.
x3d_web_viewer/viewmodel.js
View file @
927bbdda
...
@@ -3,25 +3,14 @@ FILE NAME : viewmodel.js
...
@@ -3,25 +3,14 @@ FILE NAME : viewmodel.js
DESCRIPTION: x3d viewer
DESCRIPTION: x3d viewer
REVISION: 1.00
REVISION: 1.00
AUTHOR: Oleg Dzhimiev <oleg@elphel.com>
AUTHOR: Oleg Dzhimiev <oleg@elphel.com>
LICENSE: AGPL v3+, see http://www.gnu.org/licenses/agpl.txt
Copyright (C) 2015 Elphel, Inc.
Copyright (C) 2015 Elphel, Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>
*/
*/
var
model
=
"Undefined"
;
var
model
=
"Undefined"
;
var
NSN
=
"m"
;
var
NSN
=
"m"
;
var
elphel_wiki_prefix
=
"http://wiki.elphel.com/index.php?search="
var
elphel_wiki_prefix
=
"http://wiki.elphel.com/index.php?search="
var
nobuttons
=
false
;
function
resize
(){
function
resize
(){
var
w
=
$
(
window
).
width
();
var
w
=
$
(
window
).
width
();
...
@@ -41,11 +30,14 @@ function resize(){
...
@@ -41,11 +30,14 @@ function resize(){
var
resizeTimer
;
var
resizeTimer
;
var
moveTimeSet
=
0
;
var
moveTimeStamp
;
$
(
function
(){
$
(
function
(){
$
(
window
).
resize
(
function
(){
$
(
window
).
resize
(
function
(){
clearTimeout
(
resizeTimer
);
clearTimeout
(
resizeTimer
);
resizeTimer
=
setTimeout
(
resize
(),
250
);
resizeTimer
=
window
.
setTimeout
(
resize
(),
250
);
});
});
//"model" and some other parameters
//"model" and some other parameters
...
@@ -85,7 +77,7 @@ $(function(){
...
@@ -85,7 +77,7 @@ $(function(){
var
element
=
document
.
getElementById
(
'x3d_canvas'
);
var
element
=
document
.
getElementById
(
'x3d_canvas'
);
//on load: showAll()?!
//on load: showAll()?!
var
showall
=
10
;
var
showall
=
8
;
$
(
document
).
load
(
function
(){
$
(
document
).
load
(
function
(){
element
.
runtime
.
enterFrame
=
function
()
{
element
.
runtime
.
enterFrame
=
function
()
{
if
(
showall
==
1
)
{
if
(
showall
==
1
)
{
...
@@ -98,7 +90,8 @@ $(function(){
...
@@ -98,7 +90,8 @@ $(function(){
});
});
//help button
//help button
var
hlp
=
$
(
"<a href='http://www.x3dom.org/documentation/interaction/'>"
).
addClass
(
"btn btn-primary nooutline btn-sm btn-my"
).
html
(
"?"
);
//var hlp = $("<a href='http://www.x3dom.org/documentation/interaction/'>").addClass("btn btn-primary nooutline btn-sm btn-my").html("?");
var
hlp
=
$
(
"<div>"
).
addClass
(
"btn btn-primary nooutline btn-sm btn-my"
).
html
(
"?"
);
hlp
.
css
({
hlp
.
css
({
position
:
"absolute"
,
position
:
"absolute"
,
right
:
"3px"
,
right
:
"3px"
,
...
@@ -108,8 +101,114 @@ $(function(){
...
@@ -108,8 +101,114 @@ $(function(){
padding
:
"0px 6px 0px 6px"
padding
:
"0px 6px 0px 6px"
});
});
$
(
"#main"
).
append
(
hlp
);
var
hlp_text
=
$
(
"<div>"
,{
id
:
"help-text"
}).
css
({
position
:
"absolute"
,
top
:
"2px"
,
right
:
"2px"
,
// width:"800px",
// height:"600px",
"border-radius"
:
"2px"
,
border
:
"1px solid gray"
,
color
:
"white"
,
"font-size"
:
"1.2em"
,
padding
:
"10px 10px 10px 10px"
,
background
:
"rgba(50,50,50,0.9)"
,
display
:
"none"
});
hlp_text
.
html
(
"
\
<table>
\
<tr>
\
<td>Display area:<td>
\
</tr>
\
<tr>
\
<td valign='top'> <b>• left-click:</b></td>
\
<td valign='top'>select/deselect part and its copies</td>
\
</tr>
\
<tr>
\
<td valign='top'> <b>• left-click + move:</b></td>
\
<td valign='top'>rotate</td>
\
</tr>
\
<tr>
\
<td valign='top'> <b>• right-click:</b></td>
\
<td valign='top'>hide part and its copies</td>
\
</tr>
\
<tr>
\
<td valign='top'> <b>• right-click + move:</b></td>
\
<td valign='top'>zoom</td>
\
</tr>
\
<tr>
\
<td valign='top'> <b>• middle-click + move:</b></td>
\
<td valign='top'>drag</td>
\
</tr>
\
<tr>
\
<td valign='top'> <b>• dbl-left-click:</b></td>
\
<td valign='top'>set center of rotation but <span style='color:rgba(255,100,100,1)'><b>interferes with left-click</b></span></td>
\
</tr>
\
<tr>
\
<td valign='top'> <b>• dbl-middle-click:</b></td>
\
<td valign='top'>set center of rotation</td>
\
</tr>
\
<tr>
\
<td>Side buttons (if enabled):</td>
\
</tr>
\
<tr>
\
<td> <b>• <span style='padding:1px 5px;background:green;border-radius:2px 0px 0px 2px;'>abc</span><span style='padding:1px 5px;background:white;border-radius:0px 2px 2px 0px;color:black;'>▾</span> <b>:</b></td>
\
<td><b>abc</b> = Part Number</td>
\
</tr>
\
<tr>
\
<td> <b>• <span style='padding:1px 5px;background:green;border-radius:2px 0px 0px 2px;'>abc</span> left-click:</b></td>
\
<td>select / single / hide / delesect</td>
\
</tr>
\
<tr>
\
<td> <b>• dropdown</b> <span style='padding:1px 5px;background:green;border-radius:2px;'>all</span> <b>:</b></td>
\
<td>hide/show part and its copies</td>
\
</tr>
\
<tr>
\
<td> <b>• dropdown</b> <span style='padding:1px 5px;background:green;border-radius:2px;'>1</span> <b>:</b></td>
\
<td>hide/show single part or copy</td>
\
</tr>
\
<tr>
\
<td>X3DOM controls help:</td>
\
</tr>
\
<tr>
\
<td> <b>• <a href='http://www.x3dom.org/documentation/interaction/' style='color:white'>www.x3dom.org</a></td>
\
</tr>
\
</table>
\
"
);
hlp
.
click
(
function
(){
hlp_text
.
css
({
display
:
""
});
});
hlp_text
.
click
(
function
(){
$
(
this
).
css
({
display
:
"none"
});
});
$
(
"#main"
).
append
(
hlp
).
append
(
hlp_text
);
rst_model
=
$
(
"<button>"
,{
id
:
"reset_model"
}).
addClass
(
"btn-my btn nooutline"
).
html
(
"reset model"
).
css
({
position
:
"absolute"
,
top
:
"3px"
,
left
:
"3px"
,
cursor
:
"pointer"
});
rst_model
.
click
(
function
(){
$
(
"Switch"
).
each
(
function
(){
$
(
this
).
attr
(
"whichChoice"
,
0
);
$
(
this
).
find
(
"Material"
).
attr
(
"transparency"
,
0.1
);
$
(
this
).
attr
(
"state"
,
"normal"
);
$
(
".btn-part[nsn="
+
$
(
this
).
attr
(
"nsn"
)
+
"]"
).
addClass
(
"btn-success"
).
removeClass
(
"btn-primary"
);
$
(
".btn-part[nsn="
+
$
(
this
).
attr
(
"nsn"
)
+
"]"
).
css
({
opacity
:
"1.0"
});
$
(
".btn-subpart[nsn="
+
$
(
this
).
attr
(
"nsn"
)
+
"]"
).
addClass
(
"btn-success"
).
attr
(
"selected"
,
true
);
});
btn_subpart_enableAll
();
element
.
runtime
.
showAll
(
"negZ"
);
});
$
(
"#main"
).
append
(
rst_model
);
$
(
"#thrd"
).
css
({
$
(
"#thrd"
).
css
({
position
:
"absolute"
,
position
:
"absolute"
,
top
:
"3px"
,
top
:
"3px"
,
...
@@ -142,6 +241,12 @@ function showBOM(){
...
@@ -142,6 +241,12 @@ function showBOM(){
left
:
"705px"
left
:
"705px"
});
});
if
(
nobuttons
){
bom
.
css
({
display
:
"none"
});
}
var
top
=
$
(
"#topinline"
);
var
top
=
$
(
"#topinline"
);
//upper case was important
//upper case was important
var
parts_unique
=
top
.
find
(
"Inline"
);
var
parts_unique
=
top
.
find
(
"Inline"
);
...
@@ -255,9 +360,29 @@ function bindCanvas(){
...
@@ -255,9 +360,29 @@ function bindCanvas(){
});
});
//unblock click
//unblock click
$
(
"Switch"
).
mousedown
(
function
(){
blockclick
=
false
;});
$
(
"Switch"
).
mousedown
(
function
(){
blockclick
=
false
;
});
//block click is the model was rotated
//block click is the model was rotated
$
(
"Switch"
).
mousemove
(
function
(){
blockclick
=
true
;});
$
(
"Switch"
).
mousemove
(
function
(
e
){
//alert(e.which);
if
(
e
.
which
==
1
)
{
blockclick
=
true
;
}
});
var
canvas
=
document
.
getElementById
(
"x3d_canvas"
);
canvas
.
addEventListener
(
"touchstart"
,
function
(
e
){
blockclick
=
false
;
moveTimeStamp
=
getTimeStamp
();
});
canvas
.
addEventListener
(
"touchmove"
,
function
(
e
){
//blockclick = true;
if
((
getTimeStamp
()
-
moveTimeStamp
)
>
100
){
blockclick
=
true
;
}
});
//click
//click
$
(
"Switch"
).
click
(
function
(
event
){
$
(
"Switch"
).
click
(
function
(
event
){
if
(
!
blockclick
){
if
(
!
blockclick
){
...
@@ -275,22 +400,22 @@ function bindCanvas(){
...
@@ -275,22 +400,22 @@ function bindCanvas(){
}
}
console
.
log
(
"The pointer is over "
+
hmm
.
attr
(
"id"
)
+
", whichChoice="
+
hmm
.
attr
(
"whichChoice"
)
+
" render="
+
hmm
.
attr
(
"render"
)
+
" DEF="
+
hmm
.
attr
(
"DEF"
));
console
.
log
(
"The pointer is over "
+
hmm
.
attr
(
"id"
)
+
", whichChoice="
+
hmm
.
attr
(
"whichChoice"
)
+
" render="
+
hmm
.
attr
(
"render"
)
+
" DEF="
+
hmm
.
attr
(
"DEF"
));
}
}
});
});
}
//$("Switch").attr("onclick","handleClick(event)");
/*
function
getTimeStamp
(){
$(".btn-subpart").each(function(){
var
d
=
new
Date
();
var index = $(this).attr("index"
);
return
d
.
getTime
(
);
var selected = $(this).attr("selected");
}
var nsn = $(this).attr("nsn");
var some_subpart = document.getElementById(NSN+"__switch_"+nsn+":"+index);
function
blockclique
(){
$(some_subpart).click(function(){
blockclick
=
true
;
//$(this).attr("whichChoice",-1)
;
//moveTimerSet = false
;
console.log("CLIKED: "+$(this).attr("id"));
}
});
});
function
unblockclique
(){
*/
blockclick
=
false
;
//moveTimerSet = false;
}
}
function
model_run_cmd
(
name
,
cmd
){
function
model_run_cmd
(
name
,
cmd
){
...
@@ -469,7 +594,7 @@ function btn_subpart_enableAll(){
...
@@ -469,7 +594,7 @@ function btn_subpart_enableAll(){
var
selected
=
$
(
this
).
attr
(
"selected"
);
var
selected
=
$
(
this
).
attr
(
"selected"
);
var
nsn
=
$
(
this
).
attr
(
"nsn"
);
var
nsn
=
$
(
this
).
attr
(
"nsn"
);
var
some_subpart
=
document
.
getElementById
(
NSN
+
"__switch_"
+
nsn
+
":"
+
index
);
var
some_subpart
=
document
.
getElementById
(
NSN
+
"__switch_"
+
nsn
+
":"
+
index
);
$
(
some_subpart
).
attr
(
"whichChoice"
,
"0"
);
$
(
some_subpart
).
attr
(
"whichChoice"
,
"0"
)
.
attr
(
"selected"
,
true
)
;
});
});
}
}
...
@@ -479,6 +604,7 @@ function parseURL() {
...
@@ -479,6 +604,7 @@ function parseURL() {
for
(
var
i
=
1
;
i
<
parameters
.
length
;
i
++
)
{
for
(
var
i
=
1
;
i
<
parameters
.
length
;
i
++
)
{
switch
(
parameters
[
i
][
0
])
{
switch
(
parameters
[
i
][
0
])
{
case
"model"
:
model
=
parameters
[
i
][
1
];
break
;
case
"model"
:
model
=
parameters
[
i
][
1
];
break
;
case
"nobuttons"
:
nobuttons
=
true
;
break
;
}
}
}
}
console
.
log
(
"Opening model: "
+
model
);
console
.
log
(
"Opening model: "
+
model
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment