2013-12-05 08:26:21 +08:00
|
|
|
/****************************************************************************
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2022-04-25 19:15:46 +08:00
|
|
|
Copyright (c) 2020 C4games Ltd.
|
2021-10-09 13:48:56 +08:00
|
|
|
Copyright (c) 2021 Bytedance Inc.
|
2013-12-05 08:26:21 +08:00
|
|
|
|
2022-01-04 12:36:20 +08:00
|
|
|
https://adxeproject.github.io/
|
2013-12-05 08:26:21 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2014-04-27 01:35:57 +08:00
|
|
|
#include "base/CCConsole.h"
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2013-12-04 10:46:54 +08:00
|
|
|
#include <thread>
|
2013-12-05 10:28:09 +08:00
|
|
|
#include <algorithm>
|
2014-02-09 04:46:44 +08:00
|
|
|
#include <functional>
|
|
|
|
#include <cctype>
|
|
|
|
#include <locale>
|
|
|
|
#include <sstream>
|
2013-11-27 10:58:36 +08:00
|
|
|
#include <stdio.h>
|
2014-02-13 10:40:57 +08:00
|
|
|
#include <stdlib.h>
|
2013-12-05 04:26:43 +08:00
|
|
|
#include <time.h>
|
|
|
|
#include <fcntl.h>
|
2013-12-05 16:09:38 +08:00
|
|
|
|
2014-01-04 14:40:22 +08:00
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__)
|
2021-12-25 10:04:45 +08:00
|
|
|
# include <io.h>
|
|
|
|
# if defined(__MINGW32__)
|
|
|
|
# include "platform/win32/inet_pton_mingw.h"
|
|
|
|
# endif
|
|
|
|
# define bzero(a, b) memset(a, 0, b)
|
|
|
|
# include "ntcvt/ntcvt.hpp"
|
2013-12-05 16:09:38 +08:00
|
|
|
#endif
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "base/CCDirector.h"
|
|
|
|
#include "base/CCScheduler.h"
|
2014-09-10 08:17:07 +08:00
|
|
|
#include "platform/CCPlatformConfig.h"
|
2014-05-01 10:09:13 +08:00
|
|
|
#include "base/CCConfiguration.h"
|
|
|
|
#include "2d/CCScene.h"
|
2014-05-17 05:36:00 +08:00
|
|
|
#include "platform/CCFileUtils.h"
|
|
|
|
#include "renderer/CCTextureCache.h"
|
2014-04-30 08:37:36 +08:00
|
|
|
#include "base/base64.h"
|
2014-07-14 20:45:24 +08:00
|
|
|
#include "base/ccUtils.h"
|
2020-05-18 09:21:52 +08:00
|
|
|
#include "base/ccUTF8.h"
|
|
|
|
|
2020-08-07 23:52:41 +08:00
|
|
|
// !FIXME: the previous version of cocos2d::log not thread safe
|
2021-07-09 10:42:36 +08:00
|
|
|
// since adxe make it multi-threading safe by default
|
2020-08-07 23:52:41 +08:00
|
|
|
#if !defined(CC_LOG_MULTITHREAD)
|
2021-12-25 10:04:45 +08:00
|
|
|
# define CC_LOG_MULTITHREAD 1
|
2020-08-07 23:52:41 +08:00
|
|
|
#endif
|
|
|
|
|
2020-08-07 23:55:25 +08:00
|
|
|
#if !defined(CC_LOG_TO_CONSOLE)
|
2021-12-25 10:04:45 +08:00
|
|
|
# define CC_LOG_TO_CONSOLE 1
|
2020-08-07 23:52:41 +08:00
|
|
|
#endif
|
|
|
|
|
2013-12-05 16:09:38 +08:00
|
|
|
NS_CC_BEGIN
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2021-10-25 20:29:40 +08:00
|
|
|
extern const char* adxeVersion(void);
|
2016-04-21 11:31:20 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
#define PROMPT "> "
|
2018-03-08 10:51:21 +08:00
|
|
|
#define DEFAULT_COMMAND_SEPARATOR '|'
|
2016-04-21 11:31:20 +08:00
|
|
|
|
|
|
|
static const size_t SEND_BUFSIZ = 512;
|
|
|
|
|
|
|
|
/** private functions */
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
#if defined(__MINGW32__)
|
2021-12-25 10:04:45 +08:00
|
|
|
// inet
|
|
|
|
const char* inet_ntop(int af, const void* src, char* dst, int cnt)
|
|
|
|
{
|
|
|
|
struct sockaddr_in srcaddr;
|
|
|
|
|
|
|
|
memset(&srcaddr, 0, sizeof(struct sockaddr_in));
|
|
|
|
memcpy(&(srcaddr.sin_addr), src, sizeof(srcaddr.sin_addr));
|
|
|
|
|
|
|
|
srcaddr.sin_family = af;
|
|
|
|
if (WSAAddressToStringA((struct sockaddr*)&srcaddr, sizeof(struct sockaddr_in), 0, dst, (LPDWORD)&cnt) != 0)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
return nullptr;
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
return dst;
|
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
#endif
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Free functions to log
|
|
|
|
//
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2021-12-25 10:04:45 +08:00
|
|
|
void SendLogToWindow(const char* log)
|
|
|
|
{
|
|
|
|
static const int CCLOG_STRING_TAG = 1;
|
|
|
|
// Send data as a message
|
|
|
|
COPYDATASTRUCT myCDS;
|
|
|
|
myCDS.dwData = CCLOG_STRING_TAG;
|
|
|
|
myCDS.cbData = (DWORD)strlen(log) + 1;
|
|
|
|
myCDS.lpData = (PVOID)log;
|
|
|
|
if (Director::getInstance()->getOpenGLView())
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
HWND hwnd = Director::getInstance()->getOpenGLView()->getWin32Window();
|
|
|
|
// use non-block version of SendMessage
|
|
|
|
PostMessage(hwnd, WM_COPYDATA, (WPARAM)(HWND)hwnd, (LPARAM)(LPVOID)&myCDS);
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2017-11-08 14:07:59 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif
|
|
|
|
} // namespace
|
2017-11-08 14:07:59 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void log(const char* format, ...)
|
2017-11-08 14:07:59 +08:00
|
|
|
{
|
2020-05-06 16:28:34 +08:00
|
|
|
#define CC_VSNPRINTF_BUFFER_LENGTH 512
|
2017-11-08 14:07:59 +08:00
|
|
|
va_list args;
|
2020-05-06 16:28:34 +08:00
|
|
|
|
|
|
|
va_start(args, format);
|
2020-05-15 22:57:33 +08:00
|
|
|
auto buf = StringUtils::vformat(format, args);
|
2020-05-06 16:28:34 +08:00
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID
|
2022-06-11 09:12:40 +08:00
|
|
|
__android_log_print(ANDROID_LOG_DEBUG, "adxe debug info", "%s", buf.c_str());
|
2017-11-08 14:07:59 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
#elif CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|
2020-05-06 16:28:34 +08:00
|
|
|
buf.push_back('\n');
|
2017-11-08 14:07:59 +08:00
|
|
|
|
2020-05-06 16:28:34 +08:00
|
|
|
// print to debugger output window
|
2020-08-05 17:30:30 +08:00
|
|
|
std::wstring wbuf = ntcvt::from_chars(buf);
|
2017-11-08 14:07:59 +08:00
|
|
|
|
2020-08-07 23:52:41 +08:00
|
|
|
OutputDebugStringW(wbuf.c_str());
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
# if CC_LOG_TO_CONSOLE
|
2021-05-26 00:24:39 +08:00
|
|
|
auto hStdout = ::GetStdHandle(STD_OUTPUT_HANDLE);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (hStdout)
|
|
|
|
{
|
2020-09-22 17:23:19 +08:00
|
|
|
// print to console if possible
|
2021-05-26 00:24:39 +08:00
|
|
|
// since we use win32 API, the ::fflush call doesn't required.
|
|
|
|
// see: https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-flushfilebuffers#return-value
|
|
|
|
DWORD wcch = static_cast<DWORD>(wbuf.size());
|
|
|
|
::WriteConsoleW(hStdout, wbuf.c_str(), wcch, nullptr, 0);
|
2020-09-22 17:23:19 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
# endif
|
2020-05-06 16:28:34 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
# if !CC_LOG_MULTITHREAD
|
2020-05-06 16:28:34 +08:00
|
|
|
// print to log window
|
|
|
|
SendLogToWindow(buf.c_str());
|
2021-12-25 10:04:45 +08:00
|
|
|
# endif
|
2016-04-21 11:31:20 +08:00
|
|
|
#else
|
2020-05-18 10:13:57 +08:00
|
|
|
buf.push_back('\n');
|
2017-11-08 14:07:59 +08:00
|
|
|
// Linux, Mac, iOS, etc
|
2020-05-06 16:28:34 +08:00
|
|
|
fprintf(stdout, "%s", buf.c_str());
|
2017-11-08 14:07:59 +08:00
|
|
|
fflush(stdout);
|
2016-04-21 11:31:20 +08:00
|
|
|
#endif
|
|
|
|
|
2020-08-07 23:52:41 +08:00
|
|
|
#if !CC_LOG_MULTITHREAD
|
2020-05-06 16:28:34 +08:00
|
|
|
Director::getInstance()->getConsole()->log(buf.c_str());
|
2020-08-07 23:52:41 +08:00
|
|
|
#endif
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2017-11-08 14:07:59 +08:00
|
|
|
// FIXME: Deprecated
|
|
|
|
// void CCLog(const char * format, ...);
|
2016-04-21 11:31:20 +08:00
|
|
|
|
|
|
|
//
|
|
|
|
// Utility code
|
|
|
|
//
|
|
|
|
|
|
|
|
std::string Console::Utility::_prompt(PROMPT);
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
// TODO: these general utils should be in a separate class
|
2014-02-09 04:46:44 +08:00
|
|
|
//
|
2021-12-25 10:04:45 +08:00
|
|
|
// Trimming functions were taken from: http://stackoverflow.com/a/217605
|
|
|
|
// Since c++17, some parts of the standard library were removed, include "ptr_fun".
|
2018-04-20 18:04:19 +08:00
|
|
|
|
2014-02-09 04:46:44 +08:00
|
|
|
// trim from start
|
2016-04-21 11:31:20 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
std::string& Console::Utility::ltrim(std::string& s)
|
|
|
|
{
|
|
|
|
s.erase(s.begin(), std::find_if(s.begin(), s.end(), [](int ch) { return !std::isspace(ch); }));
|
2014-02-09 04:46:44 +08:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// trim from end
|
2021-12-25 10:04:45 +08:00
|
|
|
std::string& Console::Utility::rtrim(std::string& s)
|
|
|
|
{
|
|
|
|
s.erase(std::find_if(s.rbegin(), s.rend(), [](int ch) { return !std::isspace(ch); }).base(), s.end());
|
2014-02-09 04:46:44 +08:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// trim from both ends
|
2021-12-25 10:04:45 +08:00
|
|
|
std::string& Console::Utility::trim(std::string& s)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
return Console::Utility::ltrim(Console::Utility::rtrim(s));
|
2014-02-09 04:46:44 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
std::vector<std::string>& Console::Utility::split(std::string_view s, char delim, std::vector<std::string>& elems)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
2021-12-26 23:26:34 +08:00
|
|
|
std::stringstream ss;
|
|
|
|
ss << s;
|
2014-02-14 14:54:26 +08:00
|
|
|
std::string item;
|
2021-12-25 10:04:45 +08:00
|
|
|
while (std::getline(ss, item, delim))
|
|
|
|
{
|
2014-02-14 14:54:26 +08:00
|
|
|
elems.push_back(item);
|
|
|
|
}
|
|
|
|
return elems;
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
std::vector<std::string> Console::Utility::split(std::string_view s, char delim)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
2014-02-14 14:54:26 +08:00
|
|
|
std::vector<std::string> elems;
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::split(s, delim, elems);
|
2014-02-14 14:54:26 +08:00
|
|
|
return elems;
|
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
// isFloat taken from http://stackoverflow.com/questions/447206/c-isfloat-function
|
2021-12-26 23:26:34 +08:00
|
|
|
bool Console::Utility::isFloat(std::string_view myString)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
2021-12-26 23:26:34 +08:00
|
|
|
std::stringstream ss;
|
|
|
|
ss << myString;
|
2014-02-25 11:04:59 +08:00
|
|
|
float f;
|
2021-12-26 23:26:34 +08:00
|
|
|
ss >> std::noskipws >> f; // noskipws considers leading whitespace invalid
|
2014-02-25 11:04:59 +08:00
|
|
|
// Check the entire string was consumed and if either failbit or badbit is set
|
2021-12-26 23:26:34 +08:00
|
|
|
return ss.eof() && !ss.fail();
|
2014-02-25 11:04:59 +08:00
|
|
|
}
|
2014-02-26 23:41:47 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
ssize_t Console::Utility::sendToConsole(int fd, const void* buffer, size_t length, int flags)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_prompt.length() == length)
|
|
|
|
{
|
|
|
|
if (strncmp(_prompt.c_str(), static_cast<const char*>(buffer), length) == 0)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "bad parameter error: a buffer is the prompt string.\n");
|
2016-04-21 11:31:20 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
const char* buf = static_cast<const char*>(buffer);
|
2021-12-25 10:04:45 +08:00
|
|
|
ssize_t retLen = 0;
|
|
|
|
for (size_t i = 0; i < length;)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
size_t len = length - i;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (SEND_BUFSIZ < len)
|
|
|
|
len = SEND_BUFSIZ;
|
2016-04-21 11:31:20 +08:00
|
|
|
retLen += send(fd, buf + i, len, flags);
|
|
|
|
i += len;
|
|
|
|
}
|
|
|
|
return retLen;
|
|
|
|
}
|
2013-12-05 13:51:08 +08:00
|
|
|
|
|
|
|
// dprintf() is not defined in Android
|
|
|
|
// so we add our own 'dpritnf'
|
2021-12-25 10:04:45 +08:00
|
|
|
ssize_t Console::Utility::mydprintf(int sock, const char* format, ...)
|
2013-12-05 13:51:08 +08:00
|
|
|
{
|
|
|
|
va_list args;
|
2015-06-16 21:56:06 +08:00
|
|
|
char buf[16386];
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2015-06-16 21:56:06 +08:00
|
|
|
va_start(args, format);
|
|
|
|
vsnprintf(buf, sizeof(buf), format, args);
|
|
|
|
va_end(args);
|
2016-04-21 11:31:20 +08:00
|
|
|
return sendToConsole(sock, buf, strlen(buf));
|
2013-12-05 13:51:08 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
void Console::Utility::sendPrompt(int fd)
|
2014-02-11 16:57:30 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
const char* prompt = _prompt.c_str();
|
|
|
|
send(fd, prompt, strlen(prompt), 0);
|
2014-02-11 16:57:30 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::Utility::setPrompt(std::string_view prompt)
|
2013-12-05 13:51:08 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
_prompt = prompt;
|
2013-12-05 13:51:08 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
std::string_view Console::Utility::getPrompt()
|
2013-12-05 13:51:08 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
return _prompt;
|
2013-12-05 13:51:08 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
//
|
|
|
|
// Command code
|
|
|
|
//
|
2014-01-15 09:22:45 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Console::Command::Command() : _callback(nullptr) {}
|
2017-12-05 13:35:16 +08:00
|
|
|
|
2021-12-28 11:00:34 +08:00
|
|
|
Console::Command::Command(std::string_view name, std::string_view help) : _name(name), _help(help), _callback(nullptr)
|
2021-12-25 10:04:45 +08:00
|
|
|
{}
|
2017-12-05 13:35:16 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
Console::Command::Command(std::string_view name, std::string_view help, const Callback& callback)
|
2021-12-25 10:04:45 +08:00
|
|
|
: _name(name), _help(help), _callback(callback)
|
|
|
|
{}
|
2017-12-05 13:35:16 +08:00
|
|
|
|
|
|
|
Console::Command::Command(const Command& o)
|
|
|
|
{
|
|
|
|
*this = o;
|
|
|
|
}
|
|
|
|
|
|
|
|
Console::Command::Command(Command&& o)
|
|
|
|
{
|
|
|
|
*this = std::move(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
Console::Command::~Command()
|
|
|
|
{
|
|
|
|
for (const auto& e : _subCommands)
|
|
|
|
{
|
|
|
|
delete e.second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Console::Command& Console::Command::operator=(const Command& o)
|
|
|
|
{
|
|
|
|
if (this != &o)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_name = o._name;
|
|
|
|
_help = o._help;
|
2017-12-05 13:35:16 +08:00
|
|
|
_callback = o._callback;
|
|
|
|
|
|
|
|
for (const auto& e : _subCommands)
|
|
|
|
delete e.second;
|
|
|
|
|
|
|
|
_subCommands.clear();
|
|
|
|
for (const auto& e : o._subCommands)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Command* subCommand = e.second;
|
|
|
|
auto newCommand = new Command(*subCommand);
|
2017-12-05 13:35:16 +08:00
|
|
|
_subCommands[e.first] = newCommand;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Console::Command& Console::Command::operator=(Command&& o)
|
|
|
|
{
|
|
|
|
if (this != &o)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_name = std::move(o._name);
|
|
|
|
_help = std::move(o._help);
|
|
|
|
_callback = std::move(o._callback);
|
2017-12-05 13:35:16 +08:00
|
|
|
o._callback = nullptr;
|
|
|
|
|
|
|
|
for (const auto& e : _subCommands)
|
|
|
|
delete e.second;
|
|
|
|
|
|
|
|
_subCommands.clear();
|
|
|
|
_subCommands = std::move(o._subCommands);
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Console::Command::addCallback(const Callback& callback)
|
|
|
|
{
|
|
|
|
_callback = callback;
|
2014-01-15 09:22:45 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
void Console::Command::addSubCommand(const Command& subCmd)
|
2014-01-04 14:40:22 +08:00
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
auto iter = _subCommands.find(subCmd._name);
|
|
|
|
if (iter != _subCommands.end())
|
|
|
|
{
|
|
|
|
delete iter->second;
|
|
|
|
_subCommands.erase(iter);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
Command* cmd = new Command();
|
|
|
|
*cmd = subCmd;
|
2017-12-05 13:35:16 +08:00
|
|
|
_subCommands[subCmd._name] = cmd;
|
2014-01-04 14:40:22 +08:00
|
|
|
}
|
2013-12-05 13:51:08 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
const Console::Command* Console::Command::getSubCommand(std::string_view subCmdName) const
|
2015-01-21 18:07:21 +08:00
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
auto it = _subCommands.find(subCmdName);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (it != _subCommands.end())
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto& subCmd = it->second;
|
2017-12-05 13:35:16 +08:00
|
|
|
return subCmd;
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
return nullptr;
|
2015-01-21 18:07:21 +08:00
|
|
|
}
|
2014-01-11 11:04:07 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::Command::delSubCommand(std::string_view subCmdName)
|
2014-01-11 11:04:07 +08:00
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
auto iter = _subCommands.find(subCmdName);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (iter != _subCommands.end())
|
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
delete iter->second;
|
|
|
|
_subCommands.erase(iter);
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2014-01-11 11:04:07 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::Command::commandHelp(int fd, std::string_view /*args*/)
|
2014-01-16 03:17:21 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!_help.empty())
|
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
Console::Utility::mydprintf(fd, "%s\n", _help.c_str());
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
if (!_subCommands.empty())
|
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
sendHelp(fd, _subCommands, "");
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2014-01-16 03:17:21 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::Command::commandGeneric(int fd, std::string_view args)
|
2014-01-16 03:17:21 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
// The first argument (including the empty)
|
|
|
|
std::string key(args);
|
2019-04-22 09:44:19 +08:00
|
|
|
auto pos = args.find(' ');
|
2021-12-25 10:04:45 +08:00
|
|
|
if ((pos != std::string::npos) && (0 < pos))
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
key = args.substr(0, pos);
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
// help
|
2021-12-25 10:04:45 +08:00
|
|
|
if (key == "help" || key == "-h")
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
commandHelp(fd, args);
|
|
|
|
return;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
// find sub command
|
2017-12-05 13:35:16 +08:00
|
|
|
auto it = _subCommands.find(key);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (it != _subCommands.end())
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto subCmd = it->second;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (subCmd->_callback)
|
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
subCmd->_callback(fd, args);
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
// can not find
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_callback)
|
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
_callback(fd, args);
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2014-01-16 03:17:21 +08:00
|
|
|
}
|
2014-01-11 11:04:07 +08:00
|
|
|
|
2013-12-05 13:51:08 +08:00
|
|
|
//
|
|
|
|
// Console code
|
|
|
|
//
|
|
|
|
|
2013-11-27 10:58:36 +08:00
|
|
|
Console::Console()
|
2021-12-25 10:04:45 +08:00
|
|
|
: _commandSeparator(DEFAULT_COMMAND_SEPARATOR)
|
|
|
|
, _listenfd(-1)
|
|
|
|
, _running(false)
|
|
|
|
, _endThread(false)
|
|
|
|
, _isIpv6Server(false)
|
|
|
|
, _sendDebugStrings(false)
|
|
|
|
, _bindAddress("")
|
2013-12-05 16:09:38 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
createCommandAllocator();
|
|
|
|
createCommandConfig();
|
|
|
|
createCommandDebugMsg();
|
|
|
|
createCommandDirector();
|
|
|
|
createCommandExit();
|
|
|
|
createCommandFileUtils();
|
|
|
|
createCommandFps();
|
|
|
|
createCommandHelp();
|
|
|
|
createCommandProjection();
|
|
|
|
createCommandResolution();
|
|
|
|
createCommandSceneGraph();
|
|
|
|
createCommandTexture();
|
|
|
|
createCommandTouch();
|
|
|
|
createCommandUpload();
|
|
|
|
createCommandVersion();
|
2013-12-05 09:38:11 +08:00
|
|
|
}
|
2013-11-27 10:58:36 +08:00
|
|
|
|
|
|
|
Console::~Console()
|
|
|
|
{
|
2014-01-11 09:11:14 +08:00
|
|
|
stop();
|
2017-12-05 13:35:16 +08:00
|
|
|
|
|
|
|
for (auto& e : _commands)
|
|
|
|
delete e.second;
|
2013-11-27 10:58:36 +08:00
|
|
|
}
|
|
|
|
|
2013-12-04 10:46:54 +08:00
|
|
|
bool Console::listenOnTCP(int port)
|
|
|
|
{
|
2021-10-09 13:48:56 +08:00
|
|
|
socket_native_type listenfd = -1;
|
|
|
|
int n;
|
2013-12-04 10:46:54 +08:00
|
|
|
const int on = 1;
|
2013-12-05 10:19:51 +08:00
|
|
|
struct addrinfo hints, *res, *ressave;
|
2013-12-04 10:46:54 +08:00
|
|
|
char serv[30];
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
snprintf(serv, sizeof(serv) - 1, "%d", port);
|
2013-12-04 10:46:54 +08:00
|
|
|
|
|
|
|
bzero(&hints, sizeof(struct addrinfo));
|
2021-12-25 10:04:45 +08:00
|
|
|
hints.ai_flags = AI_PASSIVE;
|
|
|
|
hints.ai_family = AF_UNSPEC;
|
2013-12-04 10:46:54 +08:00
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
|
metal support for cocos2d-x (#19305)
* remove deprecated files
* remove some deprecated codes
* remove more deprecated codes
* remove ui deprecated codes
* remove more deprecated codes
* remove deprecated codes in ccmenuitem
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes
* remove more deprecated codes
* remove more deprecated codes
* remove vr related codes and ignore some modules
* remove allocator
* remove some config
* 【Feature】add back-end project file
* [Feature] add back-end file
* add pipeline descriptor and shader cache
* [Feature] support sprite for backend
* [Feature] remove unneeded code
* [Feature] according to es2.0 spec, you must use clamp-to-edge as texture wrap mode, and no mipmapping for non-power-of-two texture
* [Feature] set texture wrap mode to clamp-to-edge, and no mipmapping for non-power-of-two texture
* [Feature] remove macro define to .cpp file
* [Feature] add log info
* [Feature] add PipelineDescriptor for TriangleCommand
* [Feature] add PipelineDescriptor object as member of TriangleCommand
* [Feature] add getPipelineDescriptor method
* add renderbackend
* complete pipeline descriptor
* [Feature] add viewport in RenderCommand
* set viewport when rendrering
* [Feature] occur error when using RendererBackend, to be fixed.
* a workaround to fix black screen on macOS 10.14 (#19090)
* add rendererbackend init function
* fix typo
* [Feature] modify testFile
* [BugFix] modify shader path
* [Feature] set default viewport
* fix projection
* [Feature] modify log info
* [BugFix] change viewport data type to int
* [BugFix] add BindGroup to PipelienDescriptor
* [BugFix] change a_position to vec3 in sprite.vert
* [BugFix] set vertexLayout according to V3F_C4B_T2F structure
* [Feature] revert a_position to vec4
* [Feature] renderer should not use gl codes directly
* [Feature] it's better not use default value parameter
* fix depth test setting
* rendererbackend -> renderer
* clear color and depth at begin
* add metal backend
* metal support normalized attribute
* simplify codes
* update external
* add render pass desctriptor in pipeline descriptor
* fix warnings
* fix crash and memeory leak
* refactor Texture2D
* put pipeline descriptor into render command
* simplify codes
* [Feature] update Sprite
* fix crash when closing app
* [Feature] update SpriteBatchNode and TextureAtlas
* support render texture(not finish)
* [Feature] remove unused code
* make tests work on mac
* fix download-deps path error
* make tests work on iOS
* [Feature] support ttf under normal label effect
* refactor triangle command processing
* let renderer handle more common commands
* refactor backend
* make render texture work
* [Feature] refactor backend for GL
* [Feature]Renaming to make it easy to understand
* [Feature] change warp mode to CLAMP_TO_EDGE
* fix ghost
* simplify visit render queue logic
* support progress timer without rial mode
* support partcile system
* Feature/update label (#149)
* [BugFix] fix compile error
* [Feature] support outline effect in ios
* [Feature] add shader file
* [BugFix] fix begin and end RenderPass
* [Feature] update CustomCommand
* [Feature] revert project.pbxproj
* [Feature] simplify codes
* [BugFix] pack AI88 to RGBA8888 only when outline enable
* [Feature] support shadow effect in Label
* [Feature] support BMFont
* [Feature] support glow effect
* [Feature] simplify shader files
* LabelAtlas work
* handle blend function correctly
* support tile map
* don't share buffer in metal
* alloc buffer size as needed
* support more tilemap
* Merge branch 'minggo/metal-support' into feature/updateLabel
* minggo/metal-support:
support tile map
handle blend function correctly
LabelAtlas work
Feature/update label (#149)
support partcile system
# Conflicts:
# cocos/2d/CCLabel.cpp
# cocos/2d/CCSprite.cpp
# cocos/2d/CCSpriteBatchNode.cpp
# cocos/renderer/CCQuadCommand.cpp
# cocos/renderer/CCQuadCommand.h
* render texture work without saving file
* use global viewport
* grid3d works
* remove grabber
* tiled3d works
* [BugFix] fix label bug
* [Feature] add updateSubData for buffer
* [Feature] remove setVertexCount
* support depth test
* add callback command
* [Feature] add UITest
* [Feature] update UITest
* [Feature] remove unneeded codes
* fix custom command issue
* fix layer color blend issue
* [BugFix] fix iOS compile error
* [Feature] remove unneeded codes
* [Feature] fix updateVertexBuffer
* layerradial works
* add draw test back
* fix batch issue
* fix compiling error
* [BugFix] support ETC1
* [BugFix] get the correct pipelineDescriptor
* [BugFix] skip draw when backendTexture nullptr
* clipping node support
* [Feature] add shader files
* fix stencil issue in metal
* [Feature] update UILayoutTest
* [BugFix] skip drawing when vertexCount is zero
* refactor renderer
* add set global z order for stencil manager commands
* fix warnings caused by type
* remove viewport in render command
* [Feature] fix warnings caused by type
* [BugFix] clear vertexCount and indexCount for CustomComand when needed
* [Feature] update clear for CustomCommand
* ios use metal
* fix viewport issue
* fix LayerColorGradient crash
* [cmake] transport to android and windows (#160)
* save point 1
* compile on windows
* run on android
* revert useless change
* android set CC_ENABLE_CACHE_TEXTURE_DATA to 1
* add initGlew
* fix android crash
* add TODO new-renderer
* review update
* revert onGLFWWindowPosCallback
* fix android compiling error
* Impl progress radial (#162)
* progresstimer add radial impl
* default drawType to element
* dec invoke times of createVertexBuffer (#163)
* support depth/stencil format for gl backend
* simplify progress timer codes
* support motionstreak, effect is wrong
* fix motionstreak issue
* [Feature] update Scissor Test (#161)
* [Feature] update Scissor Test
* [Feature] update ScissorTest
* [Feature] rename function
* [Feature] get constant reference if needed
* [Feature] show render status (#164)
* improve performance
* fix depth state
* fill error that triangle vertex/index number bigger than buffer
* fix compiline error in release mode
* fix buffer conflict between CPU and GPU on iOS/macOS
* Renderer refactor (#165)
* use one vertes/index buffer with opengl
* fix error on windows
* custom command support index format config
* CCLayer: compact vertex data structure
* update comment
* fix doc
* support fast tilemap
* pass index format instead
* fix some wrong effect
* fix render texture error
* fix texture per-element size
* fix texture format error
* BlendFunc type refactor, GLenum -> backend::BlendFactor (#167)
* BlendFunc use backend::BlendFactor as inner field
* update comments
* use int to replace GLenum
* update xcode project fiel
* rename to GLBlendConst
* add ccConstants.h
* update xcode project file
* update copyright
* remove primitive command
* remove CCPrimitive.cpp/.h
* remove deprecated files
* remove unneeded files
* remove multiple view support
* remove multiple view support
* remove the usage of frame buffer in camera
* director don't use frame buffer
* remove FrameBuffer
* remove BatchCommand
* add some api reference
* add physics2d back
* fix crash when close app on mac
* improve render texture
* fix rendertexture issue
* fix rendertexture issue
* simplify codes
* CMake support for mac & ios (#169)
* update cmake
* fix compile error
* update 3rd libs version
* remove CCThread.h/.cpp
* remove ccthread
* use audio engine to implement simple audio engine
* remove unneeded codes
* remove deprecated codes
* remove winrt macro
* remove CC_USE_WIC
* set partcile blend function in more elegant way
* remove unneeded codes
* remove unneeded codes
* cmake works on windows
* update project setting
* improve performance
* GLFloat -> float
* sync v3 cmake improvements into metal-support (#172)
* pick: modern cmake, compile definitions improvement (#19139)
* modern cmake, use target_compile_definitions partly
* simplify macro define, remove USE_*
* modern cmake, macro define
* add physics 2d macro define into ccConfig.h
* remove USE_CHIPMUNK macro in build.gradle
* remove CocosSelectModule.cmake
* shrink useless define
* simplify compile options config, re-add if necessary
* update external for tmp CI test
* un-quote target_compile_options value
* add "-g" parameter only when debug mode
* keep single build type when generator Xcode & VS projecy
* update external for tmp CI tes
* add static_cast<char>(-1), fix -Wc++11-narrowing
* simplify win32 compile define
* not modify code, only improve compile options
# Conflicts:
# .gitignore
# cmake/Modules/CocosConfigDepend.cmake
# cocos/CMakeLists.txt
# external/config.json
# tests/cpp-tests/CMakeLists.txt
* modern cmake, improve cmake_compiler_flags (#19145)
* cmake_compiler_flags
* Fix typo
* Fix typo2
* Remove chanages from Android.mk
* correct lua template cmake build (#19149)
* don't add -Wno-deprecated into jsb target
* correct lua template cmake build
* fix win32 lua template compile error
* prevent cmake in-source-build friendly (#19151)
* pick: Copy resources to "Resources/" on win32 like in linux configuration
* add "/Z7" for cpp-tests on windows
* [cmake] fix iOS xcode property setting failed (#19208)
* fix iOS xcode property setting failed
* use search_depend_libs_recursive at dlls collect
* fix typo
* [cmake] add find_host_library into iOS toolchain file (#19230)
* pick: [lua android] use luajit & template cmake update (#19239)
* increase cmake stability , remove tests/CMakeLists.txt (#19261)
* cmake win32 Precompiled header (#19273)
* Precompiled header
* Fix
* Precompiled header for cocos
* Precompiled header jscocos2d
* Fix for COCOS2D_DEBUG is always 1 on Android (#19291)
Related #19289
* little build fix, tests cpp-tests works on mac
* sync v3 build related codes into metal-support (#173)
* strict initialization for std::array
* remove proj.win32 project configs
* modern cmake, cmake_cleanup_remove_unused_variables (#19146)
* Switch travis CI to xenial (#19207)
* Switch travis CI to xenial
* Remove language: android
* Set language: cpp
* Fix java problem
* Update sdkmanager
* Fix sdkmanger
* next sdkmanager fix
* Remove xenial from android
* revert to sdk-tools-{system}-3859397
* Remove linux cmake install
* Update before-install.sh
* Update .travis.yml
* Simplify install-deps-linux.sh, tested on Ubuntu 16.04 (#19212)
* Simplify install-deps-linux.sh
* Cleanup
* pick: install ninja
* update cocos2d-console submodule
* for metal-support alpha release, we only test cpp
* add HelloCpp into project(Cocos2d-x) for tmp test
* update extenal metal-support-4
* update uniform setting
* [Feature] update BindGroup
* [Feature] empty-test
* [Feature] cpp-test
* [Feature] fix GL compiler error
* [Feature] fix GL crash
* [Feature] empty-test
* [Feature] cpp-tests
* [feature] improve frameRate
* [feature] fix opengl compile error
* [feature] fix opengl compile error
* [BugFix] fix compute maxLocation error
* [Feature] update setting unifrom
* [Feature] fix namespace
* [Feature] remove unneeded code
* [Bugfix] fix project file
* [Feature] update review
* [texture2d] impl texture format support (#175)
* texture update
* update
* update texture
* commit
* compile on windows
* ddd
* rename
* rename methods
* no crash
* save gl
* save
* save
* rename
* move out pixel format convert functions
* metal crash
* update
* update android
* support gles compressed texture format
* support more compress format
* add more conversion methods
* ss
* save
* update conversion methods
* add PVRTC format support
* reformat
* add marco linux
* fix GL marcro
* pvrtc supported only by ios 8.0+
* remove unused cmake
* revert change
* refactor Texture2D::initWithData
* fix conversion log
* refactor Texture2D::initWithData
* remove some OpenGL constants for PVRTC
* add todo
* fix typo
* AutoTest works on mac/iOS by disable part cases, sync v3 bug fix (#174)
* review cpp-tests, and fix part issues on start auto test
* sync png format fix: Node:Particle3D abnormal texture effects #19204
* fix cpp-tests SpritePolygon crash, wrong png format (#19170)
* fix wrong png convert format from sRGB to Gray
* erase plist index if all frames was erased
* test_A8.png have I8 format, fix it
* [CCSpriteCache] allow re-add plist & add testcase (#19175)
* allow re-add plist & add testcase
* remove comments/rename method/update testcase
* fix isSpriteFramesWithFileLoaded & add testcase
* remove used variable
* remove unused variable
* fix double free issues when js/lua-tests exit on iOS (#19236)
* disable part cases, AutoTest works without crash on mac
* update cocos2dx files json, to test cocos new next
* fix spritecache plist parsing issue (#19269)
* [linux] Fix FileUtils::getContents with folder (#19157)
* fix FileUtils::getContents on linux/mac
* use stat.st_mode
* simplify
* [CCFileUtils] win32 getFileSize (#19176)
* win32 getFileSize
* fix stat
* [cpp test-Android]20:FileUtils/2 change title (#19197)
* sync #19200
* sync #19231
* [android lua] improve performance of lua loader (#19234)
* [lua] improve performance of lua loader
* remove cache fix
* Revert "fix spritecache plist parsing issue (#19269)"
This reverts commit f3a85ece4307a7b90816c34489d1ed2c8fd11baf.
* remove win32 project files ref in template.json
* add metal framework lnk ref into cpp template
* test on iOS, and disable part cases
* alBufferData instead of alBufferDataStatic for small audio file on Apple (#19227)
* changes AudioCache to use alBufferData instead of alBufferDataStatic
(also makes test 19 faster to trigger openal bugs faster)
The original problem: CrashIfClientProvidedBogusAudioBufferList
https://github.com/cocos2d/cocos2d-x/issues/18948
is not happening anymore, but there's still a not very frequent issue
that makes OpenAL crash with a call stack like this.
AudioCache::readDataTask > alBufferData > CleanUpDeadBufferList
It happes more frequently when the device is "cold", which means after
half an hour of not using the device (locked).
I could not find the actual source code for iOS OpenAL, so I used the
macOS versions:
https://opensource.apple.com/source/OpenAL/OpenAL-48.7/Source/OpenAL/oalImp.cpp.auto.html
They seem to use CAGuard.h to make sure the dead buffer list
has no threading issues. I'm worried because the CAGuard code I found
has macos and win32 define but no iOS, so I'm not sure. I guess the
iOS version is different and has the guard.
I could not find a place in the code that's unprotected by the locks
except the InitializeBufferMap() which should not be called more than
once from cocos, and there's a workaround in AudioEngine-impl for it.
I reduced the occurence of the CleanUpDeadBufferList crash by moving
the guard in ~AudioCache to cover the alDeleteBuffers call.
* remove hack method "setTimeout" on audio
* AutoTest works on iOS
* support set ios deployment target for root project
* enable all texture2d cases, since Jiang have fixed
* add CCTextureUtils to xcode project file (#176)
* add leak cases for SpriteFrameCache (#177)
* re-add SpriteFrameCache cases
* update template file json
* Update SpriteFrameCacheTest.cpp
* fix compiling error
2019-01-18 15:08:25 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2013-12-05 16:09:38 +08:00
|
|
|
WSADATA wsaData;
|
2021-12-25 10:04:45 +08:00
|
|
|
n = WSAStartup(MAKEWORD(2, 2), &wsaData);
|
2013-12-05 16:09:38 +08:00
|
|
|
#endif
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
if ((n = getaddrinfo(nullptr, serv, &hints, &res)) != 0)
|
|
|
|
{
|
2018-01-22 09:23:45 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
|
|
fprintf(stderr, "net_listen error for %s: %s", serv, gai_strerrorA(n));
|
|
|
|
#else
|
2021-12-25 10:04:45 +08:00
|
|
|
fprintf(stderr, "net_listen error for %s: %s", serv, gai_strerror(n));
|
2018-01-22 09:23:45 +08:00
|
|
|
#endif
|
2013-12-04 10:46:54 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
ressave = res;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
do
|
|
|
|
{
|
2013-12-04 10:46:54 +08:00
|
|
|
listenfd = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
|
|
|
|
if (listenfd < 0)
|
2021-12-25 10:04:45 +08:00
|
|
|
continue; /* error, try next one */
|
2013-12-04 10:46:54 +08:00
|
|
|
|
2013-12-05 16:09:38 +08:00
|
|
|
setsockopt(listenfd, SOL_SOCKET, SO_REUSEADDR, (const char*)&on, sizeof(on));
|
2014-12-24 02:04:42 +08:00
|
|
|
|
|
|
|
// bind address
|
2015-09-01 11:26:09 +08:00
|
|
|
if (!_bindAddress.empty())
|
2014-12-24 02:04:42 +08:00
|
|
|
{
|
2014-12-26 21:04:49 +08:00
|
|
|
if (res->ai_family == AF_INET)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
struct sockaddr_in* sin = (struct sockaddr_in*)res->ai_addr;
|
2014-12-26 21:04:49 +08:00
|
|
|
inet_pton(res->ai_family, _bindAddress.c_str(), (void*)&sin->sin_addr);
|
|
|
|
}
|
|
|
|
else if (res->ai_family == AF_INET6)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
struct sockaddr_in6* sin = (struct sockaddr_in6*)res->ai_addr;
|
2014-12-26 21:04:49 +08:00
|
|
|
inet_pton(res->ai_family, _bindAddress.c_str(), (void*)&sin->sin6_addr);
|
|
|
|
}
|
2014-12-24 02:04:42 +08:00
|
|
|
}
|
|
|
|
|
2013-12-04 10:46:54 +08:00
|
|
|
if (bind(listenfd, res->ai_addr, res->ai_addrlen) == 0)
|
2021-12-25 10:04:45 +08:00
|
|
|
break; /* success */
|
2013-12-04 10:46:54 +08:00
|
|
|
|
2014-02-24 16:51:08 +08:00
|
|
|
/* bind error, close and try next one */
|
metal support for cocos2d-x (#19305)
* remove deprecated files
* remove some deprecated codes
* remove more deprecated codes
* remove ui deprecated codes
* remove more deprecated codes
* remove deprecated codes in ccmenuitem
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes
* remove more deprecated codes
* remove more deprecated codes
* remove vr related codes and ignore some modules
* remove allocator
* remove some config
* 【Feature】add back-end project file
* [Feature] add back-end file
* add pipeline descriptor and shader cache
* [Feature] support sprite for backend
* [Feature] remove unneeded code
* [Feature] according to es2.0 spec, you must use clamp-to-edge as texture wrap mode, and no mipmapping for non-power-of-two texture
* [Feature] set texture wrap mode to clamp-to-edge, and no mipmapping for non-power-of-two texture
* [Feature] remove macro define to .cpp file
* [Feature] add log info
* [Feature] add PipelineDescriptor for TriangleCommand
* [Feature] add PipelineDescriptor object as member of TriangleCommand
* [Feature] add getPipelineDescriptor method
* add renderbackend
* complete pipeline descriptor
* [Feature] add viewport in RenderCommand
* set viewport when rendrering
* [Feature] occur error when using RendererBackend, to be fixed.
* a workaround to fix black screen on macOS 10.14 (#19090)
* add rendererbackend init function
* fix typo
* [Feature] modify testFile
* [BugFix] modify shader path
* [Feature] set default viewport
* fix projection
* [Feature] modify log info
* [BugFix] change viewport data type to int
* [BugFix] add BindGroup to PipelienDescriptor
* [BugFix] change a_position to vec3 in sprite.vert
* [BugFix] set vertexLayout according to V3F_C4B_T2F structure
* [Feature] revert a_position to vec4
* [Feature] renderer should not use gl codes directly
* [Feature] it's better not use default value parameter
* fix depth test setting
* rendererbackend -> renderer
* clear color and depth at begin
* add metal backend
* metal support normalized attribute
* simplify codes
* update external
* add render pass desctriptor in pipeline descriptor
* fix warnings
* fix crash and memeory leak
* refactor Texture2D
* put pipeline descriptor into render command
* simplify codes
* [Feature] update Sprite
* fix crash when closing app
* [Feature] update SpriteBatchNode and TextureAtlas
* support render texture(not finish)
* [Feature] remove unused code
* make tests work on mac
* fix download-deps path error
* make tests work on iOS
* [Feature] support ttf under normal label effect
* refactor triangle command processing
* let renderer handle more common commands
* refactor backend
* make render texture work
* [Feature] refactor backend for GL
* [Feature]Renaming to make it easy to understand
* [Feature] change warp mode to CLAMP_TO_EDGE
* fix ghost
* simplify visit render queue logic
* support progress timer without rial mode
* support partcile system
* Feature/update label (#149)
* [BugFix] fix compile error
* [Feature] support outline effect in ios
* [Feature] add shader file
* [BugFix] fix begin and end RenderPass
* [Feature] update CustomCommand
* [Feature] revert project.pbxproj
* [Feature] simplify codes
* [BugFix] pack AI88 to RGBA8888 only when outline enable
* [Feature] support shadow effect in Label
* [Feature] support BMFont
* [Feature] support glow effect
* [Feature] simplify shader files
* LabelAtlas work
* handle blend function correctly
* support tile map
* don't share buffer in metal
* alloc buffer size as needed
* support more tilemap
* Merge branch 'minggo/metal-support' into feature/updateLabel
* minggo/metal-support:
support tile map
handle blend function correctly
LabelAtlas work
Feature/update label (#149)
support partcile system
# Conflicts:
# cocos/2d/CCLabel.cpp
# cocos/2d/CCSprite.cpp
# cocos/2d/CCSpriteBatchNode.cpp
# cocos/renderer/CCQuadCommand.cpp
# cocos/renderer/CCQuadCommand.h
* render texture work without saving file
* use global viewport
* grid3d works
* remove grabber
* tiled3d works
* [BugFix] fix label bug
* [Feature] add updateSubData for buffer
* [Feature] remove setVertexCount
* support depth test
* add callback command
* [Feature] add UITest
* [Feature] update UITest
* [Feature] remove unneeded codes
* fix custom command issue
* fix layer color blend issue
* [BugFix] fix iOS compile error
* [Feature] remove unneeded codes
* [Feature] fix updateVertexBuffer
* layerradial works
* add draw test back
* fix batch issue
* fix compiling error
* [BugFix] support ETC1
* [BugFix] get the correct pipelineDescriptor
* [BugFix] skip draw when backendTexture nullptr
* clipping node support
* [Feature] add shader files
* fix stencil issue in metal
* [Feature] update UILayoutTest
* [BugFix] skip drawing when vertexCount is zero
* refactor renderer
* add set global z order for stencil manager commands
* fix warnings caused by type
* remove viewport in render command
* [Feature] fix warnings caused by type
* [BugFix] clear vertexCount and indexCount for CustomComand when needed
* [Feature] update clear for CustomCommand
* ios use metal
* fix viewport issue
* fix LayerColorGradient crash
* [cmake] transport to android and windows (#160)
* save point 1
* compile on windows
* run on android
* revert useless change
* android set CC_ENABLE_CACHE_TEXTURE_DATA to 1
* add initGlew
* fix android crash
* add TODO new-renderer
* review update
* revert onGLFWWindowPosCallback
* fix android compiling error
* Impl progress radial (#162)
* progresstimer add radial impl
* default drawType to element
* dec invoke times of createVertexBuffer (#163)
* support depth/stencil format for gl backend
* simplify progress timer codes
* support motionstreak, effect is wrong
* fix motionstreak issue
* [Feature] update Scissor Test (#161)
* [Feature] update Scissor Test
* [Feature] update ScissorTest
* [Feature] rename function
* [Feature] get constant reference if needed
* [Feature] show render status (#164)
* improve performance
* fix depth state
* fill error that triangle vertex/index number bigger than buffer
* fix compiline error in release mode
* fix buffer conflict between CPU and GPU on iOS/macOS
* Renderer refactor (#165)
* use one vertes/index buffer with opengl
* fix error on windows
* custom command support index format config
* CCLayer: compact vertex data structure
* update comment
* fix doc
* support fast tilemap
* pass index format instead
* fix some wrong effect
* fix render texture error
* fix texture per-element size
* fix texture format error
* BlendFunc type refactor, GLenum -> backend::BlendFactor (#167)
* BlendFunc use backend::BlendFactor as inner field
* update comments
* use int to replace GLenum
* update xcode project fiel
* rename to GLBlendConst
* add ccConstants.h
* update xcode project file
* update copyright
* remove primitive command
* remove CCPrimitive.cpp/.h
* remove deprecated files
* remove unneeded files
* remove multiple view support
* remove multiple view support
* remove the usage of frame buffer in camera
* director don't use frame buffer
* remove FrameBuffer
* remove BatchCommand
* add some api reference
* add physics2d back
* fix crash when close app on mac
* improve render texture
* fix rendertexture issue
* fix rendertexture issue
* simplify codes
* CMake support for mac & ios (#169)
* update cmake
* fix compile error
* update 3rd libs version
* remove CCThread.h/.cpp
* remove ccthread
* use audio engine to implement simple audio engine
* remove unneeded codes
* remove deprecated codes
* remove winrt macro
* remove CC_USE_WIC
* set partcile blend function in more elegant way
* remove unneeded codes
* remove unneeded codes
* cmake works on windows
* update project setting
* improve performance
* GLFloat -> float
* sync v3 cmake improvements into metal-support (#172)
* pick: modern cmake, compile definitions improvement (#19139)
* modern cmake, use target_compile_definitions partly
* simplify macro define, remove USE_*
* modern cmake, macro define
* add physics 2d macro define into ccConfig.h
* remove USE_CHIPMUNK macro in build.gradle
* remove CocosSelectModule.cmake
* shrink useless define
* simplify compile options config, re-add if necessary
* update external for tmp CI test
* un-quote target_compile_options value
* add "-g" parameter only when debug mode
* keep single build type when generator Xcode & VS projecy
* update external for tmp CI tes
* add static_cast<char>(-1), fix -Wc++11-narrowing
* simplify win32 compile define
* not modify code, only improve compile options
# Conflicts:
# .gitignore
# cmake/Modules/CocosConfigDepend.cmake
# cocos/CMakeLists.txt
# external/config.json
# tests/cpp-tests/CMakeLists.txt
* modern cmake, improve cmake_compiler_flags (#19145)
* cmake_compiler_flags
* Fix typo
* Fix typo2
* Remove chanages from Android.mk
* correct lua template cmake build (#19149)
* don't add -Wno-deprecated into jsb target
* correct lua template cmake build
* fix win32 lua template compile error
* prevent cmake in-source-build friendly (#19151)
* pick: Copy resources to "Resources/" on win32 like in linux configuration
* add "/Z7" for cpp-tests on windows
* [cmake] fix iOS xcode property setting failed (#19208)
* fix iOS xcode property setting failed
* use search_depend_libs_recursive at dlls collect
* fix typo
* [cmake] add find_host_library into iOS toolchain file (#19230)
* pick: [lua android] use luajit & template cmake update (#19239)
* increase cmake stability , remove tests/CMakeLists.txt (#19261)
* cmake win32 Precompiled header (#19273)
* Precompiled header
* Fix
* Precompiled header for cocos
* Precompiled header jscocos2d
* Fix for COCOS2D_DEBUG is always 1 on Android (#19291)
Related #19289
* little build fix, tests cpp-tests works on mac
* sync v3 build related codes into metal-support (#173)
* strict initialization for std::array
* remove proj.win32 project configs
* modern cmake, cmake_cleanup_remove_unused_variables (#19146)
* Switch travis CI to xenial (#19207)
* Switch travis CI to xenial
* Remove language: android
* Set language: cpp
* Fix java problem
* Update sdkmanager
* Fix sdkmanger
* next sdkmanager fix
* Remove xenial from android
* revert to sdk-tools-{system}-3859397
* Remove linux cmake install
* Update before-install.sh
* Update .travis.yml
* Simplify install-deps-linux.sh, tested on Ubuntu 16.04 (#19212)
* Simplify install-deps-linux.sh
* Cleanup
* pick: install ninja
* update cocos2d-console submodule
* for metal-support alpha release, we only test cpp
* add HelloCpp into project(Cocos2d-x) for tmp test
* update extenal metal-support-4
* update uniform setting
* [Feature] update BindGroup
* [Feature] empty-test
* [Feature] cpp-test
* [Feature] fix GL compiler error
* [Feature] fix GL crash
* [Feature] empty-test
* [Feature] cpp-tests
* [feature] improve frameRate
* [feature] fix opengl compile error
* [feature] fix opengl compile error
* [BugFix] fix compute maxLocation error
* [Feature] update setting unifrom
* [Feature] fix namespace
* [Feature] remove unneeded code
* [Bugfix] fix project file
* [Feature] update review
* [texture2d] impl texture format support (#175)
* texture update
* update
* update texture
* commit
* compile on windows
* ddd
* rename
* rename methods
* no crash
* save gl
* save
* save
* rename
* move out pixel format convert functions
* metal crash
* update
* update android
* support gles compressed texture format
* support more compress format
* add more conversion methods
* ss
* save
* update conversion methods
* add PVRTC format support
* reformat
* add marco linux
* fix GL marcro
* pvrtc supported only by ios 8.0+
* remove unused cmake
* revert change
* refactor Texture2D::initWithData
* fix conversion log
* refactor Texture2D::initWithData
* remove some OpenGL constants for PVRTC
* add todo
* fix typo
* AutoTest works on mac/iOS by disable part cases, sync v3 bug fix (#174)
* review cpp-tests, and fix part issues on start auto test
* sync png format fix: Node:Particle3D abnormal texture effects #19204
* fix cpp-tests SpritePolygon crash, wrong png format (#19170)
* fix wrong png convert format from sRGB to Gray
* erase plist index if all frames was erased
* test_A8.png have I8 format, fix it
* [CCSpriteCache] allow re-add plist & add testcase (#19175)
* allow re-add plist & add testcase
* remove comments/rename method/update testcase
* fix isSpriteFramesWithFileLoaded & add testcase
* remove used variable
* remove unused variable
* fix double free issues when js/lua-tests exit on iOS (#19236)
* disable part cases, AutoTest works without crash on mac
* update cocos2dx files json, to test cocos new next
* fix spritecache plist parsing issue (#19269)
* [linux] Fix FileUtils::getContents with folder (#19157)
* fix FileUtils::getContents on linux/mac
* use stat.st_mode
* simplify
* [CCFileUtils] win32 getFileSize (#19176)
* win32 getFileSize
* fix stat
* [cpp test-Android]20:FileUtils/2 change title (#19197)
* sync #19200
* sync #19231
* [android lua] improve performance of lua loader (#19234)
* [lua] improve performance of lua loader
* remove cache fix
* Revert "fix spritecache plist parsing issue (#19269)"
This reverts commit f3a85ece4307a7b90816c34489d1ed2c8fd11baf.
* remove win32 project files ref in template.json
* add metal framework lnk ref into cpp template
* test on iOS, and disable part cases
* alBufferData instead of alBufferDataStatic for small audio file on Apple (#19227)
* changes AudioCache to use alBufferData instead of alBufferDataStatic
(also makes test 19 faster to trigger openal bugs faster)
The original problem: CrashIfClientProvidedBogusAudioBufferList
https://github.com/cocos2d/cocos2d-x/issues/18948
is not happening anymore, but there's still a not very frequent issue
that makes OpenAL crash with a call stack like this.
AudioCache::readDataTask > alBufferData > CleanUpDeadBufferList
It happes more frequently when the device is "cold", which means after
half an hour of not using the device (locked).
I could not find the actual source code for iOS OpenAL, so I used the
macOS versions:
https://opensource.apple.com/source/OpenAL/OpenAL-48.7/Source/OpenAL/oalImp.cpp.auto.html
They seem to use CAGuard.h to make sure the dead buffer list
has no threading issues. I'm worried because the CAGuard code I found
has macos and win32 define but no iOS, so I'm not sure. I guess the
iOS version is different and has the guard.
I could not find a place in the code that's unprotected by the locks
except the InitializeBufferMap() which should not be called more than
once from cocos, and there's a workaround in AudioEngine-impl for it.
I reduced the occurence of the CleanUpDeadBufferList crash by moving
the guard in ~AudioCache to cover the alDeleteBuffers call.
* remove hack method "setTimeout" on audio
* AutoTest works on iOS
* support set ios deployment target for root project
* enable all texture2d cases, since Jiang have fixed
* add CCTextureUtils to xcode project file (#176)
* add leak cases for SpriteFrameCache (#177)
* re-add SpriteFrameCache cases
* update template file json
* Update SpriteFrameCacheTest.cpp
* fix compiling error
2019-01-18 15:08:25 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2014-02-24 16:51:08 +08:00
|
|
|
closesocket(listenfd);
|
|
|
|
#else
|
|
|
|
close(listenfd);
|
|
|
|
#endif
|
2021-12-25 10:04:45 +08:00
|
|
|
} while ((res = res->ai_next) != nullptr);
|
|
|
|
|
|
|
|
if (res == nullptr)
|
|
|
|
{
|
2013-12-04 10:46:54 +08:00
|
|
|
perror("net_listen:");
|
|
|
|
freeaddrinfo(ressave);
|
|
|
|
return false;
|
|
|
|
}
|
2013-12-05 08:26:21 +08:00
|
|
|
|
2013-12-04 10:46:54 +08:00
|
|
|
listen(listenfd, 50);
|
2013-12-05 08:26:21 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
if (res->ai_family == AF_INET)
|
|
|
|
{
|
|
|
|
_isIpv6Server = false;
|
2017-03-29 09:17:37 +08:00
|
|
|
char buf[INET_ADDRSTRLEN] = {0};
|
2021-12-25 10:04:45 +08:00
|
|
|
struct sockaddr_in* sin = (struct sockaddr_in*)res->ai_addr;
|
|
|
|
if (inet_ntop(res->ai_family, &sin->sin_addr, buf, sizeof(buf)) != nullptr)
|
2017-03-29 09:17:37 +08:00
|
|
|
cocos2d::log("Console: IPV4 server is listening on %s:%d", buf, ntohs(sin->sin_port));
|
2013-12-05 13:51:08 +08:00
|
|
|
else
|
|
|
|
perror("inet_ntop");
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (res->ai_family == AF_INET6)
|
|
|
|
{
|
|
|
|
_isIpv6Server = true;
|
2017-03-29 09:17:37 +08:00
|
|
|
char buf[INET6_ADDRSTRLEN] = {0};
|
2021-12-25 10:04:45 +08:00
|
|
|
struct sockaddr_in6* sin = (struct sockaddr_in6*)res->ai_addr;
|
|
|
|
if (inet_ntop(res->ai_family, &sin->sin6_addr, buf, sizeof(buf)) != nullptr)
|
2017-03-29 09:17:37 +08:00
|
|
|
cocos2d::log("Console: IPV6 server is listening on [%s]:%d", buf, ntohs(sin->sin6_port));
|
2013-12-05 08:26:21 +08:00
|
|
|
else
|
|
|
|
perror("inet_ntop");
|
|
|
|
}
|
|
|
|
|
2013-12-04 10:46:54 +08:00
|
|
|
freeaddrinfo(ressave);
|
|
|
|
return listenOnFileDescriptor(listenfd);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Console::listenOnFileDescriptor(int fd)
|
2013-11-27 10:58:36 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_running)
|
|
|
|
{
|
2014-01-11 09:11:14 +08:00
|
|
|
cocos2d::log("Console already started. 'stop' it before calling 'listen' again");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-04 10:46:54 +08:00
|
|
|
_listenfd = fd;
|
2021-12-25 10:04:45 +08:00
|
|
|
_thread = std::thread(std::bind(&Console::loop, this));
|
2013-12-04 10:46:54 +08:00
|
|
|
|
|
|
|
return true;
|
2013-11-27 10:58:36 +08:00
|
|
|
}
|
|
|
|
|
2014-01-11 09:11:14 +08:00
|
|
|
void Console::stop()
|
2013-11-27 10:58:36 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_running)
|
|
|
|
{
|
2013-12-04 10:46:54 +08:00
|
|
|
_endThread = true;
|
2015-05-19 18:33:06 +08:00
|
|
|
if (_thread.joinable())
|
|
|
|
{
|
|
|
|
_thread.join();
|
|
|
|
}
|
2013-12-04 10:46:54 +08:00
|
|
|
}
|
2013-11-27 10:58:36 +08:00
|
|
|
}
|
|
|
|
|
2014-02-14 14:54:26 +08:00
|
|
|
void Console::addCommand(const Command& cmd)
|
2013-12-05 09:38:11 +08:00
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
Command* newCommand = new Command(cmd);
|
2021-12-25 10:04:45 +08:00
|
|
|
auto iter = _commands.find(cmd.getName());
|
2017-12-05 13:35:16 +08:00
|
|
|
if (iter != _commands.end())
|
|
|
|
{
|
|
|
|
delete iter->second;
|
|
|
|
_commands.erase(iter);
|
|
|
|
}
|
2021-12-26 23:26:34 +08:00
|
|
|
_commands.emplace(cmd.getName(), newCommand); // _commands[cmd.getName()] = newCommand;
|
2014-02-13 10:40:57 +08:00
|
|
|
}
|
2013-12-05 08:26:21 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::addSubCommand(std::string_view cmdName, const Command& subCmd)
|
2013-12-04 10:46:54 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto it = _commands.find(cmdName);
|
2017-12-05 13:35:16 +08:00
|
|
|
if (it != _commands.end())
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto& cmd = it->second;
|
2017-12-05 13:35:16 +08:00
|
|
|
addSubCommand(*cmd, subCmd);
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2013-12-05 08:26:21 +08:00
|
|
|
}
|
2013-12-04 10:46:54 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
void Console::addSubCommand(Command& cmd, const Command& subCmd)
|
2013-12-05 08:26:21 +08:00
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
cmd.addSubCommand(subCmd);
|
2013-12-05 08:26:21 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
const Console::Command* Console::getCommand(std::string_view cmdName)
|
2013-12-05 08:57:44 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto it = _commands.find(cmdName);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (it != _commands.end())
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto& cmd = it->second;
|
2017-12-05 13:35:16 +08:00
|
|
|
return cmd;
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
return nullptr;
|
2013-12-05 08:57:44 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
const Console::Command* Console::getSubCommand(std::string_view cmdName, std::string_view subCmdName)
|
2014-01-15 09:22:45 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto it = _commands.find(cmdName);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (it != _commands.end())
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto& cmd = it->second;
|
2017-12-05 13:35:16 +08:00
|
|
|
return getSubCommand(*cmd, subCmdName);
|
2014-02-09 04:46:44 +08:00
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
return nullptr;
|
2014-01-15 09:22:45 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
const Console::Command* Console::getSubCommand(const Command& cmd, std::string_view subCmdName)
|
2014-01-15 09:22:45 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
return cmd.getSubCommand(subCmdName);
|
2014-01-15 09:22:45 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::delCommand(std::string_view cmdName)
|
2014-01-15 09:22:45 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto it = _commands.find(cmdName);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (it != _commands.end())
|
|
|
|
{
|
2017-12-05 13:35:16 +08:00
|
|
|
delete it->second;
|
2016-04-21 11:31:20 +08:00
|
|
|
_commands.erase(it);
|
2014-02-09 04:46:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::delSubCommand(std::string_view cmdName, std::string_view subCmdName)
|
2014-02-09 04:46:44 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto it = _commands.find(cmdName);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (it != _commands.end())
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
auto& cmd = it->second;
|
2017-12-05 13:35:16 +08:00
|
|
|
delSubCommand(*cmd, subCmdName);
|
2014-02-09 04:46:44 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::delSubCommand(Command& cmd, std::string_view subCmdName)
|
2014-01-15 09:22:45 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
cmd.delSubCommand(subCmdName);
|
|
|
|
}
|
2014-02-09 04:46:44 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
void Console::log(const char* buf)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (_sendDebugStrings)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
_DebugStringsMutex.lock();
|
|
|
|
_DebugStrings.push_back(buf);
|
|
|
|
_DebugStringsMutex.unlock();
|
2014-01-15 09:22:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::setBindAddress(std::string_view address)
|
2014-02-19 11:19:29 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
_bindAddress = address;
|
2014-02-19 11:19:29 +08:00
|
|
|
}
|
|
|
|
|
2017-03-29 09:17:37 +08:00
|
|
|
bool Console::isIpv6Server() const
|
|
|
|
{
|
|
|
|
return _isIpv6Server;
|
|
|
|
}
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
//
|
|
|
|
// Main Loop
|
|
|
|
//
|
|
|
|
void Console::loop()
|
2014-02-25 11:04:59 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
fd_set copy_set;
|
|
|
|
struct timeval timeout, timeout_copy;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
_running = true;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
FD_ZERO(&_read_set);
|
|
|
|
FD_SET(_listenfd, &_read_set);
|
|
|
|
_maxfd = _listenfd;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
timeout.tv_sec = 1;
|
2018-10-08 11:50:28 +08:00
|
|
|
timeout.tv_usec = 0;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
while (!_endThread)
|
|
|
|
{
|
|
|
|
|
|
|
|
copy_set = _read_set;
|
2016-04-21 11:31:20 +08:00
|
|
|
timeout_copy = timeout;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
int nready = select(_maxfd + 1, ©_set, nullptr, nullptr, &timeout_copy);
|
|
|
|
|
|
|
|
if (nready == -1)
|
2014-02-25 11:04:59 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
/* error */
|
2021-12-25 10:04:45 +08:00
|
|
|
if (errno != EINTR)
|
2017-03-29 09:17:37 +08:00
|
|
|
cocos2d::log("Abnormal error in select()\n");
|
2016-04-21 11:31:20 +08:00
|
|
|
continue;
|
2014-02-25 11:04:59 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
else if (nready == 0)
|
2014-02-25 11:04:59 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
/* timeout. do something ? */
|
2014-02-25 11:47:53 +08:00
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
else
|
2014-02-25 11:47:53 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
/* new client */
|
2021-12-25 10:04:45 +08:00
|
|
|
if (FD_ISSET(_listenfd, ©_set))
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
addClient();
|
2021-12-25 10:04:45 +08:00
|
|
|
if (--nready <= 0)
|
2016-04-21 11:31:20 +08:00
|
|
|
continue;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
/* data from client */
|
|
|
|
std::vector<int> to_remove;
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& fd : _fds)
|
|
|
|
{
|
|
|
|
if (FD_ISSET(fd, ©_set))
|
2014-02-25 15:52:37 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
// fix Bug #4302 Test case ConsoleTest--ConsoleUploadFile crashed on Linux
|
|
|
|
// On linux, if you send data to a closed socket, the sending process will
|
|
|
|
// receive a SIGPIPE, which will cause linux system shutdown the sending process.
|
|
|
|
// Add this ioctl code to check if the socket has been closed by peer.
|
|
|
|
|
metal support for cocos2d-x (#19305)
* remove deprecated files
* remove some deprecated codes
* remove more deprecated codes
* remove ui deprecated codes
* remove more deprecated codes
* remove deprecated codes in ccmenuitem
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes
* remove more deprecated codes
* remove more deprecated codes
* remove vr related codes and ignore some modules
* remove allocator
* remove some config
* 【Feature】add back-end project file
* [Feature] add back-end file
* add pipeline descriptor and shader cache
* [Feature] support sprite for backend
* [Feature] remove unneeded code
* [Feature] according to es2.0 spec, you must use clamp-to-edge as texture wrap mode, and no mipmapping for non-power-of-two texture
* [Feature] set texture wrap mode to clamp-to-edge, and no mipmapping for non-power-of-two texture
* [Feature] remove macro define to .cpp file
* [Feature] add log info
* [Feature] add PipelineDescriptor for TriangleCommand
* [Feature] add PipelineDescriptor object as member of TriangleCommand
* [Feature] add getPipelineDescriptor method
* add renderbackend
* complete pipeline descriptor
* [Feature] add viewport in RenderCommand
* set viewport when rendrering
* [Feature] occur error when using RendererBackend, to be fixed.
* a workaround to fix black screen on macOS 10.14 (#19090)
* add rendererbackend init function
* fix typo
* [Feature] modify testFile
* [BugFix] modify shader path
* [Feature] set default viewport
* fix projection
* [Feature] modify log info
* [BugFix] change viewport data type to int
* [BugFix] add BindGroup to PipelienDescriptor
* [BugFix] change a_position to vec3 in sprite.vert
* [BugFix] set vertexLayout according to V3F_C4B_T2F structure
* [Feature] revert a_position to vec4
* [Feature] renderer should not use gl codes directly
* [Feature] it's better not use default value parameter
* fix depth test setting
* rendererbackend -> renderer
* clear color and depth at begin
* add metal backend
* metal support normalized attribute
* simplify codes
* update external
* add render pass desctriptor in pipeline descriptor
* fix warnings
* fix crash and memeory leak
* refactor Texture2D
* put pipeline descriptor into render command
* simplify codes
* [Feature] update Sprite
* fix crash when closing app
* [Feature] update SpriteBatchNode and TextureAtlas
* support render texture(not finish)
* [Feature] remove unused code
* make tests work on mac
* fix download-deps path error
* make tests work on iOS
* [Feature] support ttf under normal label effect
* refactor triangle command processing
* let renderer handle more common commands
* refactor backend
* make render texture work
* [Feature] refactor backend for GL
* [Feature]Renaming to make it easy to understand
* [Feature] change warp mode to CLAMP_TO_EDGE
* fix ghost
* simplify visit render queue logic
* support progress timer without rial mode
* support partcile system
* Feature/update label (#149)
* [BugFix] fix compile error
* [Feature] support outline effect in ios
* [Feature] add shader file
* [BugFix] fix begin and end RenderPass
* [Feature] update CustomCommand
* [Feature] revert project.pbxproj
* [Feature] simplify codes
* [BugFix] pack AI88 to RGBA8888 only when outline enable
* [Feature] support shadow effect in Label
* [Feature] support BMFont
* [Feature] support glow effect
* [Feature] simplify shader files
* LabelAtlas work
* handle blend function correctly
* support tile map
* don't share buffer in metal
* alloc buffer size as needed
* support more tilemap
* Merge branch 'minggo/metal-support' into feature/updateLabel
* minggo/metal-support:
support tile map
handle blend function correctly
LabelAtlas work
Feature/update label (#149)
support partcile system
# Conflicts:
# cocos/2d/CCLabel.cpp
# cocos/2d/CCSprite.cpp
# cocos/2d/CCSpriteBatchNode.cpp
# cocos/renderer/CCQuadCommand.cpp
# cocos/renderer/CCQuadCommand.h
* render texture work without saving file
* use global viewport
* grid3d works
* remove grabber
* tiled3d works
* [BugFix] fix label bug
* [Feature] add updateSubData for buffer
* [Feature] remove setVertexCount
* support depth test
* add callback command
* [Feature] add UITest
* [Feature] update UITest
* [Feature] remove unneeded codes
* fix custom command issue
* fix layer color blend issue
* [BugFix] fix iOS compile error
* [Feature] remove unneeded codes
* [Feature] fix updateVertexBuffer
* layerradial works
* add draw test back
* fix batch issue
* fix compiling error
* [BugFix] support ETC1
* [BugFix] get the correct pipelineDescriptor
* [BugFix] skip draw when backendTexture nullptr
* clipping node support
* [Feature] add shader files
* fix stencil issue in metal
* [Feature] update UILayoutTest
* [BugFix] skip drawing when vertexCount is zero
* refactor renderer
* add set global z order for stencil manager commands
* fix warnings caused by type
* remove viewport in render command
* [Feature] fix warnings caused by type
* [BugFix] clear vertexCount and indexCount for CustomComand when needed
* [Feature] update clear for CustomCommand
* ios use metal
* fix viewport issue
* fix LayerColorGradient crash
* [cmake] transport to android and windows (#160)
* save point 1
* compile on windows
* run on android
* revert useless change
* android set CC_ENABLE_CACHE_TEXTURE_DATA to 1
* add initGlew
* fix android crash
* add TODO new-renderer
* review update
* revert onGLFWWindowPosCallback
* fix android compiling error
* Impl progress radial (#162)
* progresstimer add radial impl
* default drawType to element
* dec invoke times of createVertexBuffer (#163)
* support depth/stencil format for gl backend
* simplify progress timer codes
* support motionstreak, effect is wrong
* fix motionstreak issue
* [Feature] update Scissor Test (#161)
* [Feature] update Scissor Test
* [Feature] update ScissorTest
* [Feature] rename function
* [Feature] get constant reference if needed
* [Feature] show render status (#164)
* improve performance
* fix depth state
* fill error that triangle vertex/index number bigger than buffer
* fix compiline error in release mode
* fix buffer conflict between CPU and GPU on iOS/macOS
* Renderer refactor (#165)
* use one vertes/index buffer with opengl
* fix error on windows
* custom command support index format config
* CCLayer: compact vertex data structure
* update comment
* fix doc
* support fast tilemap
* pass index format instead
* fix some wrong effect
* fix render texture error
* fix texture per-element size
* fix texture format error
* BlendFunc type refactor, GLenum -> backend::BlendFactor (#167)
* BlendFunc use backend::BlendFactor as inner field
* update comments
* use int to replace GLenum
* update xcode project fiel
* rename to GLBlendConst
* add ccConstants.h
* update xcode project file
* update copyright
* remove primitive command
* remove CCPrimitive.cpp/.h
* remove deprecated files
* remove unneeded files
* remove multiple view support
* remove multiple view support
* remove the usage of frame buffer in camera
* director don't use frame buffer
* remove FrameBuffer
* remove BatchCommand
* add some api reference
* add physics2d back
* fix crash when close app on mac
* improve render texture
* fix rendertexture issue
* fix rendertexture issue
* simplify codes
* CMake support for mac & ios (#169)
* update cmake
* fix compile error
* update 3rd libs version
* remove CCThread.h/.cpp
* remove ccthread
* use audio engine to implement simple audio engine
* remove unneeded codes
* remove deprecated codes
* remove winrt macro
* remove CC_USE_WIC
* set partcile blend function in more elegant way
* remove unneeded codes
* remove unneeded codes
* cmake works on windows
* update project setting
* improve performance
* GLFloat -> float
* sync v3 cmake improvements into metal-support (#172)
* pick: modern cmake, compile definitions improvement (#19139)
* modern cmake, use target_compile_definitions partly
* simplify macro define, remove USE_*
* modern cmake, macro define
* add physics 2d macro define into ccConfig.h
* remove USE_CHIPMUNK macro in build.gradle
* remove CocosSelectModule.cmake
* shrink useless define
* simplify compile options config, re-add if necessary
* update external for tmp CI test
* un-quote target_compile_options value
* add "-g" parameter only when debug mode
* keep single build type when generator Xcode & VS projecy
* update external for tmp CI tes
* add static_cast<char>(-1), fix -Wc++11-narrowing
* simplify win32 compile define
* not modify code, only improve compile options
# Conflicts:
# .gitignore
# cmake/Modules/CocosConfigDepend.cmake
# cocos/CMakeLists.txt
# external/config.json
# tests/cpp-tests/CMakeLists.txt
* modern cmake, improve cmake_compiler_flags (#19145)
* cmake_compiler_flags
* Fix typo
* Fix typo2
* Remove chanages from Android.mk
* correct lua template cmake build (#19149)
* don't add -Wno-deprecated into jsb target
* correct lua template cmake build
* fix win32 lua template compile error
* prevent cmake in-source-build friendly (#19151)
* pick: Copy resources to "Resources/" on win32 like in linux configuration
* add "/Z7" for cpp-tests on windows
* [cmake] fix iOS xcode property setting failed (#19208)
* fix iOS xcode property setting failed
* use search_depend_libs_recursive at dlls collect
* fix typo
* [cmake] add find_host_library into iOS toolchain file (#19230)
* pick: [lua android] use luajit & template cmake update (#19239)
* increase cmake stability , remove tests/CMakeLists.txt (#19261)
* cmake win32 Precompiled header (#19273)
* Precompiled header
* Fix
* Precompiled header for cocos
* Precompiled header jscocos2d
* Fix for COCOS2D_DEBUG is always 1 on Android (#19291)
Related #19289
* little build fix, tests cpp-tests works on mac
* sync v3 build related codes into metal-support (#173)
* strict initialization for std::array
* remove proj.win32 project configs
* modern cmake, cmake_cleanup_remove_unused_variables (#19146)
* Switch travis CI to xenial (#19207)
* Switch travis CI to xenial
* Remove language: android
* Set language: cpp
* Fix java problem
* Update sdkmanager
* Fix sdkmanger
* next sdkmanager fix
* Remove xenial from android
* revert to sdk-tools-{system}-3859397
* Remove linux cmake install
* Update before-install.sh
* Update .travis.yml
* Simplify install-deps-linux.sh, tested on Ubuntu 16.04 (#19212)
* Simplify install-deps-linux.sh
* Cleanup
* pick: install ninja
* update cocos2d-console submodule
* for metal-support alpha release, we only test cpp
* add HelloCpp into project(Cocos2d-x) for tmp test
* update extenal metal-support-4
* update uniform setting
* [Feature] update BindGroup
* [Feature] empty-test
* [Feature] cpp-test
* [Feature] fix GL compiler error
* [Feature] fix GL crash
* [Feature] empty-test
* [Feature] cpp-tests
* [feature] improve frameRate
* [feature] fix opengl compile error
* [feature] fix opengl compile error
* [BugFix] fix compute maxLocation error
* [Feature] update setting unifrom
* [Feature] fix namespace
* [Feature] remove unneeded code
* [Bugfix] fix project file
* [Feature] update review
* [texture2d] impl texture format support (#175)
* texture update
* update
* update texture
* commit
* compile on windows
* ddd
* rename
* rename methods
* no crash
* save gl
* save
* save
* rename
* move out pixel format convert functions
* metal crash
* update
* update android
* support gles compressed texture format
* support more compress format
* add more conversion methods
* ss
* save
* update conversion methods
* add PVRTC format support
* reformat
* add marco linux
* fix GL marcro
* pvrtc supported only by ios 8.0+
* remove unused cmake
* revert change
* refactor Texture2D::initWithData
* fix conversion log
* refactor Texture2D::initWithData
* remove some OpenGL constants for PVRTC
* add todo
* fix typo
* AutoTest works on mac/iOS by disable part cases, sync v3 bug fix (#174)
* review cpp-tests, and fix part issues on start auto test
* sync png format fix: Node:Particle3D abnormal texture effects #19204
* fix cpp-tests SpritePolygon crash, wrong png format (#19170)
* fix wrong png convert format from sRGB to Gray
* erase plist index if all frames was erased
* test_A8.png have I8 format, fix it
* [CCSpriteCache] allow re-add plist & add testcase (#19175)
* allow re-add plist & add testcase
* remove comments/rename method/update testcase
* fix isSpriteFramesWithFileLoaded & add testcase
* remove used variable
* remove unused variable
* fix double free issues when js/lua-tests exit on iOS (#19236)
* disable part cases, AutoTest works without crash on mac
* update cocos2dx files json, to test cocos new next
* fix spritecache plist parsing issue (#19269)
* [linux] Fix FileUtils::getContents with folder (#19157)
* fix FileUtils::getContents on linux/mac
* use stat.st_mode
* simplify
* [CCFileUtils] win32 getFileSize (#19176)
* win32 getFileSize
* fix stat
* [cpp test-Android]20:FileUtils/2 change title (#19197)
* sync #19200
* sync #19231
* [android lua] improve performance of lua loader (#19234)
* [lua] improve performance of lua loader
* remove cache fix
* Revert "fix spritecache plist parsing issue (#19269)"
This reverts commit f3a85ece4307a7b90816c34489d1ed2c8fd11baf.
* remove win32 project files ref in template.json
* add metal framework lnk ref into cpp template
* test on iOS, and disable part cases
* alBufferData instead of alBufferDataStatic for small audio file on Apple (#19227)
* changes AudioCache to use alBufferData instead of alBufferDataStatic
(also makes test 19 faster to trigger openal bugs faster)
The original problem: CrashIfClientProvidedBogusAudioBufferList
https://github.com/cocos2d/cocos2d-x/issues/18948
is not happening anymore, but there's still a not very frequent issue
that makes OpenAL crash with a call stack like this.
AudioCache::readDataTask > alBufferData > CleanUpDeadBufferList
It happes more frequently when the device is "cold", which means after
half an hour of not using the device (locked).
I could not find the actual source code for iOS OpenAL, so I used the
macOS versions:
https://opensource.apple.com/source/OpenAL/OpenAL-48.7/Source/OpenAL/oalImp.cpp.auto.html
They seem to use CAGuard.h to make sure the dead buffer list
has no threading issues. I'm worried because the CAGuard code I found
has macos and win32 define but no iOS, so I'm not sure. I guess the
iOS version is different and has the guard.
I could not find a place in the code that's unprotected by the locks
except the InitializeBufferMap() which should not be called more than
once from cocos, and there's a workaround in AudioEngine-impl for it.
I reduced the occurence of the CleanUpDeadBufferList crash by moving
the guard in ~AudioCache to cover the alDeleteBuffers call.
* remove hack method "setTimeout" on audio
* AutoTest works on iOS
* support set ios deployment target for root project
* enable all texture2d cases, since Jiang have fixed
* add CCTextureUtils to xcode project file (#176)
* add leak cases for SpriteFrameCache (#177)
* re-add SpriteFrameCache cases
* update template file json
* Update SpriteFrameCacheTest.cpp
* fix compiling error
2019-01-18 15:08:25 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2016-04-21 11:31:20 +08:00
|
|
|
u_long n = 0;
|
|
|
|
ioctlsocket(fd, FIONREAD, &n);
|
|
|
|
#else
|
|
|
|
int n = 0;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (ioctl(fd, FIONREAD, &n) < 0)
|
2018-10-08 11:50:28 +08:00
|
|
|
{
|
|
|
|
cocos2d::log("Abnormal error in ioctl()\n");
|
|
|
|
break;
|
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
#endif
|
2021-12-25 10:04:45 +08:00
|
|
|
if (n == 0)
|
2014-02-25 15:52:37 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
// no data received, or fd is closed
|
|
|
|
// fix #18620. readable and no pending data means that the fd is closed.
|
|
|
|
to_remove.push_back(fd);
|
2016-04-21 11:31:20 +08:00
|
|
|
continue;
|
2014-02-25 15:52:37 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
if (!parseCommand(fd))
|
2014-02-25 15:52:37 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
to_remove.push_back(fd);
|
2014-02-25 15:52:37 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (--nready <= 0)
|
2016-04-21 11:31:20 +08:00
|
|
|
break;
|
2014-02-25 15:52:37 +08:00
|
|
|
}
|
2014-02-25 11:47:53 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
/* remove closed connections */
|
2021-12-25 10:04:45 +08:00
|
|
|
for (int fd : to_remove)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
FD_CLR(fd, &_read_set);
|
|
|
|
_fds.erase(std::remove(_fds.begin(), _fds.end(), fd), _fds.end());
|
|
|
|
}
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
/* Any message for the remote console ? send it! */
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!_DebugStrings.empty())
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
if (_DebugStringsMutex.try_lock())
|
2014-02-25 11:47:53 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& str : _DebugStrings)
|
|
|
|
{
|
|
|
|
for (auto fd : _fds)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::sendToConsole(fd, str.c_str(), str.length());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_DebugStrings.clear();
|
|
|
|
_DebugStringsMutex.unlock();
|
2014-02-25 11:47:53 +08:00
|
|
|
}
|
2014-02-25 11:04:59 +08:00
|
|
|
}
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
// clean up: ignore stdin, stdout and stderr
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& fd : _fds)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
metal support for cocos2d-x (#19305)
* remove deprecated files
* remove some deprecated codes
* remove more deprecated codes
* remove ui deprecated codes
* remove more deprecated codes
* remove deprecated codes in ccmenuitem
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes
* remove more deprecated codes
* remove more deprecated codes
* remove vr related codes and ignore some modules
* remove allocator
* remove some config
* 【Feature】add back-end project file
* [Feature] add back-end file
* add pipeline descriptor and shader cache
* [Feature] support sprite for backend
* [Feature] remove unneeded code
* [Feature] according to es2.0 spec, you must use clamp-to-edge as texture wrap mode, and no mipmapping for non-power-of-two texture
* [Feature] set texture wrap mode to clamp-to-edge, and no mipmapping for non-power-of-two texture
* [Feature] remove macro define to .cpp file
* [Feature] add log info
* [Feature] add PipelineDescriptor for TriangleCommand
* [Feature] add PipelineDescriptor object as member of TriangleCommand
* [Feature] add getPipelineDescriptor method
* add renderbackend
* complete pipeline descriptor
* [Feature] add viewport in RenderCommand
* set viewport when rendrering
* [Feature] occur error when using RendererBackend, to be fixed.
* a workaround to fix black screen on macOS 10.14 (#19090)
* add rendererbackend init function
* fix typo
* [Feature] modify testFile
* [BugFix] modify shader path
* [Feature] set default viewport
* fix projection
* [Feature] modify log info
* [BugFix] change viewport data type to int
* [BugFix] add BindGroup to PipelienDescriptor
* [BugFix] change a_position to vec3 in sprite.vert
* [BugFix] set vertexLayout according to V3F_C4B_T2F structure
* [Feature] revert a_position to vec4
* [Feature] renderer should not use gl codes directly
* [Feature] it's better not use default value parameter
* fix depth test setting
* rendererbackend -> renderer
* clear color and depth at begin
* add metal backend
* metal support normalized attribute
* simplify codes
* update external
* add render pass desctriptor in pipeline descriptor
* fix warnings
* fix crash and memeory leak
* refactor Texture2D
* put pipeline descriptor into render command
* simplify codes
* [Feature] update Sprite
* fix crash when closing app
* [Feature] update SpriteBatchNode and TextureAtlas
* support render texture(not finish)
* [Feature] remove unused code
* make tests work on mac
* fix download-deps path error
* make tests work on iOS
* [Feature] support ttf under normal label effect
* refactor triangle command processing
* let renderer handle more common commands
* refactor backend
* make render texture work
* [Feature] refactor backend for GL
* [Feature]Renaming to make it easy to understand
* [Feature] change warp mode to CLAMP_TO_EDGE
* fix ghost
* simplify visit render queue logic
* support progress timer without rial mode
* support partcile system
* Feature/update label (#149)
* [BugFix] fix compile error
* [Feature] support outline effect in ios
* [Feature] add shader file
* [BugFix] fix begin and end RenderPass
* [Feature] update CustomCommand
* [Feature] revert project.pbxproj
* [Feature] simplify codes
* [BugFix] pack AI88 to RGBA8888 only when outline enable
* [Feature] support shadow effect in Label
* [Feature] support BMFont
* [Feature] support glow effect
* [Feature] simplify shader files
* LabelAtlas work
* handle blend function correctly
* support tile map
* don't share buffer in metal
* alloc buffer size as needed
* support more tilemap
* Merge branch 'minggo/metal-support' into feature/updateLabel
* minggo/metal-support:
support tile map
handle blend function correctly
LabelAtlas work
Feature/update label (#149)
support partcile system
# Conflicts:
# cocos/2d/CCLabel.cpp
# cocos/2d/CCSprite.cpp
# cocos/2d/CCSpriteBatchNode.cpp
# cocos/renderer/CCQuadCommand.cpp
# cocos/renderer/CCQuadCommand.h
* render texture work without saving file
* use global viewport
* grid3d works
* remove grabber
* tiled3d works
* [BugFix] fix label bug
* [Feature] add updateSubData for buffer
* [Feature] remove setVertexCount
* support depth test
* add callback command
* [Feature] add UITest
* [Feature] update UITest
* [Feature] remove unneeded codes
* fix custom command issue
* fix layer color blend issue
* [BugFix] fix iOS compile error
* [Feature] remove unneeded codes
* [Feature] fix updateVertexBuffer
* layerradial works
* add draw test back
* fix batch issue
* fix compiling error
* [BugFix] support ETC1
* [BugFix] get the correct pipelineDescriptor
* [BugFix] skip draw when backendTexture nullptr
* clipping node support
* [Feature] add shader files
* fix stencil issue in metal
* [Feature] update UILayoutTest
* [BugFix] skip drawing when vertexCount is zero
* refactor renderer
* add set global z order for stencil manager commands
* fix warnings caused by type
* remove viewport in render command
* [Feature] fix warnings caused by type
* [BugFix] clear vertexCount and indexCount for CustomComand when needed
* [Feature] update clear for CustomCommand
* ios use metal
* fix viewport issue
* fix LayerColorGradient crash
* [cmake] transport to android and windows (#160)
* save point 1
* compile on windows
* run on android
* revert useless change
* android set CC_ENABLE_CACHE_TEXTURE_DATA to 1
* add initGlew
* fix android crash
* add TODO new-renderer
* review update
* revert onGLFWWindowPosCallback
* fix android compiling error
* Impl progress radial (#162)
* progresstimer add radial impl
* default drawType to element
* dec invoke times of createVertexBuffer (#163)
* support depth/stencil format for gl backend
* simplify progress timer codes
* support motionstreak, effect is wrong
* fix motionstreak issue
* [Feature] update Scissor Test (#161)
* [Feature] update Scissor Test
* [Feature] update ScissorTest
* [Feature] rename function
* [Feature] get constant reference if needed
* [Feature] show render status (#164)
* improve performance
* fix depth state
* fill error that triangle vertex/index number bigger than buffer
* fix compiline error in release mode
* fix buffer conflict between CPU and GPU on iOS/macOS
* Renderer refactor (#165)
* use one vertes/index buffer with opengl
* fix error on windows
* custom command support index format config
* CCLayer: compact vertex data structure
* update comment
* fix doc
* support fast tilemap
* pass index format instead
* fix some wrong effect
* fix render texture error
* fix texture per-element size
* fix texture format error
* BlendFunc type refactor, GLenum -> backend::BlendFactor (#167)
* BlendFunc use backend::BlendFactor as inner field
* update comments
* use int to replace GLenum
* update xcode project fiel
* rename to GLBlendConst
* add ccConstants.h
* update xcode project file
* update copyright
* remove primitive command
* remove CCPrimitive.cpp/.h
* remove deprecated files
* remove unneeded files
* remove multiple view support
* remove multiple view support
* remove the usage of frame buffer in camera
* director don't use frame buffer
* remove FrameBuffer
* remove BatchCommand
* add some api reference
* add physics2d back
* fix crash when close app on mac
* improve render texture
* fix rendertexture issue
* fix rendertexture issue
* simplify codes
* CMake support for mac & ios (#169)
* update cmake
* fix compile error
* update 3rd libs version
* remove CCThread.h/.cpp
* remove ccthread
* use audio engine to implement simple audio engine
* remove unneeded codes
* remove deprecated codes
* remove winrt macro
* remove CC_USE_WIC
* set partcile blend function in more elegant way
* remove unneeded codes
* remove unneeded codes
* cmake works on windows
* update project setting
* improve performance
* GLFloat -> float
* sync v3 cmake improvements into metal-support (#172)
* pick: modern cmake, compile definitions improvement (#19139)
* modern cmake, use target_compile_definitions partly
* simplify macro define, remove USE_*
* modern cmake, macro define
* add physics 2d macro define into ccConfig.h
* remove USE_CHIPMUNK macro in build.gradle
* remove CocosSelectModule.cmake
* shrink useless define
* simplify compile options config, re-add if necessary
* update external for tmp CI test
* un-quote target_compile_options value
* add "-g" parameter only when debug mode
* keep single build type when generator Xcode & VS projecy
* update external for tmp CI tes
* add static_cast<char>(-1), fix -Wc++11-narrowing
* simplify win32 compile define
* not modify code, only improve compile options
# Conflicts:
# .gitignore
# cmake/Modules/CocosConfigDepend.cmake
# cocos/CMakeLists.txt
# external/config.json
# tests/cpp-tests/CMakeLists.txt
* modern cmake, improve cmake_compiler_flags (#19145)
* cmake_compiler_flags
* Fix typo
* Fix typo2
* Remove chanages from Android.mk
* correct lua template cmake build (#19149)
* don't add -Wno-deprecated into jsb target
* correct lua template cmake build
* fix win32 lua template compile error
* prevent cmake in-source-build friendly (#19151)
* pick: Copy resources to "Resources/" on win32 like in linux configuration
* add "/Z7" for cpp-tests on windows
* [cmake] fix iOS xcode property setting failed (#19208)
* fix iOS xcode property setting failed
* use search_depend_libs_recursive at dlls collect
* fix typo
* [cmake] add find_host_library into iOS toolchain file (#19230)
* pick: [lua android] use luajit & template cmake update (#19239)
* increase cmake stability , remove tests/CMakeLists.txt (#19261)
* cmake win32 Precompiled header (#19273)
* Precompiled header
* Fix
* Precompiled header for cocos
* Precompiled header jscocos2d
* Fix for COCOS2D_DEBUG is always 1 on Android (#19291)
Related #19289
* little build fix, tests cpp-tests works on mac
* sync v3 build related codes into metal-support (#173)
* strict initialization for std::array
* remove proj.win32 project configs
* modern cmake, cmake_cleanup_remove_unused_variables (#19146)
* Switch travis CI to xenial (#19207)
* Switch travis CI to xenial
* Remove language: android
* Set language: cpp
* Fix java problem
* Update sdkmanager
* Fix sdkmanger
* next sdkmanager fix
* Remove xenial from android
* revert to sdk-tools-{system}-3859397
* Remove linux cmake install
* Update before-install.sh
* Update .travis.yml
* Simplify install-deps-linux.sh, tested on Ubuntu 16.04 (#19212)
* Simplify install-deps-linux.sh
* Cleanup
* pick: install ninja
* update cocos2d-console submodule
* for metal-support alpha release, we only test cpp
* add HelloCpp into project(Cocos2d-x) for tmp test
* update extenal metal-support-4
* update uniform setting
* [Feature] update BindGroup
* [Feature] empty-test
* [Feature] cpp-test
* [Feature] fix GL compiler error
* [Feature] fix GL crash
* [Feature] empty-test
* [Feature] cpp-tests
* [feature] improve frameRate
* [feature] fix opengl compile error
* [feature] fix opengl compile error
* [BugFix] fix compute maxLocation error
* [Feature] update setting unifrom
* [Feature] fix namespace
* [Feature] remove unneeded code
* [Bugfix] fix project file
* [Feature] update review
* [texture2d] impl texture format support (#175)
* texture update
* update
* update texture
* commit
* compile on windows
* ddd
* rename
* rename methods
* no crash
* save gl
* save
* save
* rename
* move out pixel format convert functions
* metal crash
* update
* update android
* support gles compressed texture format
* support more compress format
* add more conversion methods
* ss
* save
* update conversion methods
* add PVRTC format support
* reformat
* add marco linux
* fix GL marcro
* pvrtc supported only by ios 8.0+
* remove unused cmake
* revert change
* refactor Texture2D::initWithData
* fix conversion log
* refactor Texture2D::initWithData
* remove some OpenGL constants for PVRTC
* add todo
* fix typo
* AutoTest works on mac/iOS by disable part cases, sync v3 bug fix (#174)
* review cpp-tests, and fix part issues on start auto test
* sync png format fix: Node:Particle3D abnormal texture effects #19204
* fix cpp-tests SpritePolygon crash, wrong png format (#19170)
* fix wrong png convert format from sRGB to Gray
* erase plist index if all frames was erased
* test_A8.png have I8 format, fix it
* [CCSpriteCache] allow re-add plist & add testcase (#19175)
* allow re-add plist & add testcase
* remove comments/rename method/update testcase
* fix isSpriteFramesWithFileLoaded & add testcase
* remove used variable
* remove unused variable
* fix double free issues when js/lua-tests exit on iOS (#19236)
* disable part cases, AutoTest works without crash on mac
* update cocos2dx files json, to test cocos new next
* fix spritecache plist parsing issue (#19269)
* [linux] Fix FileUtils::getContents with folder (#19157)
* fix FileUtils::getContents on linux/mac
* use stat.st_mode
* simplify
* [CCFileUtils] win32 getFileSize (#19176)
* win32 getFileSize
* fix stat
* [cpp test-Android]20:FileUtils/2 change title (#19197)
* sync #19200
* sync #19231
* [android lua] improve performance of lua loader (#19234)
* [lua] improve performance of lua loader
* remove cache fix
* Revert "fix spritecache plist parsing issue (#19269)"
This reverts commit f3a85ece4307a7b90816c34489d1ed2c8fd11baf.
* remove win32 project files ref in template.json
* add metal framework lnk ref into cpp template
* test on iOS, and disable part cases
* alBufferData instead of alBufferDataStatic for small audio file on Apple (#19227)
* changes AudioCache to use alBufferData instead of alBufferDataStatic
(also makes test 19 faster to trigger openal bugs faster)
The original problem: CrashIfClientProvidedBogusAudioBufferList
https://github.com/cocos2d/cocos2d-x/issues/18948
is not happening anymore, but there's still a not very frequent issue
that makes OpenAL crash with a call stack like this.
AudioCache::readDataTask > alBufferData > CleanUpDeadBufferList
It happes more frequently when the device is "cold", which means after
half an hour of not using the device (locked).
I could not find the actual source code for iOS OpenAL, so I used the
macOS versions:
https://opensource.apple.com/source/OpenAL/OpenAL-48.7/Source/OpenAL/oalImp.cpp.auto.html
They seem to use CAGuard.h to make sure the dead buffer list
has no threading issues. I'm worried because the CAGuard code I found
has macos and win32 define but no iOS, so I'm not sure. I guess the
iOS version is different and has the guard.
I could not find a place in the code that's unprotected by the locks
except the InitializeBufferMap() which should not be called more than
once from cocos, and there's a workaround in AudioEngine-impl for it.
I reduced the occurence of the CleanUpDeadBufferList crash by moving
the guard in ~AudioCache to cover the alDeleteBuffers call.
* remove hack method "setTimeout" on audio
* AutoTest works on iOS
* support set ios deployment target for root project
* enable all texture2d cases, since Jiang have fixed
* add CCTextureUtils to xcode project file (#176)
* add leak cases for SpriteFrameCache (#177)
* re-add SpriteFrameCache cases
* update template file json
* Update SpriteFrameCacheTest.cpp
* fix compiling error
2019-01-18 15:08:25 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2016-04-21 11:31:20 +08:00
|
|
|
closesocket(fd);
|
|
|
|
#else
|
|
|
|
close(fd);
|
|
|
|
#endif
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
metal support for cocos2d-x (#19305)
* remove deprecated files
* remove some deprecated codes
* remove more deprecated codes
* remove ui deprecated codes
* remove more deprecated codes
* remove deprecated codes in ccmenuitem
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes
* remove more deprecated codes
* remove more deprecated codes
* remove vr related codes and ignore some modules
* remove allocator
* remove some config
* 【Feature】add back-end project file
* [Feature] add back-end file
* add pipeline descriptor and shader cache
* [Feature] support sprite for backend
* [Feature] remove unneeded code
* [Feature] according to es2.0 spec, you must use clamp-to-edge as texture wrap mode, and no mipmapping for non-power-of-two texture
* [Feature] set texture wrap mode to clamp-to-edge, and no mipmapping for non-power-of-two texture
* [Feature] remove macro define to .cpp file
* [Feature] add log info
* [Feature] add PipelineDescriptor for TriangleCommand
* [Feature] add PipelineDescriptor object as member of TriangleCommand
* [Feature] add getPipelineDescriptor method
* add renderbackend
* complete pipeline descriptor
* [Feature] add viewport in RenderCommand
* set viewport when rendrering
* [Feature] occur error when using RendererBackend, to be fixed.
* a workaround to fix black screen on macOS 10.14 (#19090)
* add rendererbackend init function
* fix typo
* [Feature] modify testFile
* [BugFix] modify shader path
* [Feature] set default viewport
* fix projection
* [Feature] modify log info
* [BugFix] change viewport data type to int
* [BugFix] add BindGroup to PipelienDescriptor
* [BugFix] change a_position to vec3 in sprite.vert
* [BugFix] set vertexLayout according to V3F_C4B_T2F structure
* [Feature] revert a_position to vec4
* [Feature] renderer should not use gl codes directly
* [Feature] it's better not use default value parameter
* fix depth test setting
* rendererbackend -> renderer
* clear color and depth at begin
* add metal backend
* metal support normalized attribute
* simplify codes
* update external
* add render pass desctriptor in pipeline descriptor
* fix warnings
* fix crash and memeory leak
* refactor Texture2D
* put pipeline descriptor into render command
* simplify codes
* [Feature] update Sprite
* fix crash when closing app
* [Feature] update SpriteBatchNode and TextureAtlas
* support render texture(not finish)
* [Feature] remove unused code
* make tests work on mac
* fix download-deps path error
* make tests work on iOS
* [Feature] support ttf under normal label effect
* refactor triangle command processing
* let renderer handle more common commands
* refactor backend
* make render texture work
* [Feature] refactor backend for GL
* [Feature]Renaming to make it easy to understand
* [Feature] change warp mode to CLAMP_TO_EDGE
* fix ghost
* simplify visit render queue logic
* support progress timer without rial mode
* support partcile system
* Feature/update label (#149)
* [BugFix] fix compile error
* [Feature] support outline effect in ios
* [Feature] add shader file
* [BugFix] fix begin and end RenderPass
* [Feature] update CustomCommand
* [Feature] revert project.pbxproj
* [Feature] simplify codes
* [BugFix] pack AI88 to RGBA8888 only when outline enable
* [Feature] support shadow effect in Label
* [Feature] support BMFont
* [Feature] support glow effect
* [Feature] simplify shader files
* LabelAtlas work
* handle blend function correctly
* support tile map
* don't share buffer in metal
* alloc buffer size as needed
* support more tilemap
* Merge branch 'minggo/metal-support' into feature/updateLabel
* minggo/metal-support:
support tile map
handle blend function correctly
LabelAtlas work
Feature/update label (#149)
support partcile system
# Conflicts:
# cocos/2d/CCLabel.cpp
# cocos/2d/CCSprite.cpp
# cocos/2d/CCSpriteBatchNode.cpp
# cocos/renderer/CCQuadCommand.cpp
# cocos/renderer/CCQuadCommand.h
* render texture work without saving file
* use global viewport
* grid3d works
* remove grabber
* tiled3d works
* [BugFix] fix label bug
* [Feature] add updateSubData for buffer
* [Feature] remove setVertexCount
* support depth test
* add callback command
* [Feature] add UITest
* [Feature] update UITest
* [Feature] remove unneeded codes
* fix custom command issue
* fix layer color blend issue
* [BugFix] fix iOS compile error
* [Feature] remove unneeded codes
* [Feature] fix updateVertexBuffer
* layerradial works
* add draw test back
* fix batch issue
* fix compiling error
* [BugFix] support ETC1
* [BugFix] get the correct pipelineDescriptor
* [BugFix] skip draw when backendTexture nullptr
* clipping node support
* [Feature] add shader files
* fix stencil issue in metal
* [Feature] update UILayoutTest
* [BugFix] skip drawing when vertexCount is zero
* refactor renderer
* add set global z order for stencil manager commands
* fix warnings caused by type
* remove viewport in render command
* [Feature] fix warnings caused by type
* [BugFix] clear vertexCount and indexCount for CustomComand when needed
* [Feature] update clear for CustomCommand
* ios use metal
* fix viewport issue
* fix LayerColorGradient crash
* [cmake] transport to android and windows (#160)
* save point 1
* compile on windows
* run on android
* revert useless change
* android set CC_ENABLE_CACHE_TEXTURE_DATA to 1
* add initGlew
* fix android crash
* add TODO new-renderer
* review update
* revert onGLFWWindowPosCallback
* fix android compiling error
* Impl progress radial (#162)
* progresstimer add radial impl
* default drawType to element
* dec invoke times of createVertexBuffer (#163)
* support depth/stencil format for gl backend
* simplify progress timer codes
* support motionstreak, effect is wrong
* fix motionstreak issue
* [Feature] update Scissor Test (#161)
* [Feature] update Scissor Test
* [Feature] update ScissorTest
* [Feature] rename function
* [Feature] get constant reference if needed
* [Feature] show render status (#164)
* improve performance
* fix depth state
* fill error that triangle vertex/index number bigger than buffer
* fix compiline error in release mode
* fix buffer conflict between CPU and GPU on iOS/macOS
* Renderer refactor (#165)
* use one vertes/index buffer with opengl
* fix error on windows
* custom command support index format config
* CCLayer: compact vertex data structure
* update comment
* fix doc
* support fast tilemap
* pass index format instead
* fix some wrong effect
* fix render texture error
* fix texture per-element size
* fix texture format error
* BlendFunc type refactor, GLenum -> backend::BlendFactor (#167)
* BlendFunc use backend::BlendFactor as inner field
* update comments
* use int to replace GLenum
* update xcode project fiel
* rename to GLBlendConst
* add ccConstants.h
* update xcode project file
* update copyright
* remove primitive command
* remove CCPrimitive.cpp/.h
* remove deprecated files
* remove unneeded files
* remove multiple view support
* remove multiple view support
* remove the usage of frame buffer in camera
* director don't use frame buffer
* remove FrameBuffer
* remove BatchCommand
* add some api reference
* add physics2d back
* fix crash when close app on mac
* improve render texture
* fix rendertexture issue
* fix rendertexture issue
* simplify codes
* CMake support for mac & ios (#169)
* update cmake
* fix compile error
* update 3rd libs version
* remove CCThread.h/.cpp
* remove ccthread
* use audio engine to implement simple audio engine
* remove unneeded codes
* remove deprecated codes
* remove winrt macro
* remove CC_USE_WIC
* set partcile blend function in more elegant way
* remove unneeded codes
* remove unneeded codes
* cmake works on windows
* update project setting
* improve performance
* GLFloat -> float
* sync v3 cmake improvements into metal-support (#172)
* pick: modern cmake, compile definitions improvement (#19139)
* modern cmake, use target_compile_definitions partly
* simplify macro define, remove USE_*
* modern cmake, macro define
* add physics 2d macro define into ccConfig.h
* remove USE_CHIPMUNK macro in build.gradle
* remove CocosSelectModule.cmake
* shrink useless define
* simplify compile options config, re-add if necessary
* update external for tmp CI test
* un-quote target_compile_options value
* add "-g" parameter only when debug mode
* keep single build type when generator Xcode & VS projecy
* update external for tmp CI tes
* add static_cast<char>(-1), fix -Wc++11-narrowing
* simplify win32 compile define
* not modify code, only improve compile options
# Conflicts:
# .gitignore
# cmake/Modules/CocosConfigDepend.cmake
# cocos/CMakeLists.txt
# external/config.json
# tests/cpp-tests/CMakeLists.txt
* modern cmake, improve cmake_compiler_flags (#19145)
* cmake_compiler_flags
* Fix typo
* Fix typo2
* Remove chanages from Android.mk
* correct lua template cmake build (#19149)
* don't add -Wno-deprecated into jsb target
* correct lua template cmake build
* fix win32 lua template compile error
* prevent cmake in-source-build friendly (#19151)
* pick: Copy resources to "Resources/" on win32 like in linux configuration
* add "/Z7" for cpp-tests on windows
* [cmake] fix iOS xcode property setting failed (#19208)
* fix iOS xcode property setting failed
* use search_depend_libs_recursive at dlls collect
* fix typo
* [cmake] add find_host_library into iOS toolchain file (#19230)
* pick: [lua android] use luajit & template cmake update (#19239)
* increase cmake stability , remove tests/CMakeLists.txt (#19261)
* cmake win32 Precompiled header (#19273)
* Precompiled header
* Fix
* Precompiled header for cocos
* Precompiled header jscocos2d
* Fix for COCOS2D_DEBUG is always 1 on Android (#19291)
Related #19289
* little build fix, tests cpp-tests works on mac
* sync v3 build related codes into metal-support (#173)
* strict initialization for std::array
* remove proj.win32 project configs
* modern cmake, cmake_cleanup_remove_unused_variables (#19146)
* Switch travis CI to xenial (#19207)
* Switch travis CI to xenial
* Remove language: android
* Set language: cpp
* Fix java problem
* Update sdkmanager
* Fix sdkmanger
* next sdkmanager fix
* Remove xenial from android
* revert to sdk-tools-{system}-3859397
* Remove linux cmake install
* Update before-install.sh
* Update .travis.yml
* Simplify install-deps-linux.sh, tested on Ubuntu 16.04 (#19212)
* Simplify install-deps-linux.sh
* Cleanup
* pick: install ninja
* update cocos2d-console submodule
* for metal-support alpha release, we only test cpp
* add HelloCpp into project(Cocos2d-x) for tmp test
* update extenal metal-support-4
* update uniform setting
* [Feature] update BindGroup
* [Feature] empty-test
* [Feature] cpp-test
* [Feature] fix GL compiler error
* [Feature] fix GL crash
* [Feature] empty-test
* [Feature] cpp-tests
* [feature] improve frameRate
* [feature] fix opengl compile error
* [feature] fix opengl compile error
* [BugFix] fix compute maxLocation error
* [Feature] update setting unifrom
* [Feature] fix namespace
* [Feature] remove unneeded code
* [Bugfix] fix project file
* [Feature] update review
* [texture2d] impl texture format support (#175)
* texture update
* update
* update texture
* commit
* compile on windows
* ddd
* rename
* rename methods
* no crash
* save gl
* save
* save
* rename
* move out pixel format convert functions
* metal crash
* update
* update android
* support gles compressed texture format
* support more compress format
* add more conversion methods
* ss
* save
* update conversion methods
* add PVRTC format support
* reformat
* add marco linux
* fix GL marcro
* pvrtc supported only by ios 8.0+
* remove unused cmake
* revert change
* refactor Texture2D::initWithData
* fix conversion log
* refactor Texture2D::initWithData
* remove some OpenGL constants for PVRTC
* add todo
* fix typo
* AutoTest works on mac/iOS by disable part cases, sync v3 bug fix (#174)
* review cpp-tests, and fix part issues on start auto test
* sync png format fix: Node:Particle3D abnormal texture effects #19204
* fix cpp-tests SpritePolygon crash, wrong png format (#19170)
* fix wrong png convert format from sRGB to Gray
* erase plist index if all frames was erased
* test_A8.png have I8 format, fix it
* [CCSpriteCache] allow re-add plist & add testcase (#19175)
* allow re-add plist & add testcase
* remove comments/rename method/update testcase
* fix isSpriteFramesWithFileLoaded & add testcase
* remove used variable
* remove unused variable
* fix double free issues when js/lua-tests exit on iOS (#19236)
* disable part cases, AutoTest works without crash on mac
* update cocos2dx files json, to test cocos new next
* fix spritecache plist parsing issue (#19269)
* [linux] Fix FileUtils::getContents with folder (#19157)
* fix FileUtils::getContents on linux/mac
* use stat.st_mode
* simplify
* [CCFileUtils] win32 getFileSize (#19176)
* win32 getFileSize
* fix stat
* [cpp test-Android]20:FileUtils/2 change title (#19197)
* sync #19200
* sync #19231
* [android lua] improve performance of lua loader (#19234)
* [lua] improve performance of lua loader
* remove cache fix
* Revert "fix spritecache plist parsing issue (#19269)"
This reverts commit f3a85ece4307a7b90816c34489d1ed2c8fd11baf.
* remove win32 project files ref in template.json
* add metal framework lnk ref into cpp template
* test on iOS, and disable part cases
* alBufferData instead of alBufferDataStatic for small audio file on Apple (#19227)
* changes AudioCache to use alBufferData instead of alBufferDataStatic
(also makes test 19 faster to trigger openal bugs faster)
The original problem: CrashIfClientProvidedBogusAudioBufferList
https://github.com/cocos2d/cocos2d-x/issues/18948
is not happening anymore, but there's still a not very frequent issue
that makes OpenAL crash with a call stack like this.
AudioCache::readDataTask > alBufferData > CleanUpDeadBufferList
It happes more frequently when the device is "cold", which means after
half an hour of not using the device (locked).
I could not find the actual source code for iOS OpenAL, so I used the
macOS versions:
https://opensource.apple.com/source/OpenAL/OpenAL-48.7/Source/OpenAL/oalImp.cpp.auto.html
They seem to use CAGuard.h to make sure the dead buffer list
has no threading issues. I'm worried because the CAGuard code I found
has macos and win32 define but no iOS, so I'm not sure. I guess the
iOS version is different and has the guard.
I could not find a place in the code that's unprotected by the locks
except the InitializeBufferMap() which should not be called more than
once from cocos, and there's a workaround in AudioEngine-impl for it.
I reduced the occurence of the CleanUpDeadBufferList crash by moving
the guard in ~AudioCache to cover the alDeleteBuffers call.
* remove hack method "setTimeout" on audio
* AutoTest works on iOS
* support set ios deployment target for root project
* enable all texture2d cases, since Jiang have fixed
* add CCTextureUtils to xcode project file (#176)
* add leak cases for SpriteFrameCache (#177)
* re-add SpriteFrameCache cases
* update template file json
* Update SpriteFrameCacheTest.cpp
* fix compiling error
2019-01-18 15:08:25 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2016-04-21 11:31:20 +08:00
|
|
|
closesocket(_listenfd);
|
|
|
|
WSACleanup();
|
2014-12-13 00:57:06 +08:00
|
|
|
#else
|
2016-04-21 11:31:20 +08:00
|
|
|
close(_listenfd);
|
2014-12-13 00:57:06 +08:00
|
|
|
#endif
|
2016-04-21 11:31:20 +08:00
|
|
|
_running = false;
|
2014-12-13 00:57:06 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
//
|
|
|
|
// Helpers
|
|
|
|
//
|
2014-04-08 14:52:53 +08:00
|
|
|
|
2021-10-09 13:48:56 +08:00
|
|
|
ssize_t Console::readline(socket_native_type fd, char* ptr, size_t maxlen)
|
2014-02-26 23:41:47 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
size_t n, rc;
|
|
|
|
char c;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
for (n = 0; n < maxlen - 1; n++)
|
|
|
|
{
|
|
|
|
if ((rc = recv(fd, &c, 1, 0)) == 1)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
*ptr++ = c;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (c == '\n')
|
|
|
|
{
|
2014-03-18 00:42:36 +08:00
|
|
|
break;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (rc == 0)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
return 0;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (errno == EINTR)
|
|
|
|
{
|
2014-03-18 00:42:36 +08:00
|
|
|
continue;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
return -1;
|
2014-03-18 00:42:36 +08:00
|
|
|
}
|
2014-02-26 23:41:47 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
*ptr = 0;
|
|
|
|
return n;
|
2014-03-18 00:42:36 +08:00
|
|
|
}
|
2014-02-26 23:41:47 +08:00
|
|
|
|
2021-10-09 13:48:56 +08:00
|
|
|
ssize_t Console::readBytes(socket_native_type fd, char* buffer, size_t maxlen, bool* more)
|
2014-03-18 00:42:36 +08:00
|
|
|
{
|
2014-04-13 06:55:43 +08:00
|
|
|
size_t n, rc;
|
2014-03-18 00:42:36 +08:00
|
|
|
char c, *ptr = buffer;
|
|
|
|
*more = false;
|
2021-12-25 10:04:45 +08:00
|
|
|
for (n = 0; n < maxlen; n++)
|
|
|
|
{
|
|
|
|
if ((rc = recv(fd, &c, 1, 0)) == 1)
|
|
|
|
{
|
2014-03-18 00:42:36 +08:00
|
|
|
*ptr++ = c;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (c == '\n')
|
|
|
|
{
|
2014-03-18 00:42:36 +08:00
|
|
|
return n;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (rc == 0)
|
|
|
|
{
|
2014-03-18 00:42:36 +08:00
|
|
|
return 0;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (errno == EINTR)
|
|
|
|
{
|
2014-03-18 00:42:36 +08:00
|
|
|
continue;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-18 00:42:36 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*more = true;
|
|
|
|
return n;
|
2014-02-26 23:41:47 +08:00
|
|
|
}
|
2014-03-18 00:42:36 +08:00
|
|
|
|
2021-10-09 13:48:56 +08:00
|
|
|
bool Console::parseCommand(socket_native_type fd)
|
2013-12-05 08:26:21 +08:00
|
|
|
{
|
2014-02-18 10:32:32 +08:00
|
|
|
char buf[512];
|
2014-03-18 00:42:36 +08:00
|
|
|
bool more_data;
|
|
|
|
auto h = readBytes(fd, buf, 6, &more_data);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (h < 0)
|
2014-02-14 14:54:26 +08:00
|
|
|
{
|
2013-12-05 08:26:21 +08:00
|
|
|
return false;
|
2014-02-14 14:54:26 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (strncmp(buf, "upload", 6) == 0)
|
2014-03-18 00:42:36 +08:00
|
|
|
{
|
|
|
|
char c = '\0';
|
|
|
|
recv(fd, &c, 1, 0);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (c == ' ')
|
2014-03-18 00:42:36 +08:00
|
|
|
{
|
|
|
|
commandUpload(fd);
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::sendPrompt(fd);
|
2014-03-18 00:42:36 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-08 14:52:53 +08:00
|
|
|
const char err[] = "upload: invalid args! Type 'help' for options\n";
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::sendToConsole(fd, err, strlen(err));
|
|
|
|
Console::Utility::sendPrompt(fd);
|
2014-04-08 14:52:53 +08:00
|
|
|
return true;
|
2014-03-18 00:42:36 +08:00
|
|
|
}
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!more_data)
|
2014-03-18 00:42:36 +08:00
|
|
|
{
|
|
|
|
buf[h] = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
char* pb = buf + 6;
|
|
|
|
auto r = readline(fd, pb, sizeof(buf) - 6);
|
|
|
|
if (r < 0)
|
2014-03-18 00:42:36 +08:00
|
|
|
{
|
|
|
|
const char err[] = "Unknown error!\n";
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::sendPrompt(fd);
|
|
|
|
Console::Utility::sendToConsole(fd, err, strlen(err));
|
2014-03-18 00:42:36 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2014-02-14 14:54:26 +08:00
|
|
|
std::string cmdLine;
|
2021-12-25 10:04:45 +08:00
|
|
|
cmdLine = std::string(buf);
|
2018-03-08 10:51:21 +08:00
|
|
|
auto commands = Console::Utility::split(cmdLine, _commandSeparator);
|
2021-12-25 10:04:45 +08:00
|
|
|
try
|
|
|
|
{
|
|
|
|
for (auto command : commands)
|
|
|
|
{
|
2018-03-08 10:51:21 +08:00
|
|
|
performCommand(fd, Console::Utility::trim(command));
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
catch (const std::runtime_error& e)
|
|
|
|
{
|
2018-03-08 10:51:21 +08:00
|
|
|
Console::Utility::sendToConsole(fd, e.what(), strlen(e.what()));
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2018-03-08 10:51:21 +08:00
|
|
|
Console::Utility::sendPrompt(fd);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2018-03-08 10:51:21 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::performCommand(socket_native_type fd, std::string_view command)
|
2021-10-09 13:48:56 +08:00
|
|
|
{
|
2018-03-08 10:51:21 +08:00
|
|
|
std::vector<std::string> args = Console::Utility::split(command, ' ');
|
2021-12-25 10:04:45 +08:00
|
|
|
if (args.empty())
|
|
|
|
{
|
2018-03-08 10:51:21 +08:00
|
|
|
throw std::runtime_error("Unknown command. Type 'help' for options\n");
|
2013-12-05 08:26:21 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
auto it = _commands.find(Console::Utility::trim(args[0]));
|
2021-12-25 10:04:45 +08:00
|
|
|
if (it != _commands.end())
|
2014-02-14 14:54:26 +08:00
|
|
|
{
|
|
|
|
std::string args2;
|
2021-12-25 10:04:45 +08:00
|
|
|
for (size_t i = 1; i < args.size(); ++i)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (i > 1)
|
2014-02-14 14:54:26 +08:00
|
|
|
{
|
|
|
|
args2 += ' ';
|
2014-02-09 04:46:44 +08:00
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
args2 += Console::Utility::trim(args[i]);
|
2013-12-05 09:38:11 +08:00
|
|
|
}
|
2014-02-14 14:54:26 +08:00
|
|
|
auto cmd = it->second;
|
2017-12-05 13:35:16 +08:00
|
|
|
cmd->commandGeneric(fd, args2);
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-26 23:26:34 +08:00
|
|
|
throw std::runtime_error(std::string{"Unknown command "}.append(command).append(". Type 'help' for options\n"));
|
2014-03-05 00:07:30 +08:00
|
|
|
}
|
2013-12-05 08:26:21 +08:00
|
|
|
}
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
void Console::addClient()
|
2013-11-27 10:58:36 +08:00
|
|
|
{
|
2017-03-29 09:17:37 +08:00
|
|
|
struct sockaddr_in6 ipv6Addr;
|
|
|
|
struct sockaddr_in ipv4Addr;
|
|
|
|
struct sockaddr* addr = _isIpv6Server ? (struct sockaddr*)&ipv6Addr : (struct sockaddr*)&ipv4Addr;
|
2021-12-25 10:04:45 +08:00
|
|
|
socklen_t addrLen = _isIpv6Server ? sizeof(ipv6Addr) : sizeof(ipv4Addr);
|
|
|
|
|
2013-12-05 08:26:21 +08:00
|
|
|
/* new client */
|
2021-10-09 13:48:56 +08:00
|
|
|
socket_native_type fd = accept(_listenfd, addr, &addrLen);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2013-12-05 08:26:21 +08:00
|
|
|
// add fd to list of FD
|
2021-12-25 10:04:45 +08:00
|
|
|
if (fd != -1)
|
|
|
|
{
|
2013-12-05 08:26:21 +08:00
|
|
|
FD_SET(fd, &_read_set);
|
|
|
|
_fds.push_back(fd);
|
2021-12-25 10:04:45 +08:00
|
|
|
_maxfd = (std::max)(_maxfd, fd);
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::sendPrompt(fd);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2015-05-22 10:35:34 +08:00
|
|
|
/**
|
2016-04-21 11:31:20 +08:00
|
|
|
* A SIGPIPE is sent to a process if it tried to write to socket that had been shutdown for
|
2015-05-22 10:35:34 +08:00
|
|
|
* writing or isn't connected (anymore) on iOS.
|
|
|
|
*
|
|
|
|
* The default behaviour for this signal is to end the process.So we make the process ignore SIGPIPE.
|
|
|
|
*/
|
2015-05-21 18:14:21 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_IOS
|
|
|
|
int set = 1;
|
|
|
|
setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, (void*)&set, sizeof(int));
|
|
|
|
#endif
|
2013-12-05 08:26:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
//
|
|
|
|
// create commands
|
|
|
|
//
|
|
|
|
|
|
|
|
void Console::createCommandAllocator()
|
2014-01-11 09:58:54 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
addCommand({"allocator", "Display allocator diagnostics for all allocators. Args: [-h | help | ]",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandAllocator, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandConfig()
|
|
|
|
{
|
|
|
|
addCommand({"config", "Print the Configuration object. Args: [-h | help | ]",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandConfig, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandDebugMsg()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
addCommand({"debugmsg",
|
|
|
|
"Whether or not to forward the debug messages on the console. Args: [-h | help | on | off | ]",
|
|
|
|
CC_CALLBACK_2(Console::commandDebugMsg, this)});
|
|
|
|
addSubCommand("debugmsg",
|
|
|
|
{"on", "enable debug logging", CC_CALLBACK_2(Console::commandDebugMsgSubCommandOnOff, this)});
|
|
|
|
addSubCommand("debugmsg",
|
|
|
|
{"off", "disable debug logging", CC_CALLBACK_2(Console::commandDebugMsgSubCommandOnOff, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandDirector()
|
|
|
|
{
|
|
|
|
addCommand({"director", "director commands, type -h or [director help] to list supported directives"});
|
2021-12-25 10:04:45 +08:00
|
|
|
addSubCommand("director",
|
|
|
|
{"pause", "pause all scheduled timers, the draw rate will be 4 FPS to reduce CPU consumption",
|
|
|
|
CC_CALLBACK_2(Console::commandDirectorSubCommandPause, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
addSubCommand("director", {"resume", "resume all scheduled timers",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandDirectorSubCommandResume, this)});
|
|
|
|
addSubCommand("director", {"stop", "Stops the animation. Nothing will be drawn.",
|
|
|
|
CC_CALLBACK_2(Console::commandDirectorSubCommandStop, this)});
|
|
|
|
addSubCommand(
|
|
|
|
"director",
|
|
|
|
{"start", "Restart the animation again, Call this function only if [director stop] was called earlier",
|
|
|
|
CC_CALLBACK_2(Console::commandDirectorSubCommandStart, this)});
|
|
|
|
addSubCommand("director", {"end", "exit this app.", CC_CALLBACK_2(Console::commandDirectorSubCommandEnd, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandExit()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
addCommand(
|
|
|
|
{"exit", "Close connection to the console. Args: [-h | help | ]", CC_CALLBACK_2(Console::commandExit, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandFileUtils()
|
|
|
|
{
|
|
|
|
addCommand({"fileutils", "Flush or print the FileUtils info. Args: [-h | help | flush | ]",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandFileUtils, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
addSubCommand("fileutils", {"flush", "Purges the file searching cache.",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandFileUtilsSubCommandFlush, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandFps()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
addCommand(
|
|
|
|
{"fps", "Turn on / off the FPS. Args: [-h | help | on | off | ]", CC_CALLBACK_2(Console::commandFps, this)});
|
|
|
|
addSubCommand("fps", {"on", "Display the FPS on the bottom-left corner.",
|
|
|
|
CC_CALLBACK_2(Console::commandFpsSubCommandOnOff, this)});
|
|
|
|
addSubCommand("fps", {"off", "Hide the FPS on the bottom-left corner.",
|
|
|
|
CC_CALLBACK_2(Console::commandFpsSubCommandOnOff, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandHelp()
|
|
|
|
{
|
|
|
|
addCommand({"help", "Print this message. Args: [ ]", CC_CALLBACK_2(Console::commandHelp, this)});
|
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandProjection()
|
|
|
|
{
|
|
|
|
addCommand({"projection", "Change or print the current projection. Args: [-h | help | 2d | 3d | ]",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandProjection, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
addSubCommand("projection", {"2d", "sets a 2D projection (orthogonal projection).",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandProjectionSubCommand2d, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
addSubCommand("projection", {"3d", "sets a 3D projection with a fovy=60, znear=0.5f and zfar=1500.",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandProjectionSubCommand3d, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandResolution()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
addCommand({"resolution",
|
|
|
|
"Change or print the window resolution. Args: [-h | help | width height resolution_policy | ]",
|
|
|
|
CC_CALLBACK_2(Console::commandResolution, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
addSubCommand("resolution", {"", "", CC_CALLBACK_2(Console::commandResolutionSubCommandEmpty, this)});
|
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandSceneGraph()
|
|
|
|
{
|
|
|
|
addCommand({"scenegraph", "Print the scene graph", CC_CALLBACK_2(Console::commandSceneGraph, this)});
|
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandTexture()
|
|
|
|
{
|
|
|
|
addCommand({"texture", "Flush or print the TextureCache info. Args: [-h | help | flush | ] ",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandTextures, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
addSubCommand("texture", {"flush", "Purges the dictionary of loaded textures.",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandTexturesSubCommandFlush, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandTouch()
|
|
|
|
{
|
|
|
|
addCommand({"touch", "simulate touch event via console, type -h or [touch help] to list supported directives"});
|
|
|
|
addSubCommand("touch", {"tap", "touch tap x y: simulate touch tap at (x,y).",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandTouchSubCommandTap, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
addSubCommand("touch", {"swipe", "touch swipe x1 y1 x2 y2: simulate touch swipe from (x1,y1) to (x2,y2).",
|
2021-12-25 10:04:45 +08:00
|
|
|
CC_CALLBACK_2(Console::commandTouchSubCommandSwipe, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandUpload()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
addCommand(
|
|
|
|
{"upload", "upload file. Args: [filename base64_encoded_data]", CC_CALLBACK_1(Console::commandUpload, this)});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void Console::createCommandVersion()
|
|
|
|
{
|
|
|
|
addCommand({"version", "print version string ", CC_CALLBACK_2(Console::commandVersion, this)});
|
2014-01-11 09:58:54 +08:00
|
|
|
}
|
|
|
|
|
2013-12-05 08:26:21 +08:00
|
|
|
//
|
2016-04-21 11:31:20 +08:00
|
|
|
// commands
|
2013-12-05 08:26:21 +08:00
|
|
|
//
|
2016-04-21 11:31:20 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandAllocator(socket_native_type fd, std::string_view /*args*/)
|
2013-12-05 08:26:21 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
#if CC_ENABLE_ALLOCATOR_DIAGNOSTICS
|
|
|
|
auto info = allocator::AllocatorDiagnostics::instance()->diagnostics();
|
|
|
|
Console::Utility::mydprintf(fd, info.c_str());
|
|
|
|
#else
|
2021-12-25 10:04:45 +08:00
|
|
|
Console::Utility::mydprintf(
|
|
|
|
fd, "allocator diagnostics not available. CC_ENABLE_ALLOCATOR_DIAGNOSTICS must be set to 1 in ccConfig.h\n");
|
2016-04-21 11:31:20 +08:00
|
|
|
#endif
|
|
|
|
}
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandConfig(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([=]() {
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "%s", Configuration::getInstance()->getInfo().c_str());
|
|
|
|
Console::Utility::sendPrompt(fd);
|
|
|
|
});
|
|
|
|
}
|
2013-12-05 08:26:21 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandDebugMsg(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
Console::Utility::mydprintf(fd, "Debug message is: %s\n", _sendDebugStrings ? "on" : "off");
|
|
|
|
}
|
2013-12-04 10:46:54 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandDebugMsgSubCommandOnOff(socket_native_type /*fd*/, std::string_view args)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
_sendDebugStrings = (args.compare("on") == 0);
|
|
|
|
}
|
2013-12-05 04:26:43 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandDirectorSubCommandPause(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto director = Director::getInstance();
|
|
|
|
Scheduler* sched = director->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([]() { Director::getInstance()->pause(); });
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandDirectorSubCommandResume(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
auto director = Director::getInstance();
|
|
|
|
director->resume();
|
|
|
|
}
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandDirectorSubCommandStop(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto director = Director::getInstance();
|
|
|
|
Scheduler* sched = director->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([]() { Director::getInstance()->stopAnimation(); });
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2013-11-27 10:58:36 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandDirectorSubCommandStart(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
auto director = Director::getInstance();
|
|
|
|
director->startAnimation();
|
|
|
|
}
|
2013-12-04 10:46:54 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandDirectorSubCommandEnd(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
auto director = Director::getInstance();
|
|
|
|
director->end();
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandExit(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
FD_CLR(fd, &_read_set);
|
|
|
|
_fds.erase(std::remove(_fds.begin(), _fds.end(), fd), _fds.end());
|
metal support for cocos2d-x (#19305)
* remove deprecated files
* remove some deprecated codes
* remove more deprecated codes
* remove ui deprecated codes
* remove more deprecated codes
* remove deprecated codes in ccmenuitem
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes in ui
* remove more deprecated codes
* remove more deprecated codes
* remove more deprecated codes
* remove vr related codes and ignore some modules
* remove allocator
* remove some config
* 【Feature】add back-end project file
* [Feature] add back-end file
* add pipeline descriptor and shader cache
* [Feature] support sprite for backend
* [Feature] remove unneeded code
* [Feature] according to es2.0 spec, you must use clamp-to-edge as texture wrap mode, and no mipmapping for non-power-of-two texture
* [Feature] set texture wrap mode to clamp-to-edge, and no mipmapping for non-power-of-two texture
* [Feature] remove macro define to .cpp file
* [Feature] add log info
* [Feature] add PipelineDescriptor for TriangleCommand
* [Feature] add PipelineDescriptor object as member of TriangleCommand
* [Feature] add getPipelineDescriptor method
* add renderbackend
* complete pipeline descriptor
* [Feature] add viewport in RenderCommand
* set viewport when rendrering
* [Feature] occur error when using RendererBackend, to be fixed.
* a workaround to fix black screen on macOS 10.14 (#19090)
* add rendererbackend init function
* fix typo
* [Feature] modify testFile
* [BugFix] modify shader path
* [Feature] set default viewport
* fix projection
* [Feature] modify log info
* [BugFix] change viewport data type to int
* [BugFix] add BindGroup to PipelienDescriptor
* [BugFix] change a_position to vec3 in sprite.vert
* [BugFix] set vertexLayout according to V3F_C4B_T2F structure
* [Feature] revert a_position to vec4
* [Feature] renderer should not use gl codes directly
* [Feature] it's better not use default value parameter
* fix depth test setting
* rendererbackend -> renderer
* clear color and depth at begin
* add metal backend
* metal support normalized attribute
* simplify codes
* update external
* add render pass desctriptor in pipeline descriptor
* fix warnings
* fix crash and memeory leak
* refactor Texture2D
* put pipeline descriptor into render command
* simplify codes
* [Feature] update Sprite
* fix crash when closing app
* [Feature] update SpriteBatchNode and TextureAtlas
* support render texture(not finish)
* [Feature] remove unused code
* make tests work on mac
* fix download-deps path error
* make tests work on iOS
* [Feature] support ttf under normal label effect
* refactor triangle command processing
* let renderer handle more common commands
* refactor backend
* make render texture work
* [Feature] refactor backend for GL
* [Feature]Renaming to make it easy to understand
* [Feature] change warp mode to CLAMP_TO_EDGE
* fix ghost
* simplify visit render queue logic
* support progress timer without rial mode
* support partcile system
* Feature/update label (#149)
* [BugFix] fix compile error
* [Feature] support outline effect in ios
* [Feature] add shader file
* [BugFix] fix begin and end RenderPass
* [Feature] update CustomCommand
* [Feature] revert project.pbxproj
* [Feature] simplify codes
* [BugFix] pack AI88 to RGBA8888 only when outline enable
* [Feature] support shadow effect in Label
* [Feature] support BMFont
* [Feature] support glow effect
* [Feature] simplify shader files
* LabelAtlas work
* handle blend function correctly
* support tile map
* don't share buffer in metal
* alloc buffer size as needed
* support more tilemap
* Merge branch 'minggo/metal-support' into feature/updateLabel
* minggo/metal-support:
support tile map
handle blend function correctly
LabelAtlas work
Feature/update label (#149)
support partcile system
# Conflicts:
# cocos/2d/CCLabel.cpp
# cocos/2d/CCSprite.cpp
# cocos/2d/CCSpriteBatchNode.cpp
# cocos/renderer/CCQuadCommand.cpp
# cocos/renderer/CCQuadCommand.h
* render texture work without saving file
* use global viewport
* grid3d works
* remove grabber
* tiled3d works
* [BugFix] fix label bug
* [Feature] add updateSubData for buffer
* [Feature] remove setVertexCount
* support depth test
* add callback command
* [Feature] add UITest
* [Feature] update UITest
* [Feature] remove unneeded codes
* fix custom command issue
* fix layer color blend issue
* [BugFix] fix iOS compile error
* [Feature] remove unneeded codes
* [Feature] fix updateVertexBuffer
* layerradial works
* add draw test back
* fix batch issue
* fix compiling error
* [BugFix] support ETC1
* [BugFix] get the correct pipelineDescriptor
* [BugFix] skip draw when backendTexture nullptr
* clipping node support
* [Feature] add shader files
* fix stencil issue in metal
* [Feature] update UILayoutTest
* [BugFix] skip drawing when vertexCount is zero
* refactor renderer
* add set global z order for stencil manager commands
* fix warnings caused by type
* remove viewport in render command
* [Feature] fix warnings caused by type
* [BugFix] clear vertexCount and indexCount for CustomComand when needed
* [Feature] update clear for CustomCommand
* ios use metal
* fix viewport issue
* fix LayerColorGradient crash
* [cmake] transport to android and windows (#160)
* save point 1
* compile on windows
* run on android
* revert useless change
* android set CC_ENABLE_CACHE_TEXTURE_DATA to 1
* add initGlew
* fix android crash
* add TODO new-renderer
* review update
* revert onGLFWWindowPosCallback
* fix android compiling error
* Impl progress radial (#162)
* progresstimer add radial impl
* default drawType to element
* dec invoke times of createVertexBuffer (#163)
* support depth/stencil format for gl backend
* simplify progress timer codes
* support motionstreak, effect is wrong
* fix motionstreak issue
* [Feature] update Scissor Test (#161)
* [Feature] update Scissor Test
* [Feature] update ScissorTest
* [Feature] rename function
* [Feature] get constant reference if needed
* [Feature] show render status (#164)
* improve performance
* fix depth state
* fill error that triangle vertex/index number bigger than buffer
* fix compiline error in release mode
* fix buffer conflict between CPU and GPU on iOS/macOS
* Renderer refactor (#165)
* use one vertes/index buffer with opengl
* fix error on windows
* custom command support index format config
* CCLayer: compact vertex data structure
* update comment
* fix doc
* support fast tilemap
* pass index format instead
* fix some wrong effect
* fix render texture error
* fix texture per-element size
* fix texture format error
* BlendFunc type refactor, GLenum -> backend::BlendFactor (#167)
* BlendFunc use backend::BlendFactor as inner field
* update comments
* use int to replace GLenum
* update xcode project fiel
* rename to GLBlendConst
* add ccConstants.h
* update xcode project file
* update copyright
* remove primitive command
* remove CCPrimitive.cpp/.h
* remove deprecated files
* remove unneeded files
* remove multiple view support
* remove multiple view support
* remove the usage of frame buffer in camera
* director don't use frame buffer
* remove FrameBuffer
* remove BatchCommand
* add some api reference
* add physics2d back
* fix crash when close app on mac
* improve render texture
* fix rendertexture issue
* fix rendertexture issue
* simplify codes
* CMake support for mac & ios (#169)
* update cmake
* fix compile error
* update 3rd libs version
* remove CCThread.h/.cpp
* remove ccthread
* use audio engine to implement simple audio engine
* remove unneeded codes
* remove deprecated codes
* remove winrt macro
* remove CC_USE_WIC
* set partcile blend function in more elegant way
* remove unneeded codes
* remove unneeded codes
* cmake works on windows
* update project setting
* improve performance
* GLFloat -> float
* sync v3 cmake improvements into metal-support (#172)
* pick: modern cmake, compile definitions improvement (#19139)
* modern cmake, use target_compile_definitions partly
* simplify macro define, remove USE_*
* modern cmake, macro define
* add physics 2d macro define into ccConfig.h
* remove USE_CHIPMUNK macro in build.gradle
* remove CocosSelectModule.cmake
* shrink useless define
* simplify compile options config, re-add if necessary
* update external for tmp CI test
* un-quote target_compile_options value
* add "-g" parameter only when debug mode
* keep single build type when generator Xcode & VS projecy
* update external for tmp CI tes
* add static_cast<char>(-1), fix -Wc++11-narrowing
* simplify win32 compile define
* not modify code, only improve compile options
# Conflicts:
# .gitignore
# cmake/Modules/CocosConfigDepend.cmake
# cocos/CMakeLists.txt
# external/config.json
# tests/cpp-tests/CMakeLists.txt
* modern cmake, improve cmake_compiler_flags (#19145)
* cmake_compiler_flags
* Fix typo
* Fix typo2
* Remove chanages from Android.mk
* correct lua template cmake build (#19149)
* don't add -Wno-deprecated into jsb target
* correct lua template cmake build
* fix win32 lua template compile error
* prevent cmake in-source-build friendly (#19151)
* pick: Copy resources to "Resources/" on win32 like in linux configuration
* add "/Z7" for cpp-tests on windows
* [cmake] fix iOS xcode property setting failed (#19208)
* fix iOS xcode property setting failed
* use search_depend_libs_recursive at dlls collect
* fix typo
* [cmake] add find_host_library into iOS toolchain file (#19230)
* pick: [lua android] use luajit & template cmake update (#19239)
* increase cmake stability , remove tests/CMakeLists.txt (#19261)
* cmake win32 Precompiled header (#19273)
* Precompiled header
* Fix
* Precompiled header for cocos
* Precompiled header jscocos2d
* Fix for COCOS2D_DEBUG is always 1 on Android (#19291)
Related #19289
* little build fix, tests cpp-tests works on mac
* sync v3 build related codes into metal-support (#173)
* strict initialization for std::array
* remove proj.win32 project configs
* modern cmake, cmake_cleanup_remove_unused_variables (#19146)
* Switch travis CI to xenial (#19207)
* Switch travis CI to xenial
* Remove language: android
* Set language: cpp
* Fix java problem
* Update sdkmanager
* Fix sdkmanger
* next sdkmanager fix
* Remove xenial from android
* revert to sdk-tools-{system}-3859397
* Remove linux cmake install
* Update before-install.sh
* Update .travis.yml
* Simplify install-deps-linux.sh, tested on Ubuntu 16.04 (#19212)
* Simplify install-deps-linux.sh
* Cleanup
* pick: install ninja
* update cocos2d-console submodule
* for metal-support alpha release, we only test cpp
* add HelloCpp into project(Cocos2d-x) for tmp test
* update extenal metal-support-4
* update uniform setting
* [Feature] update BindGroup
* [Feature] empty-test
* [Feature] cpp-test
* [Feature] fix GL compiler error
* [Feature] fix GL crash
* [Feature] empty-test
* [Feature] cpp-tests
* [feature] improve frameRate
* [feature] fix opengl compile error
* [feature] fix opengl compile error
* [BugFix] fix compute maxLocation error
* [Feature] update setting unifrom
* [Feature] fix namespace
* [Feature] remove unneeded code
* [Bugfix] fix project file
* [Feature] update review
* [texture2d] impl texture format support (#175)
* texture update
* update
* update texture
* commit
* compile on windows
* ddd
* rename
* rename methods
* no crash
* save gl
* save
* save
* rename
* move out pixel format convert functions
* metal crash
* update
* update android
* support gles compressed texture format
* support more compress format
* add more conversion methods
* ss
* save
* update conversion methods
* add PVRTC format support
* reformat
* add marco linux
* fix GL marcro
* pvrtc supported only by ios 8.0+
* remove unused cmake
* revert change
* refactor Texture2D::initWithData
* fix conversion log
* refactor Texture2D::initWithData
* remove some OpenGL constants for PVRTC
* add todo
* fix typo
* AutoTest works on mac/iOS by disable part cases, sync v3 bug fix (#174)
* review cpp-tests, and fix part issues on start auto test
* sync png format fix: Node:Particle3D abnormal texture effects #19204
* fix cpp-tests SpritePolygon crash, wrong png format (#19170)
* fix wrong png convert format from sRGB to Gray
* erase plist index if all frames was erased
* test_A8.png have I8 format, fix it
* [CCSpriteCache] allow re-add plist & add testcase (#19175)
* allow re-add plist & add testcase
* remove comments/rename method/update testcase
* fix isSpriteFramesWithFileLoaded & add testcase
* remove used variable
* remove unused variable
* fix double free issues when js/lua-tests exit on iOS (#19236)
* disable part cases, AutoTest works without crash on mac
* update cocos2dx files json, to test cocos new next
* fix spritecache plist parsing issue (#19269)
* [linux] Fix FileUtils::getContents with folder (#19157)
* fix FileUtils::getContents on linux/mac
* use stat.st_mode
* simplify
* [CCFileUtils] win32 getFileSize (#19176)
* win32 getFileSize
* fix stat
* [cpp test-Android]20:FileUtils/2 change title (#19197)
* sync #19200
* sync #19231
* [android lua] improve performance of lua loader (#19234)
* [lua] improve performance of lua loader
* remove cache fix
* Revert "fix spritecache plist parsing issue (#19269)"
This reverts commit f3a85ece4307a7b90816c34489d1ed2c8fd11baf.
* remove win32 project files ref in template.json
* add metal framework lnk ref into cpp template
* test on iOS, and disable part cases
* alBufferData instead of alBufferDataStatic for small audio file on Apple (#19227)
* changes AudioCache to use alBufferData instead of alBufferDataStatic
(also makes test 19 faster to trigger openal bugs faster)
The original problem: CrashIfClientProvidedBogusAudioBufferList
https://github.com/cocos2d/cocos2d-x/issues/18948
is not happening anymore, but there's still a not very frequent issue
that makes OpenAL crash with a call stack like this.
AudioCache::readDataTask > alBufferData > CleanUpDeadBufferList
It happes more frequently when the device is "cold", which means after
half an hour of not using the device (locked).
I could not find the actual source code for iOS OpenAL, so I used the
macOS versions:
https://opensource.apple.com/source/OpenAL/OpenAL-48.7/Source/OpenAL/oalImp.cpp.auto.html
They seem to use CAGuard.h to make sure the dead buffer list
has no threading issues. I'm worried because the CAGuard code I found
has macos and win32 define but no iOS, so I'm not sure. I guess the
iOS version is different and has the guard.
I could not find a place in the code that's unprotected by the locks
except the InitializeBufferMap() which should not be called more than
once from cocos, and there's a workaround in AudioEngine-impl for it.
I reduced the occurence of the CleanUpDeadBufferList crash by moving
the guard in ~AudioCache to cover the alDeleteBuffers call.
* remove hack method "setTimeout" on audio
* AutoTest works on iOS
* support set ios deployment target for root project
* enable all texture2d cases, since Jiang have fixed
* add CCTextureUtils to xcode project file (#176)
* add leak cases for SpriteFrameCache (#177)
* re-add SpriteFrameCache cases
* update template file json
* Update SpriteFrameCacheTest.cpp
* fix compiling error
2019-01-18 15:08:25 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2016-04-21 11:31:20 +08:00
|
|
|
closesocket(fd);
|
2014-04-11 20:07:54 +08:00
|
|
|
#else
|
2016-04-21 11:31:20 +08:00
|
|
|
close(fd);
|
2014-04-11 20:07:54 +08:00
|
|
|
#endif
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2014-04-11 20:07:54 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandFileUtils(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread(std::bind(&Console::printFileUtils, this, fd));
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandFileUtilsSubCommandFlush(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
FileUtils::getInstance()->purgeCachedEntries();
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandFps(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2022-07-04 22:45:23 +08:00
|
|
|
Console::Utility::mydprintf(fd, "FPS is: %s\n", Director::getInstance()->isStatsDisplay() ? "on" : "off");
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandFpsSubCommandOnOff(socket_native_type /*fd*/, std::string_view args)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
bool state = (args.compare("on") == 0);
|
|
|
|
Director* dir = Director::getInstance();
|
|
|
|
Scheduler* sched = dir->getScheduler();
|
2022-07-04 22:45:23 +08:00
|
|
|
sched->performFunctionInCocosThread(std::bind(&Director::setStatsDisplay, dir, state));
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandHelp(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
sendHelp(fd, _commands, "\nAvailable commands:\n");
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandProjection(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
auto director = Director::getInstance();
|
|
|
|
char buf[20];
|
|
|
|
auto proj = director->getProjection();
|
2021-12-25 10:04:45 +08:00
|
|
|
switch (proj)
|
|
|
|
{
|
|
|
|
case cocos2d::Director::Projection::_2D:
|
|
|
|
sprintf(buf, "2d");
|
|
|
|
break;
|
|
|
|
case cocos2d::Director::Projection::_3D:
|
|
|
|
sprintf(buf, "3d");
|
|
|
|
break;
|
|
|
|
case cocos2d::Director::Projection::CUSTOM:
|
|
|
|
sprintf(buf, "custom");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
sprintf(buf, "unknown");
|
|
|
|
break;
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
Console::Utility::mydprintf(fd, "Current projection: %s\n", buf);
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandProjectionSubCommand2d(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto director = Director::getInstance();
|
|
|
|
Scheduler* sched = director->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([=]() { director->setProjection(Director::Projection::_2D); });
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandProjectionSubCommand3d(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto director = Director::getInstance();
|
|
|
|
Scheduler* sched = director->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([=]() { director->setProjection(Director::Projection::_3D); });
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandResolution(socket_native_type /*fd*/, std::string_view args)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2019-10-09 17:50:32 +08:00
|
|
|
int policy;
|
|
|
|
float width, height;
|
2021-12-26 23:26:34 +08:00
|
|
|
std::stringstream stream;
|
|
|
|
stream << args;
|
2021-12-25 10:04:45 +08:00
|
|
|
stream >> width >> height >> policy;
|
|
|
|
|
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([=]() {
|
|
|
|
Director::getInstance()->getOpenGLView()->setDesignResolutionSize(width, height,
|
|
|
|
static_cast<ResolutionPolicy>(policy));
|
|
|
|
});
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandResolutionSubCommandEmpty(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto director = Director::getInstance();
|
|
|
|
Vec2 points = director->getWinSize();
|
|
|
|
Vec2 pixels = director->getWinSizeInPixels();
|
|
|
|
auto glview = director->getOpenGLView();
|
|
|
|
Vec2 design = glview->getDesignResolutionSize();
|
2016-04-21 11:31:20 +08:00
|
|
|
ResolutionPolicy res = glview->getResolutionPolicy();
|
2021-12-25 10:04:45 +08:00
|
|
|
Rect visibleRect = glview->getVisibleRect();
|
|
|
|
|
|
|
|
Console::Utility::mydprintf(fd,
|
|
|
|
"Window size:\n"
|
|
|
|
"\t%d x %d (points)\n"
|
|
|
|
"\t%d x %d (pixels)\n"
|
|
|
|
"\t%d x %d (design resolution)\n"
|
|
|
|
"Resolution Policy: %d\n"
|
|
|
|
"Visible Rect:\n"
|
|
|
|
"\torigin: %d x %d\n"
|
|
|
|
"\tsize: %d x %d\n",
|
|
|
|
(int)points.width, (int)points.height, (int)pixels.width, (int)pixels.height,
|
|
|
|
(int)design.width, (int)design.height, (int)res, (int)visibleRect.origin.x,
|
|
|
|
(int)visibleRect.origin.y, (int)visibleRect.size.width, (int)visibleRect.size.height);
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandSceneGraph(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread(std::bind(&Console::printSceneGraphBoot, this, fd));
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandTextures(socket_native_type fd, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([=]() {
|
|
|
|
Console::Utility::mydprintf(fd, "%s",
|
|
|
|
Director::getInstance()->getTextureCache()->getCachedTextureInfo().c_str());
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::sendPrompt(fd);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandTexturesSubCommandFlush(socket_native_type /*fd*/, std::string_view /*args*/)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([]() { Director::getInstance()->getTextureCache()->removeAllTextures(); });
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandTouchSubCommandTap(socket_native_type fd, std::string_view args)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto argv = Console::Utility::split(args, ' ');
|
|
|
|
|
|
|
|
if ((argv.size() == 3) && (Console::Utility::isFloat(argv[1]) && Console::Utility::isFloat(argv[2])))
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-10-09 17:50:32 +08:00
|
|
|
float x = (float)utils::atof(argv[1].c_str());
|
|
|
|
float y = (float)utils::atof(argv[2].c_str());
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
std::srand((unsigned)time(nullptr));
|
|
|
|
_touchId = rand();
|
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([&]() {
|
2016-04-21 11:31:20 +08:00
|
|
|
Director::getInstance()->getOpenGLView()->handleTouchesBegin(1, &_touchId, &x, &y);
|
|
|
|
Director::getInstance()->getOpenGLView()->handleTouchesEnd(1, &_touchId, &x, &y);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char msg[] = "touch: invalid arguments.\n";
|
|
|
|
Console::Utility::sendToConsole(fd, msg, strlen(msg));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandTouchSubCommandSwipe(socket_native_type fd, std::string_view args)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto argv = Console::Utility::split(args, ' ');
|
|
|
|
|
|
|
|
if ((argv.size() == 5) && (Console::Utility::isFloat(argv[1])) && (Console::Utility::isFloat(argv[2])) &&
|
|
|
|
(Console::Utility::isFloat(argv[3])) && (Console::Utility::isFloat(argv[4])))
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-10-09 17:50:32 +08:00
|
|
|
float x1 = (float)utils::atof(argv[1].c_str());
|
|
|
|
float y1 = (float)utils::atof(argv[2].c_str());
|
|
|
|
float x2 = (float)utils::atof(argv[3].c_str());
|
|
|
|
float y2 = (float)utils::atof(argv[4].c_str());
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
std::srand((unsigned)time(nullptr));
|
2016-04-21 11:31:20 +08:00
|
|
|
_touchId = rand();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
Scheduler* sched = Director::getInstance()->getScheduler();
|
|
|
|
sched->performFunctionInCocosThread([=]() {
|
2016-04-21 11:31:20 +08:00
|
|
|
float tempx = x1, tempy = y1;
|
|
|
|
Director::getInstance()->getOpenGLView()->handleTouchesBegin(1, &_touchId, &tempx, &tempy);
|
|
|
|
});
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
float dx = std::abs(x1 - x2);
|
|
|
|
float dy = std::abs(y1 - y2);
|
2016-04-21 11:31:20 +08:00
|
|
|
float _x_ = x1, _y_ = y1;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (dx > dy)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
while (dx > 1)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
if (x1 < x2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
_x_ += 1;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (x1 > x2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
_x_ -= 1;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (y1 < y2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_y_ += dy / dx;
|
2013-12-05 08:26:21 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (y1 > y2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_y_ -= dy / dx;
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
sched->performFunctionInCocosThread([=]() {
|
2016-04-21 11:31:20 +08:00
|
|
|
float tempx = _x_, tempy = _y_;
|
|
|
|
Director::getInstance()->getOpenGLView()->handleTouchesMove(1, &_touchId, &tempx, &tempy);
|
|
|
|
});
|
|
|
|
dx -= 1;
|
2014-01-11 09:58:54 +08:00
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
while (dy > 1)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (x1 < x2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_x_ += dx / dy;
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (x1 > x2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_x_ -= dx / dy;
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (y1 < y2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
_y_ += 1;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (y1 > y2)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
_y_ -= 1;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
sched->performFunctionInCocosThread([=]() {
|
2016-04-21 11:31:20 +08:00
|
|
|
float tempx = _x_, tempy = _y_;
|
|
|
|
Director::getInstance()->getOpenGLView()->handleTouchesMove(1, &_touchId, &tempx, &tempy);
|
|
|
|
});
|
|
|
|
dy -= 1;
|
2013-12-04 10:46:54 +08:00
|
|
|
}
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
sched->performFunctionInCocosThread([=]() {
|
2016-04-21 11:31:20 +08:00
|
|
|
float tempx = x2, tempy = y2;
|
|
|
|
Director::getInstance()->getOpenGLView()->handleTouchesEnd(1, &_touchId, &tempx, &tempy);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char msg[] = "touch: invalid arguments.\n";
|
|
|
|
Console::Utility::sendToConsole(fd, msg, strlen(msg));
|
|
|
|
}
|
|
|
|
}
|
2013-12-05 08:26:21 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
static char invalid_filename_char[] = {':', '/', '\\', '?', '%', '*', '<', '>', '"', '|', '\r', '\n', '\t'};
|
|
|
|
|
2021-10-09 13:48:56 +08:00
|
|
|
void Console::commandUpload(socket_native_type fd)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
ssize_t n, rc;
|
2017-03-29 14:23:33 +08:00
|
|
|
char buf[512] = {0};
|
2021-12-25 10:04:45 +08:00
|
|
|
char c = 0;
|
|
|
|
char* ptr = buf;
|
|
|
|
// read file name
|
|
|
|
for (n = 0; n < sizeof(buf) - 1; n++)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if ((rc = recv(fd, &c, 1, 0)) == 1)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
for (char x : invalid_filename_char)
|
2015-05-19 18:33:06 +08:00
|
|
|
{
|
2017-03-29 14:23:33 +08:00
|
|
|
if (c == x)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
const char err[] = "upload: invalid file name!\n";
|
|
|
|
Console::Utility::sendToConsole(fd, err, strlen(err));
|
|
|
|
return;
|
2014-01-11 09:58:54 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-29 14:23:33 +08:00
|
|
|
if (c == ' ')
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*ptr++ = c;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (rc == 0)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
break;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (errno == EINTR)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
continue;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
break;
|
2013-12-05 08:26:21 +08:00
|
|
|
}
|
2013-12-05 04:26:43 +08:00
|
|
|
}
|
2016-04-21 11:31:20 +08:00
|
|
|
*ptr = 0;
|
2013-12-05 04:26:43 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
static std::string writablePath = FileUtils::getInstance()->getWritablePath();
|
2021-12-25 10:04:45 +08:00
|
|
|
std::string filepath = writablePath + std::string(buf);
|
2016-04-21 11:31:20 +08:00
|
|
|
|
2021-04-26 12:21:56 +08:00
|
|
|
auto fs = FileUtils::getInstance()->openFileStream(filepath, FileStream::Mode::WRITE);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!fs)
|
2014-02-24 14:24:14 +08:00
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
const char err[] = "can't create file!\n";
|
|
|
|
Console::Utility::sendToConsole(fd, err, strlen(err));
|
|
|
|
return;
|
2014-02-24 14:24:14 +08:00
|
|
|
}
|
2017-03-29 14:23:33 +08:00
|
|
|
|
|
|
|
while (true)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
char data[4];
|
2021-12-25 10:04:45 +08:00
|
|
|
for (int i = 0; i < 4; i++)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
data[i] = '=';
|
|
|
|
}
|
|
|
|
bool more_data;
|
|
|
|
readBytes(fd, data, 4, &more_data);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!more_data)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
unsigned char* decode;
|
|
|
|
unsigned char* in = (unsigned char*)data;
|
|
|
|
int dt = base64Decode(in, 4, &decode);
|
2017-03-29 14:23:33 +08:00
|
|
|
if (dt > 0)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-04-25 15:22:43 +08:00
|
|
|
fs->write(decode, dt);
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
free(decode);
|
|
|
|
}
|
2013-11-27 10:58:36 +08:00
|
|
|
}
|
2013-12-05 16:09:38 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
void Console::commandVersion(socket_native_type fd, std::string_view /*args*/)
|
2014-12-24 02:04:42 +08:00
|
|
|
{
|
2021-10-25 20:29:40 +08:00
|
|
|
Console::Utility::mydprintf(fd, "%s\n", adxeVersion());
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// helper free functions
|
|
|
|
|
2021-10-09 13:48:56 +08:00
|
|
|
int Console::printSceneGraph(socket_native_type fd, Node* node, int level)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
int total = 1;
|
2021-12-25 10:04:45 +08:00
|
|
|
for (int i = 0; i < level; ++i)
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::sendToConsole(fd, "-", 1);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, " %s\n", node->getDescription().c_str());
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
for (const auto& child : node->getChildren())
|
|
|
|
total += printSceneGraph(fd, child, level + 1);
|
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
2021-10-09 13:48:56 +08:00
|
|
|
void Console::printSceneGraphBoot(socket_native_type fd)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Console::Utility::sendToConsole(fd, "\n", 1);
|
2016-04-21 11:31:20 +08:00
|
|
|
auto scene = Director::getInstance()->getRunningScene();
|
2021-12-25 10:04:45 +08:00
|
|
|
int total = printSceneGraph(fd, scene, 0);
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "Total Nodes: %d\n", total);
|
|
|
|
Console::Utility::sendPrompt(fd);
|
|
|
|
}
|
|
|
|
|
2021-10-09 13:48:56 +08:00
|
|
|
void Console::printFileUtils(socket_native_type fd)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
FileUtils* fu = FileUtils::getInstance();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "\nSearch Paths:\n");
|
|
|
|
auto& list = fu->getSearchPaths();
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& item : list)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "%s\n", item.c_str());
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "\nResolution Order:\n");
|
|
|
|
auto& list1 = fu->getSearchResolutionsOrder();
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& item : list1)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "%s\n", item.c_str());
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "\nWritable Path:\n");
|
|
|
|
Console::Utility::mydprintf(fd, "%s\n", fu->getWritablePath().c_str());
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "\nFull Path Cache:\n");
|
|
|
|
auto& cache = fu->getFullPathCache();
|
2021-12-25 10:04:45 +08:00
|
|
|
for (const auto& item : cache)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "%s -> %s\n", item.first.c_str(), item.second.c_str());
|
|
|
|
}
|
|
|
|
Console::Utility::sendPrompt(fd);
|
|
|
|
}
|
|
|
|
|
2021-12-28 11:00:34 +08:00
|
|
|
void Console::sendHelp(socket_native_type fd, const hlookup::string_map<Command*>& commands, const char* msg)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
|
|
|
Console::Utility::sendToConsole(fd, msg, strlen(msg));
|
2021-12-25 10:04:45 +08:00
|
|
|
for (auto& it : commands)
|
2016-04-21 11:31:20 +08:00
|
|
|
{
|
2016-10-27 15:10:24 +08:00
|
|
|
auto command = it.second;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (command->getHelp().empty())
|
|
|
|
continue;
|
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
Console::Utility::mydprintf(fd, "\t%s", command->getName().data());
|
2021-12-28 19:12:53 +08:00
|
|
|
ssize_t tabs = command->getName().length() / 8;
|
2021-12-25 10:04:45 +08:00
|
|
|
tabs = 3 - tabs;
|
|
|
|
for (int j = 0; j < tabs; j++)
|
|
|
|
{
|
2016-04-21 11:31:20 +08:00
|
|
|
Console::Utility::mydprintf(fd, "\t");
|
|
|
|
}
|
2021-12-26 23:26:34 +08:00
|
|
|
Console::Utility::mydprintf(fd, "%s\n", command->getHelp().data());
|
2016-04-21 11:31:20 +08:00
|
|
|
}
|
2014-12-24 02:04:42 +08:00
|
|
|
}
|
2014-03-22 21:10:54 +08:00
|
|
|
|
2013-12-05 16:09:38 +08:00
|
|
|
NS_CC_END
|