/**************************************************************************** Copyright (c) 2008-2010 Ricardo Quesada Copyright (c) 2011-2012 cocos2d-x.org Copyright (c) 2013-2014 Chukong Technologies Inc. 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. ****************************************************************************/ /** * cc.configuration is a singleton object which contains some openGL variables * @class * @name cc.configuration * @example * var textureSize = cc.configuration.getMaxTextureSize(); */ cc.configuration = /** @lends cc.configuration# */{ // Type constants /* * ERROR type * @public * @const * @type {Number} */ ERROR:0, /* * STRING type * @public * @const * @type {Number} */ STRING:1, /* * INT type * @public * @const * @type {Number} */ INT:2, /* * DOUBLE type * @public * @const * @type {Number} */ DOUBLE:3, /* * BOOLEAN type * @public * @const * @type {Number} */ BOOLEAN:4, _maxTextureSize:0, _maxModelviewStackDepth:0, _supportsPVRTC:false, _supportsNPOT:false, _supportsBGRA8888:false, _supportsDiscardFramebuffer:false, _supportsShareableVAO:false, _maxSamplesAllowed:0, _maxTextureUnits:0, _GlExtensions:"", _valueDict:{}, _inited: false, _init:function () { var locValueDict = this._valueDict; locValueDict["cocos2d.x.version"] = cc.ENGINE_VERSION; locValueDict["cocos2d.x.compiled_with_profiler"] = false; locValueDict["cocos2d.x.compiled_with_gl_state_cache"] = cc.ENABLE_GL_STATE_CACHE; this._inited = true; }, /** * OpenGL Max texture size. * @return {Number} */ getMaxTextureSize:function () { return this._maxTextureSize; }, /** * OpenGL Max Modelview Stack Depth. * @return {Number} */ getMaxModelviewStackDepth:function () { return this._maxModelviewStackDepth; }, /** * returns the maximum texture units * @return {Number} */ getMaxTextureUnits:function () { return this._maxTextureUnits; }, /** * Whether or not the GPU supports NPOT (Non Power Of Two) textures. * OpenGL ES 2.0 already supports NPOT (iOS). * @return {Boolean} */ supportsNPOT:function () { return this._supportsNPOT; }, /** * Whether or not PVR Texture Compressed is supported * @return {Boolean} */ supportsPVRTC: function () { return this._supportsPVRTC; }, /** * Whether or not ETC Texture Compressed is supported * @return {Boolean} */ supportsETC: function() { return false; }, /** * Whether or not S3TC Texture Compressed is supported * @return {Boolean} */ supportsS3TC: function() { return false; }, /** * Whether or not ATITC Texture Compressed is supported * @return {Boolean} */ supportsATITC: function() { return false; }, /** * Whether or not BGRA8888 textures are supported. * @return {Boolean} */ supportsBGRA8888:function () { return this._supportsBGRA8888; }, /** * Whether or not glDiscardFramebufferEXT is supported * @return {Boolean} */ supportsDiscardFramebuffer:function () { return this._supportsDiscardFramebuffer; }, /** * Whether or not shareable VAOs are supported. * @return {Boolean} */ supportsShareableVAO:function () { return this._supportsShareableVAO; }, /** * returns whether or not an OpenGL is supported * @param {String} searchName */ checkForGLExtension:function (searchName) { return this._GlExtensions.indexOf(searchName) > -1; }, /** * Returns the value of a given key. If the key is not found, it will return the default value * @param {String} key * @param {String|Bool|Number|Object} [default_value=null] * @returns {String|Bool|Number|Object} */ getValue: function(key, default_value){ if(!this._inited) this._init(); var locValueDict = this._valueDict; if(locValueDict[key]) return locValueDict[key]; return default_value; }, /** * Sets a new key/value pair in the configuration dictionary * @param {string} key * @param {String|Bool|Number|Object} value */ setValue: function(key, value){ this._valueDict[key] = value; }, /** * Dumps the current configuration on the console */ dumpInfo: function(){ if(cc.ENABLE_GL_STATE_CACHE === 0){ cc.log(""); cc.log(cc._LogInfos.configuration_dumpInfo); cc.log("") } }, /** * gathers OpenGL / GPU information */ gatherGPUInfo: function(){ if(cc._renderType === cc._RENDER_TYPE_CANVAS) return; if(!this._inited) this._init(); var gl = cc._renderContext; var locValueDict = this._valueDict; locValueDict["gl.vendor"] = gl.getParameter(gl.VENDOR); locValueDict["gl.renderer"] = gl.getParameter(gl.RENDERER); locValueDict["gl.version"] = gl.getParameter(gl.VERSION); this._GlExtensions = ""; var extArr = gl.getSupportedExtensions(); for (var i = 0; i < extArr.length; i++) this._GlExtensions += extArr[i] + " "; this._maxTextureSize = gl.getParameter(gl.MAX_TEXTURE_SIZE); locValueDict["gl.max_texture_size"] = this._maxTextureSize; this._maxTextureUnits = gl.getParameter(gl.MAX_COMBINED_TEXTURE_IMAGE_UNITS); locValueDict["gl.max_texture_units"] = this._maxTextureUnits; this._supportsPVRTC = this.checkForGLExtension("GL_IMG_texture_compression_pvrtc"); locValueDict["gl.supports_PVRTC"] = this._supportsPVRTC; this._supportsNPOT = false; //true; locValueDict["gl.supports_NPOT"] = this._supportsNPOT; this._supportsBGRA8888 = this.checkForGLExtension("GL_IMG_texture_format_BGRA888"); locValueDict["gl.supports_BGRA8888"] = this._supportsBGRA8888; this._supportsDiscardFramebuffer = this.checkForGLExtension("GL_EXT_discard_framebuffer"); locValueDict["gl.supports_discard_framebuffer"] = this._supportsDiscardFramebuffer; this._supportsShareableVAO = this.checkForGLExtension("vertex_array_object"); locValueDict["gl.supports_vertex_array_object"] = this._supportsShareableVAO; cc.checkGLErrorDebug(); }, /** * Loads a config file. If the keys are already present, then they are going to be replaced. Otherwise the new keys are added. * @param {string} url */ loadConfigFile: function( url){ if(!this._inited) this._init(); var dict = cc.loader.getRes(url); if(!dict) throw "Please load the resource first : " + url; cc.assert(dict, cc._LogInfos.configuration_loadConfigFile_2, url); var getDatas = dict["data"]; if(!getDatas){ cc.log(cc._LogInfos.configuration_loadConfigFile, url); return; } // Add all keys in the existing dictionary for(var selKey in getDatas) this._valueDict[selKey] = getDatas[selKey]; } };