-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
emscripten-webxr is at e101ce7cfc3c92962a65771f43c2d61775edd348 Signed-off-by: Squareys <squareys@googlemail.com>
- Loading branch information
Showing
13 changed files
with
873 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* | ||
This file is part of Magnum. | ||
|
||
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 | ||
Vladimír Vondruš <mosra@centrum.cz> | ||
Copyright © 2019 Jonathan Hale <squareys@googlemail.com> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. | ||
*/ | ||
|
||
namespace Magnum { | ||
/** @page examples-webxr WebXR | ||
@brief Basic WebXR application. | ||
|
||
@m_footernavigation | ||
|
||
@image html webxr.png | ||
|
||
This example is a basic demonstration of how to use the | ||
[Emscripten WebXR library](https://github.com/VhiteRabbit/emscripten-webxr) | ||
with Magnum. | ||
|
||
For the full experience, this example requires a WebXR 1.0 capable browser and | ||
a VR headset. Before Chrome 79 or Oculus Browser 7.0 you may need to enable WebXR | ||
support explicitly on your browser --- on Chrome go into `chrome://flags` and | ||
search for WebXR. Works on Android as well. | ||
|
||
@m_div{m-button m-primary} <a href="https://magnum.graphics/showcase/webxr/">@m_div{m-big} Live web demo @m_enddiv @m_div{m-small} uses WebAssembly & WebGL @m_enddiv </a> @m_enddiv | ||
|
||
Note that there is also a @ref examples-webvr "WebVR example", a | ||
@ref examples-ovr "Oculus VR example" and a | ||
@ref examples-leapmotion "Leap Motion example". | ||
|
||
@section examples-webxr-controls Controls | ||
|
||
- @m_class{m-label m-default} **Mouse click** --- enter VR | ||
- @m_class{m-label m-default} **Esc** --- exit VR | ||
|
||
@section examples-webxr-credits Credits | ||
|
||
This example was originally contributed by [Jonathan Hale](https://github.com/Squareys) from | ||
[Vhite Rabbit](https://github.com/VhiteRabbit). | ||
|
||
@m_class{m-block m-success} | ||
|
||
@thirdparty This example makes use of the [emscripten-webxr](https://github.com/VhiteRabbit/emscripten-webxr) | ||
library, released under the @m_class{m-label m-success} **MIT** | ||
([license text](https://github.com/VhiteRabbit/emscripten-webxr/blob/master/LICENSE), | ||
[choosealicense.com](https://choosealicense.com/licenses/MIT/)). | ||
Attribution is appreciated but not required. | ||
|
||
@section examples-webxr-source Source | ||
|
||
Full source code is linked below and together with assets also available in the | ||
[magnum-examples GitHub repository](https://github.com/mosra/magnum-examples/tree/master/src/webxr). | ||
|
||
- @ref webxr/CMakeLists.txt "CMakeLists.txt" | ||
- @ref webxr/WebVrExample.cpp "WebXrExample.cpp" | ||
|
||
@example webxr/CMakeLists.txt @m_examplenavigation{examples-webxr,webxr/} @m_footernavigation | ||
@example webxr/WebXrExample.cpp @m_examplenavigation{examples-webxr,webxr/} @m_footernavigation | ||
|
||
*/ | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# | ||
# This file is part of Magnum. | ||
# | ||
# Original authors — credit is appreciated but not required: | ||
# | ||
# 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019 — | ||
# Vladimír Vondruš <mosra@centrum.cz> | ||
# 2019 — Jonathan Hale <squareys@googlemail.com> | ||
# | ||
# This is free and unencumbered software released into the public domain. | ||
# | ||
# Anyone is free to copy, modify, publish, use, compile, sell, or distribute | ||
# this software, either in source code form or as a compiled binary, for any | ||
# purpose, commercial or non-commercial, and by any means. | ||
# | ||
# In jurisdictions that recognize copyright laws, the author or authors of | ||
# this software dedicate any and all copyright interest in the software to | ||
# the public domain. We make this dedication for the benefit of the public | ||
# at large and to the detriment of our heirs and successors. We intend this | ||
# dedication to be an overt act of relinquishment in perpetuity of all | ||
# present and future rights to this software under copyright law. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
# | ||
|
||
cmake_minimum_required(VERSION 3.4) | ||
|
||
project(MagnumWebXrExample CXX) | ||
|
||
# Add module path in case this is project root | ||
if(PROJECT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) | ||
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/../../modules/" ${CMAKE_MODULE_PATH}) | ||
endif() | ||
|
||
find_package(Magnum REQUIRED | ||
GL | ||
MeshTools | ||
Primitives | ||
Shaders | ||
EmscriptenApplication) | ||
|
||
set_directory_properties(PROPERTIES CORRADE_USE_PEDANTIC_FLAGS ON) | ||
|
||
add_executable(magnum-webxr WebXrExample.cpp) | ||
target_link_libraries(magnum-webxr PRIVATE | ||
Magnum::Application | ||
Magnum::GL | ||
Magnum::Magnum | ||
Magnum::MeshTools | ||
Magnum::Primitives | ||
Magnum::Shaders) | ||
target_link_options(magnum-webxr PRIVATE | ||
"SHELL:--js-library ${CMAKE_CURRENT_BINARY_DIR}/library_webxr.js") | ||
|
||
# Copy the boilerplate next to the executable so it can be run directly from | ||
# the build dir; provide an install target as well | ||
add_custom_command(TARGET magnum-webxr POST_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy_if_different | ||
${MAGNUM_EMSCRIPTENAPPLICATION_JS} | ||
${MAGNUM_WEBAPPLICATION_CSS} | ||
$<TARGET_FILE_DIR:magnum-webxr> | ||
COMMAND ${CMAKE_COMMAND} -E copy_if_different | ||
${CMAKE_CURRENT_SOURCE_DIR}/webxr.html | ||
$<TARGET_FILE_DIR:magnum-webxr>/magnum-webxr.html) | ||
|
||
install(FILES webxr.html DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr RENAME index.html) | ||
install(TARGETS magnum-webxr DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr) | ||
install(FILES | ||
${MAGNUM_EMSCRIPTENAPPLICATION_JS} | ||
${MAGNUM_WEBAPPLICATION_CSS} | ||
DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr) | ||
install(FILES | ||
${CMAKE_BINARY_DIR}/bin/magnum-webxr.js.mem | ||
${CMAKE_BINARY_DIR}/bin/magnum-webxr.wasm | ||
DESTINATION ${MAGNUM_DEPLOY_PREFIX}/webxr OPTIONAL) |
Oops, something went wrong.