5 Star 0 Fork 0

djs / hhgame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 6.57 KB
一键复制 编辑 原始数据 按行查看 历史
段景硕 提交于 2020-09-08 14:54 . init new game
/****************************************************************************
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
/**
* A brief explanation for "project.json":
* Here is the content of project.json file, this is the global configuration for your game, you can modify it to customize some behavior.
* The detail of each field is under it.
{
"project_type": "javascript",
// "project_type" indicate the program language of your project, you can ignore this field
"debugMode" : 1,
// "debugMode" possible values :
// 0 - No message will be printed.
// 1 - cc.error, cc.assert, cc.warn, cc.log will print in console.
// 2 - cc.error, cc.assert, cc.warn will print in console.
// 3 - cc.error, cc.assert will print in console.
// 4 - cc.error, cc.assert, cc.warn, cc.log will print on canvas, available only on web.
// 5 - cc.error, cc.assert, cc.warn will print on canvas, available only on web.
// 6 - cc.error, cc.assert will print on canvas, available only on web.
"showFPS" : true,
// Left bottom corner fps information will show when "showFPS" equals true, otherwise it will be hide.
"frameRate" : 60,
// "frameRate" set the wanted frame rate for your game, but the real fps depends on your game implementation and the running environment.
"noCache" : false,
// "noCache" set whether your resources will be loaded with a timestamp suffix in the url.
// In this way, your resources will be force updated even if the browser holds a cache of it.
// It's very useful for mobile browser debugging.
"id" : "gameCanvas",
// "gameCanvas" sets the id of your canvas element on the web page, it's useful only on web.
"renderMode" : 0,
// "renderMode" sets the renderer type, only useful on web :
// 0 - Automatically chosen by engine
// 1 - Forced to use canvas renderer
// 2 - Forced to use WebGL renderer, but this will be ignored on mobile browsers
"engineDir" : "frameworks/cocos2d-html5/",
// In debug mode, if you use the whole engine to develop your game, you should specify its relative path with "engineDir",
// but if you are using a single engine file, you can ignore it.
"modules" : ["cocos2d"],
// "modules" defines which modules you will need in your game, it's useful only on web,
// using this can greatly reduce your game's resource size, and the cocos console tool can package your game with only the modules you set.
// For details about modules definitions, you can refer to "../../frameworks/cocos2d-html5/modulesConfig.json".
"jsList" : [
]
// "jsList" sets the list of js files in your game.
}
*
*/
function screenChange (isW) {
let size = cc.view.getFrameSize()
let w = size.width
let h = size.height
if (isW === 1) { // 宽大----横屏
w = Math.max(size.width, size.height)
h = Math.min(size.width, size.height)
} else if (isW === 2) { // 高 大----竖屏
w = Math.min(size.width, size.height)
h = Math.max(size.width, size.height)
}
cc.view.setFrameSize(w, h)
cc.view.adjustViewPort(true)
cc.view.resizeWithBrowserSize(true)
cc.view.setDesignResolutionSize(w, h, cc.ResolutionPolicy.NO_BORDER)
// TODO : To be continued...
function sendEvent (eName, ePara) {
cc.eventManager.dispatchCustomEvent(eName, ePara)
}
sendEvent('resize')
}
cc.game.onStart = function(){
require('src/public/init.js')
var sys = cc.sys;
if(!sys.isNative && document.getElementById("cocosLoading")) //If referenced loading.js, please remove it
document.body.removeChild(document.getElementById("cocosLoading"));
// Pass true to enable retina display, on Android disabled by default to improve performance
cc.view.enableRetina(sys.os === sys.OS_IOS ? true : false);
cc.eventManager.addCustomListener('resizew', function () {
screenChange(1) // 宽大----横屏
})
cc.eventManager.addCustomListener('resizeh', function () {
screenChange(2) // /高 大----竖屏
})
// 做任何你所需要的游戏内容层面的适配操作
// 比如说,你可以针对用户的移动设备方向来决定所要应用的适配模式
// 比如说 获取宽度和高度,如果宽度大于高度就是横屏, 如果宽度小于高度就是竖屏});
cc.view.setResizeCallback(screenChange)
screenChange()
// // Disable auto full screen on baidu and wechat, you might also want to eliminate sys.BROWSER_TYPE_MOBILE_QQ
// if (sys.isMobile &&
// sys.browserType !== sys.BROWSER_TYPE_BAIDU &&
// sys.browserType !== sys.BROWSER_TYPE_WECHAT) {
// cc.view.enableAutoFullScreen(true);
// }
// // Adjust viewport meta
// cc.view.adjustViewPort(true);
//
// // Uncomment the following line to set a fixed orientation for your game
// // cc.view.setOrientation(cc.ORIENTATION_PORTRAIT);
//
// // Setup the resolution policy and design resolution size
// cc.view.setDesignResolutionSize(1280, 720, cc.ResolutionPolicy.SHOW_ALL);
//
// // The game will be resized when browser size change
// cc.view.resizeWithBrowserSize(true);
// //load resources
// cc.LoaderScene.preload(g_resources, function () {
// cc.director.runScene(new HelloWorldScene());
// }, this);
let gameIndex = include('game/index')
gameIndex.run()
};
cc.game.run();
C++
1
https://gitee.com/djs_it/hhgame.git
git@gitee.com:djs_it/hhgame.git
djs_it
hhgame
hhgame
master

搜索帮助