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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lltoolmgr.h
  3.  * @brief LLToolMgr class header file
  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_TOOLMGR_H
  33. #define LL_TOOLMGR_H
  34. #include "llkeyboard.h"
  35. class LLTool;
  36. class LLToolset;
  37. // Key bindings for common operations
  38. const MASK MASK_VERTICAL = MASK_CONTROL;
  39. const MASK MASK_SPIN = MASK_CONTROL | MASK_SHIFT;
  40. const MASK MASK_ZOOM = MASK_NONE;
  41. const MASK MASK_ORBIT = MASK_CONTROL;
  42. const MASK MASK_PAN = MASK_CONTROL | MASK_SHIFT;
  43. const MASK MASK_COPY = MASK_SHIFT;
  44. class LLToolMgr : public LLSingleton<LLToolMgr>
  45. {
  46. public:
  47. LLToolMgr();
  48. ~LLToolMgr();
  49. // Must be called after gSavedSettings set up.
  50. void initTools();
  51. LLTool* getCurrentTool(); // returns active tool, taking into account keyboard state
  52. LLTool* getBaseTool(); // returns active tool when overrides are deactivated
  53. bool inEdit();
  54. bool canEdit();
  55. void toggleBuildMode();
  56. /* Determines if we are in Build mode or not. */
  57. bool inBuildMode();
  58. void setTransientTool(LLTool* tool);
  59. void clearTransientTool();
  60. BOOL usingTransientTool();
  61. void setCurrentToolset(LLToolset* current);
  62. LLToolset* getCurrentToolset();
  63. void onAppFocusGained();
  64. void onAppFocusLost();
  65. void            clearSavedTool();
  66. protected:
  67. friend class LLToolset;  // to allow access to setCurrentTool();
  68. void setCurrentTool(LLTool* tool);
  69. void updateToolStatus();
  70. protected:
  71. LLTool* mBaseTool;
  72. LLTool* mSavedTool; // The current tool at the time application focus was lost.
  73. LLTool* mTransientTool;
  74. LLTool* mOverrideTool; // Tool triggered by keyboard override
  75. LLTool* mSelectedTool; // last known active tool
  76. LLToolset* mCurrentToolset;
  77. };
  78. // Sets of tools for various modes
  79. class LLToolset
  80. {
  81. public:
  82. LLToolset() : mSelectedTool(NULL) {}
  83. LLTool* getSelectedTool() { return mSelectedTool; }
  84. void addTool(LLTool* tool);
  85. void selectTool( LLTool* tool );
  86. void selectToolByIndex( S32 index );
  87. void selectFirstTool();
  88. void selectNextTool();
  89. void selectPrevTool();
  90. void handleScrollWheel(S32 clicks);
  91. BOOL isToolSelected( S32 index );
  92. protected:
  93. LLTool* mSelectedTool;
  94. typedef std::vector<LLTool*> tool_list_t;
  95. tool_list_t  mToolList;
  96. };
  97. // Globals
  98. extern LLToolset* gBasicToolset;
  99. extern LLToolset *gCameraToolset;
  100. //extern LLToolset *gLandToolset;
  101. extern LLToolset* gMouselookToolset;
  102. extern LLToolset* gFaceEditToolset;
  103. extern LLTool* gToolNull;
  104. #endif