2010-11-23 11:23:29 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
#include "CCCommon.h"
|
2010-11-23 11:23:29 +08:00
|
|
|
|
2011-02-24 19:42:45 +08:00
|
|
|
#define MAX_LEN (cocos2d::kMaxLogLen + 1)
|
|
|
|
|
|
|
|
/****************************************************
|
|
|
|
* win32
|
|
|
|
***************************************************/
|
2011-03-07 17:11:57 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
2010-11-23 11:23:29 +08:00
|
|
|
#include <Windows.h>
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
#include "CCStdC.h"
|
2010-11-23 11:23:29 +08:00
|
|
|
|
2011-01-15 18:05:35 +08:00
|
|
|
NS_CC_BEGIN;
|
2010-11-23 11:23:29 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
void CCLog(const char * pszFormat, ...)
|
2010-11-23 11:23:29 +08:00
|
|
|
{
|
|
|
|
char szBuf[MAX_LEN];
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, pszFormat);
|
2011-07-14 17:52:56 +08:00
|
|
|
vsnprintf_s(szBuf, MAX_LEN, MAX_LEN, pszFormat, ap);
|
2010-11-23 11:23:29 +08:00
|
|
|
va_end(ap);
|
2011-05-18 11:25:54 +08:00
|
|
|
|
|
|
|
WCHAR wszBuf[MAX_LEN] = {0};
|
|
|
|
MultiByteToWideChar(CP_UTF8, 0, szBuf, -1, wszBuf, sizeof(wszBuf));
|
|
|
|
OutputDebugStringW(wszBuf);
|
2010-11-23 18:20:46 +08:00
|
|
|
OutputDebugStringA("\n");
|
2010-11-23 11:23:29 +08:00
|
|
|
}
|
|
|
|
|
2011-03-29 11:41:44 +08:00
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
|
|
|
{
|
|
|
|
MessageBoxA(NULL, pszMsg, pszTitle, MB_OK);
|
|
|
|
}
|
|
|
|
|
2011-01-15 18:05:35 +08:00
|
|
|
NS_CC_END;
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
#endif // CC_PLATFORM_WIN32
|
2011-02-17 14:31:52 +08:00
|
|
|
|
2011-02-23 18:22:05 +08:00
|
|
|
|
2011-02-24 19:42:45 +08:00
|
|
|
/****************************************************
|
|
|
|
* ios
|
|
|
|
***************************************************/
|
2011-03-07 17:11:57 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
|
2011-02-23 18:22:05 +08:00
|
|
|
|
2011-03-31 10:36:53 +08:00
|
|
|
// implement in CCCommon_iso.mm
|
2011-02-23 18:22:05 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
#endif // CC_PLATFORM_IOS
|
2011-02-24 19:42:45 +08:00
|
|
|
|
|
|
|
/****************************************************
|
|
|
|
* android
|
|
|
|
***************************************************/
|
2011-03-07 17:11:57 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
|
2011-02-24 19:42:45 +08:00
|
|
|
|
|
|
|
#include <android/log.h>
|
|
|
|
#include <stdio.h>
|
2011-07-25 14:12:30 +08:00
|
|
|
#include <jni.h>
|
2011-02-24 19:42:45 +08:00
|
|
|
|
2011-07-25 14:12:30 +08:00
|
|
|
#include "android/jni/MessageJni.h"
|
2011-04-01 11:35:26 +08:00
|
|
|
|
2011-02-24 19:42:45 +08:00
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
void CCLog(const char * pszFormat, ...)
|
2011-02-24 19:42:45 +08:00
|
|
|
{
|
|
|
|
char buf[MAX_LEN];
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
va_start(args, pszFormat);
|
|
|
|
vsprintf(buf, pszFormat, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
__android_log_print(ANDROID_LOG_DEBUG, "cocos2d-x debug info", buf);
|
|
|
|
}
|
2011-03-25 12:01:56 +08:00
|
|
|
|
2011-03-29 15:05:53 +08:00
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
|
|
|
{
|
2011-04-01 11:35:26 +08:00
|
|
|
showMessageBoxJNI(pszMsg, pszTitle);
|
2011-03-29 15:05:53 +08:00
|
|
|
}
|
|
|
|
|
2011-03-25 12:01:56 +08:00
|
|
|
NS_CC_END;
|
|
|
|
|
2011-03-23 22:16:20 +08:00
|
|
|
#endif // CC_PLATFORM_ANDROID
|
2011-08-17 11:18:58 +08:00
|
|
|
/****************************************************
|
|
|
|
* linux
|
|
|
|
***************************************************/
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "CCStdC.h"
|
|
|
|
|
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
|
|
|
void CCLog(const char * pszFormat, ...)
|
|
|
|
{
|
|
|
|
char buf[MAX_LEN];
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
va_start(args, pszFormat);
|
|
|
|
vsprintf(buf, pszFormat, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
//TODO will copy how orx do
|
|
|
|
printf(buf);
|
|
|
|
}
|
|
|
|
|
2011-12-08 19:16:32 +08:00
|
|
|
// marmalade no MessageBox, use CCLog instead
|
2011-08-17 11:18:58 +08:00
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
|
|
|
{
|
|
|
|
CCLog("%s: %s", pszTitle, pszMsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END;
|
|
|
|
#endif
|
2011-03-23 22:16:20 +08:00
|
|
|
/****************************************************
|
2011-12-08 19:16:32 +08:00
|
|
|
* marmalade
|
2011-03-23 22:16:20 +08:00
|
|
|
***************************************************/
|
2011-12-08 19:16:32 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_MARMALADE)
|
2011-03-23 22:16:20 +08:00
|
|
|
|
|
|
|
#include <s3e.h>
|
|
|
|
#include "IwUtil.h"
|
|
|
|
#include "IwUtilInitTerm.h"
|
|
|
|
#include <IwMemBucketHelpers.h>
|
|
|
|
#include <stdio.h>
|
2011-02-24 19:42:45 +08:00
|
|
|
|
2011-03-23 22:16:20 +08:00
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
|
|
|
void CCLog(const char * pszFormat, ...)
|
|
|
|
{
|
|
|
|
char buf[MAX_LEN];
|
2011-08-17 11:18:58 +08:00
|
|
|
|
2011-03-23 22:16:20 +08:00
|
|
|
va_list args;
|
2011-08-17 11:18:58 +08:00
|
|
|
va_start(args, pszFormat);
|
2011-03-23 22:16:20 +08:00
|
|
|
vsprintf(buf, pszFormat, args);
|
|
|
|
va_end(args);
|
2011-08-17 11:18:58 +08:00
|
|
|
|
2011-03-23 22:16:20 +08:00
|
|
|
IwTrace(GAME, (buf));
|
|
|
|
}
|
2011-02-24 19:42:45 +08:00
|
|
|
|
2011-12-08 19:16:32 +08:00
|
|
|
// marmalade no MessageBox, use CCLog instead
|
2011-03-29 15:05:53 +08:00
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
|
|
|
{
|
|
|
|
CCLog("%s: %s", pszTitle, pszMsg);
|
|
|
|
}
|
2011-03-23 22:16:20 +08:00
|
|
|
|
2011-03-29 15:05:53 +08:00
|
|
|
NS_CC_END;
|
2011-02-24 19:42:45 +08:00
|
|
|
|
2011-12-08 19:16:32 +08:00
|
|
|
#endif // CC_PLATFORM_MARMALADE
|
2011-09-19 17:53:45 +08:00
|
|
|
|
|
|
|
/****************************************************
|
|
|
|
* bada
|
|
|
|
***************************************************/
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_BADA)
|
|
|
|
#include <FBaseSys.h>
|
2011-11-13 01:13:25 +08:00
|
|
|
#include <FUi.h>
|
2011-09-19 23:35:46 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
2011-11-13 01:13:25 +08:00
|
|
|
|
|
|
|
using namespace Osp::Ui::Controls;
|
|
|
|
|
2011-09-19 17:53:45 +08:00
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
2011-09-19 23:35:46 +08:00
|
|
|
void CCLog(const char * pszFormat, ...)
|
|
|
|
{
|
|
|
|
char buf[MAX_LEN] = {0};
|
2011-09-19 17:53:45 +08:00
|
|
|
|
2011-09-19 23:35:46 +08:00
|
|
|
va_list args;
|
|
|
|
va_start(args, pszFormat);
|
|
|
|
vsnprintf(buf, MAX_LEN, pszFormat, args);
|
|
|
|
va_end(args);
|
2011-11-28 14:27:48 +08:00
|
|
|
__App_info(__PRETTY_FUNCTION__ , __LINE__, buf);
|
2011-09-19 23:35:46 +08:00
|
|
|
}
|
2011-09-19 17:53:45 +08:00
|
|
|
|
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
|
|
|
{
|
2011-11-13 01:13:25 +08:00
|
|
|
if (pszMsg != NULL && pszTitle != NULL)
|
|
|
|
{
|
|
|
|
int iRet = 0;
|
|
|
|
MessageBox msgBox;
|
|
|
|
msgBox.Construct(pszTitle, pszMsg, MSGBOX_STYLE_OK);
|
|
|
|
msgBox.ShowAndWait(iRet);
|
|
|
|
}
|
2011-09-19 17:53:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END;
|
|
|
|
|
|
|
|
#endif // CC_PLATFORM_BADA
|
2011-12-06 14:56:37 +08:00
|
|
|
|
|
|
|
|
|
|
|
/****************************************************
|
|
|
|
* qnx
|
|
|
|
***************************************************/
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_QNX)
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdarg>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
NS_CC_BEGIN;
|
|
|
|
|
|
|
|
void CCLog(const char * pszFormat, ...)
|
|
|
|
{
|
|
|
|
char buf[MAX_LEN];
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
va_start(args, pszFormat);
|
|
|
|
vsprintf(buf, pszFormat, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
fprintf(stderr, "cocos2d-x debug info [%s]\n", buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
|
|
|
{
|
|
|
|
CCLog("%s: %s", pszTitle, pszMsg);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END;
|
|
|
|
|
|
|
|
#endif // CC_PLATFORM_QNX
|