coco2dx获取csb中的所有图片

 1 std::string CSLoader::GetTextureListFromCsb(const std::string& filename)
 2 {
 5     std::string path = filename;
 6     size_t pos = path.find_last_of('.');
 7     std::string suffix = path.substr(pos + 1, path.length());
 8 
 9     CSLoader* loader = CSLoader::getInstance();
10     loader->_textureList.clear();
11 
12     if (suffix == "csb")
13         loader->GetTextureList(loader, filename);
14 
15     //去除重复项
16     sort(loader->_textureList.begin(), loader->_textureList.end());
17     std::vector<std::string>::iterator iter = unique(loader->_textureList.begin(), loader->_textureList.end());
18     loader->_textureList.erase(iter, loader->_textureList.end());
19 
20     std::string rtn;
21     int count = loader->_textureList.size();
22     if (count > 0)
23     {
24         std::string tail = ".plist";
25         for (int i = 0; i < count; i++)
26         {
27             std::string path = loader->_textureList.at(i);
28             if(path.compare(path.size() - tail.size(), tail.size(), tail) == 0)
29             {
30                 path = path.replace(path.size() - tail.size(), 6, ".png");
31             }33             rtn += path + "|";
34         }
35     }
36     return rtn;
37 }

 

转载于:https://www.cnblogs.com/xiaoxiangmomo/p/10570979.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值