lllistener.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file listener.cpp
  3.  * @brief Implementation of LISTENER class abstracting the audio support
  4.  *
  5.  * $LicenseInfo:firstyear=2000&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2000-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "lllistener.h"
  34. #define DEFAULT_AT  0.0f,0.0f,-1.0f
  35. #define DEFAULT_UP  0.0f,1.0f,0.0f
  36. //-----------------------------------------------------------------------
  37. // constructor
  38. //-----------------------------------------------------------------------
  39. LLListener::LLListener()
  40. {
  41. init();
  42. }
  43. //-----------------------------------------------------------------------
  44. LLListener::~LLListener()
  45. {
  46. }
  47. //-----------------------------------------------------------------------
  48. void LLListener::init(void)
  49. {
  50. mPosition.zeroVec();
  51. mListenAt.setVec(DEFAULT_AT);
  52. mListenUp.setVec(DEFAULT_UP);
  53. mVelocity.zeroVec();
  54. }
  55. //-----------------------------------------------------------------------
  56. void LLListener::translate(LLVector3 offset)
  57. {
  58. mPosition += offset;
  59. }
  60. //-----------------------------------------------------------------------
  61. void LLListener::setPosition(LLVector3 pos)
  62. {
  63. mPosition = pos;
  64. }
  65. //-----------------------------------------------------------------------
  66. LLVector3 LLListener::getPosition(void)
  67. {
  68. return(mPosition);
  69. }
  70. //-----------------------------------------------------------------------
  71. LLVector3 LLListener::getAt(void)
  72. {
  73. return(mListenAt);
  74. }
  75. //-----------------------------------------------------------------------
  76. LLVector3 LLListener::getUp(void)
  77. {
  78. return(mListenUp);
  79. }
  80. //-----------------------------------------------------------------------
  81. void LLListener::setVelocity(LLVector3 vel)
  82. {
  83. mVelocity = vel;
  84. }
  85. //-----------------------------------------------------------------------
  86. void LLListener::orient(LLVector3 up, LLVector3 at)
  87. {
  88. mListenUp = up;
  89. mListenAt = at;
  90. }
  91. //-----------------------------------------------------------------------
  92. void LLListener::set(LLVector3 pos, LLVector3 vel, LLVector3 up, LLVector3 at)
  93. {
  94. mPosition = pos;
  95. mVelocity = vel;
  96. setPosition(pos);
  97. setVelocity(vel);
  98. orient(up,at);
  99. }
  100. //-----------------------------------------------------------------------
  101. void LLListener::setDopplerFactor(F32 factor)
  102. {
  103. }
  104. //-----------------------------------------------------------------------
  105. F32 LLListener::getDopplerFactor()
  106. {
  107. return (1.f);
  108. }
  109. //-----------------------------------------------------------------------
  110. void LLListener::setRolloffFactor(F32 factor)
  111. {
  112. }
  113. //-----------------------------------------------------------------------
  114. F32 LLListener::getRolloffFactor()
  115. {
  116. return (1.f);
  117. }
  118. //-----------------------------------------------------------------------
  119. void LLListener::commitDeferredChanges()
  120. {
  121. }