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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llwlparammanager.h
  3.  * @brief Implementation for the LLWLParamManager class.
  4.  *
  5.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2007-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_WL_DAY_CYCLE_H
  33. #define LL_WL_DAY_CYCLE_H
  34. class LLWLDayCycle;
  35. #include <vector>
  36. #include <map>
  37. #include <string>
  38. #include "llwlparamset.h"
  39. #include "llwlanimator.h"
  40. class LLWLDayCycle
  41. {
  42. public:
  43. // lists what param sets are used when during the day
  44. std::map<F32, std::string> mTimeMap;
  45. // how long is my day
  46. F32 mDayRate;
  47. public:
  48. /// simple constructor
  49. LLWLDayCycle();
  50. /// simple destructor
  51. ~LLWLDayCycle();
  52. /// load a day cycle
  53. void loadDayCycle(const std::string & fileName);
  54. /// load a day cycle
  55. void saveDayCycle(const std::string & fileName);
  56. /// clear keys
  57. void clearKeys();
  58. /// Getters and Setters
  59. /// add a new key frame to the day cycle
  60. /// returns true if successful
  61. /// no negative time
  62. bool addKey(F32 newTime, const std::string & paramName);
  63. /// adjust a key's placement in the day cycle
  64. /// returns true if successful
  65. bool changeKeyTime(F32 oldTime, F32 newTime);
  66. /// adjust a key's parameter used
  67. /// returns true if successful
  68. bool changeKeyParam(F32 time, const std::string & paramName);
  69. /// remove a key from the day cycle
  70. /// returns true if successful
  71. bool removeKey(F32 time);
  72. /// get the first key time for a parameter
  73. /// returns false if not there
  74. bool getKey(const std::string & name, F32& key);
  75. /// get the param set at a given time
  76. /// returns true if found one
  77. bool getKeyedParam(F32 time, LLWLParamSet& param);
  78. /// get the name
  79. /// returns true if it found one
  80. bool getKeyedParamName(F32 time, std::string & name);
  81. };
  82. #endif