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

OpenGL

开发平台:

Visual C++

  1. // starcolors.cpp
  2. //
  3. // Copyright (C) 2004, Chris Laurel <claurel@shatters.net>
  4. //
  5. // Tables of star colors, indexed by temperature.
  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_STARCOLORS_H_
  12. #define _CELENGINE_STARCOLORS_H_
  13. #include <celutil/color.h>
  14. class ColorTemperatureTable
  15. {
  16.  public:
  17.     ColorTemperatureTable(Color* _colors,
  18.                           unsigned int _nColors,
  19.                           float maxTemp) :
  20.         colors(_colors),
  21.         nColors(_nColors),
  22.         tempScale((float) (_nColors - 1) / maxTemp)
  23.     {};
  24.     Color lookupColor(float temp) const
  25.     {
  26.         unsigned int colorTableIndex = (unsigned int) (temp * tempScale);
  27.         if (colorTableIndex >= nColors)
  28.             return colors[nColors - 1];
  29.         else
  30.             return colors[colorTableIndex];
  31.     }
  32.  private:
  33.     const Color* colors;
  34.     unsigned nColors;
  35.     float tempScale;
  36. };
  37. enum ColorTableType
  38. {
  39.     ColorTable_Enhanced,
  40.     ColorTable_Blackbody_D65,
  41. };
  42. extern ColorTemperatureTable* GetStarColorTable(ColorTableType);
  43. #endif // _CELENGINE_STARCOLORS_H_