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

OpenGL

开发平台:

Visual C++

  1. // opencluster.h
  2. //
  3. // Copyright (C) 2003, Chris Laurel <claurel@shatters.net>
  4. //
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. #ifndef CELENGINE_OPENCLUSTER_H_
  10. #define CELENGINE_OPENCLUSTER_H_
  11. #include <celutil/reshandle.h>
  12. #include <celengine/deepskyobj.h>
  13. class OpenCluster : public DeepSkyObject
  14. {
  15.  public:
  16.     OpenCluster();
  17.     virtual const char* getType() const;
  18.     virtual void setType(const std::string&);
  19.     virtual size_t getDescription(char* buf, size_t bufLength) const;
  20.     virtual bool pick(const Ray3d& ray,
  21.                       double& distanceToPicker,
  22.                       double& cosAngleToBoundCenter) const;
  23.     virtual bool load(AssociativeArray*, const std::string&);
  24.     virtual void render(const GLContext& context,
  25.                         const Vec3f& offset,
  26.                         const Quatf& viewerOrientation,
  27.                         float brightness,
  28.                         float pixelSize);
  29.     virtual unsigned int getRenderMask() const;
  30.     virtual unsigned int getLabelMask() const;
  31.     
  32.     virtual const char* getObjTypeName() const;
  33.  public:
  34.     enum ClusterType {
  35.         Open          = 0,
  36.         Globular      = 1,
  37.         NotDefined    = 2
  38.     };
  39.  private:
  40.     // TODO: It could be very useful to have a list of stars that are members
  41.     // of the cluster.
  42. };
  43. #endif // CELENGINE_OPENCLUSTER_H_