LoadingController
--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的更多相关文章
- ionic LoadingController 模块使用
html 代码: <ion-header> <ion-navbar> <ion-title>Loading</ion-title> </ion-n ...
- 游戏Loading中的小提示和Loading动画实现
学习unity1年多了,工作也1年了,因为工作需要,有几个月没接触unity Ngui啦. 学的还是不踏实.继续努力吧.由于下周就要进行新游戏的开发,这几天熟悉熟悉NGUI,今天按照现在公司以前的项目 ...
- ionic3 Loading组件的用法
import { LoadingController } from 'ionic-angular'; @Component({ selector: 'page-contact', templateUr ...
- ionic2 rc2 添加版本更新自动升级功能
不废话,直接上代码 首先安装四个必备的插件: cordova plugin add cordova-plugin-app-version //获取APP版本 cordova plugin add co ...
- ionic3 Injectable 引入NavController
在service里 引入 navcontroller 报错 And I get error No provider for NavController. 一个比较容易解决的方法, import {Io ...
- Unity Chan 2D Asset
Unity Chan 2D Asset 4月份時,UNITY CHAN 官方網站推出了3D大島こはく,之後也有更新1.11版,而在六月12日時,則釋出了2D版本素材,一樣可以在UNITY CHAN 官 ...
- ionic 访问odoo11之具体业务类api接口
在前面测试通过odoo登录的功能,这次的问题重点是如何访问后台具体的业务类的接口呢?这次就以我们在odoo中安装的lunch模块为例,目标是获取lunch.alert的数据,如下图 具体过程接上次文章 ...
- ionic访问odoo 11接口
在架设完毕odoo 11的网站之后,第一次面临手机app该如何访问后台网站的问题,是不是模式类似asp.net mvc 那样的模式,或者还存在其他的访问方法,带着这个疑问与困惑,开始的我的研究学习之路 ...
- Ionic2 播放mp3功能实现
在开发app的过程中有需要播放mp3的功能,一直想实现,但苦于具体的困难一直未能实现,经过一段时间的资料查询和测试,最终摸索出来,现记录如下: 1.最重要的是安装第三方插件ionic-audio,开源 ...
随机推荐
- 转:Irrlicht 0.1引擎源码分析与研究(一)
目录(?)[-] 主要技术特性 引擎概览 Irrlicht的窗口管理 Irrlicht引擎主要是由一个名叫Nikolaus Gebhardt奥地利人所设计,是sourceforge上的一个开源项目 ...
- ArcGIS 概述
ArcGIS产品线为用户提供一个可伸缩的,全面的GIS平台.ArcObjects包含了大量的可编程组件,从细粒度的对象(例如,单个的几何对象)到粗粒度的对象(例如与现有ArcMap文档交互的地图对象) ...
- IOS中文本框输入自动隐藏和自动显示
uilabe和UIText扩展方法 +(UILabel*)LabWithFrame:(CGRect)_rect text:(NSString*)aText textColor:(UIColor*)aC ...
- open()系统调用的实现
open系统调用的服务例程是sys_open()函数,它接受三个参数:要打开文件的路径名filename, 访问模式的表示flags和文件权限掩码mode.在内核中,sys_open实际调用do_sy ...
- tensorflow内存溢出问题
Tensorflow的静态图结构简洁清晰,符合人的思维.虽然编程上略微有些复杂,但是原理很容易看懂. Tensorflow分建图过程和运行图(张量求值)两个阶段,在这两个阶段中都可以定义操作和张量.但 ...
- [转]TensorFlow---岂止深度学习
原文链接 TensorFlow不仅可以用于深度学习自动求导,它也可用于构建传统机器学习和经典算法. TensorFlow提供了"一揽子"常用数值计算和机器学习算法的构建模块.在本文 ...
- hadoop下载地址
hadoop下载地址 http://mirror.bit.edu.cn/apache/hadoop/common/ hadoop下载地址
- 【MySQL】mysql中any,in,some,all的区别
子查询就是指在一个select语句中嵌套另一个select语句. any,in,some,all分别是子查询关键词之一, any 可以与=.>.>=.<.<=.<> ...
- 【JQuery】jquery对象和javascript对象即DOM对象相互转换
jQuery 对象是通过 jQuery 包装DOM 对象后产生的对象.jQuery 对象是 jQuery 独有的,其可以使用 jQuery 里的方法,但是不能使用 DOM 的方法:例如: $(&quo ...
- 【Servlet】web.xml中url-pattern的用法
目录结构: contents structure [+] url-pattern的三种写法 servlet匹配原则 filter匹配原则 语法错误的后果 参考文章 一.url-pattern的三种写法 ...