PlanetInfo.h
上传用户:ghyvgy
上传日期:2009-05-26
资源大小:547k
文件大小:4k
源码类别:

其他游戏

开发平台:

Python

  1. /*
  2. s_p_oneil@hotmail.com
  3. Copyright (c) 2000, Sean O'Neil
  4. All rights reserved.
  5. Redistribution and use in source and binary forms, with or without
  6. modification, are permitted provided that the following conditions are met:
  7. * Redistributions of source code must retain the above copyright notice,
  8.   this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright notice,
  10.   this list of conditions and the following disclaimer in the documentation
  11.   and/or other materials provided with the distribution.
  12. * Neither the name of this project nor the names of its contributors
  13.   may be used to endorse or promote products derived from this software
  14.   without specific prior written permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  16. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  17. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  18. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  19. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  20. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  21. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  23. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  24. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25. POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifndef __PlanetInfo_h__
  28. #define __PlanetInfo_h__
  29. #include "Matrix.h"
  30. class CInfo
  31. {
  32. protected:
  33. char m_szFile[_MAX_PATH];
  34. char m_szKey[_MAX_PATH];
  35. public:
  36. CInfo()
  37. {
  38. }
  39. CInfo(const char *pszFile, const char *pszKey)
  40. {
  41. Init(pszFile, pszKey);
  42. }
  43. CInfo(const CInfo &info, const char *pszKey)
  44. {
  45. Init(info, pszKey);
  46. }
  47. ~CInfo()
  48. {
  49. Cleanup();
  50. }
  51. void Init(const char *pszFile, const char *pszKey)
  52. {
  53. strcpy(m_szFile, pszFile);
  54. strcpy(m_szKey, pszKey);
  55. }
  56. void Init(const CInfo &info, const char *pszKey)
  57. {
  58. strcpy(m_szFile, info.m_szFile);
  59. strcpy(m_szKey, pszKey);
  60. }
  61. void Cleanup()
  62. {
  63. // Stub for future cleanup code
  64. }
  65. const char *GetFile() { return m_szFile; }
  66. const char *GetKey() { return m_szKey; }
  67. const char *GetTextValue(const char *pszValue, const char *pszDefault="")
  68. {
  69. const char *psz = pszDefault;
  70. static char szTemp[_MAX_PATH];
  71. GetPrivateProfileString(m_szKey, pszValue, "", szTemp, _MAX_PATH, m_szFile);
  72. if(*szTemp)
  73. psz = szTemp;
  74. return psz;
  75. }
  76. int GetIntValue(const char *pszValue, int nDefault=0)
  77. {
  78. int nValue = nDefault;
  79. char szTemp[_MAX_PATH];
  80. GetPrivateProfileString(m_szKey, pszValue, "", szTemp, _MAX_PATH, m_szFile);
  81. if(*szTemp)
  82. sscanf(szTemp, "%d", &nValue);
  83. return nValue;
  84. }
  85. float GetFloatValue(const char *pszValue, float fDefault=0.0f)
  86. {
  87. float fValue = fDefault;
  88. char szTemp[_MAX_PATH];
  89. GetPrivateProfileString(m_szKey, pszValue, "", szTemp, _MAX_PATH, m_szFile);
  90. if(*szTemp)
  91. sscanf(szTemp, "%f", &fValue);
  92. return fValue;
  93. }
  94. CVector GetVectorValue(const char *pszValue, CVector vDefault=CVector(0.0f))
  95. {
  96. CVector vValue = vDefault;
  97. char szTemp[_MAX_PATH];
  98. GetPrivateProfileString(m_szKey, pszValue, "", szTemp, _MAX_PATH, m_szFile);
  99. if(*szTemp)
  100. sscanf(szTemp, "%f, %f, %f", &vValue.x, &vValue.y, &vValue.z);
  101. return vValue;
  102. }
  103. CVector4 GetVector4Value(const char *pszValue, CVector4 vDefault=CVector4(0.0f))
  104. {
  105. CVector4 vValue = vDefault;
  106. char szTemp[_MAX_PATH];
  107. GetPrivateProfileString(m_szKey, pszValue, "", szTemp, _MAX_PATH, m_szFile);
  108. if(*szTemp)
  109. sscanf(szTemp, "%f, %f, %f, %f", &vValue.x, &vValue.y, &vValue.z, &vValue.w);
  110. return vValue;
  111. }
  112. CColor GetColorValue(const char *pszValue, CColor cDefault=CColor(0, 0, 0, 0))
  113. {
  114. CColor cValue = cDefault;
  115. char szTemp[_MAX_PATH];
  116. GetPrivateProfileString(m_szKey, pszValue, "", szTemp, _MAX_PATH, m_szFile);
  117. if(*szTemp)
  118. {
  119. int r, g, b, a;
  120. sscanf(szTemp, "%d, %d, %d, %d", &r, &g, &b, &a);
  121. cValue = CColor((unsigned char)r, (unsigned char)g, (unsigned char)b, (unsigned char)a);
  122. }
  123. return cValue;
  124. }
  125. };
  126. #endif // __PlanetInfo_h__