scriptrotation.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:1k
源码类别:

OpenGL

开发平台:

Visual C++

  1. // scriptrotation.h
  2. // 
  3. // Copyright (C) 2006, Chris Laurel <claurel@shatters.net>
  4. //
  5. // Interface for a Celestia rotation model implemented via a Lua script.
  6. //
  7. // This program is free software; you can redistribute it and/or
  8. // modify it under the terms of the GNU General Public License
  9. // as published by the Free Software Foundation; either version 2
  10. // of the License, or (at your option) any later version.
  11. #ifndef _CELENGINE_SCRIPTROTATION_H_
  12. #define _CELENGINE_SCRIPTROTATION_H_
  13. #include <celengine/parser.h>
  14. #include <celengine/rotation.h>
  15. struct lua_State;
  16. class ScriptedRotation : public RotationModel
  17. {
  18.  public:
  19.     ScriptedRotation();
  20.     ~ScriptedRotation();
  21.     bool initialize(const std::string& moduleName,
  22.                     const std::string& funcName,
  23.                     Hash* parameters);
  24.     virtual Quatd spin(double tjd) const;
  25.     virtual bool isPeriodic() const;
  26.     virtual double getPeriod() const;
  27.     virtual void getValidRange(double& begin, double& end) const;
  28.  private:
  29.     lua_State* luaState;
  30.     std::string luaRotationObjectName;
  31.     double period;
  32.     double validRangeBegin;
  33.     double validRangeEnd;
  34.     // Cached values
  35.     mutable double lastTime;
  36.     mutable Quatd lastOrientation;
  37.     bool cacheable;
  38. };
  39. #endif // _CELENGINE_SCRIPTROTATION_H_