no message
This commit is contained in:
145
cocos/core/platform/Debug.cpp
Normal file
145
cocos/core/platform/Debug.cpp
Normal file
@@ -0,0 +1,145 @@
|
||||
/****************************************************************************
|
||||
Copyright (c) 2021-2023 Xiamen Yaji Software Co., Ltd.
|
||||
|
||||
http =//www.cocos.com
|
||||
|
||||
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.
|
||||
****************************************************************************/
|
||||
|
||||
#include "Debug.h"
|
||||
|
||||
namespace cc {
|
||||
namespace debug {
|
||||
const ccstd::string CONSOLE_LOG = "log";
|
||||
const ccstd::string CONSOLE_WARN = "warn";
|
||||
const ccstd::string CONSOLE_ERROR = "error";
|
||||
const ccstd::string CONSOLE_ASSET = "assert";
|
||||
|
||||
const ccstd::string &getPrefixTag(DebugMode mode) {
|
||||
switch (mode) {
|
||||
case DebugMode::VERBOSE:
|
||||
return CONSOLE_LOG;
|
||||
case DebugMode::WARN:
|
||||
return CONSOLE_WARN;
|
||||
case DebugMode::ERROR_MODE:
|
||||
return CONSOLE_ERROR;
|
||||
default:
|
||||
return CONSOLE_ASSET;
|
||||
}
|
||||
}
|
||||
|
||||
LogLevel getLogLevel(DebugMode mode) {
|
||||
switch (mode) {
|
||||
case DebugMode::VERBOSE:
|
||||
return LogLevel::LEVEL_DEBUG;
|
||||
case DebugMode::WARN:
|
||||
return LogLevel::WARN;
|
||||
case DebugMode::ERROR_MODE:
|
||||
return LogLevel::ERR;
|
||||
default:
|
||||
return LogLevel::FATAL;
|
||||
}
|
||||
}
|
||||
|
||||
ccstd::string getTypedFormatter(DebugMode mode, uint32_t id) {
|
||||
const ccstd::string &tag = getPrefixTag(mode);
|
||||
ccstd::string msg;
|
||||
#if CC_DEBUG > 0
|
||||
if (debugInfos.find(id) == debugInfos.end()) {
|
||||
msg = "unknown id";
|
||||
} else {
|
||||
msg = debugInfos[id];
|
||||
}
|
||||
#else
|
||||
char szTmp[1024] = {0};
|
||||
snprintf(szTmp, sizeof(szTmp), "%s %d, please go to %s#%d to see details.", tag.c_str(), id, ERROR_MAP_URL.c_str(), id);
|
||||
msg = szTmp;
|
||||
#endif
|
||||
|
||||
return msg;
|
||||
}
|
||||
|
||||
void printLog(DebugMode mode, const ccstd::string &fmt, ccstd::any *arr, int paramsLength) {
|
||||
ccstd::string msg = fmt;
|
||||
const ccstd::string &prefix = getPrefixTag(mode);
|
||||
LogLevel logLevel = getLogLevel(mode);
|
||||
|
||||
size_t pos;
|
||||
for (int i = 1; i <= paramsLength; i++) {
|
||||
pos = msg.find('%');
|
||||
bool needToReplace = false;
|
||||
if (pos != ccstd::string::npos && pos != (msg.length() - 1) && (msg[pos + 1] == 'd' || msg[pos + 1] == 's' || msg[pos + 1] == 'f')) {
|
||||
needToReplace = true;
|
||||
}
|
||||
const auto &elemTypeId = arr[i].type();
|
||||
if (elemTypeId == typeid(const ccstd::string)) {
|
||||
const auto s = ccstd::any_cast<const ccstd::string>(arr[i]);
|
||||
if (needToReplace) {
|
||||
msg.replace(pos, 2, s);
|
||||
} else {
|
||||
msg += " " + s;
|
||||
}
|
||||
} else if (elemTypeId == typeid(ccstd::string)) {
|
||||
auto s = ccstd::any_cast<ccstd::string>(arr[i]);
|
||||
if (needToReplace) {
|
||||
msg.replace(pos, 2, s);
|
||||
} else {
|
||||
msg += " " + s;
|
||||
}
|
||||
} else if (elemTypeId == typeid(int)) {
|
||||
int value = ccstd::any_cast<int>(arr[i]);
|
||||
if (needToReplace) {
|
||||
msg.replace(pos, 2, std::to_string(value));
|
||||
} else {
|
||||
msg += " " + std::to_string(value);
|
||||
}
|
||||
} else if (elemTypeId == typeid(unsigned int)) {
|
||||
auto value = ccstd::any_cast<unsigned int>(arr[i]);
|
||||
if (needToReplace) {
|
||||
msg.replace(pos, 2, std::to_string(value));
|
||||
} else {
|
||||
msg += " " + std::to_string(value);
|
||||
}
|
||||
|
||||
} else if (elemTypeId == typeid(float)) {
|
||||
auto value = ccstd::any_cast<float>(arr[i]);
|
||||
if (needToReplace) {
|
||||
msg.replace(pos, 2, std::to_string(value));
|
||||
} else {
|
||||
msg += " " + std::to_string(value);
|
||||
}
|
||||
} else if (elemTypeId == typeid(const char *)) {
|
||||
ccstd::string s = ccstd::any_cast<const char *>(arr[i]);
|
||||
if (needToReplace) {
|
||||
msg.replace(pos, 2, s);
|
||||
} else {
|
||||
msg += " " + s;
|
||||
}
|
||||
} else {
|
||||
CC_LOG_ERROR("DebugInfos: unsupport params data type: '%s'", elemTypeId.name());
|
||||
CC_LOG_ERROR(" fmt: \"%s\", parameter index: %d", fmt.c_str(), i);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
cc::Log::logMessage(cc::LogType::KERNEL, logLevel, "%s %s", prefix.c_str(), msg.c_str());
|
||||
}
|
||||
|
||||
} // namespace debug
|
||||
} // namespace cc
|
||||
226
cocos/core/platform/Debug.h
Normal file
226
cocos/core/platform/Debug.h
Normal file
@@ -0,0 +1,226 @@
|
||||
/****************************************************************************
|
||||
Copyright (c) 2021-2023 Xiamen Yaji Software Co., Ltd.
|
||||
|
||||
http =//www.cocos.com
|
||||
|
||||
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.
|
||||
****************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "base/Log.h"
|
||||
#include "base/std/any.h"
|
||||
#include "base/std/container/string.h"
|
||||
#include "core/builtin/DebugInfos.h"
|
||||
|
||||
namespace cc {
|
||||
namespace debug {
|
||||
|
||||
const ccstd::string ERROR_MAP_URL{"https://github.com/cocos-creator/engine/blob/3d/EngineErrorMap.md"};
|
||||
|
||||
enum class DebugMode {
|
||||
|
||||
/**
|
||||
* @en The debug mode none.
|
||||
* @zh 禁止模式,禁止显示任何日志消息。
|
||||
*/
|
||||
NONE = 0,
|
||||
|
||||
/**
|
||||
* @en The debug mode none.
|
||||
* @zh 调试模式,显示所有日志消息。
|
||||
*/
|
||||
VERBOSE = 1,
|
||||
|
||||
/**
|
||||
* @en Information mode, which display messages with level higher than "information" level.
|
||||
* @zh 信息模式,显示“信息”级别以上的日志消息。
|
||||
*/
|
||||
INFO = 2,
|
||||
|
||||
/**
|
||||
* @en Information mode, which display messages with level higher than "warning" level.
|
||||
* @zh 警告模式,显示“警告”级别以上的日志消息。
|
||||
*/
|
||||
WARN = 3,
|
||||
|
||||
/**
|
||||
* @en Information mode, which display only messages with "error" level.
|
||||
* @zh 错误模式,仅显示“错误”级别的日志消息。
|
||||
*/
|
||||
ERROR_MODE = 4, // ERROR has been defined by MACRO
|
||||
|
||||
/**
|
||||
* @en The debug mode info for web page.
|
||||
* @zh 信息模式(仅 WEB 端有效),在画面上输出所有信息。
|
||||
*/
|
||||
INFO_FOR_WEB_PAGE = 5,
|
||||
|
||||
/**
|
||||
* @en The debug mode warn for web page.
|
||||
* @zh 警告模式(仅 WEB 端有效),在画面上输出 warn 级别以上的(包含 error)信息。
|
||||
*/
|
||||
WARN_FOR_WEB_PAGE = 6,
|
||||
|
||||
/**
|
||||
* @en The debug mode error for web page.
|
||||
* @zh 错误模式(仅 WEB 端有效),在画面上输出 error 信息。
|
||||
*/
|
||||
ERROR_FOR_WEB_PAGE = 7,
|
||||
};
|
||||
|
||||
/**
|
||||
* @en Outputs a message to the Cocos Creator Console (editor) or Web Console (runtime).
|
||||
* @zh 输出一条消息到 Cocos Creator 编辑器的 Console 或运行时 Web 端的 Console 中。
|
||||
* @param message - A JavaScript string containing zero or more substitution strings.
|
||||
* @param optionalParams - JavaScript objects with which to replace substitution strings within msg.
|
||||
* This gives you additional control over the format of the output.
|
||||
*/
|
||||
|
||||
template <typename... Args>
|
||||
void log(ccstd::any message, Args... optionalParams);
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Outputs a warning message to the Cocos Creator Console (editor) or Web Console (runtime).
|
||||
* - In Cocos Creator, warning is yellow.
|
||||
* - In Chrome, warning have a yellow warning icon with the message text.
|
||||
* @zh
|
||||
* 输出警告消息到 Cocos Creator 编辑器的 Console 或运行时 Web 端的 Console 中。<br/>
|
||||
* - 在 Cocos Creator 中,警告信息显示是黄色的。<br/>
|
||||
* - 在 Chrome 中,警告信息有着黄色的图标以及黄色的消息文本。<br/>
|
||||
* @param message - A JavaScript string containing zero or more substitution strings.
|
||||
* @param optionalParams - JavaScript objects with which to replace substitution strings within msg.
|
||||
* This gives you additional control over the format of the output.
|
||||
*/
|
||||
template <typename... Args>
|
||||
void warn(ccstd::any message, Args... optionalParams);
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Outputs an error message to the Cocos Creator Console (editor) or Web Console (runtime).<br/>
|
||||
* - In Cocos Creator, error is red.<br/>
|
||||
* - In Chrome, error have a red icon along with red message text.<br/>
|
||||
* @zh
|
||||
* 输出错误消息到 Cocos Creator 编辑器的 Console 或运行时页面端的 Console 中。<br/>
|
||||
* - 在 Cocos Creator 中,错误信息显示是红色的。<br/>
|
||||
* - 在 Chrome 中,错误信息有红色的图标以及红色的消息文本。<br/>
|
||||
* @param message - A JavaScript string containing zero or more substitution strings.
|
||||
* @param optionalParams - JavaScript objects with which to replace substitution strings within msg.
|
||||
* This gives you additional control over the format of the output.
|
||||
*/
|
||||
template <typename... Args>
|
||||
void error(ccstd::any message, Args... optionalParams);
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Assert the condition and output error messages if the condition is not true.
|
||||
* @zh
|
||||
* 对检查测试条件进行检查,如果条件不为 true 则输出错误消息
|
||||
* @param value - The condition to check on
|
||||
* @param message - A JavaScript string containing zero or more substitution strings.
|
||||
* @param optionalParams - JavaScript objects with which to replace substitution strings within msg.
|
||||
* This gives you additional control over the format of the output.
|
||||
*/
|
||||
|
||||
template <typename... Args>
|
||||
void _assert(ccstd::any value, ccstd::string message, Args... optionalParams); // NOLINT //assert is a reserved word
|
||||
|
||||
/**
|
||||
* @en Outputs a message at the "debug" log level.
|
||||
* @zh 输出一条“调试”日志等级的消息。
|
||||
*/
|
||||
template <typename... Args>
|
||||
void debug(Args... data);
|
||||
|
||||
void resetDebugSetting(DebugMode mode);
|
||||
|
||||
/**
|
||||
* @en Gets error message with the error id and possible parameters.
|
||||
* @zh 通过 error id 和必要的参数来获取错误信息。
|
||||
*/
|
||||
template <typename... Args>
|
||||
ccstd::string getError(uint32_t errorId, Args... param);
|
||||
|
||||
/**
|
||||
* @en Returns whether or not to display the FPS and debug information.
|
||||
* @zh 是否显示 FPS 信息和部分调试信息。
|
||||
*/
|
||||
bool isDisplayStats();
|
||||
|
||||
/**
|
||||
* @en Sets whether display the FPS and debug informations on the bottom-left corner.
|
||||
* @zh 设置是否在左下角显示 FPS 和部分调试。
|
||||
*/
|
||||
|
||||
void setDisplayStats(bool displayStats);
|
||||
|
||||
ccstd::string getTypedFormatter(DebugMode mode, uint32_t id);
|
||||
|
||||
const ccstd::string &getPrefixTag(DebugMode mode);
|
||||
|
||||
LogLevel getLogLevel(DebugMode mode);
|
||||
|
||||
template <typename T>
|
||||
T unpackParams(T value) {
|
||||
return value;
|
||||
}
|
||||
|
||||
void printLog(DebugMode mode, const ccstd::string &fmt, ccstd::any *arr, int paramsLength);
|
||||
|
||||
template <typename... Args>
|
||||
void logID(uint32_t id, Args... optionalParams) {
|
||||
ccstd::string msg = getTypedFormatter(DebugMode::VERBOSE, id);
|
||||
int size = sizeof...(optionalParams);
|
||||
ccstd::any arr[] = {0, unpackParams(optionalParams)...};
|
||||
printLog(DebugMode::VERBOSE, msg, arr, size);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void warnID(uint32_t id, Args... optionalParams) {
|
||||
ccstd::string msg = getTypedFormatter(DebugMode::WARN, id);
|
||||
int size = sizeof...(optionalParams);
|
||||
ccstd::any arr[] = {0, unpackParams(optionalParams)...};
|
||||
printLog(DebugMode::WARN, msg, arr, size);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void errorID(uint32_t id, Args... optionalParams) {
|
||||
ccstd::string msg = getTypedFormatter(DebugMode::ERROR_MODE, id);
|
||||
int size = sizeof...(optionalParams);
|
||||
ccstd::any arr[] = {0, unpackParams(optionalParams)...};
|
||||
printLog(DebugMode::ERROR_MODE, msg, arr, size);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
void assertID(bool condition, uint32_t id, Args... optionalParams) {
|
||||
if (condition) {
|
||||
return;
|
||||
}
|
||||
ccstd::string msg = getTypedFormatter(DebugMode::INFO, id);
|
||||
int size = sizeof...(optionalParams);
|
||||
ccstd::any arr[] = {0, unpackParams(optionalParams)...};
|
||||
printLog(DebugMode::INFO, msg, arr, size);
|
||||
CC_ABORT();
|
||||
}
|
||||
|
||||
void _throw(); // NOLINT // throw is a reserved word
|
||||
} // namespace debug
|
||||
|
||||
} // namespace cc
|
||||
34
cocos/core/platform/Macro.cpp
Normal file
34
cocos/core/platform/Macro.cpp
Normal file
@@ -0,0 +1,34 @@
|
||||
/****************************************************************************
|
||||
Copyright (c) 2021-2023 Xiamen Yaji Software Co., Ltd.
|
||||
|
||||
http =//www.cocos.com
|
||||
|
||||
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.
|
||||
****************************************************************************/
|
||||
|
||||
#include "core/platform/Macro.h"
|
||||
|
||||
namespace cc {
|
||||
|
||||
namespace macro {
|
||||
const ccstd::vector<ccstd::string> SUPPORT_TEXTURE_FORMATS = {
|
||||
".astc", ".pkm", ".pvr", ".webp", ".jpg", ".jpeg", ".bmp", ".png"};
|
||||
|
||||
}
|
||||
} // namespace cc
|
||||
898
cocos/core/platform/Macro.h
Normal file
898
cocos/core/platform/Macro.h
Normal file
@@ -0,0 +1,898 @@
|
||||
/****************************************************************************
|
||||
Copyright (c) 2021-2023 Xiamen Yaji Software Co., Ltd.
|
||||
|
||||
http://www.cocos.com
|
||||
|
||||
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.
|
||||
****************************************************************************/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "base/std/container/string.h"
|
||||
#include "base/std/container/vector.h"
|
||||
#include "math/Math.h"
|
||||
|
||||
namespace cc {
|
||||
namespace macro {
|
||||
/**
|
||||
* @en
|
||||
* The image format supported by the engine defaults, and the supported formats may differ in different build platforms and device types.
|
||||
* Currently all platform and device support ['.webp', '.jpg', '.jpeg', '.bmp', '.png'], ios mobile platform
|
||||
* @zh
|
||||
* 引擎默认支持的图片格式,支持的格式可能在不同的构建平台和设备类型上有所差别。
|
||||
* 目前所有平台和设备支持的格式有 ['.webp', '.jpg', '.jpeg', '.bmp', '.png']. The iOS mobile platform also supports the PVR format。
|
||||
*/
|
||||
extern const ccstd::vector<ccstd::string> SUPPORT_TEXTURE_FORMATS;
|
||||
/**
|
||||
* @en Key map for keyboard event
|
||||
* @zh 键盘事件的按键值。
|
||||
* @example {@link cocos/core/platform/CCCommon/KEY.js}
|
||||
* @deprecated since v3.3 please use KeyCode instead
|
||||
*/
|
||||
enum class KEY {
|
||||
/**
|
||||
* @en None
|
||||
* @zh 没有分配
|
||||
* @readonly
|
||||
*/
|
||||
NONE = 0,
|
||||
|
||||
// android
|
||||
/**
|
||||
* @en The back key on mobile phone
|
||||
* @zh 移动端返回键
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
BACK = 6,
|
||||
/**
|
||||
* @en The menu key on mobile phone
|
||||
* @zh 移动端菜单键
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
MENU = 18,
|
||||
|
||||
/**
|
||||
* @en The backspace key
|
||||
* @zh 退格键
|
||||
* @readonly
|
||||
*/
|
||||
BACKSPACE = 8,
|
||||
|
||||
/**
|
||||
* @en The tab key
|
||||
* @zh Tab 键
|
||||
* @readonly
|
||||
*/
|
||||
TAB = 9,
|
||||
|
||||
/**
|
||||
* @en The enter key
|
||||
* @zh 回车键
|
||||
* @readonly
|
||||
*/
|
||||
ENTER = 13,
|
||||
|
||||
/**
|
||||
* @en The shift key
|
||||
* @zh Shift 键
|
||||
* @readonly
|
||||
* @deprecated since v3.3, please use KeyCode.SHIFT_LEFT instead.
|
||||
*/
|
||||
SHIFT = 16, // should use shiftkey instead
|
||||
|
||||
/**
|
||||
* @en The ctrl key
|
||||
* @zh Ctrl 键
|
||||
* @readonly
|
||||
* @deprecated since v3.3, please use KeyCode.CTRL_LEFT instead.
|
||||
*/
|
||||
CTRL = 17, // should use ctrlkey
|
||||
|
||||
/**
|
||||
* @en The alt key
|
||||
* @zh Alt 键
|
||||
* @readonly
|
||||
* @deprecated since v3.3, please use KeyCode.ALT_LEFT instead.
|
||||
*/
|
||||
ALT = 18, // should use altkey
|
||||
|
||||
/**
|
||||
* @en The pause key
|
||||
* @zh 暂停键
|
||||
* @readonly
|
||||
*/
|
||||
PAUSE = 19,
|
||||
|
||||
/**
|
||||
* @en The caps lock key
|
||||
* @zh 大写锁定键
|
||||
* @readonly
|
||||
*/
|
||||
CAPSLOCK = 20,
|
||||
|
||||
/**
|
||||
* @en The esc key
|
||||
* @zh ESC 键
|
||||
* @readonly
|
||||
*/
|
||||
ESCAPE = 27,
|
||||
|
||||
/**
|
||||
* @en The space key
|
||||
* @zh 空格键
|
||||
* @readonly
|
||||
*/
|
||||
SPACE = 32,
|
||||
|
||||
/**
|
||||
* @en The page up key
|
||||
* @zh 向上翻页键
|
||||
* @readonly
|
||||
*/
|
||||
PAGEUP = 33,
|
||||
|
||||
/**
|
||||
* @en The page down key
|
||||
* @zh 向下翻页键
|
||||
* @readonly
|
||||
*/
|
||||
PAGEDOWN = 34,
|
||||
|
||||
/**
|
||||
* @en The end key
|
||||
* @zh 结束键
|
||||
* @readonly
|
||||
*/
|
||||
END = 35,
|
||||
|
||||
/**
|
||||
* @en The home key
|
||||
* @zh 主菜单键
|
||||
* @readonly
|
||||
*/
|
||||
HOME = 36,
|
||||
|
||||
/**
|
||||
* @en The left key
|
||||
* @zh 向左箭头键
|
||||
* @readonly
|
||||
*/
|
||||
LEFT = 37,
|
||||
|
||||
/**
|
||||
* @en The up key
|
||||
* @zh 向上箭头键
|
||||
* @readonly
|
||||
*/
|
||||
UP = 38,
|
||||
|
||||
/**
|
||||
* @en The right key
|
||||
* @zh 向右箭头键
|
||||
* @readonly
|
||||
*/
|
||||
RIGHT = 39,
|
||||
|
||||
/**
|
||||
* @en The down key
|
||||
* @zh 向下箭头键
|
||||
* @readonly
|
||||
*/
|
||||
DOWN = 40,
|
||||
|
||||
/**
|
||||
* @en The select key
|
||||
* @zh Select 键
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
SELECT = 41,
|
||||
|
||||
/**
|
||||
* @en The insert key
|
||||
* @zh 插入键
|
||||
* @readonly
|
||||
*/
|
||||
INSERT = 45,
|
||||
|
||||
/**
|
||||
* @en The Delete key
|
||||
* @zh 删除键
|
||||
* @readonly
|
||||
* DELETE may be used as platform's macro, such as winnt.h,thus use DELETE_ instead here.
|
||||
*/
|
||||
DELETE_ = 46, // NOLINT(readability-identifier-naming)
|
||||
|
||||
/**
|
||||
* @en The a key
|
||||
* @zh A 键
|
||||
* @readonly
|
||||
*/
|
||||
A = 65,
|
||||
|
||||
/**
|
||||
* @en The b key
|
||||
* @zh B 键
|
||||
* @readonly
|
||||
*/
|
||||
B = 66,
|
||||
|
||||
/**
|
||||
* @en The c key
|
||||
* @zh C 键
|
||||
* @readonly
|
||||
*/
|
||||
C = 67,
|
||||
|
||||
/**
|
||||
* @en The d key
|
||||
* @zh D 键
|
||||
* @readonly
|
||||
*/
|
||||
D = 68,
|
||||
|
||||
/**
|
||||
* @en The e key
|
||||
* @zh E 键
|
||||
* @readonly
|
||||
*/
|
||||
E = 69,
|
||||
|
||||
/**
|
||||
* @en The f key
|
||||
* @zh F 键
|
||||
* @readonly
|
||||
*/
|
||||
F = 70,
|
||||
|
||||
/**
|
||||
* @en The g key
|
||||
* @zh G 键
|
||||
* @readonly
|
||||
*/
|
||||
G = 71,
|
||||
|
||||
/**
|
||||
* @en The h key
|
||||
* @zh H 键
|
||||
* @readonly
|
||||
*/
|
||||
H = 72,
|
||||
|
||||
/**
|
||||
* @en The i key
|
||||
* @zh I 键
|
||||
* @readonly
|
||||
*/
|
||||
I = 73,
|
||||
|
||||
/**
|
||||
* @en The j key
|
||||
* @zh J 键
|
||||
* @readonly
|
||||
*/
|
||||
J = 74,
|
||||
|
||||
/**
|
||||
* @en The k key
|
||||
* @zh K 键
|
||||
* @readonly
|
||||
*/
|
||||
K = 75,
|
||||
|
||||
/**
|
||||
* @en The l key
|
||||
* @zh L 键
|
||||
* @readonly
|
||||
*/
|
||||
L = 76,
|
||||
|
||||
/**
|
||||
* @en The m key
|
||||
* @zh M 键
|
||||
* @readonly
|
||||
*/
|
||||
M = 77,
|
||||
|
||||
/**
|
||||
* @en The n key
|
||||
* @zh N 键
|
||||
* @readonly
|
||||
*/
|
||||
N = 78,
|
||||
|
||||
/**
|
||||
* @en The o key
|
||||
* @zh O 键
|
||||
* @readonly
|
||||
*/
|
||||
O = 79,
|
||||
|
||||
/**
|
||||
* @en The p key
|
||||
* @zh P 键
|
||||
* @readonly
|
||||
*/
|
||||
P = 80,
|
||||
|
||||
/**
|
||||
* @en The q key
|
||||
* @zh Q 键
|
||||
* @readonly
|
||||
*/
|
||||
Q = 81,
|
||||
|
||||
/**
|
||||
* @en The r key
|
||||
* @zh R 键
|
||||
* @readonly
|
||||
*/
|
||||
R = 82,
|
||||
|
||||
/**
|
||||
* @en The s key
|
||||
* @zh S 键
|
||||
* @readonly
|
||||
*/
|
||||
S = 83,
|
||||
|
||||
/**
|
||||
* @en The t key
|
||||
* @zh T 键
|
||||
* @readonly
|
||||
*/
|
||||
T = 84,
|
||||
|
||||
/**
|
||||
* @en The u key
|
||||
* @zh U 键
|
||||
* @readonly
|
||||
*/
|
||||
U = 85,
|
||||
|
||||
/**
|
||||
* @en The v key
|
||||
* @zh V 键
|
||||
* @readonly
|
||||
*/
|
||||
V = 86,
|
||||
|
||||
/**
|
||||
* @en The w key
|
||||
* @zh W 键
|
||||
* @readonly
|
||||
*/
|
||||
W = 87,
|
||||
|
||||
/**
|
||||
* @en The x key
|
||||
* @zh X 键
|
||||
* @readonly
|
||||
*/
|
||||
X = 88,
|
||||
|
||||
/**
|
||||
* @en The y key
|
||||
* @zh Y 键
|
||||
* @readonly
|
||||
*/
|
||||
Y = 89,
|
||||
|
||||
/**
|
||||
* @en The z key
|
||||
* @zh Z 键
|
||||
* @readonly
|
||||
*/
|
||||
Z = 90,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 0
|
||||
* @zh 数字键盘 0
|
||||
* @readonly
|
||||
*/
|
||||
NUM0 = 96,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 1
|
||||
* @zh 数字键盘 1
|
||||
* @readonly
|
||||
*/
|
||||
NUM1 = 97,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 2
|
||||
* @zh 数字键盘 2
|
||||
* @readonly
|
||||
*/
|
||||
NUM2 = 98,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 3
|
||||
* @zh 数字键盘 3
|
||||
* @readonly
|
||||
*/
|
||||
NUM3 = 99,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 4
|
||||
* @zh 数字键盘 4
|
||||
* @readonly
|
||||
*/
|
||||
NUM4 = 100,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 5
|
||||
* @zh 数字键盘 5
|
||||
* @readonly
|
||||
*/
|
||||
NUM5 = 101,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 6
|
||||
* @zh 数字键盘 6
|
||||
* @readonly
|
||||
*/
|
||||
NUM6 = 102,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 7
|
||||
* @zh 数字键盘 7
|
||||
* @readonly
|
||||
*/
|
||||
NUM7 = 103,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 8
|
||||
* @zh 数字键盘 8
|
||||
* @readonly
|
||||
*/
|
||||
NUM8 = 104,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 9
|
||||
* @zh 数字键盘 9
|
||||
* @readonly
|
||||
*/
|
||||
NUM9 = 105,
|
||||
|
||||
/**
|
||||
* @en The numeric keypad 'delete'
|
||||
* @zh 数字键盘删除键
|
||||
* @readonly
|
||||
*/
|
||||
NUMDEL = 110,
|
||||
|
||||
/**
|
||||
* @en The F1 function key
|
||||
* @zh F1 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F1 = 112, // f1-f12 dont work on ie
|
||||
|
||||
/**
|
||||
* @en The F2 function key
|
||||
* @zh F2 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F2 = 113,
|
||||
|
||||
/**
|
||||
* @en The F3 function key
|
||||
* @zh F3 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F3 = 114,
|
||||
|
||||
/**
|
||||
* @en The F4 function key
|
||||
* @zh F4 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F4 = 115,
|
||||
|
||||
/**
|
||||
* @en The F5 function key
|
||||
* @zh F5 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F5 = 116,
|
||||
|
||||
/**
|
||||
* @en The F6 function key
|
||||
* @zh F6 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F6 = 117,
|
||||
|
||||
/**
|
||||
* @en The F7 function key
|
||||
* @zh F7 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F7 = 118,
|
||||
|
||||
/**
|
||||
* @en The F8 function key
|
||||
* @zh F8 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F8 = 119,
|
||||
|
||||
/**
|
||||
* @en The F9 function key
|
||||
* @zh F9 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F9 = 120,
|
||||
|
||||
/**
|
||||
* @en The F10 function key
|
||||
* @zh F10 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F10 = 121,
|
||||
|
||||
/**
|
||||
* @en The F11 function key
|
||||
* @zh F11 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F11 = 122,
|
||||
|
||||
/**
|
||||
* @en The F12 function key
|
||||
* @zh F12 功能键
|
||||
* @readonly
|
||||
*/
|
||||
F12 = 123,
|
||||
|
||||
/**
|
||||
* @en The numlock key
|
||||
* @zh 数字锁定键
|
||||
* @readonly
|
||||
*/
|
||||
NUMLOCK = 144,
|
||||
|
||||
/**
|
||||
* @en The scroll lock key
|
||||
* @zh 滚动锁定键
|
||||
* @readonly
|
||||
*/
|
||||
SCROLLLOCK = 145,
|
||||
|
||||
/**
|
||||
* @en The ';' key.
|
||||
* @zh 分号键
|
||||
* @readonly
|
||||
*/
|
||||
SEMICOLON = 186,
|
||||
|
||||
/**
|
||||
* @en The '=' key.
|
||||
* @zh 等于号键
|
||||
* @readonly
|
||||
*/
|
||||
EQUAL = 187,
|
||||
|
||||
/**
|
||||
* @en The ',' key.
|
||||
* @zh 逗号键
|
||||
* @readonly
|
||||
*/
|
||||
COMMA = 188,
|
||||
|
||||
/**
|
||||
* @en The dash '-' key.
|
||||
* @zh 中划线键
|
||||
* @readonly
|
||||
*/
|
||||
DASH = 189,
|
||||
|
||||
/**
|
||||
* @en The '.' key
|
||||
* @zh 句号键
|
||||
* @readonly
|
||||
*/
|
||||
PERIOD = 190,
|
||||
|
||||
/**
|
||||
* @en The forward slash key
|
||||
* @zh 正斜杠键
|
||||
* @readonly
|
||||
*/
|
||||
FORWARDSLASH = 191,
|
||||
|
||||
/**
|
||||
* @en The grave key
|
||||
* @zh 按键 `
|
||||
* @readonly
|
||||
*/
|
||||
GRAVE = 192,
|
||||
|
||||
/**
|
||||
* @en The '[' key
|
||||
* @zh 按键 [
|
||||
* @readonly
|
||||
*/
|
||||
OPENBRACKET = 219,
|
||||
|
||||
/**
|
||||
* @en The '\' key
|
||||
* @zh 反斜杠键
|
||||
* @readonly
|
||||
*/
|
||||
BACKSLASH = 220,
|
||||
|
||||
/**
|
||||
* @en The ']' key
|
||||
* @zh 按键 ]
|
||||
* @readonly
|
||||
*/
|
||||
CLOSEBRACKET = 221,
|
||||
|
||||
/**
|
||||
* @en The quote key
|
||||
* @zh 单引号键
|
||||
* @readonly
|
||||
*/
|
||||
QUOTE = 222,
|
||||
|
||||
/**
|
||||
* @en The dpad left key
|
||||
* @zh 导航键 向左
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
DPAD_LEFT = 1000,
|
||||
|
||||
/**
|
||||
* @en The dpad right key
|
||||
* @zh 导航键 向右
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
DPAD_RIGHT = 1001,
|
||||
|
||||
/**
|
||||
* @en The dpad up key
|
||||
* @zh 导航键 向上
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
DPAD_UP = 1003,
|
||||
|
||||
/**
|
||||
* @en The dpad down key
|
||||
* @zh 导航键 向下
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
DPAD_DOWN = 1004,
|
||||
|
||||
/**
|
||||
* @en The dpad center key
|
||||
* @zh 导航键 确定键
|
||||
* @readonly
|
||||
* @deprecated since v3.3
|
||||
*/
|
||||
DPAD_CENTER = 1005,
|
||||
};
|
||||
|
||||
/**
|
||||
* PI / 180
|
||||
*/
|
||||
static const float RAD{math::PI / 180};
|
||||
|
||||
/**
|
||||
* One degree
|
||||
*/
|
||||
// static const float DEG;
|
||||
static const float DEG{math::PI / 180};
|
||||
|
||||
/**
|
||||
* A maximum value of number
|
||||
*/
|
||||
static const uint32_t REPEAT_FOREVER{UINT32_MAX};
|
||||
|
||||
/**
|
||||
* A minimal float value
|
||||
*/
|
||||
// FLT_EPSILON: 0.0000001192092896,
|
||||
|
||||
// static const float FLTEPSILON {0.0000001192092896}; //FLT_EPSILON is keyword in cpp
|
||||
// Possible device orientations
|
||||
/**
|
||||
* @en Oriented vertically
|
||||
* @zh 竖屏朝向
|
||||
*/
|
||||
static const int32_t ORIENTATION_PORTRAIT{1};
|
||||
|
||||
/**
|
||||
* @en Oriented horizontally
|
||||
* @zh 横屏朝向
|
||||
*/
|
||||
static const int32_t ORIENTATION_LANDSCAPE{2};
|
||||
|
||||
/**
|
||||
* @en Oriented automatically
|
||||
* @zh 自动适配朝向
|
||||
*/
|
||||
static const int32_t ORIENTATION_AUTO{3};
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* If enabled, the texture coordinates will be calculated by using this formula: <br/>
|
||||
* - texCoord.left = (rect.x*2+1) / (texture.wide*2); <br/>
|
||||
* - texCoord.right = texCoord.left + (rect.width*2-2)/(texture.wide*2); <br/>
|
||||
* <br/>
|
||||
* The same for bottom and top. <br/>
|
||||
* <br/>
|
||||
* This formula prevents artifacts by using 99% of the texture. <br/>
|
||||
* The "correct" way to prevent artifacts is by expand the texture's border with the same color by 1 pixel<br/>
|
||||
* <br/>
|
||||
* Affected component: <br/>
|
||||
* - TMXLayer <br/>
|
||||
* <br/>
|
||||
* Enabled by default. To disabled set it to 0. <br/>
|
||||
* To modify it, in Web engine please refer to CCMacro.js, in JSB please refer to CCConfig.h
|
||||
* </p>
|
||||
* Currently not useful in 3D engine
|
||||
*/
|
||||
// FIX_ARTIFACTS_BY_STRECHING_TEXEL_TMX: true,
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Whether or not enabled tiled map auto culling. If you set the TiledMap skew or rotation,
|
||||
* then need to manually disable this, otherwise, the rendering will be wrong.
|
||||
* Currently not useful in 3D engine
|
||||
* @zh
|
||||
* 是否开启瓦片地图的自动裁减功能。瓦片地图如果设置了 skew, rotation 的话,需要手动关闭,否则渲染会出错。
|
||||
* 在 3D 引擎中暂时无效。
|
||||
* @default true
|
||||
*/
|
||||
static const bool ENABLE_TILEDMAP_CULLING{true};
|
||||
|
||||
/**
|
||||
* @en
|
||||
* The timeout to determine whether a touch is no longer active and should be removed.
|
||||
* The reason to add this timeout is due to an issue in X5 browser core,
|
||||
* when X5 is presented in wechat on Android, if a touch is glissed from the bottom up, and leave the page area,
|
||||
* no touch cancel event is triggered, and the touch will be considered active forever.
|
||||
* After multiple times of this action, our maximum touches number will be reached and all new touches will be ignored.
|
||||
* So this new mechanism can remove the touch that should be inactive if it's not updated during the last 5000 milliseconds.
|
||||
* Though it might remove a real touch if it's just not moving for the last 5 seconds which is not easy with the sensibility of mobile touch screen.
|
||||
* You can modify this value to have a better behavior if you find it's not enough.
|
||||
* @zh
|
||||
* 用于甄别一个触点对象是否已经失效并且可以被移除的延时时长
|
||||
* 添加这个时长的原因是 X5 内核在微信浏览器中出现的一个 bug。
|
||||
* 在这个环境下,如果用户将一个触点从底向上移出页面区域,将不会触发任何 touch cancel 或 touch end 事件,而这个触点会被永远当作停留在页面上的有效触点。
|
||||
* 重复这样操作几次之后,屏幕上的触点数量将达到我们的事件系统所支持的最高触点数量,之后所有的触摸事件都将被忽略。
|
||||
* 所以这个新的机制可以在触点在一定时间内没有任何更新的情况下视为失效触点并从事件系统中移除。
|
||||
* 当然,这也可能移除一个真实的触点,如果用户的触点真的在一定时间段内完全没有移动(这在当前手机屏幕的灵敏度下会很难)。
|
||||
* 你可以修改这个值来获得你需要的效果,默认值是 5000 毫秒。
|
||||
* @default 5000
|
||||
*/
|
||||
static const uint32_t TOUCH_TIMEOUT{5000};
|
||||
/**
|
||||
* @en
|
||||
* Boolean that indicates if the canvas contains an alpha channel, default sets to false for better performance.
|
||||
* Though if you want to make your canvas background transparent and show other dom elements at the background,
|
||||
* you can set it to true before {{game.init}}.
|
||||
* Web only.
|
||||
* @zh
|
||||
* 用于设置 Canvas 背景是否支持 alpha 通道,默认为 false,这样可以有更高的性能表现。
|
||||
* 如果你希望 Canvas 背景是透明的,并显示背后的其他 DOM 元素,你可以在 {{game.init}} 之前将这个值设为 true。
|
||||
* 仅支持 Web
|
||||
* @default false
|
||||
*/
|
||||
static const bool ENABLE_TRANSPARENT_CANVAS{false};
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Boolean that indicates if the WebGL context is created with `antialias` option turned on, default value is false.
|
||||
* Set it to true could make your game graphics slightly smoother, like texture hard edges when rotated.
|
||||
* Whether to use this really depend on your game design and targeted platform,
|
||||
* device with retina display usually have good detail on graphics with or without this option,
|
||||
* you probably don't want antialias if your game style is pixel art based.
|
||||
* Also, it could have great performance impact with some browser / device using software MSAA.
|
||||
* You can set it to true before {{game.init}}.
|
||||
* Web only.
|
||||
* @zh
|
||||
* 用于设置在创建 WebGL Context 时是否开启抗锯齿选项,默认值是 false。
|
||||
* 将这个选项设置为 true 会让你的游戏画面稍稍平滑一些,比如旋转硬边贴图时的锯齿。是否开启这个选项很大程度上取决于你的游戏和面向的平台。
|
||||
* 在大多数拥有 retina 级别屏幕的设备上用户往往无法区分这个选项带来的变化;如果你的游戏选择像素艺术风格,你也多半不会想开启这个选项。
|
||||
* 同时,在少部分使用软件级别抗锯齿算法的设备或浏览器上,这个选项会对性能产生比较大的影响。
|
||||
* 你可以在 {{game.init}} 之前设置这个值,否则它不会生效。
|
||||
* 仅支持 Web
|
||||
* @default true
|
||||
*/
|
||||
static const bool ENABLE_WEBGL_ANTIALIAS{true};
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Whether to clear the original image cache after uploaded a texture to GPU.
|
||||
* If cleared, [Dynamic Atlas](https://docs.cocos.com/creator/manual/en/advanced-topics/dynamic-atlas.html) will not be supported.
|
||||
* Normally you don't need to enable this option on the web platform, because Image object doesn't consume too much memory.
|
||||
* But on Wechat Game platform, the current version cache decoded data in Image object, which has high memory usage.
|
||||
* So we enabled this option by default on Wechat, so that we can release Image cache immediately after uploaded to GPU.
|
||||
* Currently not useful in 3D engine
|
||||
* @zh
|
||||
* 是否在将贴图上传至 GPU 之后删除原始图片缓存,删除之后图片将无法进行 [动态合图](https://docs.cocos.com/creator/manual/zh/advanced-topics/dynamic-atlas.html)。
|
||||
* 在 Web 平台,你通常不需要开启这个选项,因为在 Web 平台 Image 对象所占用的内存很小。
|
||||
* 但是在微信小游戏平台的当前版本,Image 对象会缓存解码后的图片数据,它所占用的内存空间很大。
|
||||
* 所以我们在微信平台默认开启了这个选项,这样我们就可以在上传 GL 贴图之后立即释放 Image 对象的内存,避免过高的内存占用。
|
||||
* 在 3D 引擎中暂时无效。
|
||||
* @default false
|
||||
*/
|
||||
static const bool CLEANUP_IMAGE_CACHE{false};
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Whether to enable multi-touch.
|
||||
* @zh
|
||||
* 是否开启多点触摸
|
||||
* @default true
|
||||
*/
|
||||
static const bool ENABLE_MULTI_TOUCH{true};
|
||||
|
||||
/**
|
||||
* @en
|
||||
* The maximum size of the canvas pool used by Label, please adjust according to the number of label component in the same scene of the project
|
||||
* @zh
|
||||
* Label 使用的 canvas pool 的最大大小,请根据项目同场景的 label 数量进行调整
|
||||
* @default 20
|
||||
*/
|
||||
static const uint32_t MAX_LABEL_CANVAS_POOL_SIZE{20};
|
||||
|
||||
/**
|
||||
* @en
|
||||
* Boolean that indicates if enable highp precision data in structure with fragment shader.
|
||||
* Enable this option will make the variables defined by the HIGHP_VALUE_STRUCT_DEFINE macro in the shader more accurate, such as position.
|
||||
* Enable this option can avoid some distorted lighting effects. That depends on whether your game has abnormal lighting effects on this platform.
|
||||
* There will be a slight performance loss if enable this option, but the impact is not significant.
|
||||
* Only affect WebGL backend
|
||||
* @zh
|
||||
* 用于设置是否在片元着色器中使用结构体的时候,允许其中的数据使用highp精度
|
||||
* 将这个选项设置为 true 会让shader中使用HIGHP_VALUE_STRUCT_DEFINE宏定义的变量精度更高,比如位置信息等,避免出现一些失真的光照效果。是否开启这个选项很大程度上取决于你的游戏在此平台上是否出现了异常的表现。
|
||||
* 开启后会有轻微的性能损失,但影响不大。
|
||||
* 仅影响 WebGL 后端
|
||||
* @default false
|
||||
*/
|
||||
static const bool ENABLE_WEBGL_HIGHP_STRUCT_VALUES{false};
|
||||
|
||||
/**
|
||||
* @zh Batcher2D 中内存增量的大小(KB)
|
||||
* 这个值决定了当场景中存在的 2d 渲染组件的顶点数量超过当前 batcher2D 中可容纳的顶点数量时,内存扩充的增加量
|
||||
* 这个值越大,共用同一个 meshBuffer 的 2d 渲染组件数量会更多,但每次扩充所占用的内存也会更大
|
||||
* 默认值在标准格式([[vfmtPosUvColor]])下可容纳 4096 个顶点(4096*9*4/1024),你可以增加容量来提升每个批次可容纳的元素数量
|
||||
* @en The MeshBuffer chunk size in Batcher2D (KB)
|
||||
* This value determines the increase in memory expansion,
|
||||
* when the number of vertices of 2d rendering components present in the scene exceeds the number of vertices,
|
||||
* that can be accommodated in the current batcher2D.
|
||||
* The larger this value is, the more 2d rendering components will share the same meshBuffer, but the more memory will be used for each expansion
|
||||
* The default size can contain 4096 standard vertex ([[vfmtPosUvColor]]) in one buffer,
|
||||
* you can user larger buffer size to increase the elements count per 2d draw batch.
|
||||
* @default 144 KB
|
||||
*/
|
||||
static const uint32_t BATCHER2D_MEM_INCREMENT{144};
|
||||
} // namespace macro
|
||||
|
||||
} // namespace cc
|
||||
Reference in New Issue
Block a user