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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llviewerjoystick.h
  3.  * @brief Viewer joystick / NDOF device functionality.
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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. #ifndef LL_LLVIEWERJOYSTICK_H
  33. #define LL_LLVIEWERJOYSTICK_H
  34. #include "stdtypes.h"
  35. #if LIB_NDOF
  36. #include "ndofdev_external.h"
  37. #else
  38. #define NDOF_Device void
  39. #define NDOF_HotPlugResult S32
  40. #endif
  41. typedef enum e_joystick_driver_state
  42. {
  43. JDS_UNINITIALIZED,
  44. JDS_INITIALIZED,
  45. JDS_INITIALIZING
  46. } EJoystickDriverState;
  47. class LLViewerJoystick : public LLSingleton<LLViewerJoystick>
  48. {
  49. public:
  50. LLViewerJoystick();
  51. virtual ~LLViewerJoystick();
  52. void init(bool autoenable);
  53. void terminate();
  54. void updateStatus();
  55. void scanJoystick();
  56. void moveObjects(bool reset = false);
  57. void moveAvatar(bool reset = false);
  58. void moveFlycam(bool reset = false);
  59. F32 getJoystickAxis(U32 axis) const;
  60. U32 getJoystickButton(U32 button) const;
  61. bool isJoystickInitialized() const {return (mDriverState==JDS_INITIALIZED);}
  62. bool isLikeSpaceNavigator() const;
  63. void setNeedsReset(bool reset = true) { mResetFlag = reset; }
  64. void setCameraNeedsUpdate(bool b)     { mCameraUpdated = b; }
  65. bool getCameraNeedsUpdate() const     { return mCameraUpdated; }
  66. bool getOverrideCamera() { return mOverrideCamera; }
  67. void setOverrideCamera(bool val);
  68. bool toggleFlycam();
  69. void setSNDefaults();
  70. std::string getDescription();
  71. protected:
  72. void updateEnabled(bool autoenable);
  73. void handleRun(F32 inc);
  74. void agentSlide(F32 inc);
  75. void agentPush(F32 inc);
  76. void agentFly(F32 inc);
  77. void agentPitch(F32 pitch_inc);
  78. void agentYaw(F32 yaw_inc);
  79. void agentJump();
  80. void resetDeltas(S32 axis[]);
  81. #if LIB_NDOF
  82. static NDOF_HotPlugResult HotPlugAddCallback(NDOF_Device *dev);
  83. static void HotPlugRemovalCallback(NDOF_Device *dev);
  84. #endif
  85. private:
  86. F32 mAxes[6];
  87. long mBtn[16];
  88. EJoystickDriverState mDriverState;
  89. NDOF_Device *mNdofDev;
  90. bool mResetFlag;
  91. F32 mPerfScale;
  92. bool mCameraUpdated;
  93. bool  mOverrideCamera;
  94. U32 mJoystickRun;
  95. static F32 sLastDelta[7];
  96. static F32 sDelta[7];
  97. };
  98. #endif