123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737 |
- window.qgMiniGame = function (exports, Laya) {
- 'use strict';
- class MiniFileMgr {
- static isLocalNativeFile(url) {
- for (var i = 0, sz = QGMiniAdapter.nativefiles.length; i < sz; i++) {
- if (url.indexOf(QGMiniAdapter.nativefiles[i]) != -1)
- return true;
- }
- return false;
- }
- static getFileInfo(fileUrl) {
- var fileNativePath = fileUrl;
- var fileObj = MiniFileMgr.fakeObj[fileNativePath];
- if (fileObj == null)
- return null;
- else
- return fileObj;
- return null;
- }
- static read(filePath, encoding = "utf8", callBack = null, readyUrl = "", isSaveFile = false, fileType = "") {
- var fileUrl;
- if (readyUrl != "" && (readyUrl.indexOf("http://") != -1 || readyUrl.indexOf("https://") != -1)) {
- fileUrl = MiniFileMgr.getFileNativePath(filePath);
- }
- else {
- fileUrl = filePath;
- }
- fileUrl = Laya.URL.getAdptedFilePath(fileUrl);
- MiniFileMgr.fs.readFile({ filePath: fileUrl, encoding: encoding, success: function (data) {
- callBack != null && callBack.runWith([0, data]);
- }, fail: function (data) {
- if (data && readyUrl != "")
- MiniFileMgr.downFiles(readyUrl, encoding, callBack, readyUrl, isSaveFile, fileType);
- else
- callBack != null && callBack.runWith([1]);
- } });
- }
- static downFiles(fileUrl, encoding = "ascii", callBack = null, readyUrl = "", isSaveFile = false, fileType = "", isAutoClear = true) {
- var downloadTask = MiniFileMgr.wxdown({ url: fileUrl, success: function (data) {
- if (data.statusCode === 200)
- MiniFileMgr.readFile(data.tempFilePath, encoding, callBack, readyUrl, isSaveFile, fileType, isAutoClear);
- else if (data.statusCode === 403) {
- callBack != null && callBack.runWith([0, fileUrl]);
- }
- else {
- callBack != null && callBack.runWith([1, data]);
- }
- }, fail: function (data) {
- callBack != null && callBack.runWith([1, data]);
- } });
- downloadTask.onProgressUpdate(function (data) {
- callBack != null && callBack.runWith([2, data.progress]);
- });
- }
- static readFile(filePath, encoding = "utf8", callBack = null, readyUrl = "", isSaveFile = false, fileType = "", isAutoClear = true) {
- filePath = Laya.URL.getAdptedFilePath(filePath);
- MiniFileMgr.fs.readFile({ filePath: filePath, encoding: encoding, success: function (data) {
- if (filePath.indexOf(QGMiniAdapter.window.qg.env.USER_DATA_PATH) == -1 && (filePath.indexOf("http://") != -1 || filePath.indexOf("https://") != -1)) {
- if (QGMiniAdapter.autoCacheFile || isSaveFile) {
- callBack != null && callBack.runWith([0, data]);
- MiniFileMgr.copyFile(filePath, readyUrl, null, encoding, isAutoClear);
- }
- else
- callBack != null && callBack.runWith([0, data]);
- }
- else
- callBack != null && callBack.runWith([0, data]);
- }, fail: function (data) {
- if (data)
- callBack != null && callBack.runWith([1, data]);
- } });
- }
- static downOtherFiles(fileUrl, callBack = null, readyUrl = "", isSaveFile = false, isAutoClear = true) {
- MiniFileMgr.wxdown({ url: fileUrl, success: function (data) {
- if (data.statusCode === 200) {
- if ((QGMiniAdapter.autoCacheFile || isSaveFile) && readyUrl.indexOf("qlogo.cn") == -1 && readyUrl.indexOf(".php") == -1) {
- callBack != null && callBack.runWith([0, data.tempFilePath]);
- MiniFileMgr.copyFile(data.tempFilePath, readyUrl, null, "", isAutoClear);
- }
- else
- callBack != null && callBack.runWith([0, data.tempFilePath]);
- }
- else {
- callBack != null && callBack.runWith([1, data]);
- }
- }, fail: function (data) {
- callBack != null && callBack.runWith([1, data]);
- } });
- }
- static downLoadFile(fileUrl, fileType = "", callBack = null, encoding = "ascii") {
- if (QGMiniAdapter.window.navigator.userAgent.indexOf('MiniGame') < 0 && QGMiniAdapter.window.navigator.userAgent.indexOf('OPPO') < 0) {
- Laya.Laya.loader.load(fileUrl, callBack);
- }
- else {
- if (fileType == Laya.Loader.IMAGE || fileType == Laya.Loader.SOUND)
- MiniFileMgr.downOtherFiles(fileUrl, callBack, fileUrl, true, false);
- else
- MiniFileMgr.downFiles(fileUrl, encoding, callBack, fileUrl, true, fileType, false);
- }
- }
- static copyFile(tempFilePath, readyUrl, callBack, encoding = "", isAutoClear = true) {
- var temp = tempFilePath.split("/");
- var tempFileName = temp[temp.length - 1];
- var fileurlkey = readyUrl;
- var fileObj = MiniFileMgr.getFileInfo(readyUrl);
- var saveFilePath = MiniFileMgr.getFileNativePath(tempFileName);
- MiniFileMgr.fakeObj[fileurlkey] = { md5: tempFileName, readyUrl: readyUrl, size: 0, times: Laya.Browser.now(), encoding: encoding };
- var totalSize = 50 * 1024 * 1024;
- var chaSize = 4 * 1024 * 1024;
- var fileUseSize = MiniFileMgr.getCacheUseSize();
- if (fileObj) {
- if (fileObj.readyUrl != readyUrl) {
- MiniFileMgr.fs.getFileInfo({
- filePath: tempFilePath,
- success: function (data) {
- if ((isAutoClear && (fileUseSize + chaSize + data.size) >= totalSize)) {
- if (data.size > QGMiniAdapter.minClearSize)
- QGMiniAdapter.minClearSize = data.size;
- MiniFileMgr.onClearCacheRes();
- }
- MiniFileMgr.deleteFile(tempFilePath, readyUrl, callBack, encoding, data.size);
- },
- fail: function (data) {
- callBack != null && callBack.runWith([1, data]);
- }
- });
- }
- else
- callBack != null && callBack.runWith([0]);
- }
- else {
- MiniFileMgr.fs.getFileInfo({
- filePath: tempFilePath,
- success: function (data) {
- if ((isAutoClear && (fileUseSize + chaSize + data.size) >= totalSize)) {
- if (data.size > QGMiniAdapter.minClearSize)
- QGMiniAdapter.minClearSize = data.size;
- MiniFileMgr.onClearCacheRes();
- }
- MiniFileMgr.fs.copyFile({ srcPath: tempFilePath, destPath: saveFilePath, success: function (data2) {
- MiniFileMgr.onSaveFile(readyUrl, tempFileName, true, encoding, callBack, data.size);
- }, fail: function (data) {
- callBack != null && callBack.runWith([1, data]);
- } });
- },
- fail: function (data) {
- callBack != null && callBack.runWith([1, data]);
- }
- });
- }
- }
- static onClearCacheRes() {
- var memSize = QGMiniAdapter.minClearSize;
- var tempFileListArr = [];
- for (var key in MiniFileMgr.filesListObj) {
- if (key != "fileUsedSize")
- tempFileListArr.push(MiniFileMgr.filesListObj[key]);
- }
- MiniFileMgr.sortOn(tempFileListArr, "times", MiniFileMgr.NUMERIC);
- var clearSize = 0;
- for (var i = 1, sz = tempFileListArr.length; i < sz; i++) {
- var fileObj = tempFileListArr[i];
- if (clearSize >= memSize)
- break;
- clearSize += fileObj.size;
- MiniFileMgr.deleteFile("", fileObj.readyUrl);
- }
- }
- static sortOn(array, name, options = 0) {
- if (options == MiniFileMgr.NUMERIC)
- return array.sort(function (a, b) { return a[name] - b[name]; });
- if (options == (MiniFileMgr.NUMERIC | MiniFileMgr.DESCENDING))
- return array.sort(function (a, b) { return b[name] - a[name]; });
- return array.sort(function (a, b) { return a[name] - b[name]; });
- }
- static getFileNativePath(fileName) {
- return MiniFileMgr.fileNativeDir + "/" + fileName;
- }
- static deleteFile(tempFileName, readyUrl = "", callBack = null, encoding = "", fileSize = 0) {
- var fileObj = MiniFileMgr.getFileInfo(readyUrl);
- var deleteFileUrl = MiniFileMgr.getFileNativePath(fileObj.md5);
- var isAdd = tempFileName != "" ? true : false;
- MiniFileMgr.onSaveFile(readyUrl, tempFileName, isAdd, encoding, callBack, fileSize);
- MiniFileMgr.fs.unlink({ filePath: deleteFileUrl, success: function (data) {
- if (tempFileName != "") {
- var saveFilePath = MiniFileMgr.getFileNativePath(tempFileName);
- MiniFileMgr.fs.copyFile({ srcPath: tempFileName, destPath: saveFilePath, success: function (data) {
- }, fail: function (data) {
- callBack != null && callBack.runWith([1, data]);
- } });
- }
- }, fail: function (data) {
- } });
- }
- static deleteAll() {
- var tempFileListArr = [];
- for (var key in MiniFileMgr.filesListObj) {
- if (key != "fileUsedSize")
- tempFileListArr.push(MiniFileMgr.filesListObj[key]);
- }
- for (var i = 1, sz = tempFileListArr.length; i < sz; i++) {
- var fileObj = tempFileListArr[i];
- MiniFileMgr.deleteFile("", fileObj.readyUrl);
- }
- if (MiniFileMgr.filesListObj && MiniFileMgr.filesListObj.fileUsedSize) {
- MiniFileMgr.filesListObj.fileUsedSize = 0;
- }
- MiniFileMgr.writeFilesList("", JSON.stringify({}), false);
- }
- static onSaveFile(readyUrl, md5Name, isAdd = true, encoding = "", callBack = null, fileSize = 0) {
- var fileurlkey = readyUrl;
- if (MiniFileMgr.filesListObj['fileUsedSize'] == null)
- MiniFileMgr.filesListObj['fileUsedSize'] = 0;
- if (isAdd) {
- var fileNativeName = MiniFileMgr.getFileNativePath(md5Name);
- MiniFileMgr.filesListObj[fileurlkey] = { md5: md5Name, readyUrl: readyUrl, size: fileSize, times: Laya.Browser.now(), encoding: encoding };
- MiniFileMgr.filesListObj['fileUsedSize'] = parseInt(MiniFileMgr.filesListObj['fileUsedSize']) + fileSize;
- MiniFileMgr.writeFilesList(fileurlkey, JSON.stringify(MiniFileMgr.filesListObj), true);
- callBack != null && callBack.runWith([0]);
- }
- else {
- if (MiniFileMgr.filesListObj[fileurlkey]) {
- var deletefileSize = parseInt(MiniFileMgr.filesListObj[fileurlkey].size);
- MiniFileMgr.filesListObj['fileUsedSize'] = parseInt(MiniFileMgr.filesListObj['fileUsedSize']) - deletefileSize;
- if (MiniFileMgr.filesListObj[fileurlkey].md5 == MiniFileMgr.fakeObj[fileurlkey].md5) {
- delete MiniFileMgr.fakeObj[fileurlkey];
- }
- delete MiniFileMgr.filesListObj[fileurlkey];
- MiniFileMgr.writeFilesList(fileurlkey, JSON.stringify(MiniFileMgr.filesListObj), false);
- callBack != null && callBack.runWith([0]);
- }
- }
- }
- static writeFilesList(fileurlkey, filesListStr, isAdd) {
- var listFilesPath = MiniFileMgr.fileNativeDir + "/" + MiniFileMgr.fileListName;
- MiniFileMgr.fs.writeFile({ filePath: listFilesPath, encoding: 'utf8', data: filesListStr, success: function (data) {
- }, fail: function (data) {
- } });
- if (!QGMiniAdapter.isZiYu && QGMiniAdapter.isPosMsgYu && QGMiniAdapter.window.qg.postMessage) {
- QGMiniAdapter.window.qg.postMessage && QGMiniAdapter.window.qg.postMessage({ url: fileurlkey, data: MiniFileMgr.filesListObj[fileurlkey], isLoad: "filenative", isAdd: isAdd });
- }
- }
- static getCacheUseSize() {
- if (MiniFileMgr.filesListObj && MiniFileMgr.filesListObj['fileUsedSize'])
- return MiniFileMgr.filesListObj['fileUsedSize'];
- return 0;
- }
- static existDir(dirPath, callBack) {
- MiniFileMgr.fs.mkdir({ dirPath: dirPath, success: function (data) {
- callBack != null && callBack.runWith([0, { data: JSON.stringify({}) }]);
- }, fail: function (data) {
- if (data.errMsg.indexOf("file already exists") != -1)
- MiniFileMgr.readSync(MiniFileMgr.fileListName, "utf8", callBack);
- else
- callBack != null && callBack.runWith([1, data]);
- } });
- }
- static readSync(filePath, encoding = "utf8", callBack = null, readyUrl = "") {
- var fileUrl = MiniFileMgr.getFileNativePath(filePath);
- var filesListStr;
- try {
- MiniFileMgr.fs.readFile({
- filePath: fileUrl,
- encoding: encoding,
- success: function (data) {
- filesListStr = data.data;
- callBack != null && callBack.runWith([0, { data: filesListStr }]);
- },
- fail: function () {
- callBack != null && callBack.runWith([1]);
- }
- });
- }
- catch (error) {
- callBack != null && callBack.runWith([1]);
- }
- }
- static setNativeFileDir(value) {
- MiniFileMgr.fileNativeDir = QGMiniAdapter.window.qg.env.USER_DATA_PATH + value;
- }
- }
- MiniFileMgr.fs = window.qg.getFileSystemManager();
- MiniFileMgr.wxdown = window.qg.downloadFile;
- MiniFileMgr.filesListObj = {};
- MiniFileMgr.fakeObj = {};
- MiniFileMgr.fileListName = "layaairfiles.txt";
- MiniFileMgr.ziyuFileData = {};
- MiniFileMgr.ziyuFileTextureData = {};
- MiniFileMgr.loadPath = "";
- MiniFileMgr.DESCENDING = 2;
- MiniFileMgr.NUMERIC = 16;
- class MiniSoundChannel extends Laya.SoundChannel {
- constructor(audio, miniSound) {
- super();
- this._audio = audio;
- this._miniSound = miniSound;
- this._onEnd = MiniSoundChannel.bindToThis(this.__onEnd, this);
- audio.onEnded(this._onEnd);
- }
- static bindToThis(fun, scope) {
- var rst = fun;
- rst = fun.bind(scope);
- return rst;
- }
- __onEnd() {
- if (this.loops == 1) {
- if (this.completeHandler) {
- Laya.Laya.systemTimer.once(10, this, this.__runComplete, [this.completeHandler], false);
- this.completeHandler = null;
- }
- this.stop();
- this.event(Laya.Event.COMPLETE);
- return;
- }
- if (this.loops > 0) {
- this.loops--;
- }
- this.startTime = 0;
- this.play();
- }
- play() {
- this.isStopped = false;
- Laya.SoundManager.addChannel(this);
- this._audio.play();
- }
- set startTime(time) {
- if (this._audio) {
- this._audio.startTime = time;
- }
- }
- set autoplay(value) {
- this._audio.autoplay = value;
- }
- get autoplay() {
- return this._audio.autoplay;
- }
- get position() {
- if (!this._audio)
- return 0;
- return this._audio.currentTime;
- }
- get duration() {
- if (!this._audio)
- return 0;
- return this._audio.duration;
- }
- stop() {
- this.isStopped = true;
- Laya.SoundManager.removeChannel(this);
- this.completeHandler = null;
- if (!this._audio)
- return;
- this._audio.stop();
- if (!this.loop) {
- this._audio.offEnded(null);
- this._miniSound.dispose();
- this._audio = null;
- this._miniSound = null;
- this._onEnd = null;
- }
- }
- pause() {
- this.isStopped = true;
- this._audio.pause();
- }
- get loop() {
- return this._audio.loop;
- }
- set loop(value) {
- this._audio.loop = value;
- }
- resume() {
- if (!this._audio)
- return;
- this.isStopped = false;
- Laya.SoundManager.addChannel(this);
- this._audio.play();
- }
- set volume(v) {
- if (!this._audio)
- return;
- this._audio.volume = v;
- }
- get volume() {
- if (!this._audio)
- return 1;
- return this._audio.volume;
- }
- }
- class MiniSound extends Laya.EventDispatcher {
- constructor() {
- super();
- this.loaded = false;
- }
- static _createSound() {
- MiniSound._id++;
- return QGMiniAdapter.window.qg.createInnerAudioContext();
- }
- load(url) {
- if (!MiniSound._musicAudio)
- MiniSound._musicAudio = MiniSound._createSound();
- if (!MiniFileMgr.isLocalNativeFile(url)) {
- url = Laya.URL.formatURL(url);
- }
- else {
- if (url.indexOf("http://") != -1 || url.indexOf("https://") != -1) {
- if (MiniFileMgr.loadPath != "") {
- url = url.split(MiniFileMgr.loadPath)[1];
- }
- else {
- var tempStr = Laya.URL.rootPath != "" ? Laya.URL.rootPath : Laya.URL._basePath;
- if (tempStr != "")
- url = url.split(tempStr)[1];
- }
- }
- }
- this.url = url;
- this.readyUrl = url;
- if (MiniSound._audioCache[this.readyUrl]) {
- this.event(Laya.Event.COMPLETE);
- return;
- }
- if (QGMiniAdapter.autoCacheFile && MiniFileMgr.getFileInfo(url)) {
- this.onDownLoadCallBack(url, 0);
- }
- else {
- if (!QGMiniAdapter.autoCacheFile) {
- this.onDownLoadCallBack(url, 0);
- }
- else {
- if (MiniFileMgr.isLocalNativeFile(url)) {
- tempStr = Laya.URL.rootPath != "" ? Laya.URL.rootPath : Laya.URL._basePath;
- var tempUrl = url;
- if (tempStr != "")
- url = url.split(tempStr)[1];
- if (!url) {
- url = tempUrl;
- }
- if (QGMiniAdapter.subNativeFiles && QGMiniAdapter.subNativeheads.length == 0) {
- for (var key in QGMiniAdapter.subNativeFiles) {
- var tempArr = QGMiniAdapter.subNativeFiles[key];
- QGMiniAdapter.subNativeheads = QGMiniAdapter.subNativeheads.concat(tempArr);
- for (var aa = 0; aa < tempArr.length; aa++) {
- QGMiniAdapter.subMaps[tempArr[aa]] = key + "/" + tempArr[aa];
- }
- }
- }
- if (QGMiniAdapter.subNativeFiles && url.indexOf("/") != -1) {
- var curfileHead = url.split("/")[0] + "/";
- if (curfileHead && QGMiniAdapter.subNativeheads.indexOf(curfileHead) != -1) {
- var newfileHead = QGMiniAdapter.subMaps[curfileHead];
- url = url.replace(curfileHead, newfileHead);
- }
- }
- this.onDownLoadCallBack(url, 0);
- }
- else {
- if (!MiniFileMgr.isLocalNativeFile(url) && (url.indexOf("http://") == -1 && url.indexOf("https://") == -1) || (url.indexOf("http://usr/") != -1)) {
- this.onDownLoadCallBack(url, 0);
- }
- else {
- MiniFileMgr.downOtherFiles(encodeURI(url), Laya.Handler.create(this, this.onDownLoadCallBack, [url]), url);
- }
- }
- }
- }
- }
- onDownLoadCallBack(sourceUrl, errorCode, tempFilePath = null) {
- if (!errorCode) {
- var fileNativeUrl;
- if (QGMiniAdapter.autoCacheFile) {
- if (!tempFilePath) {
- if (MiniFileMgr.isLocalNativeFile(sourceUrl)) {
- var tempStr = Laya.URL.rootPath != "" ? Laya.URL.rootPath : Laya.URL._basePath;
- var tempUrl = sourceUrl;
- if (tempStr != "" && (sourceUrl.indexOf("http://") != -1 || sourceUrl.indexOf("https://") != -1))
- fileNativeUrl = sourceUrl.split(tempStr)[1];
- if (!fileNativeUrl) {
- fileNativeUrl = tempUrl;
- }
- }
- else {
- var fileObj = MiniFileMgr.getFileInfo(sourceUrl);
- if (fileObj && fileObj.md5) {
- var fileMd5Name = fileObj.md5;
- fileNativeUrl = MiniFileMgr.getFileNativePath(fileMd5Name);
- }
- else {
- fileNativeUrl = sourceUrl;
- }
- }
- }
- else {
- fileNativeUrl = tempFilePath;
- }
- if (this.url != Laya.SoundManager._bgMusic) {
- this._sound = MiniSound._createSound();
- this._sound.src = this.url = fileNativeUrl;
- }
- else {
- this._sound = MiniSound._musicAudio;
- this._sound.src = this.url = fileNativeUrl;
- }
- }
- else {
- if (this.url != Laya.SoundManager._bgMusic) {
- this._sound = MiniSound._createSound();
- this._sound.src = sourceUrl;
- }
- else {
- this._sound = MiniSound._musicAudio;
- this._sound.src = sourceUrl;
- }
- }
- this._sound.onCanplay(MiniSound.bindToThis(this.onCanPlay, this));
- this._sound.onError(MiniSound.bindToThis(this.onError, this));
- }
- else {
- this.event(Laya.Event.ERROR);
- }
- }
- onError(error) {
- try {
- console.log("-----1---------------minisound-----id:" + MiniSound._id);
- console.log(error);
- }
- catch (error) {
- console.log("-----2---------------minisound-----id:" + MiniSound._id);
- console.log(error);
- }
- this.event(Laya.Event.ERROR);
- this._sound.offError(null);
- }
- onCanPlay() {
- this.loaded = true;
- this.event(Laya.Event.COMPLETE);
- this._sound.offCanplay(null);
- }
- static bindToThis(fun, scope) {
- var rst = fun;
- rst = fun.bind(scope);
- return rst;
- }
- play(startTime = 0, loops = 0) {
- var tSound;
- if (this.url == Laya.SoundManager._bgMusic) {
- if (!MiniSound._musicAudio)
- MiniSound._musicAudio = MiniSound._createSound();
- tSound = MiniSound._musicAudio;
- }
- else {
- if (MiniSound._audioCache[this.readyUrl]) {
- tSound = MiniSound._audioCache[this.readyUrl]._sound;
- }
- else {
- tSound = MiniSound._createSound();
- }
- }
- if (!tSound)
- return null;
- if (QGMiniAdapter.autoCacheFile && MiniFileMgr.getFileInfo(this.url)) {
- var fileObj = MiniFileMgr.getFileInfo(this.url);
- var fileMd5Name = fileObj.md5;
- tSound.src = this.url = MiniFileMgr.getFileNativePath(fileMd5Name);
- }
- else {
- tSound.src = encodeURI(this.url);
- }
- var channel = new MiniSoundChannel(tSound, this);
- channel.url = this.url;
- channel.loops = loops;
- channel.loop = (loops === 0 ? true : false);
- channel.startTime = startTime;
- channel.play();
- Laya.SoundManager.addChannel(channel);
- return channel;
- }
- get duration() {
- return this._sound.duration;
- }
- dispose() {
- var ad = MiniSound._audioCache[this.readyUrl];
- if (ad) {
- ad.src = "";
- if (ad._sound) {
- ad._sound.destroy();
- ad._sound = null;
- ad = null;
- }
- delete MiniSound._audioCache[this.readyUrl];
- }
- if (this._sound) {
- this._sound.destroy();
- this._sound = null;
- this.readyUrl = this.url = null;
- }
- }
- }
- MiniSound._id = 0;
- MiniSound._audioCache = {};
- class MiniInput {
- constructor() {
- }
- static _createInputElement() {
- Laya.Input['_initInput'](Laya.Input['area'] = Laya.Browser.createElement("textarea"));
- Laya.Input['_initInput'](Laya.Input['input'] = Laya.Browser.createElement("input"));
- Laya.Input['inputContainer'] = Laya.Browser.createElement("div");
- Laya.Input['inputContainer'].style.position = "absolute";
- Laya.Input['inputContainer'].style.zIndex = 1E5;
- Laya.Browser.container.appendChild(Laya.Input['inputContainer']);
- Laya.Laya.stage.on("resize", null, MiniInput._onStageResize);
- QGMiniAdapter.window.qg.onWindowResize && QGMiniAdapter.window.qg.onWindowResize(function (res) {
- });
- Laya.SoundManager._soundClass = MiniSound;
- Laya.SoundManager._musicClass = MiniSound;
- var model = QGMiniAdapter.systemInfo.model;
- var system = QGMiniAdapter.systemInfo.system;
- if (model && model.indexOf("iPhone") != -1) {
- Laya.Browser.onIPhone = true;
- Laya.Browser.onIOS = true;
- Laya.Browser.onIPad = true;
- Laya.Browser.onAndroid = false;
- }
- if (system && (system.indexOf("Android") != -1 || system.indexOf("Adr") != -1)) {
- Laya.Browser.onAndroid = true;
- Laya.Browser.onIPhone = false;
- Laya.Browser.onIOS = false;
- Laya.Browser.onIPad = false;
- }
- }
- static _onStageResize() {
- }
- static wxinputFocus(e) {
- var _inputTarget = Laya.Input['inputElement'].target;
- if (_inputTarget && !_inputTarget.editable) {
- return;
- }
- QGMiniAdapter.window.qg.showKeyboard({ defaultValue: _inputTarget.text, maxLength: _inputTarget.maxChars, multiple: _inputTarget.multiline, confirmHold: true, confirmType: _inputTarget["confirmType"] || 'done', success: function (res) {
- }, fail: function (res) {
- } });
- QGMiniAdapter.window.qg.onKeyboardComplete(function (res) {
- QGMiniAdapter.window.qg.offKeyboardComplete();
- var str = res ? res.value : "";
- if (_inputTarget._restrictPattern) {
- str = str.replace(/\u2006|\x27/g, "");
- if (_inputTarget._restrictPattern.test(str)) {
- str = str.replace(_inputTarget._restrictPattern, "");
- }
- }
- _inputTarget.text = str;
- _inputTarget.event(Laya.Event.INPUT);
- MiniInput.inputEnter(true);
- });
- QGMiniAdapter.window.qg.onKeyboardConfirm(function (res) {
- var str = res ? res.value : "";
- if (_inputTarget._restrictPattern) {
- str = str.replace(/\u2006|\x27/g, "");
- if (_inputTarget._restrictPattern.test(str)) {
- str = str.replace(_inputTarget._restrictPattern, "");
- }
- }
- _inputTarget.text = str;
- _inputTarget.event(Laya.Event.INPUT);
- MiniInput.inputEnter(true);
- _inputTarget.event("confirm");
- });
- QGMiniAdapter.window.qg.onKeyboardInput(function (res) {
- var str = res ? res.value : "";
- if (!_inputTarget.multiline) {
- if (str.indexOf("\n") != -1) {
- MiniInput.inputEnter(false);
- return;
- }
- }
- if (_inputTarget._restrictPattern) {
- str = str.replace(/\u2006|\x27/g, "");
- if (_inputTarget._restrictPattern.test(str)) {
- str = str.replace(_inputTarget._restrictPattern, "");
- }
- }
- _inputTarget.text = str;
- _inputTarget.event(Laya.Event.INPUT);
- MiniInput.inputEnter(false);
- });
- }
- static inputEnter(isBool) {
- if (isBool) {
- MiniInput.hideKeyboard();
- }
- if (!Laya.Input['inputElement'].target)
- return;
- Laya.Input['inputElement'].target.focus = false;
- }
- static wxinputblur() {
- }
- static hideKeyboard() {
- QGMiniAdapter.window.qg.offKeyboardConfirm();
- QGMiniAdapter.window.qg.offKeyboardInput();
- QGMiniAdapter.window.qg.hideKeyboard({ success: function (res) {
- console.log('隐藏键盘');
- }, fail: function (res) {
- console.log("隐藏键盘出错:" + (res ? res.errMsg : ""));
- } });
- }
- }
- class MiniLoader extends Laya.EventDispatcher {
- constructor() {
- super();
- }
- _loadResourceFilter(type, url) {
- var thisLoader = this;
- this.sourceUrl = Laya.URL.formatURL(url);
- if (url.indexOf("http://usr/") == -1 && (url.indexOf("http://") != -1 || url.indexOf("https://") != -1)) {
- if (MiniFileMgr.loadPath != "") {
- url = url.split(MiniFileMgr.loadPath)[1];
- }
- else {
- var tempStr = Laya.URL.rootPath != "" ? Laya.URL.rootPath : Laya.URL._basePath;
- var tempUrl = url;
- if (tempStr != "")
- url = url.split(tempStr)[1];
- if (!url) {
- url = tempUrl;
- }
- }
- }
- if (QGMiniAdapter.subNativeFiles && QGMiniAdapter.subNativeheads.length == 0) {
- for (var key in QGMiniAdapter.subNativeFiles) {
- var tempArr = QGMiniAdapter.subNativeFiles[key];
- QGMiniAdapter.subNativeheads = QGMiniAdapter.subNativeheads.concat(tempArr);
- for (var aa = 0; aa < tempArr.length; aa++) {
- QGMiniAdapter.subMaps[tempArr[aa]] = key + "/" + tempArr[aa];
- }
- }
- }
- if (QGMiniAdapter.subNativeFiles && url.indexOf("/") != -1) {
- var curfileHead = url.split("/")[0] + "/";
- if (curfileHead && QGMiniAdapter.subNativeheads.indexOf(curfileHead) != -1) {
- var newfileHead = QGMiniAdapter.subMaps[curfileHead];
- url = url.replace(curfileHead, newfileHead);
- }
- }
- switch (type) {
- case Laya.Loader.IMAGE:
- case "htmlimage":
- case "nativeimage":
- MiniLoader._transformImgUrl(url, type, thisLoader);
- break;
- case Laya.Loader.SOUND:
- thisLoader._loadSound(url);
- break;
- default:
- thisLoader._loadResource(type, url);
- }
- }
- _loadSound(url) {
- var thisLoader = this;
- var fileNativeUrl;
- if (MiniFileMgr.isLocalNativeFile(url)) {
- var tempStr = Laya.URL.rootPath != "" ? Laya.URL.rootPath : Laya.URL._basePath;
- var tempUrl = url;
- if (tempStr != "" && (url.indexOf("http://") != -1 || url.indexOf("https://") != -1))
- fileNativeUrl = url.split(tempStr)[1];
- if (!fileNativeUrl) {
- fileNativeUrl = tempUrl;
- }
- MiniLoader.onDownLoadCallBack(url, thisLoader, 0);
- }
- else {
- var tempurl = Laya.URL.formatURL(url);
- if (!MiniFileMgr.isLocalNativeFile(url) && (tempurl.indexOf("http://") == -1 && tempurl.indexOf("https://") == -1) || (tempurl.indexOf("http://usr/") != -1)) {
- MiniLoader.onDownLoadCallBack(url, thisLoader, 0);
- }
- else {
- MiniFileMgr.downOtherFiles(tempurl, Laya.Handler.create(MiniLoader, MiniLoader.onDownLoadCallBack, [tempurl, thisLoader]), tempurl);
- }
- }
- }
- static onDownLoadCallBack(sourceUrl, thisLoader, errorCode, tempFilePath = null) {
- if (!errorCode) {
- var fileNativeUrl;
- if (QGMiniAdapter.autoCacheFile) {
- if (!tempFilePath) {
- if (MiniFileMgr.isLocalNativeFile(sourceUrl)) {
- var tempStr = Laya.URL.rootPath != "" ? Laya.URL.rootPath : Laya.URL._basePath;
- var tempUrl = sourceUrl;
- if (tempStr != "" && (sourceUrl.indexOf("http://") != -1 || sourceUrl.indexOf("https://") != -1))
- fileNativeUrl = sourceUrl.split(tempStr)[1];
- if (!fileNativeUrl) {
- fileNativeUrl = tempUrl;
- }
- }
- else {
- var fileObj = MiniFileMgr.getFileInfo(sourceUrl);
- if (fileObj && fileObj.md5) {
- var fileMd5Name = fileObj.md5;
- fileNativeUrl = MiniFileMgr.getFileNativePath(fileMd5Name);
- }
- else {
- fileNativeUrl = sourceUrl;
- }
- }
- }
- else {
- fileNativeUrl = tempFilePath;
- }
- }
- sourceUrl = fileNativeUrl;
- var sound = (new Laya.SoundManager._soundClass());
- sound.load(sourceUrl);
- thisLoader.onLoaded(sound);
- }
- else {
- thisLoader.event(Laya.Event.ERROR, "Load sound failed");
- }
- }
- static bindToThis(fun, scope) {
- var rst = fun;
- rst = fun.bind(scope);
- return rst;
- }
- complete(data) {
- if (data instanceof Laya.Resource) {
- data._setCreateURL(this.sourceUrl);
- }
- else if ((data instanceof Laya.Texture) && (data.bitmap instanceof Laya.Resource)) {
- data.bitmap._setCreateURL(this.sourceUrl);
- }
- this.originComplete(data);
- }
- _loadHttpRequestWhat(url, contentType) {
- var thisLoader = this;
- var encoding = QGMiniAdapter.getUrlEncode(url, contentType);
- if (Laya.Loader.preLoadedMap[url])
- thisLoader.onLoaded(Laya.Loader.preLoadedMap[url]);
- else {
- var tempurl = Laya.URL.formatURL(url);
- if (!MiniFileMgr.isLocalNativeFile(url) && !MiniFileMgr.getFileInfo(tempurl) && url.indexOf("http://usr/") == -1 && (tempurl.indexOf("http://") != -1 || tempurl.indexOf("https://") != -1) && !QGMiniAdapter.AutoCacheDownFile) {
- thisLoader._loadHttpRequest(tempurl, contentType, thisLoader, thisLoader.onLoaded, thisLoader, thisLoader.onProgress, thisLoader, thisLoader.onError);
- }
- else {
- var fileObj = MiniFileMgr.getFileInfo(Laya.URL.formatURL(url));
- if (fileObj) {
- fileObj.encoding = fileObj.encoding == null ? "utf8" : fileObj.encoding;
- MiniFileMgr.readFile(MiniFileMgr.getFileNativePath(fileObj.md5), encoding, new Laya.Handler(MiniLoader, MiniLoader.onReadNativeCallBack, [url, contentType, thisLoader]), url);
- }
- else if (thisLoader.type == "image" || thisLoader.type == "htmlimage") {
- thisLoader._transformUrl(url, contentType);
- }
- else {
- if (contentType != Laya.Loader.IMAGE && ((tempurl.indexOf("http://") == -1 && tempurl.indexOf("https://") == -1) || MiniFileMgr.isLocalNativeFile(url))) {
- MiniFileMgr.readFile(url, encoding, new Laya.Handler(MiniLoader, MiniLoader.onReadNativeCallBack, [url, contentType, thisLoader]), url);
- }
- else {
- MiniFileMgr.downFiles(encodeURI(tempurl), encoding, new Laya.Handler(MiniLoader, MiniLoader.onReadNativeCallBack, [url, contentType, thisLoader]), tempurl, true);
- }
- }
- }
- }
- }
- static onReadNativeCallBack(url, type = null, thisLoader = null, errorCode = 0, data = null) {
- if (!errorCode) {
- var tempData;
- if (type == Laya.Loader.JSON || type == Laya.Loader.ATLAS || type == Laya.Loader.PREFAB || type == Laya.Loader.PLF) {
- tempData = QGMiniAdapter.getJson(data.data);
- }
- else if (type == Laya.Loader.XML) {
- tempData = Laya.Utils.parseXMLFromString(data.data);
- }
- else {
- tempData = data.data;
- }
- if (!QGMiniAdapter.isZiYu && QGMiniAdapter.isPosMsgYu && type != Laya.Loader.BUFFER) {
- QGMiniAdapter.window.wx.postMessage({ url: url, data: tempData, isLoad: "filedata" });
- }
- thisLoader.onLoaded(tempData);
- }
- else if (errorCode == 1) {
- thisLoader._loadHttpRequest(url, type, thisLoader, thisLoader.onLoaded, thisLoader, thisLoader.onProgress, thisLoader, thisLoader.onError);
- }
- }
- static _transformImgUrl(url, type, thisLoader) {
- if (QGMiniAdapter.isZiYu || MiniFileMgr.isLocalNativeFile(url)) {
- thisLoader._loadImage(url, false);
- return;
- }
- if (!QGMiniAdapter.autoCacheFile) {
- thisLoader._loadImage(encodeURI(url));
- return;
- }
- if (!MiniFileMgr.isLocalNativeFile(url) && !MiniFileMgr.getFileInfo(Laya.URL.formatURL(url))) {
- var tempUrl = Laya.URL.formatURL(url);
- if (url.indexOf('http://usr/') == -1 && (tempUrl.indexOf("http://") != -1 || tempUrl.indexOf("https://") != -1)) {
- if (QGMiniAdapter.isZiYu) {
- thisLoader._loadImage(url);
- }
- else {
- MiniFileMgr.downOtherFiles(tempUrl, new Laya.Handler(MiniLoader, MiniLoader.onDownImgCallBack, [url, thisLoader]), tempUrl);
- }
- }
- else
- thisLoader._loadImage(url);
- }
- else {
- MiniLoader.onCreateImage(url, thisLoader);
- }
- }
- static onDownImgCallBack(sourceUrl, thisLoader, errorCode, tempFilePath = "") {
- if (!errorCode)
- MiniLoader.onCreateImage(sourceUrl, thisLoader, false, tempFilePath);
- else {
- thisLoader.onError(null);
- }
- }
- static onCreateImage(sourceUrl, thisLoader, isLocal = false, tempFilePath = "") {
- var fileNativeUrl;
- if (QGMiniAdapter.autoCacheFile) {
- if (!isLocal) {
- if (tempFilePath != "") {
- fileNativeUrl = tempFilePath;
- }
- else {
- var fileObj = MiniFileMgr.getFileInfo(Laya.URL.formatURL(sourceUrl));
- var fileMd5Name = fileObj.md5;
- fileNativeUrl = MiniFileMgr.getFileNativePath(fileMd5Name);
- }
- }
- else if (QGMiniAdapter.isZiYu) {
- var tempUrl = Laya.URL.formatURL(sourceUrl);
- if (MiniFileMgr.ziyuFileTextureData[tempUrl]) {
- fileNativeUrl = MiniFileMgr.ziyuFileTextureData[tempUrl];
- }
- else
- fileNativeUrl = sourceUrl;
- }
- else
- fileNativeUrl = sourceUrl;
- }
- else {
- if (!isLocal)
- fileNativeUrl = tempFilePath;
- else
- fileNativeUrl = sourceUrl;
- }
- thisLoader._loadImage(fileNativeUrl, false);
- }
- }
- class QGMiniAdapter {
- static getJson(data) {
- return JSON.parse(data);
- }
- static enable() {
- QGMiniAdapter.init(Laya.Laya.isWXPosMsg, Laya.Laya.isWXOpenDataContext);
- }
- static init(isPosMsg = false, isSon = false) {
- if (QGMiniAdapter._inited)
- return;
- QGMiniAdapter._inited = true;
- QGMiniAdapter.window = window;
- if (!QGMiniAdapter.window.hasOwnProperty('qg'))
- return;
- if (QGMiniAdapter.window.navigator.userAgent.indexOf('OPPO') < 0)
- return;
- QGMiniAdapter.isZiYu = isSon;
- QGMiniAdapter.isPosMsgYu = isPosMsg;
- QGMiniAdapter.EnvConfig = {};
- if (!QGMiniAdapter.isZiYu) {
- MiniFileMgr.setNativeFileDir("/layaairGame");
- MiniFileMgr.existDir(MiniFileMgr.fileNativeDir, Laya.Handler.create(QGMiniAdapter, QGMiniAdapter.onMkdirCallBack));
- }
- QGMiniAdapter.window.qg.getSystemInfo({
- success: function (data) {
- QGMiniAdapter.systemInfo = data;
- }
- });
- QGMiniAdapter.window.focus = function () {
- };
- Laya.Laya['_getUrlPath'] = function () {
- return "";
- };
- Laya.Laya['getUrlPath'] = function () {
- return "";
- };
- QGMiniAdapter.window.logtime = function (str) {
- };
- QGMiniAdapter.window.alertTimeLog = function (str) {
- };
- QGMiniAdapter.window.resetShareInfo = function () {
- };
- QGMiniAdapter.window.document.body.appendChild = function () {
- };
- QGMiniAdapter.EnvConfig.pixelRatioInt = 0;
- Laya.Browser["_pixelRatio"] = QGMiniAdapter.pixelRatio();
- QGMiniAdapter._preCreateElement = Laya.Browser.createElement;
- Laya.Browser["createElement"] = QGMiniAdapter.createElement;
- Laya.RunDriver.createShaderCondition = QGMiniAdapter.createShaderCondition;
- Laya.Utils['parseXMLFromString'] = QGMiniAdapter.parseXMLFromString;
- Laya.Input['_createInputElement'] = MiniInput['_createInputElement'];
- Laya.Loader.prototype._loadResourceFilter = MiniLoader.prototype._loadResourceFilter;
- Laya.Loader.prototype._loadSound = MiniLoader.prototype._loadSound;
- Laya.Loader.prototype.originComplete = Laya.Loader.prototype.complete;
- Laya.Loader.prototype.complete = MiniLoader.prototype.complete;
- Laya.Loader.prototype._loadHttpRequestWhat = MiniLoader.prototype._loadHttpRequestWhat;
- Laya.Config.useRetinalCanvas = true;
- QGMiniAdapter.window.qg.onMessage && QGMiniAdapter.window.qg.onMessage(QGMiniAdapter._onMessage);
- }
- static _onMessage(data) {
- switch (data.type) {
- case "changeMatrix":
- Laya.Laya.stage.transform.identity();
- Laya.Laya.stage._width = data.w;
- Laya.Laya.stage._height = data.h;
- Laya.Laya.stage._canvasTransform = new Laya.Matrix(data.a, data.b, data.c, data.d, data.tx, data.ty);
- break;
- case "display":
- Laya.Laya.stage.frameRate = data.rate || Laya.Stage.FRAME_FAST;
- break;
- case "undisplay":
- Laya.Laya.stage.frameRate = Laya.Stage.FRAME_SLEEP;
- break;
- }
- if (data['isLoad'] == "opendatacontext") {
- if (data.url) {
- MiniFileMgr.ziyuFileData[data.url] = data.atlasdata;
- MiniFileMgr.ziyuFileTextureData[data.imgReadyUrl] = data.imgNativeUrl;
- }
- }
- else if (data['isLoad'] == "openJsondatacontext") {
- if (data.url) {
- MiniFileMgr.ziyuFileData[data.url] = data.atlasdata;
- }
- }
- else if (data['isLoad'] == "openJsondatacontextPic") {
- MiniFileMgr.ziyuFileTextureData[data.imgReadyUrl] = data.imgNativeUrl;
- }
- }
- static getUrlEncode(url, type) {
- if (type == "arraybuffer")
- return "";
- return "utf8";
- }
- static downLoadFile(fileUrl, fileType = "", callBack = null, encoding = "utf8") {
- var fileObj = MiniFileMgr.getFileInfo(fileUrl);
- if (!fileObj)
- MiniFileMgr.downLoadFile(fileUrl, fileType, callBack, encoding);
- else {
- callBack != null && callBack.runWith([0]);
- }
- }
- static remove(fileUrl, callBack = null) {
- MiniFileMgr.deleteFile("", fileUrl, callBack, "", 0);
- }
- static removeAll() {
- MiniFileMgr.deleteAll();
- }
- static hasNativeFile(fileUrl) {
- return MiniFileMgr.isLocalNativeFile(fileUrl);
- }
- static getFileInfo(fileUrl) {
- return MiniFileMgr.getFileInfo(fileUrl);
- }
- static getFileList() {
- return MiniFileMgr.filesListObj;
- }
- static exitMiniProgram() {
- QGMiniAdapter.window["wx"].exitMiniProgram();
- }
- static onMkdirCallBack(errorCode, data) {
- if (!errorCode) {
- MiniFileMgr.filesListObj = JSON.parse(data.data);
- MiniFileMgr.fakeObj = JSON.parse(data.data) || {};
- }
- else {
- MiniFileMgr.fakeObj = {};
- MiniFileMgr.filesListObj = {};
- }
- MiniFileMgr.fs.readdir({
- dirPath: MiniFileMgr.fileNativeDir,
- success: function (data) {
- var tempMd5ListObj = {};
- var fileObj;
- for (let key in MiniFileMgr.filesListObj) {
- if (key != "fileUsedSize") {
- fileObj = MiniFileMgr.filesListObj[key];
- tempMd5ListObj[fileObj.md5] = true;
- }
- }
- var files = data.files;
- var fileName;
- for (let i = 0, sz = files.length; i < sz; i++) {
- fileName = files[i];
- if (fileName == MiniFileMgr.fileListName)
- continue;
- var deleteFileUrl = MiniFileMgr.getFileNativePath(fileName);
- if (tempMd5ListObj[deleteFileUrl])
- continue;
- if (tempMd5ListObj[fileName])
- continue;
- MiniFileMgr.fs.unlink({
- filePath: deleteFileUrl,
- success: function (data) {
- console.log("删除无引用的磁盘文件:" + fileName);
- }
- });
- }
- }
- });
- }
- static pixelRatio() {
- if (!QGMiniAdapter.EnvConfig.pixelRatioInt) {
- try {
- QGMiniAdapter.systemInfo.pixelRatio = QGMiniAdapter.window.devicePixelRatio;
- QGMiniAdapter.EnvConfig.pixelRatioInt = QGMiniAdapter.systemInfo.pixelRatio;
- return QGMiniAdapter.systemInfo.pixelRatio;
- }
- catch (error) {
- }
- }
- return QGMiniAdapter.EnvConfig.pixelRatioInt;
- }
- static createElement(type) {
- if (type == "canvas") {
- var _source;
- if (QGMiniAdapter.idx == 1) {
- if (QGMiniAdapter.isZiYu) {
- _source = QGMiniAdapter.window.document.createElement("canvas");
- _source.style = {};
- }
- else {
- _source = QGMiniAdapter.window.__canvas;
- }
- }
- else {
- _source = QGMiniAdapter.window.document.createElement("canvas");
- }
- QGMiniAdapter.idx++;
- return _source;
- }
- else if (type == "textarea" || type == "input") {
- return QGMiniAdapter.onCreateInput(type);
- }
- else if (type == "div") {
- var node = QGMiniAdapter._preCreateElement(type);
- node.contains = function (value) {
- return null;
- };
- node.removeChild = function (value) {
- };
- return node;
- }
- else {
- return QGMiniAdapter._preCreateElement(type);
- }
- }
- static onCreateInput(type) {
- var node = QGMiniAdapter._preCreateElement(type);
- node.focus = MiniInput.wxinputFocus;
- node.blur = MiniInput.wxinputblur;
- node.style = {};
- node.value = 0;
- node.parentElement = {};
- node.placeholder = {};
- node.type = {};
- node.setColor = function (value) {
- };
- node.setType = function (value) {
- };
- node.setFontFace = function (value) {
- };
- node.addEventListener = function (value) {
- };
- node.contains = function (value) {
- return null;
- };
- node.removeChild = function (value) {
- };
- return node;
- }
- static createShaderCondition(conditionScript) {
- var func = function () {
- return this[conditionScript.replace("this.", "")];
- };
- return func;
- }
- static sendAtlasToOpenDataContext(url) {
- if (!QGMiniAdapter.isZiYu) {
- var atlasJson = Laya.Loader.getRes(Laya.URL.formatURL(url));
- if (atlasJson) {
- var textureArr = atlasJson.meta.image.split(",");
- if (atlasJson.meta && atlasJson.meta.image) {
- var toloadPics = atlasJson.meta.image.split(",");
- var split = url.indexOf("/") >= 0 ? "/" : "\\";
- var idx = url.lastIndexOf(split);
- var folderPath = idx >= 0 ? url.substr(0, idx + 1) : "";
- for (var i = 0, len = toloadPics.length; i < len; i++) {
- toloadPics[i] = folderPath + toloadPics[i];
- }
- }
- else {
- toloadPics = [url.replace(".json", ".png")];
- }
- for (i = 0; i < toloadPics.length; i++) {
- var tempAtlasPngUrl = toloadPics[i];
- QGMiniAdapter.postInfoToContext(url, tempAtlasPngUrl, atlasJson);
- }
- }
- else {
- throw "传递的url没有获取到对应的图集数据信息,请确保图集已经过!";
- }
- }
- }
- static postInfoToContext(url, atlaspngUrl, atlasJson) {
- var postData = { "frames": atlasJson.frames, "meta": atlasJson.meta };
- var textureUrl = atlaspngUrl;
- var fileObj = MiniFileMgr.getFileInfo(Laya.URL.formatURL(atlaspngUrl));
- if (fileObj) {
- var fileMd5Name = fileObj.md5;
- var fileNativeUrl = MiniFileMgr.getFileNativePath(fileMd5Name);
- }
- else {
- fileNativeUrl = textureUrl;
- }
- if (fileNativeUrl) {
- QGMiniAdapter.window.qg.postMessage && QGMiniAdapter.window.qg.postMessage({ url: url, atlasdata: postData, imgNativeUrl: fileNativeUrl, imgReadyUrl: textureUrl, isLoad: "opendatacontext" });
- }
- else {
- throw "获取图集的磁盘url路径不存在!";
- }
- }
- static sendSinglePicToOpenDataContext(url) {
- var tempTextureUrl = Laya.URL.formatURL(url);
- var fileObj = MiniFileMgr.getFileInfo(tempTextureUrl);
- if (fileObj) {
- var fileMd5Name = fileObj.md5;
- var fileNativeUrl = MiniFileMgr.getFileNativePath(fileMd5Name);
- url = tempTextureUrl;
- }
- else {
- fileNativeUrl = url;
- }
- if (fileNativeUrl) {
- QGMiniAdapter.window.qg.postMessage && QGMiniAdapter.window.qg.postMessage({ url: url, imgNativeUrl: fileNativeUrl, imgReadyUrl: url, isLoad: "openJsondatacontextPic" });
- }
- else {
- throw "获取图集的磁盘url路径不存在!";
- }
- }
- static sendJsonDataToDataContext(url) {
- if (!QGMiniAdapter.isZiYu) {
- var atlasJson = Laya.Loader.getRes(url);
- if (atlasJson) {
- QGMiniAdapter.window.qg.postMessage && QGMiniAdapter.window.qg.postMessage({ url: url, atlasdata: atlasJson, isLoad: "openJsondatacontext" });
- }
- else {
- throw "传递的url没有获取到对应的图集数据信息,请确保图集已经过!";
- }
- }
- }
- }
- QGMiniAdapter._inited = false;
- QGMiniAdapter.systemInfo = {};
- QGMiniAdapter.autoCacheFile = true;
- QGMiniAdapter.minClearSize = (5 * 1024 * 1024);
- QGMiniAdapter.nativefiles = ["layaNativeDir"];
- QGMiniAdapter.subNativeheads = [];
- QGMiniAdapter.subMaps = [];
- QGMiniAdapter.AutoCacheDownFile = false;
- QGMiniAdapter.parseXMLFromString = function (value) {
- var rst;
- value = value.replace(/>\s+</g, '><');
- try {
- rst = (new window.DOMParser()).parseFromString(value, 'text/xml');
- }
- catch (error) {
- throw "需要引入xml解析库文件";
- }
- return rst;
- };
- QGMiniAdapter.idx = 1;
- class MiniAccelerator extends Laya.EventDispatcher {
- constructor() {
- super();
- }
- static __init__() {
- try {
- var Acc;
- Acc = Laya.Accelerator;
- if (!Acc)
- return;
- Acc["prototype"]["on"] = MiniAccelerator["prototype"]["on"];
- Acc["prototype"]["off"] = MiniAccelerator["prototype"]["off"];
- }
- catch (e) {
- }
- }
- static startListen(callBack) {
- MiniAccelerator._callBack = callBack;
- if (MiniAccelerator._isListening)
- return;
- MiniAccelerator._isListening = true;
- try {
- QGMiniAdapter.window.qg.onAccelerometerChange(MiniAccelerator.onAccelerometerChange);
- }
- catch (e) { }
- }
- static stopListen() {
- MiniAccelerator._isListening = false;
- try {
- QGMiniAdapter.window.qg.stopAccelerometer({});
- }
- catch (e) { }
- }
- static onAccelerometerChange(res) {
- var e;
- e = {};
- e.acceleration = res;
- e.accelerationIncludingGravity = res;
- e.rotationRate = {};
- if (MiniAccelerator._callBack != null) {
- MiniAccelerator._callBack(e);
- }
- }
- on(type, caller, listener, args = null) {
- super.on(type, caller, listener, args);
- MiniAccelerator.startListen(this["onDeviceOrientationChange"]);
- return this;
- }
- off(type, caller, listener, onceOnly = false) {
- if (!this.hasListener(type))
- MiniAccelerator.stopListen();
- return super.off(type, caller, listener, onceOnly);
- }
- }
- MiniAccelerator._isListening = false;
- class MiniImage {
- _loadImage(url) {
- var thisLoader = this;
- if (QGMiniAdapter.isZiYu) {
- MiniImage.onCreateImage(url, thisLoader, true);
- return;
- }
- var isTransformUrl;
- if (!MiniFileMgr.isLocalNativeFile(url)) {
- isTransformUrl = true;
- url = Laya.URL.formatURL(url);
- }
- else {
- if (url.indexOf("http://usr/") == -1 && (url.indexOf("http://") != -1 || url.indexOf("https://") != -1)) {
- if (MiniFileMgr.loadPath != "") {
- url = url.split(MiniFileMgr.loadPath)[1];
- }
- else {
- var tempStr = Laya.URL.rootPath != "" ? Laya.URL.rootPath : Laya.URL.basePath;
- var tempUrl = url;
- if (tempStr != "")
- url = url.split(tempStr)[1];
- if (!url) {
- url = tempUrl;
- }
- }
- }
- if (QGMiniAdapter.subNativeFiles && QGMiniAdapter.subNativeheads.length == 0) {
- for (var key in QGMiniAdapter.subNativeFiles) {
- var tempArr = QGMiniAdapter.subNativeFiles[key];
- QGMiniAdapter.subNativeheads = QGMiniAdapter.subNativeheads.concat(tempArr);
- for (var aa = 0; aa < tempArr.length; aa++) {
- QGMiniAdapter.subMaps[tempArr[aa]] = key + "/" + tempArr[aa];
- }
- }
- }
- if (QGMiniAdapter.subNativeFiles && url.indexOf("/") != -1) {
- var curfileHead = url.split("/")[0] + "/";
- if (curfileHead && QGMiniAdapter.subNativeheads.indexOf(curfileHead) != -1) {
- var newfileHead = QGMiniAdapter.subMaps[curfileHead];
- url = url.replace(curfileHead, newfileHead);
- }
- }
- }
- if (!MiniFileMgr.getFileInfo(url)) {
- if (url.indexOf('http://usr/') == -1 && (url.indexOf("http://") != -1 || url.indexOf("https://") != -1)) {
- if (QGMiniAdapter.isZiYu) {
- MiniImage.onCreateImage(url, thisLoader, true);
- }
- else {
- MiniFileMgr.downOtherFiles(encodeURI(url), new Laya.Handler(MiniImage, MiniImage.onDownImgCallBack, [url, thisLoader]), url);
- }
- }
- else
- MiniImage.onCreateImage(url, thisLoader, true);
- }
- else {
- MiniImage.onCreateImage(url, thisLoader, !isTransformUrl);
- }
- }
- static onDownImgCallBack(sourceUrl, thisLoader, errorCode, tempFilePath = "") {
- if (!errorCode)
- MiniImage.onCreateImage(sourceUrl, thisLoader, false, tempFilePath);
- else {
- thisLoader.onError(null);
- }
- }
- static onCreateImage(sourceUrl, thisLoader, isLocal = false, tempFilePath = "") {
- var fileNativeUrl;
- if (QGMiniAdapter.autoCacheFile) {
- if (!isLocal) {
- if (tempFilePath != "") {
- fileNativeUrl = tempFilePath;
- }
- else {
- var fileObj = MiniFileMgr.getFileInfo(sourceUrl);
- var fileMd5Name = fileObj.md5;
- fileNativeUrl = MiniFileMgr.getFileNativePath(fileMd5Name);
- }
- }
- else if (QGMiniAdapter.isZiYu) {
- var tempUrl = Laya.URL.formatURL(sourceUrl);
- if (MiniFileMgr.ziyuFileTextureData[tempUrl]) {
- fileNativeUrl = MiniFileMgr.ziyuFileTextureData[tempUrl];
- }
- else
- fileNativeUrl = sourceUrl;
- }
- else
- fileNativeUrl = sourceUrl;
- }
- else {
- if (!isLocal)
- fileNativeUrl = tempFilePath;
- else
- fileNativeUrl = sourceUrl;
- }
- if (thisLoader._imgCache == null)
- thisLoader._imgCache = {};
- var image;
- function clear() {
- var img = thisLoader._imgCache[sourceUrl];
- if (img) {
- img.onload = null;
- img.onerror = null;
- delete thisLoader._imgCache[sourceUrl];
- }
- }
- var onerror = function () {
- clear();
- delete MiniFileMgr.fakeObj[sourceUrl];
- delete MiniFileMgr.filesListObj[sourceUrl];
- thisLoader.event(Laya.Event.ERROR, "Load image failed");
- };
- if (thisLoader._type == "nativeimage") {
- var onload = function () {
- clear();
- thisLoader.onLoaded(image);
- };
- image = new Laya.Browser.window.Image();
- image.crossOrigin = "";
- image.onload = onload;
- image.onerror = onerror;
- image.src = fileNativeUrl;
- thisLoader._imgCache[sourceUrl] = image;
- }
- else {
- var imageSource = new Laya.Browser.window.Image();
- onload = function () {
- image = Laya.HTMLImage.create(imageSource.width, imageSource.height);
- image.loadImageSource(imageSource, true);
- image._setCreateURL(sourceUrl);
- clear();
- thisLoader.onLoaded(image);
- };
- imageSource.crossOrigin = "";
- imageSource.onload = onload;
- imageSource.onerror = onerror;
- imageSource.src = fileNativeUrl;
- thisLoader._imgCache[sourceUrl] = imageSource;
- }
- }
- }
- class MiniLocation {
- constructor() {
- }
- static __init__() {
- QGMiniAdapter.window.navigator.geolocation.getCurrentPosition = MiniLocation.getCurrentPosition;
- QGMiniAdapter.window.navigator.geolocation.watchPosition = MiniLocation.watchPosition;
- QGMiniAdapter.window.navigator.geolocation.clearWatch = MiniLocation.clearWatch;
- }
- static getCurrentPosition(success = null, error = null, options = null) {
- var paramO;
- paramO = {};
- paramO.success = getSuccess;
- paramO.fail = error;
- QGMiniAdapter.window.qg.getLocation(paramO);
- function getSuccess(res) {
- if (success != null) {
- success(res);
- }
- }
- }
- static watchPosition(success = null, error = null, options = null) {
- MiniLocation._curID++;
- var curWatchO;
- curWatchO = {};
- curWatchO.success = success;
- curWatchO.error = error;
- MiniLocation._watchDic[MiniLocation._curID] = curWatchO;
- Laya.Laya.systemTimer.loop(1000, null, MiniLocation._myLoop);
- return MiniLocation._curID;
- }
- static clearWatch(id) {
- delete MiniLocation._watchDic[id];
- if (!MiniLocation._hasWatch()) {
- Laya.Laya.systemTimer.clear(null, MiniLocation._myLoop);
- }
- }
- static _hasWatch() {
- var key;
- for (key in MiniLocation._watchDic) {
- if (MiniLocation._watchDic[key])
- return true;
- }
- return false;
- }
- static _myLoop() {
- MiniLocation.getCurrentPosition(MiniLocation._mySuccess, MiniLocation._myError);
- }
- static _mySuccess(res) {
- var rst = {};
- rst.coords = res;
- rst.timestamp = Laya.Browser.now();
- var key;
- for (key in MiniLocation._watchDic) {
- if (MiniLocation._watchDic[key].success) {
- MiniLocation._watchDic[key].success(rst);
- }
- }
- }
- static _myError(res) {
- var key;
- for (key in MiniLocation._watchDic) {
- if (MiniLocation._watchDic[key].error) {
- MiniLocation._watchDic[key].error(res);
- }
- }
- }
- }
- MiniLocation._watchDic = {};
- MiniLocation._curID = 0;
- class MiniVideo {
- constructor(width = 320, height = 240) {
- this.videoend = false;
- this.videourl = "";
- this.videoW = width;
- this.videoH = height;
- }
- static __init__() {
- }
- on(eventType, ths, callBack) {
- if (eventType == "loadedmetadata") {
- this.onPlayFunc = callBack.bind(ths);
- }
- else if (eventType == "ended") {
- this.onEndedFunC = callBack.bind(ths);
- }
- this.videoElement.onTimeUpdate = this.onTimeUpdateFunc.bind(this);
- }
- onTimeUpdateFunc(data) {
- this.position = data.position;
- this._duration = data.duration;
- }
- get duration() {
- return this._duration;
- }
- onPlayFunction() {
- if (this.videoElement)
- this.videoElement.readyState = 200;
- this.onPlayFunc != null && this.onPlayFunc();
- }
- onEndedFunction() {
- this.videoend = true;
- this.onEndedFunC != null && this.onEndedFunC();
- }
- off(eventType, ths, callBack) {
- if (eventType == "loadedmetadata") {
- this.onPlayFunc = callBack.bind(ths);
- this.videoElement.offPlay = this.onPlayFunction.bind(this);
- }
- else if (eventType == "ended") {
- this.onEndedFunC = callBack.bind(ths);
- this.videoElement.offEnded = this.onEndedFunction.bind(this);
- }
- }
- load(url) {
- if (!this.videoElement) {
- this.videoElement = QGMiniAdapter.window.qg.createVideo({ width: this.videoW, height: this.videoH, autoplay: true, src: url });
- this.videoElement.onPlay = this.onPlayFunction.bind(this);
- this.videoElement.onEnded = this.onEndedFunction.bind(this);
- }
- else {
- this.videoElement.src = url;
- }
- }
- play() {
- if (!this.videoElement)
- return;
- this.videoend = false;
- this.videoElement.play();
- }
- pause() {
- if (!this.videoElement)
- return;
- this.videoend = true;
- this.videoElement.pause();
- }
- get currentTime() {
- if (!this.videoElement)
- return 0;
- return this.videoElement.initialTime;
- }
- set currentTime(value) {
- if (!this.videoElement)
- return;
- this.videoElement.initialTime = value;
- }
- get videoWidth() {
- if (!this.videoElement)
- return 0;
- return this.videoElement.width;
- }
- get videoHeight() {
- if (!this.videoElement)
- return 0;
- return this.videoElement.height;
- }
- get ended() {
- return this.videoend;
- }
- get loop() {
- if (!this.videoElement)
- return false;
- return this.videoElement.loop;
- }
- set loop(value) {
- if (!this.videoElement)
- return;
- this.videoElement.loop = value;
- }
- get playbackRate() {
- if (!this.videoElement)
- return 0;
- return this.videoElement.playbackRate;
- }
- set playbackRate(value) {
- if (!this.videoElement)
- return;
- this.videoElement.playbackRate = value;
- }
- get muted() {
- if (!this.videoElement)
- return false;
- return this.videoElement.muted;
- }
- set muted(value) {
- if (!this.videoElement)
- return;
- this.videoElement.muted = value;
- }
- get paused() {
- if (!this.videoElement)
- return false;
- return this.videoElement.paused;
- }
- size(width, height) {
- if (!this.videoElement)
- return;
- this.videoElement.width = width;
- this.videoElement.height = height;
- }
- get x() {
- if (!this.videoElement)
- return 0;
- return this.videoElement.x;
- }
- set x(value) {
- if (!this.videoElement)
- return;
- this.videoElement.x = value;
- }
- get y() {
- if (!this.videoElement)
- return 0;
- return this.videoElement.y;
- }
- set y(value) {
- if (!this.videoElement)
- return;
- this.videoElement.y = value;
- }
- get currentSrc() {
- return this.videoElement.src;
- }
- destroy() {
- if (this.videoElement)
- this.videoElement.destroy();
- this.videoElement = null;
- this.onEndedFunC = null;
- this.onPlayFunc = null;
- this.videoend = false;
- this.videourl = null;
- }
- reload() {
- if (!this.videoElement)
- return;
- this.videoElement.src = this.videourl;
- }
- }
- exports.MiniAccelerator = MiniAccelerator;
- exports.MiniFileMgr = MiniFileMgr;
- exports.MiniImage = MiniImage;
- exports.MiniInput = MiniInput;
- exports.MiniLoader = MiniLoader;
- exports.MiniLocation = MiniLocation;
- exports.MiniSound = MiniSound;
- exports.MiniSoundChannel = MiniSoundChannel;
- exports.MiniVideo = MiniVideo;
- exports.QGMiniAdapter = QGMiniAdapter;
- }
|