2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 Ricardo Quesada
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __CCCONFIGURATION_H__
|
|
|
|
#define __CCCONFIGURATION_H__
|
|
|
|
|
2014-09-10 07:50:02 +08:00
|
|
|
#include <string>
|
|
|
|
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "base/CCRef.h"
|
2014-04-27 01:35:57 +08:00
|
|
|
#include "base/CCValue.h"
|
2014-09-10 07:50:02 +08:00
|
|
|
#include "platform/CCGL.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
/**
|
2015-03-24 18:22:52 +08:00
|
|
|
* @addtogroup base
|
2012-06-20 18:09:11 +08:00
|
|
|
* @{
|
|
|
|
*/
|
2015-03-27 12:01:20 +08:00
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** @class Configuration
|
|
|
|
* @brief Configuration contains some openGL variables
|
|
|
|
* @since v0.99.0
|
2015-03-23 20:27:13 +08:00
|
|
|
* @js NA
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2014-02-20 10:53:49 +08:00
|
|
|
class CC_DLL Configuration : public Ref
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-04-20 11:39:12 +08:00
|
|
|
public:
|
2013-07-25 14:47:12 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Returns a shared instance of Configuration.
|
|
|
|
*
|
|
|
|
* @return An autoreleased Configuration object.
|
|
|
|
*/
|
2013-07-12 06:24:23 +08:00
|
|
|
static Configuration *getInstance();
|
2013-05-23 08:03:00 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Purge the shared instance of Configuration.
|
|
|
|
*/
|
2013-07-12 06:24:23 +08:00
|
|
|
static void destroyInstance();
|
|
|
|
|
|
|
|
/** @deprecated Use getInstance() instead */
|
2013-08-08 16:31:44 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static Configuration *sharedConfiguration();
|
2013-07-12 06:24:23 +08:00
|
|
|
|
|
|
|
/** @deprecated Use destroyInstance() instead */
|
2013-08-08 16:31:44 +08:00
|
|
|
CC_DEPRECATED_ATTRIBUTE static void purgeConfiguration();
|
2013-05-23 08:03:00 +08:00
|
|
|
|
|
|
|
public:
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Destructor
|
2013-09-13 13:52:42 +08:00
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
virtual ~Configuration();
|
2013-05-23 04:00:34 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** OpenGL Max texture size.
|
|
|
|
*
|
|
|
|
* @return The OpenGL Max texture size.
|
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
int getMaxTextureSize() const;
|
2013-05-23 04:00:34 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** OpenGL Max Modelview Stack Depth.
|
|
|
|
*
|
|
|
|
* @return The OpenGL Max Modelview Stack Depth.
|
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
int getMaxModelviewStackDepth() const;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Returns the maximum texture units.
|
|
|
|
*
|
|
|
|
* @return The maximum texture units.
|
|
|
|
* @since v2.0.0
|
2012-04-20 11:39:12 +08:00
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
int getMaxTextureUnits() const;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
/** Whether or not the GPU supports NPOT (Non Power Of Two) textures.
|
2012-04-20 11:39:12 +08:00
|
|
|
OpenGL ES 2.0 already supports NPOT (iOS).
|
2015-03-19 21:32:19 +08:00
|
|
|
*
|
|
|
|
* @return Is true if supports NPOT.
|
|
|
|
* @since v0.99.2
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
bool supportsNPOT() const;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Whether or not PVR Texture Compressed is supported.
|
|
|
|
*
|
|
|
|
* @return Is true if supports PVR Texture Compressed.
|
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
bool supportsPVRTC() const;
|
2013-07-01 17:40:57 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Whether or not ETC Texture Compressed is supported.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return Is true if supports ETC Texture Compressed.
|
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
bool supportsETC() const;
|
2013-07-01 17:40:57 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Whether or not S3TC Texture Compressed is supported.
|
|
|
|
*
|
|
|
|
* @return Is true if supports S3TC Texture Compressed.
|
|
|
|
*/
|
2013-08-16 11:02:44 +08:00
|
|
|
bool supportsS3TC() const;
|
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Whether or not ATITC Texture Compressed is supported.
|
|
|
|
*
|
|
|
|
* @return Is true if supports ATITC Texture Compressed.
|
|
|
|
*/
|
2013-08-16 11:02:44 +08:00
|
|
|
bool supportsATITC() const;
|
2013-08-06 11:19:45 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
/** Whether or not BGRA8888 textures are supported.
|
2015-03-19 21:32:19 +08:00
|
|
|
*
|
|
|
|
* @return Is true if supports BGRA8888 textures.
|
|
|
|
* @since v0.99.2
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
bool supportsBGRA8888() const;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Whether or not glDiscardFramebufferEXT is supported.
|
|
|
|
* @return Is true if supports glDiscardFramebufferEXT.
|
|
|
|
* @since v0.99.2
|
2012-04-19 14:35:52 +08:00
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
bool supportsDiscardFramebuffer() const;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-06-14 05:26:28 +08:00
|
|
|
/** Whether or not shareable VAOs are supported.
|
2015-03-19 21:32:19 +08:00
|
|
|
*
|
|
|
|
* @return Is true if supports shareable VAOs.
|
|
|
|
* @since v2.0.0
|
2012-06-12 01:43:07 +08:00
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
bool supportsShareableVAO() const;
|
2014-09-25 15:29:32 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Max support directional light in shader, for Sprite3D.
|
|
|
|
*
|
|
|
|
* @return Maximum supports directional light in shader.
|
|
|
|
* @since v3.3
|
2014-09-25 15:29:32 +08:00
|
|
|
*/
|
|
|
|
int getMaxSupportDirLightInShader() const;
|
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Max support point light in shader, for Sprite3D.
|
|
|
|
*
|
|
|
|
* @return Maximum supports point light in shader.
|
|
|
|
* @since v3.3
|
2014-09-25 15:29:32 +08:00
|
|
|
*/
|
|
|
|
int getMaxSupportPointLightInShader() const;
|
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Max support spot light in shader, for Sprite3D.
|
|
|
|
*
|
|
|
|
* @return Maximum supports spot light in shader.
|
|
|
|
* @since v3.3
|
2014-09-25 15:29:32 +08:00
|
|
|
*/
|
|
|
|
int getMaxSupportSpotLightInShader() const;
|
2012-06-12 01:43:07 +08:00
|
|
|
|
2015-04-01 16:40:40 +08:00
|
|
|
/** is 3d animate quality? Configure it in the config.plist, the key is cocos2d.x.3d.animate_high_quality, it is true by default.
|
|
|
|
* Animation quality of created Animate3D is based on the return value. However, animation quality of Animate3D can be modified by calling setHighQuality after it is created.
|
2015-03-30 15:57:58 +08:00
|
|
|
* @return true: is high quality, false: is low quality
|
2015-03-30 14:05:03 +08:00
|
|
|
*/
|
2015-04-01 16:40:40 +08:00
|
|
|
bool isHighAnimate3DQuality() const;
|
2015-03-26 11:30:22 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Returns whether or not an OpenGL is supported.
|
|
|
|
*
|
|
|
|
* @param searchName A given search name.
|
|
|
|
* @return Is true if an OpenGL is supported.
|
|
|
|
*/
|
2013-05-23 04:00:34 +08:00
|
|
|
bool checkForGLExtension(const std::string &searchName) const;
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Initialize method.
|
|
|
|
*
|
|
|
|
* @return Is true if initialize success.
|
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
bool init();
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Returns the value of a given key as a double.
|
|
|
|
*
|
|
|
|
* @param key A given key.
|
|
|
|
* @param defaultValue if not find the value, return the defaultValue.
|
|
|
|
* @return
|
|
|
|
*/
|
2013-12-11 14:59:46 +08:00
|
|
|
const Value& getValue(const std::string& key, const Value& defaultValue = Value::Null) const;
|
2013-05-23 04:00:34 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Sets a new key/value pair in the configuration dictionary.
|
|
|
|
*
|
|
|
|
* @param key A given key.
|
|
|
|
* @param value A given value.
|
|
|
|
*/
|
2013-12-11 14:39:21 +08:00
|
|
|
void setValue(const std::string& key, const Value& value);
|
2013-06-04 04:49:06 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Returns the Configuration info.
|
|
|
|
*
|
|
|
|
* @return The Configuration info.
|
|
|
|
*/
|
2014-01-15 09:22:45 +08:00
|
|
|
std::string getInfo() const;
|
2013-05-23 04:00:34 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Gathers OpenGL / GPU information.
|
|
|
|
*/
|
2013-08-08 16:31:44 +08:00
|
|
|
void gatherGPUInfo();
|
2013-05-23 04:00:34 +08:00
|
|
|
|
2015-03-19 21:32:19 +08:00
|
|
|
/** Loads a config file. If the keys are already present, then they are going to be replaced. Otherwise the new keys are added.
|
|
|
|
*
|
|
|
|
* @param filename Config file name.
|
|
|
|
*/
|
2013-12-24 10:51:47 +08:00
|
|
|
void loadConfigFile(const std::string& filename);
|
2013-05-23 08:03:00 +08:00
|
|
|
|
2012-04-20 11:39:12 +08:00
|
|
|
private:
|
2013-06-20 14:13:12 +08:00
|
|
|
Configuration(void);
|
2013-08-08 16:31:44 +08:00
|
|
|
static Configuration *s_sharedConfiguration;
|
|
|
|
static std::string s_configfile;
|
2012-04-20 11:39:12 +08:00
|
|
|
|
|
|
|
protected:
|
2013-06-15 14:03:30 +08:00
|
|
|
GLint _maxTextureSize;
|
|
|
|
GLint _maxModelviewStackDepth;
|
|
|
|
bool _supportsPVRTC;
|
2013-09-24 08:03:28 +08:00
|
|
|
bool _supportsETC1;
|
2013-08-06 11:19:45 +08:00
|
|
|
bool _supportsS3TC;
|
2013-08-16 11:02:44 +08:00
|
|
|
bool _supportsATITC;
|
2013-06-15 14:03:30 +08:00
|
|
|
bool _supportsNPOT;
|
|
|
|
bool _supportsBGRA8888;
|
|
|
|
bool _supportsDiscardFramebuffer;
|
|
|
|
bool _supportsShareableVAO;
|
|
|
|
GLint _maxSamplesAllowed;
|
|
|
|
GLint _maxTextureUnits;
|
|
|
|
char * _glExtensions;
|
2014-09-25 15:29:32 +08:00
|
|
|
int _maxDirLightInShader; //max support directional light in shader
|
|
|
|
int _maxPointLightInShader; // max support point light in shader
|
|
|
|
int _maxSpotLightInShader; // max support spot light in shader
|
2015-03-30 17:46:45 +08:00
|
|
|
bool _isAnimate3DHighQuality; // animation 3d quality, true: is high quality, false: is low quality
|
2013-06-04 04:49:06 +08:00
|
|
|
|
2013-12-11 14:39:21 +08:00
|
|
|
ValueMap _valueDict;
|
2012-04-19 14:35:52 +08:00
|
|
|
};
|
|
|
|
|
2012-06-20 18:09:11 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|
2015-03-27 12:01:20 +08:00
|
|
|
// end of base group
|
|
|
|
/// @}
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
#endif // __CCCONFIGURATION_H__
|