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-24 19:42:45 +08:00
|
|
|
/****************************************************
|
2011-03-09 17:28:35 +08:00
|
|
|
* wophone
|
2011-02-24 19:42:45 +08:00
|
|
|
***************************************************/
|
2011-03-09 17:28:35 +08:00
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_WOPHONE)
|
2011-02-17 14:31:52 +08:00
|
|
|
#include "TG3.h"
|
|
|
|
|
2011-05-05 11:51:13 +08:00
|
|
|
static char s_szLogFilePath[EOS_FILE_MAX_PATH] = {0};
|
2011-02-17 14:31:52 +08:00
|
|
|
|
2011-02-23 18:22:05 +08:00
|
|
|
NS_CC_BEGIN;
|
2011-02-17 14:31:52 +08:00
|
|
|
|
2011-03-07 17:11:57 +08:00
|
|
|
void CCLog(const char * pszFormat, ...)
|
2011-02-17 14:31:52 +08:00
|
|
|
{
|
2011-05-05 11:51:13 +08:00
|
|
|
if (! s_szLogFilePath[0])
|
|
|
|
{
|
|
|
|
// save the log file named "Cocos2dxLog.txt" to the directory which the app.so in.
|
|
|
|
TUChar AppID[EOS_FILE_MAX_PATH] = {0};
|
|
|
|
UInt32 nCmdType = 0;
|
|
|
|
Int32 nRet = SS_AppRequest_GetAppName(AppID, &nCmdType);
|
|
|
|
if (nRet < 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
TUChar AppPath[EOS_FILE_MAX_PATH] = {0};
|
|
|
|
if (SS_GetApplicationPath(AppID, SS_APP_PATH_TYPE_EXECUTABLE, AppPath) < 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
char szAppPath[EOS_FILE_MAX_PATH] = {0};
|
|
|
|
TUString::StrUnicodeToStrUtf8((Char*) szAppPath, AppPath);
|
|
|
|
#ifndef _TRANZDA_VM_
|
|
|
|
strcpy(s_szLogFilePath, "");
|
|
|
|
#else
|
|
|
|
strcpy(s_szLogFilePath, "D:/Work7");
|
|
|
|
#endif
|
|
|
|
strcat(s_szLogFilePath, szAppPath);
|
|
|
|
strcat(s_szLogFilePath, "Cocos2dxLog.txt");
|
|
|
|
}
|
|
|
|
|
2011-02-17 14:31:52 +08:00
|
|
|
char szBuf[MAX_LEN];
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, pszFormat);
|
|
|
|
#ifdef _TRANZDA_VM_
|
|
|
|
vsprintf_s(szBuf, MAX_LEN, pszFormat, ap);
|
|
|
|
#else
|
|
|
|
vsnprintf(szBuf, MAX_LEN, pszFormat, ap);
|
|
|
|
#endif
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
#ifdef _TRANZDA_VM_
|
2011-05-18 11:25:54 +08:00
|
|
|
WCHAR wszBuf[MAX_LEN] = {0};
|
|
|
|
MultiByteToWideChar(CP_UTF8, 0, szBuf, -1, wszBuf, sizeof(wszBuf));
|
2011-05-18 11:08:18 +08:00
|
|
|
OutputDebugStringW(wszBuf);
|
2011-05-18 11:25:54 +08:00
|
|
|
OutputDebugStringA("\n");
|
2011-02-17 14:31:52 +08:00
|
|
|
#else
|
2011-05-05 11:51:13 +08:00
|
|
|
FILE * pf = fopen(s_szLogFilePath, "a+");
|
2011-02-17 14:31:52 +08:00
|
|
|
if (! pf)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fwrite(szBuf, 1, strlen(szBuf), pf);
|
|
|
|
fwrite("\r\n", 1, strlen("\r\n"), pf);
|
|
|
|
fflush(pf);
|
|
|
|
fclose(pf);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-03-29 15:05:53 +08:00
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
|
|
|
{
|
|
|
|
TUChar tszMsg[MAX_LEN] = { 0 };
|
|
|
|
TUChar tszTitle[MAX_LEN] = { 0 };
|
|
|
|
TUString::StrUtf8ToStrUnicode(tszMsg,(Char*)pszMsg);
|
|
|
|
TUString::StrUtf8ToStrUnicode(tszTitle,(Char*)pszTitle);
|
|
|
|
TMessageBox box(tszMsg, tszTitle, WMB_OK);
|
|
|
|
box.Show();
|
|
|
|
}
|
|
|
|
|
2011-02-17 14:31:52 +08:00
|
|
|
NS_CC_END;
|
2011-02-24 19:42:45 +08:00
|
|
|
|
2011-03-09 17:28:35 +08:00
|
|
|
#endif // CC_PLATFORM_WOPHONE
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
// airplay no MessageBox, use CCLog instead
|
|
|
|
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
|
|
|
/****************************************************
|
|
|
|
* airplay
|
|
|
|
***************************************************/
|
|
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_AIRPLAY)
|
|
|
|
|
|
|
|
#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-03-29 15:05:53 +08:00
|
|
|
// airplay no MessageBox, use CCLog instead
|
|
|
|
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-03-29 15:05:53 +08:00
|
|
|
#endif // CC_PLATFORM_AIRPLAY
|
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
|