本文的重点在于如何将截图功能继承到Cocos2d-x 3.0引擎。
1.集成到Director
这里选择把截屏功能继承到Director中,让全局的导演来执行截屏功能是一个很好的主意。
- voidDirector::saveScreenshot(conststd::string&fileName,conststd::function<void(conststd::string&)>&callback)
- {
- Image::Formatformat;
- //进行后缀判断
- if(std::string::npos!=fileName.find_last_of(".")){
- autoextension=fileName.substr(fileName.find_last_of("."),fileName.length());
- if(!extension.compare(".png")){
- format=Image::Format::PNG;
- }elseif(!extension.compare(".jpg")){
- format=Image::Format::JPG;
- else{
- CCLOG("cocos2d:theimagecanonlybesavedasJPGorPNGformat");
- return;
- }
- //获取屏幕尺寸,初始化一个空的渲染纹理对象
- autorenderTexture=RenderTexture::create(getWinSize().width,getWinSize().height,Texture2D::PixelFormat::RGBA8888);
- //清空并开始获取
- renderTexture->beginWithClear(0.0f,0.0f,0.0f);
- //遍历场景节点对象,填充纹理到RenderTexture中
- getRunningScene()->visit();
- //结束获取
- renderTexture->end();
- //保存文件
- renderTexture->saveToFile(fileName,format);
- //使用schedule在下一帧中调用callback函数
- autofullPath=FileUtils::getInstance()->getWritablePath()+fileName;
- autoscheduleCallback=[&,fullPath,callback](floatdt){
- callback(fullPath);
- };
- auto_schedule=getRunningScene()->getScheduler();
- _schedule->schedule(scheduleCallback,this,153); font-weight:bold; background-color:inherit">false,"screenshot");
- }
2.如何使用saveScreenshot
截屏功能使用起来也很简单, 直接调用saveSecreenshot,其中第一个参数为文件名(支持png和jpg格式,不带后缀名默认为png格式),第二个参数为回调函数,你可以在回调函数中处理这个文件。