@@ -36,6 +36,7 @@ var g_requestId;
36
36
var g_numFish = [ 1 , 100 , 500 , 1000 , 5000 , 10000 , 15000 , 20000 , 25000 , 30000 ] ;
37
37
var g_frameData ;
38
38
var g_vrDisplay ;
39
+ var g_vrUi ;
39
40
40
41
//g_debug = true;
41
42
//g_drawOnce = true;
@@ -908,7 +909,6 @@ function initialize() {
908
909
setupBubbles ( particleSystem ) ;
909
910
var bubbleTimer = 0 ;
910
911
var bubbleIndex = 0 ;
911
-
912
912
var lightRay = setupLightRay ( ) ;
913
913
914
914
var then = 0.0 ;
@@ -1244,15 +1244,21 @@ function initialize() {
1244
1244
var height = Math . abs ( top - bottom ) ;
1245
1245
var xOff = width * g . net . offset [ 0 ] * g . net . offsetMult ;
1246
1246
var yOff = height * g . net . offset [ 1 ] * g . net . offsetMult ;
1247
+ var uiMatrix = new Float32Array ( 16 ) ;
1247
1248
if ( g_vrDisplay && g_vrDisplay . isPresenting && pose . position ) {
1248
- // Using head-neck model in VR mode due to unclear distance measurement(vr return position using meters),
1249
+ // Using head-neck model in VR mode because of unclear distance measurement(vr return position using meters),
1249
1250
// user could see around but couldn't move around.
1250
1251
eyePosition [ 0 ] = g . globals . eyeRadius ;
1251
1252
eyePosition [ 1 ] = g . globals . eyeHeight ;
1252
1253
eyePosition [ 2 ] = g . globals . eyeRadius ;
1253
1254
1254
1255
fast . matrix4 . copy ( projection , projectionMatrix ) ;
1255
1256
calculateViewMatrix ( viewInverse , pose . orientation , eyePosition ) ;
1257
+
1258
+ // Hard coded FPS translation vector and pin the whole UI in front of the user in VR mode. This hard coded position
1259
+ // vector used only once here.
1260
+ calculateViewMatrix ( uiMatrix , pose . orientation , [ 0 , 0 , 10 ] ) ;
1261
+ g_vrUi . render ( projection , fast . matrix4 . inverse ( uiMatrix , uiMatrix ) , [ pose . orientation ] ) ;
1256
1262
} else {
1257
1263
fast . matrix4 . frustum (
1258
1264
projection ,
@@ -1276,7 +1282,10 @@ function initialize() {
1276
1282
target ,
1277
1283
up ) ;
1278
1284
}
1279
-
1285
+ var uiMatrix = new Float32Array ( 16 ) ;
1286
+ //calculateViewMatrix(uiMatrix, pose.orientation, [0, 0, 10]);
1287
+ //g_ui.render(projection, fast.matrix4.inverse(uiMatrix, fast.matrix4.translation(uiMatrix, [0, 0, 6])));
1288
+ //var uiMatrix = new Float32Array(16);
1280
1289
if ( g . net . slave ) {
1281
1290
// compute X fov from y fov
1282
1291
var fovy = math . degToRad ( g . globals . fieldOfView * g . net . fovFudge ) ;
@@ -1289,6 +1298,7 @@ function initialize() {
1289
1298
fast . matrix4 . inverse ( view , viewInverse ) ;
1290
1299
fast . matrix4 . mul ( viewProjection , view , projection ) ;
1291
1300
fast . matrix4 . inverse ( viewProjectionInverse , viewProjection ) ;
1301
+ //g_ui.render(projection, fast.matrix4.inverse(uiMatrix, fast.matrix4.translation(uiMatrix, [0, 0, 16])));
1292
1302
1293
1303
fast . matrix4 . copy ( skyView , view ) ;
1294
1304
skyView [ 12 ] = 0 ;
@@ -1700,7 +1710,6 @@ function initialize() {
1700
1710
1701
1711
g_fpsTimer . update ( elapsedTime ) ;
1702
1712
fpsElem . innerHTML = g_fpsTimer . averageFPS ;
1703
-
1704
1713
gl . colorMask ( true , true , true , true ) ;
1705
1714
gl . clearColor ( 0 , 0.8 , 1 , 0 ) ;
1706
1715
gl . clear ( gl . COLOR_BUFFER_BIT | gl . DEPTH_BUFFER_BIT | gl . STENCIL_BUFFER_BIT ) ;
@@ -1711,6 +1720,44 @@ function initialize() {
1711
1720
}
1712
1721
g_vrDisplay . getFrameData ( g_frameData ) ;
1713
1722
if ( g_vrDisplay . isPresenting ) {
1723
+
1724
+ /* VR UI is enabled in VR Mode. VR UI has two mode, menu mode is the mirror of control panel of
1725
+ * aquarium and non-menu mode may presents fps(could be turn off) in front of user. These two
1726
+ * mode is controlled by isMenuMode flag and this flag is set by any keyboard event or gamepad
1727
+ * button click.
1728
+ */
1729
+
1730
+ // Set fps and prepare rendering it.
1731
+ g_vrUi . setFps ( g_fpsTimer . averageFPS ) ;
1732
+
1733
+ // Query gamepad button clicked event.
1734
+ g_vrUi . queryGamepadStatus ( ) ;
1735
+
1736
+ if ( g_vrUi . isMenuMode ) {
1737
+
1738
+ // When VR UI in menu mode, UI need a cursor to help user do select operation. Currently, cursor uses
1739
+ // head-neck model which means a point in front of user and user could move the point by rotating their head(with HMD).
1740
+ // A click event will be triggered when user stare at a label 2 seconds.
1741
+ // TODO : add gamepad support to control cursor and trigger select event with VR controllers.
1742
+
1743
+ // Jquery selector description.
1744
+ var selectorDescription ;
1745
+
1746
+ // VR UI return whether there is an option been selected in VR mode.
1747
+ var clickedLabel = g_vrUi . queryClickedLabel ( [ 0 , 0 , 0 ] , g_frameData . pose . orientation ) ;
1748
+ if ( clickedLabel != null ) {
1749
+ if ( clickedLabel . isAdvancedSettings ) {
1750
+ selectorDescription = "#optionsContainer > div:contains(" + clickedLabel . name + ")" ;
1751
+ $ ( selectorDescription ) . click ( ) ;
1752
+ } else if ( clickedLabel . name == "options" ) {
1753
+ $ ( "#options" ) . click ( ) ;
1754
+ } else {
1755
+ selectorDescription = "#setSetting" + clickedLabel . name ;
1756
+ $ ( selectorDescription ) . click ( ) ;
1757
+ }
1758
+ }
1759
+ }
1760
+
1714
1761
gl . viewport ( 0 , 0 , canvas . width * 0.5 , canvas . height ) ;
1715
1762
render ( elapsedTime , g_frameData . leftProjectionMatrix , g_frameData . pose ) ;
1716
1763
@@ -2038,11 +2085,14 @@ var VR = (function() {
2038
2085
if ( g_vrDisplay . capabilities . canPresent ) {
2039
2086
vrButton = addButton ( "Enter VR" , "E" , getCurrentUrl ( ) + "/vr_assets/button.png" , onRequestPresent ) ;
2040
2087
}
2088
+ g_vrUi = new Ui ( gl , g_numFish ) ;
2089
+ g_vrUi . load ( "./vr_assets/ui/config.js" ) ;
2041
2090
2042
2091
window . addEventListener ( 'vrdisplaypresentchange' , onPresentChange , false ) ;
2043
2092
window . addEventListener ( 'vrdisplayactivate' , onRequestPresent , false ) ;
2044
2093
window . addEventListener ( 'vrdisplaydeactivate' , onExitPresent , false ) ;
2045
2094
window . addEventListener ( 'resize' , function ( ) { onResize ( ) ; } , false ) ;
2095
+ window . addEventListener ( 'keydown' , function ( ) { g_vrUi . isMenuMode = ! g_vrUi . isMenuMode ; } , false ) ;
2046
2096
} else {
2047
2097
console . log ( "WebVR supported, but no VRDisplays found." )
2048
2098
}
0 commit comments