mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-20 04:34:48 +00:00
81 lines
3.1 KiB
PHP
81 lines
3.1 KiB
PHP
<?php
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (c) 2012 GarageGames, LLC
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
|
|
beginModule( 'oculusVR' );
|
|
|
|
// Look for the optional global from the project.conf.
|
|
global $OCULUSVR_SDK_PATH;
|
|
if (!$OCULUSVR_SDK_PATH)
|
|
{
|
|
// First look for an environment var.
|
|
$OCULUSVR_SDK_PATH = getenv( "TORQUE_OCULUSVR_PATH" );
|
|
|
|
if (strlen($OCULUSVR_SDK_PATH) == 0 || !file_exists($OCULUSVR_SDK_PATH))
|
|
{
|
|
// Sometimes users get confused and use this var.
|
|
$OCULUSVR_SDK_PATH = getenv( "OCULUSVR_SDK_PATH" );
|
|
}
|
|
|
|
// We need forward slashes for paths.
|
|
$OCULUSVR_SDK_PATH = str_replace( "\\", "/", $OCULUSVR_SDK_PATH);
|
|
|
|
// Remove trailing slashes.
|
|
$OCULUSVR_SDK_PATH = rtrim($OCULUSVR_SDK_PATH, " /");
|
|
}
|
|
|
|
// If we still don't have the SDK path then let the user know.
|
|
if (!file_exists($OCULUSVR_SDK_PATH))
|
|
{
|
|
trigger_error(
|
|
"\n*******************************************************************".
|
|
"\n".
|
|
"\n We were not able to find a valid path to the Oculus Rift SDK!".
|
|
"\n".
|
|
"\n You must install the latest Oculus VR SDK and set the path via a".
|
|
"\n \$OCULUSVR_SDK_PATH variable in your buildFiles/project.conf file".
|
|
"\n or by setting the TORQUE_OCULUSVR_PATH system environment variable".
|
|
"\n (may require a reboot).".
|
|
"\n".
|
|
"\n*******************************************************************".
|
|
"\n", E_USER_ERROR );
|
|
}
|
|
|
|
// Only Windows is supported at this time
|
|
if ( T3D_Generator::$platform == "win32" )
|
|
{
|
|
// Source
|
|
addEngineSrcDir( "platform/input/oculusVR" );
|
|
|
|
// Includes
|
|
addIncludePath( $OCULUSVR_SDK_PATH . "/LibOVR/Include" );
|
|
addIncludePath( $OCULUSVR_SDK_PATH . "/LibOVR/Src" );
|
|
|
|
// Libs
|
|
addProjectLibDir( $OCULUSVR_SDK_PATH . "/LibOVR/Lib/Win32" );
|
|
addProjectLibInput( "libovr.lib", "libovrd.lib" );
|
|
}
|
|
|
|
endModule();
|
|
|
|
?>
|