--local MainSceneConfig = require "res.scripts.configs.MainSceneConfig" -- 暂时添加一个临时配置文件
--require "res.scripts.scenes.MainScene" -- 加载事件
OnLoadingStart = "OnLoadingStart";
OnLoadingProcess = "OnLoadingProcess";
OnLoadingEnd = "OnLoadingEnd"; -- 加载类型
SOUNDTYPE = "sounds";
TEXTURETYPE = "textures";
ATLASTYPE = "atlas";
ANIMATIONTYPE = "animations";
EFFECTTYPE = "effects"; -- 加载控制逻辑
local LoadingController = class("LoadingController", Behavior); function LoadingController:ctor(sceneName)
LoadingController.super.ctor(self); -- 定义成员变量
self.progress = ; -- 加载进度
self.totalLoadingNum = ; --加载总数数量
self.curLoadingNum = ; -- 当前加载数量
self.loadingConfig = ""; -- 资源配置文件 self.log = nil; -- 加载界面log
self.btmLabel = nil; --进度显示标签
self.uiLayout = nil; -- 加载界面布局
self.uiLayer = nil; -- 加载界面层
self.curScene = nil; -- 上一个场景
self.nextScene = nil; -- 下一个场景
self.config = res[sceneName];-- 配置文件
self.curSceneName = sceneName; self.isLoaded = false; -- 随机抽取一只怪物
local animKeys = table.keys(res.animations);
if #animKeys > then
local index = math.random(, #animKeys);
self.animName = tostring(animKeys[index]);
self.loadingxml = res.animations[self.animName];
self.loadingplist = string.gsub(self.loadingxml, ".xml", ".plist")
self.loadingpng = string.gsub (self.loadingxml, ".xml", ".png")
end
end function LoadingController:run( )
self.curScene = SceneM.getRunningScene();
self.nextScene = nil; -- 1.ui层
self.uiLayer = ObjectFactory.newLayer();
self.uiLayer:setColor(ccc3(, , )); -- 2.创建构成加载场景的元素
self.btmLabel = ObjectFactory.newBMFontLabel({text = "Loading 0%", font = res.fonts.UIFont,})
self.btmLabel:setPosition(ccp(Screen.cx, Screen.cy - ));
self.uiLayer:addChild(self.btmLabel);
if self.loadingxml then
CCArmatureDataManager:sharedArmatureDataManager():addArmatureFileInfoAsync(self.loadingpng, self.loadingplist, self.loadingxml, function ( )
if self.isLoaded then
return;
end
local lion = ObjectFactory.newArmature(self.animName);
lion:setPosition(ccp(Screen.cx,Screen.cy));
lion:addParent(self.uiLayer);
lion:getComponent("Animation"):play("run", WrapMode.Loop);
end)
end -- 3. 添加到场景
SceneM.dontDestroy(self.uiLayer); -- 4. 关掉触摸消息
CCDirector:sharedDirector():getTouchDispatcher():setDispatchEvents(false); -- 5. 关掉动作管理
CCDirector:sharedDirector():getActionManager():removeAllActions(); -- 6. 退出当前场景
if self.curScene then
self.curScene:setVisible(false);
end -- 7. 重新初始化管理类
SceneM.uiLayers = {}; -- 8.延迟清除当前资源,并且加载下一个场景资源
performWithDelay(function ( )
self:cleanup();
self:startLoading(self.config);
end, 0.01) -- 9. 回收lua内存
collectgarbage("collect")
end function LoadingController:startLoading(theloadingconfig)
if theloadingconfig == nil then
self.isLoaded = true;
-- 切换场景
self.nextScene = ObjectFactory.newScene(self.curSceneName);
SceneM.curScene = self.nextScene;
self.nextScene:addComponent(self.curSceneName,SceneM.getSceneController(self.curSceneName)); -- 关闭加载层
SceneM.destroy(self.uiLayer); -- 开启触摸消息
CCDirector:sharedDirector():getTouchDispatcher():setDispatchEvents(true); -- 记录配置文件路径
SceneM.lastSceneName = self.curSceneName; -- 切换到新场景
SceneM.replaceScene(self.nextScene, "crossfade", 0.2, Screen.COLOR_WHITE);
return;
end
print ("start loading")
self.loadingConfig = theloadingconfig;
local resTypes = {"sounds","textures","atlas","animations","effects"}
local curIndex = ;
-- 1.开始当前场景加载资源
self.curLoadingNum =
local totalNum =
local function loopRes( t , resType)
if self.curLoadingNum > self.totalLoadingNum then
return;
end
if t == nil then
curIndex = curIndex + ;
local resType = resTypes[curIndex];
print("加载类型:",resType);
print("加载:",theloadingconfig[resType]);
loopRes(theloadingconfig[resType], resType);
return;
end
local keys = table.keys(t);
totalNum = totalNum + #keys;
local tempIndex = ;
local function loadRes( )
self.curLoadingNum = self.curLoadingNum + ;
if self.curLoadingNum > self.totalLoadingNum then
return;
end
--print("====",self.curLoadingNum , totalNum)
if self.curLoadingNum > totalNum then
tempIndex = ;
curIndex = curIndex + ;
local resType = resTypes[curIndex];
self.curLoadingNum = self.curLoadingNum - ;
loopRes(theloadingconfig[resType], resType);
return;
end
local key = keys[tempIndex];
local value = t[key];
tempIndex = tempIndex + ;
if (tolua.type(value) == "table") then
loopRes( value );
elseif (tolua.type(value) == "string") then
if resType == SOUNDTYPE then
-- 1.异步声音加载
--print("加载声音:", value);
Audio.preloadEffect(value);
performWithDelay(function ( )
loadRes();
end, CCDirector:sharedDirector():deltaTime())
end if resType == TEXTURETYPE then
-- 2.异步纹理加载
--print("加载纹理:", value);
CCTextureCache:sharedTextureCache():addImageAsync(value, function ( )
self:CheckedResLoaded(); -- 检测下是否加载完毕
performWithDelay(function ( )
loadRes();
end, CCDirector:sharedDirector():deltaTime())
end);
end if resType == ATLASTYPE then
-- 2.异步纹理加载
local png = string.gsub(value, ".plist", ".png")
--print("加载图集:",png);
CCTextureCache:sharedTextureCache():addImageAsync(png, function ( )
-- 添加plist 到 CCSpriteFrameCache
CCSpriteFrameCache:sharedSpriteFrameCache():addSpriteFramesWithFile(value)
self:CheckedResLoaded(); -- 检测下是否加载完毕
performWithDelay(function ( )
loadRes();
end, CCDirector:sharedDirector():deltaTime())
end);
end if resType == ANIMATIONTYPE or resType == EFFECTTYPE then
--3.异步动画加载
local plist = string.gsub(value, ".xml", ".plist")
local png = string.gsub (value, ".xml", ".png")
--print("加载骨骼动画:",png, plist, value);
CCArmatureDataManager:sharedArmatureDataManager():addArmatureFileInfoAsync(png, plist, value, function ( )
self:CheckedResLoaded(); -- 检测下是否加载完毕
performWithDelay(function ( )
loadRes();
end, CCDirector:sharedDirector():deltaTime())
end)
end
end
end loadRes();
end
-- 计算加载的资源总数
local function size( config )
return #table.keys(config.textures)
+ #table.keys(config.sounds)
+ #table.keys(config.fonts)
+ #table.keys(config.animations)
+ #table.keys(config.atlas)
+ #table.keys(config.effects);
end
self.totalLoadingNum = size(theloadingconfig); -- 加载场景资源
local resType = resTypes[curIndex];
print("加载类型:",resType);
print("加载:",theloadingconfig[resType]);
loopRes(theloadingconfig[resType], resType);
end -- 检测是否加载完毕
function LoadingController:CheckedResLoaded( )
if self.curLoadingNum <= self.totalLoadingNum then
-- 1.更新当前进度
local percent = math.modf(self.curLoadingNum * / self.totalLoadingNum)
self.btmLabel:setString(string.format("Loading %s%%", percent));
end -- 2.检测下是否加载完毕
if (self.curLoadingNum == self.totalLoadingNum) then
local function onComplete(event)
print ("loading res finished!")
self.isLoaded = true;
-- 切换场景
self.nextScene = ObjectFactory.newScene(self.curSceneName);
SceneM.curScene = self.nextScene;
self.nextScene:addComponent(self.curSceneName,SceneM.getSceneController(self.curSceneName)); -- 关闭加载层
SceneM.destroy(self.uiLayer); -- 开启触摸消息
CCDirector:sharedDirector():getTouchDispatcher():setDispatchEvents(true); -- 记录配置文件路径
SceneM.lastSceneName = self.curSceneName; -- 切换到新场景
SceneM.replaceScene(self.nextScene, "crossfade", 0.2, Screen.COLOR_WHITE);
end
-- 等待一帧 不然最后一次无法绘制
performWithDelay(onComplete, CCDirector:sharedDirector():deltaTime() * );
end
end -- 清理资源
function LoadingController:cleanup( )
CCDirector:sharedDirector():getActionManager():removeAllActions();
-- 获得上一个场景配置,根据配置删除
if SceneM.lastSceneName then
local lastConfig = res[SceneM.lastSceneName];
local function removeRes( t , resType)
if t == nil or type(t) ~= "table" then
return;
end
for key, value in pairs(t) do
if (tolua.type(value) == "table") then
loopRes( value );
elseif (tolua.type(value) == "string") then
if resType == SOUNDTYPE then
-- 1.删除声音
Audio.unloadSound(value);
end if resType == TEXTURETYPE then
-- 2.删除纹理
CCTextureCache:sharedTextureCache():removeTextureForKey(value);
end if resType == ATLASTYPE then
-- 3.删除plist纹理
CCSpriteFrameCache:sharedSpriteFrameCache():removeSpriteFramesFromFile(value);
value = string.gsub(value, ".plist", ".png");
CCTextureCache:sharedTextureCache():removeTextureForKey(value);
end if resType == ANIMATIONTYPE then
-- 4.删除动画
print("删除骨骼动画资源:",value);
value = string.gsub(value, ".xml", ".png");
CCTextureCache:sharedTextureCache():removeTextureForKey(value);
value = string.gsub(value, ".png", ".plist");
CCSpriteFrameCache:sharedSpriteFrameCache():removeSpriteFramesFromFile(value);
--CCArmatureDataManager:purge();
end
end
end
end
removeRes(lastConfig.sounds, SOUNDTYPE); --删除声音资源
removeRes(lastConfig.textures, TEXTURETYPE); --删除纹理资源
removeRes(lastConfig.atlas, ATLASTYPE); --删除图集资源
removeRes(lastConfig.animations, ANIMATIONTYPE); --删除动画资源
removeRes(lastConfig.effects, ANIMATIONTYPE); --删除动画资源 -- 移除临时动态公共资源
if ResM.tempPathCache then
removeRes(ResM.tempPathCache.sounds, SOUNDTYPE); --删除声音资源
removeRes(ResM.tempPathCache.textures, TEXTURETYPE); --删除纹理资源
removeRes(ResM.tempPathCache.atlas, ATLASTYPE); --删除图集资源
removeRes(ResM.tempPathCache.animations, ANIMATIONTYPE); --删除动画资源
end
ResM.init(); CCTextureCache:sharedTextureCache():dumpCachedTextureInfo();
end -- CCSpriteFrameCache:purgeSharedSpriteFrameCache();
-- CCTextureCache:sharedTextureCache():removeAllTextures();
-- CCArmatureDataManager:purge();
end return LoadingController;

LoadingController的更多相关文章

  1. ionic LoadingController 模块使用

    html 代码: <ion-header> <ion-navbar> <ion-title>Loading</ion-title> </ion-n ...

  2. 游戏Loading中的小提示和Loading动画实现

    学习unity1年多了,工作也1年了,因为工作需要,有几个月没接触unity Ngui啦. 学的还是不踏实.继续努力吧.由于下周就要进行新游戏的开发,这几天熟悉熟悉NGUI,今天按照现在公司以前的项目 ...

  3. ionic3 Loading组件的用法

    import { LoadingController } from 'ionic-angular'; @Component({ selector: 'page-contact', templateUr ...

  4. ionic2 rc2 添加版本更新自动升级功能

    不废话,直接上代码 首先安装四个必备的插件: cordova plugin add cordova-plugin-app-version //获取APP版本 cordova plugin add co ...

  5. ionic3 Injectable 引入NavController

    在service里 引入 navcontroller 报错 And I get error No provider for NavController. 一个比较容易解决的方法, import {Io ...

  6. Unity Chan 2D Asset

    Unity Chan 2D Asset 4月份時,UNITY CHAN 官方網站推出了3D大島こはく,之後也有更新1.11版,而在六月12日時,則釋出了2D版本素材,一樣可以在UNITY CHAN 官 ...

  7. ionic 访问odoo11之具体业务类api接口

    在前面测试通过odoo登录的功能,这次的问题重点是如何访问后台具体的业务类的接口呢?这次就以我们在odoo中安装的lunch模块为例,目标是获取lunch.alert的数据,如下图 具体过程接上次文章 ...

  8. ionic访问odoo 11接口

    在架设完毕odoo 11的网站之后,第一次面临手机app该如何访问后台网站的问题,是不是模式类似asp.net mvc 那样的模式,或者还存在其他的访问方法,带着这个疑问与困惑,开始的我的研究学习之路 ...

  9. Ionic2 播放mp3功能实现

    在开发app的过程中有需要播放mp3的功能,一直想实现,但苦于具体的困难一直未能实现,经过一段时间的资料查询和测试,最终摸索出来,现记录如下: 1.最重要的是安装第三方插件ionic-audio,开源 ...

随机推荐

  1. JUC-Condition和Lock实践-线程按序交替执行

    编写一个程序,开启 3 个线程,这三个线程的 ID 分别为 A.B.C,每个线程将自己的 ID 在屏幕上打印 10 遍,要求输出的结果必须按顺序显示.如:ABCABCABC…… 依次递归 这里只使用c ...

  2. 【CAS单点登录视频教程】 第02集 -- 安装CAS

    目录 ----------------------------------------- [CAS单点登录视频教程] 第06集[完] -- Cas认证 学习 票据认证FormsAuthenticati ...

  3. ios中滚动页面

    - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { int width=frame. ...

  4. Quartz中时间表达式的设置-----corn表达式 (转)

    Quartz中时间表达式的设置-----corn表达式 (注:这是让我看比较明白的一个博文,但是抱歉,没有找到原作者,如有侵犯,请告知) 时间格式: <!-- s m h d m w(?) y( ...

  5. 封装naive socket

    周五去一个公司打了个酱油,面试官问我:你封装过socket没? 言下之意是问我实际写过底层代码没,我悻悻地说写过点. PS:说实话木有封装过,今天无聊就来封装下. 话说写了这么久C++,底层用c来写还 ...

  6. 关于Apache (httpd)服务器防DDOS模块mod_evasive的使用说明

    关于Apache (httpd)服务器防DDOS模块mod_evasive的使用说明 1. mod_evasive 介绍: mod_evasive 是Apache(httpd)服务器的防DDOS的一个 ...

  7. 使用tmpfs的好处

    EBS上超高频率的IO写入 这几天注意到我的EC2机器上有非常大量的IO,导致AWS的总体开销增加了很多.比如9月份的帐单中: I/O requests     120,076,984 IOs     ...

  8. C语言学习笔记 (004) - 数组名和数组首地址(转)

    一个变量有地址,一个数组包含若干元素,每个数组元素都在内存中占用存储单元,它们都有相应的地址.指针变量既然可以指向变量,当然也可以指向数组和数组元素(把数据起始地址或某一元素的地址放到一个指针变量中) ...

  9. opestack keystone 深入

    一.概述 keystone 有两个endpoint端口,一个35357,用于管理,只有admin_role可以使用.一个是5000, 用于业务: 二.keystone中的路由 解析url,然后获取后端 ...

  10. 横竖屏切换时不销毁当前activity 和 锁定屏幕

    首先在Mainifest.xml的Activity元素中加入android:configChanges="orientation|keyboardHidden"属性 <act ...