virtual bool applicationDidFinishLaunching();
/**
@brief The function be called when the application enter background
@param the pointer of the application
*/
virtual void applicationDidEnterBackground();
/**
@brief The function be called when the application enter foreground
@param the pointer of the application
*/
virtual void applicationWillEnterForeground();
};
#endif // APP_DELEGATE_H
>>>AppDelegate.cpp
#include “AppDelegate.h”
#include “CCLuaEngine.h”
#include “SimpleAudioEngine.h”
#include “cocos2d.h”
using namespace CocosDenshion;
USING_NS_CC;
using namespace std;
AppDelegate::AppDelegate()
{
}
AppDelegate::~AppDelegate()
{
SimpleAudioEngine::end();
}
bool AppDelegate::applicationDidFinishLaunching()
{
// initialize director 获得导演类实例
auto director = Director::getInstance();
// 获得OpenGL实例
auto glview = director->getOpenGLView();
if(!glview) {
// 指定窗口大小
glview = GLView::createWithRect(“HelloLua”, Rect(0,0,900,640));
// 设置OpenGL视图
director->setOpenGLView(glview);
}
// 设置分辨率大小为480*320
glview->setDesignResolutionSize(480, 320, ResolutionPolicy::NO_BORDER);
// turn on display FPS 打开帧频,屏幕左下角哪一串数据
// 启用FPS 显示,当前 FPS 会在游戏的左下角显示。FPS也就是屏幕每秒重绘的次数。即每秒帧速率。在游戏开发阶段,可以方便地确定游戏运行是否流畅。
director->setDisplayStats(true);
// set FPS. the default value is 1.0/60 if you don’t call this
// 设置绘制间隔
director->setAnimationInterval(1.0 / 60);
// 获得Lua引擎实例
auto engine = LuaEngine::getInstance();
// 设置脚本引擎
ScriptEngineManager::getInstance()->setScriptEngine(engine);
// 执行main.lua脚本
if (engine->executeScriptFile(“src/main.lua”)) {
return false;
}
return true;
}
// This function will be called when the app is inactive. When comes a phone call,it’s be invoked too
// 当应用程序将要进入后台时,会调用这个方法
void AppDelegate::applicationDidEnterBackground()
{
Director::getInstance()->stopAnimation();
SimpleAudioEngine::getInstance()->pauseBackgroundMusic();
}
// this function will be called when the app is active again
// 该方法与applicationDidEnterBackground() 成对出现,在应用程序回到前台时被调用
void AppDelegate::applicationWillEnterForeground()
{
Director::getInstance()->startAnimation();
SimpleAudioEngine::getInstance()->resumeBackgroundMusic();
}
我们在AppDelegate类当中可以找到执行我们Lua脚本的方法,下面来看一下main.lua这个文件,我们屏幕显示的逻辑实现全部在这个文件中可以看到:
>>>main.lua
require “Cocos2d”
require “Cocos2dConstants”
– cclog
cclog = function(…)
print(string.format(…))
end
– for CCLuaEngine traceback 输出绑定执行函数发生错误的信息
function G__TRACKBACK(msg)
cclog(“----------------------------------------”)
cclog("LUA ERROR: " … tostring(msg) … “\n”)
cclog(debug.traceback())
cclog(“----------------------------------------”)
return msg
end
local function main()
collectgarbage(“collect”)
– avoid memory leak 这是脚本回收参数,避免内存泄漏
collectgarbage(“setpause”, 100)
collectgarbage(“setstepmul”, 5000)
– 追加资源的搜索顺序
cc.FileUtils:getInstance():addSearchResolutionsOrder(“src”);
cc.FileUtils:getInstance():addSearchResolutionsOrder(“res”);
local schedulerID = 0
–support debug 获取目标平台
local targetPlatform = cc.Application:getInstance():getTargetPlatform()
if (cc.PLATFORM_OS_IPHONE == targetPlatform) or (cc.PLATFORM_OS_IPAD == targetPlatform) or
(cc.PLATFORM_OS_ANDROID == targetPlatform) or (cc.PLATFORM_OS_WINDOWS == targetPlatform) or
(cc.PLATFORM_OS_MAC == targetPlatform) then
cclog("result is ")
–require(‘debugger’)()
end
– 类似c++的include,引入文件,会检查是否重复引入
require “hello2”
– 调用外部函数,在hello2.lua中
cclog("result is " … myadd(1, 1))
– 获取可视区域
local visibleSize = cc.Director:getInstance():getVisibleSize()
– 可视原点坐标 OpenGL坐标系,左下角为原点
local origin = cc.Director:getInstance():getVisibleOrigin()
– add the moving dog 添加移动的小松鼠
local function creatDog()
– 每一帧尺寸设置,local表示局部变量
local frameWidth = 105
local frameHeight = 95
– create dog animate 加载动画资源并创建精灵帧
– 加载精灵动画所在纹理
local textureDog = cc.Director:getInstance():getTextureCache():addImage(“dog.png”)
– 设置第一帧帧区域
local rect = cc.rect(0, 0, frameWidth, frameHeight)
– 创建第一帧精灵Frame
local frame0 = cc.SpriteFrame:createWithTexture(textureDog, rect)
– 设置第二帧帧区域
rect = cc.rect(frameWidth, 0, frameWidth, frameHeight)
– c创建第二帧精灵Frame
local frame1 = cc.SpriteFrame:createWithTexture(textureDog, rect)
– 基于使用第一帧Frame创建Sprite对象
local spriteDog = cc.Sprite:createWithSpriteFrame(frame0)
spriteDog.isPaused = false
spriteDog:setPosition(origin.x, origin.y + visibleSize.height / 4 * 3)
–[[
local animFrames = CCArray:create()
animFrames:addObject(frame0)
animFrames:addObject(frame1)
]]–
– 根据帧序列数组创建一个动画animation。帧间隔时间delay等于0.5秒
local animation = cc.Animation:createWithSpriteFrames({frame0,frame1}, 0.5)
– 根据动画animation创建动作实例
local animate = cc.Animate:create(animation);
– 松鼠精灵执行该动作
spriteDog:runAction(cc.RepeatForever:create(animate))
– moving dog at every frame 用来更新松鼠的位置,后面会调用该函数
local function tick()
if spriteDog.isPaused then return end
local x, y = spriteDog:getPosition()
if x > origin.x + visibleSize.width then
x = origin.x
else
x = x + 1
end
spriteDog:setPositionX(x)
end
– 生成一个scheule,每帧执行tick函数
schedulerID = cc.Director:getInstance():getScheduler():scheduleScriptFunc(tick, 0, false)
return spriteDog
end
– create farm 创建地面的农场
local function createLayerFarm()
– 创建一个新的Lyaer用作农场管理
local layerFarm = cc.Layer:create()
– add in farm background 添加农场管理
local bg = cc.Sprite:create(“farm.jpg”)
bg:setPosition(origin.x + visibleSize.width / 2 + 80, origin.y + visibleSize.height / 2)
layerFarm:addChild(bg)
– add land sprite 添加地面砖块
for i = 0, 3 do
for j = 0, 1 do
local spriteLand = cc.Sprite:create(“land.png”)、
– 设定每一块砖块位置
spriteLand:setPosition(200 + j * 180 - i % 2 * 90, 10 + i * 95 / 2)
layerFarm:addChild(spriteLand)
end
end
– add crop 添加庄稼,注意crop.png是多张图的合成贴图,所以只取了里面的部分贴图
local frameCrop = cc.SpriteFrame:create(“crop.png”, cc.rect(0, 0, 105, 95))
for i = 0, 3 do
for j = 0, 1 do
local spriteCrop = cc.Sprite:createWithSpriteFrame(frameCrop);
spriteCrop:setPosition(10 + 200 + j * 180 - i % 2 * 90, 30 + 10 + i * 95 / 2)
layerFarm:addChild(spriteCrop)
end
end
– add moving dog 调用上面的createDog()方面,创建一个移动的松鼠
local spriteDog = creatDog()
layerFarm:addChild(spriteDog)
– handing touch events 手指触摸事件处理
local touchBeginPoint = nil
自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。
深知大多数Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!
由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新
如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
最后
在这里我和身边一些朋友特意整理了一份快速进阶为Android高级工程师的系统且全面的学习资料。涵盖了Android初级——Android高级架构师进阶必备的一些学习技能。
附上:我们之前因为秋招收集的二十套一二线互联网公司Android面试真题(含BAT、小米、华为、美团、滴滴)和我自己整理Android复习笔记(包含Android基础知识点、Android扩展知识点、Android源码解析、设计模式汇总、Gradle知识点、常见算法题汇总。)
提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!**
由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新
如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
[外链图片转存中…(img-nMmKLHhR-1711642077683)]
最后
在这里我和身边一些朋友特意整理了一份快速进阶为Android高级工程师的系统且全面的学习资料。涵盖了Android初级——Android高级架构师进阶必备的一些学习技能。
附上:我们之前因为秋招收集的二十套一二线互联网公司Android面试真题(含BAT、小米、华为、美团、滴滴)和我自己整理Android复习笔记(包含Android基础知识点、Android扩展知识点、Android源码解析、设计模式汇总、Gradle知识点、常见算法题汇总。)
[外链图片转存中…(img-g26qrVlA-1711642077684)]