码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2dx3.2 使用SimpleAudioEngine时不能播放音频解决办法(中文路径问题)

时间:2014-11-17 14:06:53      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:cocos2dx3.x   simpleaudioengine   声音   播放   

cocos2dx windows下开发真是波折多多啊;最近又遇到了vs2013调试状态下能播放声音,非调试状态不能播放的问题。

跟了很多代码发现原来是带了中文路径的原因。故找到问题,马上解决掉

首先找到:libAudio工程下的SimpleAudioEngine.cpp文件

找到如下代码

//////////////////////////////////////////////////////////////////////////
// static function
//////////////////////////////////////////////////////////////////////////

static std::string _FullPath(const char * szPath)
{
      return FileUtils::getInstance()->fullPathForFilename(szPath);
}

修改如下(我使用的是boost来转码的)

//////////////////////////////////////////////////////////////////////////
// static function
//////////////////////////////////////////////////////////////////////////

static std::string _FullPath(const char * szPath)
{
	//std::string str(szPath);//如果只需要使用相对路径则使用此行替换下一行
	std::string str = FileUtils::getInstance()->fullPathForFilename(szPath);//补全成绝对路径
	return boost::locale::conv::between(str, "GBK", "UTF-8");
	//return FileUtils::getInstance()->fullPathForFilename(szPath);
}

到此完成,可以使用中文路径了。。


cocos2dx3.2 使用SimpleAudioEngine时不能播放音频解决办法(中文路径问题)

标签:cocos2dx3.x   simpleaudioengine   声音   播放   

原文地址:http://blog.csdn.net/xie1xiao1jun/article/details/41207737

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!