bundle.js 190 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474
  1. var laya = (function (exports) {
  2. 'use strict';
  3. class GameConfig {
  4. constructor() { }
  5. static init() {
  6. var reg = Laya.ClassUtils.regClass;
  7. }
  8. }
  9. GameConfig.width = 720;
  10. GameConfig.height = 1280;
  11. GameConfig.scaleMode = "fixedwidth";
  12. GameConfig.screenMode = "none";
  13. GameConfig.alignV = "top";
  14. GameConfig.alignH = "left";
  15. GameConfig.startScene = "MainScene.scene";
  16. GameConfig.sceneRoot = "";
  17. GameConfig.debug = false;
  18. GameConfig.stat = false;
  19. GameConfig.physicsDebug = false;
  20. GameConfig.exportSceneToJson = true;
  21. GameConfig.init();
  22. class CheckMain {
  23. }
  24. CheckMain.Creat = false;
  25. class Main {
  26. constructor() {
  27. if (CheckMain.Creat)
  28. return;
  29. CheckMain.Creat = true;
  30. if (window["Laya3D"])
  31. Laya3D.init(GameConfig.width, GameConfig.height);
  32. else
  33. Laya.init(GameConfig.width, GameConfig.height, Laya["WebGL"]);
  34. Laya["Physics"] && Laya["Physics"].enable();
  35. Laya["DebugPanel"] && Laya["DebugPanel"].enable();
  36. Laya.stage.scaleMode = GameConfig.scaleMode;
  37. Laya.stage.screenMode = GameConfig.screenMode;
  38. Laya.stage.alignV = GameConfig.alignV;
  39. Laya.stage.alignH = GameConfig.alignH;
  40. Laya.URL.exportSceneToJson = GameConfig.exportSceneToJson;
  41. if (GameConfig.debug || Laya.Utils.getQueryString("debug") == "true")
  42. Laya.enableDebugPanel();
  43. if (GameConfig.physicsDebug && Laya["PhysicsDebugDraw"])
  44. Laya["PhysicsDebugDraw"].enable();
  45. if (GameConfig.stat)
  46. Laya.Stat.show();
  47. Laya.alertGlobalError = true;
  48. if (Laya.Browser.onWeiXin) {
  49. Laya.Browser.window.wx.showShareMenu({
  50. withShareTicket: true
  51. });
  52. Laya.Browser.window.wx.onShareAppMessage(function () {
  53. return {
  54. title: "试一下你的脑力能到第几关",
  55. imageUrl: "Game/res/Share/fx.png",
  56. };
  57. });
  58. Laya.Browser.window.wx.onShow((option) => {
  59. var shareTicket = option.shareTicket;
  60. var userId = option.query.userId;
  61. var shareTitle = option.query.shareTitle;
  62. Main.SceneNum = option.scene;
  63. WXSDK.querychannel = option.query.channel;
  64. WXSDK.shareOpenId = option.query.userId;
  65. console.log("option---", option);
  66. console.log("scene:", option.scene);
  67. if (WXSDK.querychannel != null) {
  68. console.log("onShow channel is:", WXSDK.querychannel);
  69. }
  70. if (option.referrerInfo) {
  71. WXSDK.referrerInfoappId = option.referrerInfo.appId;
  72. console.log("onShow appId is:", option.referrerInfo.appId);
  73. }
  74. });
  75. const updateManager = Laya.Browser.window.wx.getUpdateManager();
  76. updateManager.onCheckForUpdate(function (res) {
  77. console.log("最新版本:" + res.hasUpdate);
  78. });
  79. updateManager.onUpdateReady(function () {
  80. Laya.Browser.window.wx.showModal({
  81. showCancel: false,
  82. title: '更新提示',
  83. content: '新版本已经准备好,是否重启应用?',
  84. success(res) {
  85. updateManager.applyUpdate();
  86. },
  87. fail(res) {
  88. updateManager.applyUpdate();
  89. }
  90. });
  91. });
  92. }
  93. Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION);
  94. }
  95. onVersionLoaded() {
  96. Laya.AtlasInfoManager.enable("fileconfig.json", Laya.Handler.create(this, this.onConfigLoaded));
  97. }
  98. onConfigLoaded() {
  99. new LoadView();
  100. }
  101. }
  102. Main.Ver = "1.0.0";
  103. Main.CFG = "123";
  104. Main.SceneNum = "000";
  105. new Main();
  106. var AccountUser;
  107. (function (AccountUser) {
  108. AccountUser[AccountUser["buyed_kun"] = 0] = "buyed_kun";
  109. AccountUser[AccountUser["diamond"] = 1] = "diamond";
  110. AccountUser[AccountUser["equip_themes"] = 2] = "equip_themes";
  111. AccountUser[AccountUser["favorite_times"] = 3] = "favorite_times";
  112. AccountUser[AccountUser["game_times"] = 4] = "game_times";
  113. AccountUser[AccountUser["get_themes"] = 5] = "get_themes";
  114. AccountUser[AccountUser["list_kun"] = 6] = "list_kun";
  115. AccountUser[AccountUser["moeny"] = 7] = "moeny";
  116. AccountUser[AccountUser["progress_themes"] = 8] = "progress_themes";
  117. AccountUser[AccountUser["revival"] = 9] = "revival";
  118. AccountUser[AccountUser["stage"] = 10] = "stage";
  119. })(AccountUser || (AccountUser = {}));
  120. class PlayerData {
  121. constructor(_token, _config, _appSetting, _user, _userbase, _useInvite, _user_stage = null, _user_sign, _user_achievement, lottery) {
  122. this.openid = "";
  123. this.userId = "";
  124. this.jianglidic = {};
  125. this.shitidic = {};
  126. this.chengjiuliebiao = {};
  127. this.zhengshu = _token;
  128. this.netzheshe = _appSetting;
  129. this.account = _user;
  130. this.accountssss = _userbase;
  131. this.qiandao = _user_sign;
  132. this.renwu = _user_achievement;
  133. this.userId = this.account["user_id"];
  134. this.openid = this.accountssss["openid"];
  135. this.m_invite = _useInvite;
  136. this.lottery = lottery;
  137. console.log("user_id:" + this.userId);
  138. }
  139. GainCollocation(_type) {
  140. return this.peizhis[_type];
  141. }
  142. GainAccount(_type) {
  143. return this.account[_type];
  144. }
  145. get fenxiang() {
  146. return this.netzheshe["share"] == "1";
  147. }
  148. get fenxiangneirong() {
  149. return this.netzheshe["sharecontent"];
  150. }
  151. get fuhuocishu() {
  152. return Number(this.netzheshe["revivenum"]);
  153. }
  154. get wudishijian() {
  155. return Number(this.netzheshe["Invincibletime"]);
  156. }
  157. get wudaoshijian() {
  158. return Number(this.netzheshe["cheattime"]);
  159. }
  160. get banner() {
  161. return this.netzheshe["banner"] == "1";
  162. }
  163. get video() {
  164. return this.netzheshe["video"] == "1";
  165. }
  166. get wudao() {
  167. return this.netzheshe["cheat"] == "1";
  168. }
  169. get jiancechangjin() {
  170. return this.netzheshe["checkscence"] == 1;
  171. }
  172. get reviverate() {
  173. return Number(this.netzheshe["revive"]);
  174. }
  175. get uintid() {
  176. return this.netzheshe["uintid"];
  177. }
  178. get music() {
  179. return this.netzheshe["music"] == "1";
  180. }
  181. get skin() {
  182. return this.netzheshe["skinget"] == "1";
  183. }
  184. get aicheatspeed() {
  185. return Number(this.netzheshe["aicheatspeed"]);
  186. }
  187. get aispeedtime() {
  188. return Number(this.netzheshe["aispeedtime"]);
  189. }
  190. get videoshare() {
  191. return this.netzheshe["videoshare"] == "1";
  192. }
  193. get trial() {
  194. return this.netzheshe["trial"] == "1";
  195. }
  196. get invite() {
  197. return this.netzheshe["invite"] == 1;
  198. }
  199. get re() {
  200. return this.netzheshe["re"] == 1;
  201. }
  202. get autosign() {
  203. return this.netzheshe["autosign"] == 1;
  204. }
  205. get showgift() {
  206. return this.netzheshe["showgift"] == 1;
  207. }
  208. get showshop() {
  209. return this.netzheshe["showshop"] == 1;
  210. }
  211. get lotteryTimer() {
  212. if (this.netzheshe["lotteryTimer"])
  213. return Number(this.netzheshe["lotteryTimer"]);
  214. return 0;
  215. }
  216. get falldownline() {
  217. return this.netzheshe["FallDownLine"];
  218. }
  219. get Restitution() {
  220. return this.netzheshe["restitution"];
  221. }
  222. get MergeSpeed() {
  223. return this.netzheshe["MergeSpeed"];
  224. }
  225. get CheckLose() {
  226. return this.netzheshe["CheckLose"];
  227. }
  228. get Save() {
  229. return this.netzheshe["Save"];
  230. }
  231. get GuideHeight() {
  232. return this.netzheshe["GuideHeight"];
  233. }
  234. get ShakeNum() {
  235. return this.netzheshe["ShakeNum"];
  236. }
  237. get touchsize() {
  238. return Number(this.netzheshe["touchsize"]);
  239. }
  240. get touchsmoothness() {
  241. return Number(this.netzheshe["touchsmoothness"]);
  242. }
  243. GainQinDao(_key) {
  244. return this.qiandao[_key];
  245. }
  246. GainShiTi(_key, shuxing) {
  247. return this.shitidic[_key][shuxing];
  248. }
  249. GainJiangLi(_rewardid) {
  250. var reward = this.jianglidic[_rewardid];
  251. return reward;
  252. }
  253. GetPropNum(_index) {
  254. var type = this.account["functions"];
  255. var num = type[_index.toString()];
  256. if (num) {
  257. return num;
  258. }
  259. else {
  260. return 0;
  261. }
  262. }
  263. HasRole(_id) {
  264. var data = this.GainAccount("get_themes");
  265. for (var i = 0; i < data.length; i++) {
  266. var hd = data[i];
  267. if (_id == hd) {
  268. return true;
  269. }
  270. }
  271. return false;
  272. }
  273. HasGun(_id) {
  274. var data = this.GainAccount("functions");
  275. for (var i = 0; i < data.length; i++) {
  276. var hd = data[i];
  277. if (_id == hd) {
  278. return true;
  279. }
  280. }
  281. return false;
  282. }
  283. GetProgress(_id) {
  284. var config = this.account["progress_themes"];
  285. var progress = config[_id] ? config[_id] : 0;
  286. return progress;
  287. }
  288. GetJiangLiLieBiao() {
  289. var peiz = this.GainCollocation("rewards");
  290. for (var key in peiz) {
  291. this.jianglidic[peiz[key].id] = peiz[key];
  292. }
  293. }
  294. GetShiTiLieBiao() {
  295. var peiz = this.GainCollocation("entity");
  296. for (var key in peiz) {
  297. this.shitidic[peiz[key].entity_id] = peiz[key];
  298. }
  299. }
  300. GetChengJiuLieBiao() {
  301. var shujiu = this.GainCollocation("achievement");
  302. var aadsadsdas = {};
  303. for (var key1 in shujiu) {
  304. var type1 = shujiu[key1].type;
  305. if (aadsadsdas[type1]) {
  306. continue;
  307. }
  308. var fasas = [];
  309. for (var key2 in shujiu) {
  310. var type2 = shujiu[key2].type;
  311. if (type1 == type2) {
  312. fasas.push(shujiu[key2]);
  313. }
  314. }
  315. aadsadsdas[type1] = fasas;
  316. }
  317. this.chengjiuliebiao = aadsadsdas;
  318. }
  319. }
  320. var HttpRequest = Laya.HttpRequest;
  321. var Event = Laya.Event;
  322. const BlastToMergeApi = "https://btmapi.xwxgame.com/";
  323. class BlastToMerge {
  324. }
  325. BlastToMerge.DengLu = "user/login";
  326. BlastToMerge.KaiShi = "game/start";
  327. BlastToMerge.JieShu = "game/play";
  328. BlastToMerge.Use = "game/use";
  329. BlastToMerge.GetProgress = "game/progress";
  330. BlastToMerge.Save = "game/save";
  331. BlastToMerge.WithDraw = "qtt/withdraw";
  332. BlastToMerge.CheckCoin = "qtt/balance";
  333. BlastToMerge.GetCoin = "qtt/rewards";
  334. BlastToMerge.QianDao = "sign/sign";
  335. BlastToMerge.Chengjiu = "achievement/getRewards";
  336. BlastToMerge.Config = "config/table";
  337. BlastToMerge.FenXiang = "fission/share";
  338. BlastToMerge.LiXian = "fission/offline";
  339. BlastToMerge.vd = "fission/vd";
  340. BlastToMerge.FuHuo = "game/revival";
  341. BlastToMerge.gadagdag = "treasure/click";
  342. BlastToMerge.Invite = "invite/getRewards";
  343. BlastToMerge.Lottery = "lottery/lottery";
  344. BlastToMerge.ShareGetSkin = "theme/fission";
  345. BlastToMerge.WearEquip = "theme/equip";
  346. BlastToMerge.BuyEquip = "theme/buy";
  347. BlastToMerge.ShouQuan = "user/auth";
  348. BlastToMerge.JinBi = "user/sync";
  349. class ServerManager {
  350. constructor() { }
  351. static get Instance() {
  352. if (ServerManager.ins) {
  353. return ServerManager.ins;
  354. }
  355. else {
  356. return new ServerManager();
  357. }
  358. }
  359. Login(progresscb, completecb, errorcb) {
  360. var Account = AccountManager.Instance;
  361. var ver = Main.Ver;
  362. let Data = `code=${Account.code}&nickname=${Account.nickName}&avatar=${Account.avatarUrl}&gender=${Account.gender}&country=${Account.country}&province=${Account.province}&city=${Account.city}& device=${Account.device}$&share_id=${Account.share_id}&scene=${Account.scene}&v=${ver}`;
  363. let httpRequest = new HttpRequest();
  364. httpRequest.once(Event.PROGRESS, this, this.Progress, [progresscb, httpRequest]);
  365. httpRequest.once(Event.COMPLETE, this, this.Complete, [completecb, httpRequest]);
  366. httpRequest.once(Event.ERROR, this, this.Errorcb, [errorcb, httpRequest]);
  367. httpRequest.send(BlastToMergeApi + BlastToMerge.DengLu, Data, "post", "text");
  368. }
  369. Progress(_progresscb, _httpreq) {
  370. if (_progresscb) {
  371. _progresscb.run();
  372. }
  373. }
  374. Complete(_completecb, _httpreq) {
  375. let data = JSON.parse(_httpreq.data);
  376. console.log(data);
  377. if (data["code"] != "0") {
  378. console.log("登录异常错误!错误信息sssssssss:", _httpreq.data["code"]);
  379. return;
  380. }
  381. console.log("-----------sss", data["t"]);
  382. AccountManager.Instance.SFSFSF = data["t"];
  383. this.RessetConfig(data, _completecb);
  384. }
  385. RessetConfig(data, completecb) {
  386. AccountManager.Instance.ReSetting(data, (flag) => {
  387. if (flag) {
  388. completecb.runWith(data);
  389. }
  390. else {
  391. this.RessetConfig(data, completecb);
  392. }
  393. });
  394. }
  395. Errorcb(_errorcb, _httpreq) {
  396. if (_errorcb != null) {
  397. _errorcb.runWith(_httpreq);
  398. }
  399. }
  400. SendHttp(protocol, param, completecb, errorcb, hasToken = true) {
  401. let sfaasfsfa = "";
  402. let daadsads = BlastToMergeApi + protocol;
  403. if (hasToken == true) {
  404. sfaasfsfa = `token=${AccountManager.Instance.curplayerData.zhengshu}&`;
  405. }
  406. if (protocol == BlastToMerge.KaiShi || protocol == BlastToMerge.JieShu || protocol == BlastToMerge.vd || protocol == BlastToMerge.Lottery) {
  407. let asddsa = "abcdefghijkimnopqrstuvwxyz0123456789";
  408. let adsassda = "{";
  409. let saafsafs = "";
  410. for (let i = 0; i < 4; i++) {
  411. saafsafs += asddsa[Math.floor(Math.random() * 100) % asddsa.length];
  412. }
  413. for (let i = 0; i < param.length; i++) {
  414. for (let key in param[i]) {
  415. adsassda += `\"${key}\":\"${param[i][key]}\"`;
  416. }
  417. if (i < param.length - 1) {
  418. adsassda += ",";
  419. }
  420. else {
  421. adsassda += "}";
  422. }
  423. }
  424. sfaasfsfa += "_r=" + saafsafs + this.SFGSGSG(adsassda);
  425. }
  426. else {
  427. if (param != null) {
  428. for (let i = 0; i < param.length; i++) {
  429. for (let key in param[i]) {
  430. let val = param[i][key];
  431. sfaasfsfa += `${key}=${val}`;
  432. if (i < param.length - 1) {
  433. sfaasfsfa += "&";
  434. }
  435. }
  436. }
  437. }
  438. }
  439. let httpRequest = new HttpRequest();
  440. httpRequest.once(Event.COMPLETE, this, this.onHttpRequestComplete, [completecb, errorcb, httpRequest]);
  441. httpRequest.once(Event.ERROR, this, this.Errorcb, [errorcb, httpRequest]);
  442. httpRequest.send(daadsads, sfaasfsfa, "post", "text");
  443. }
  444. onHttpRequestComplete(succeedcb, failurecb, httpRequest) {
  445. let data = JSON.parse(httpRequest.data);
  446. if (data["code"] == 0) {
  447. AccountManager.Instance.ReSetting(data);
  448. if (succeedcb != null) {
  449. succeedcb.runWith(data);
  450. }
  451. }
  452. else {
  453. if (failurecb != null) {
  454. failurecb.runWith(data);
  455. }
  456. console.log("Error! Http request complete error, code: " + data["code"] + " message: " + data["message"]);
  457. }
  458. }
  459. SFGSGSG(str) {
  460. var c1, c2, c3;
  461. var SFSFFSFSFSFS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  462. var i = 0, len = str.length, SFFSSFFS = '';
  463. while (i < len) {
  464. c1 = str.charCodeAt(i++) & 0xff;
  465. if (i == len) {
  466. SFFSSFFS += SFSFFSFSFSFS.charAt(c1 >> 2);
  467. SFFSSFFS += SFSFFSFSFSFS.charAt((c1 & 0x3) << 4);
  468. SFFSSFFS += "==";
  469. break;
  470. }
  471. c2 = str.charCodeAt(i++);
  472. if (i == len) {
  473. SFFSSFFS += SFSFFSFSFSFS.charAt(c1 >> 2);
  474. SFFSSFFS += SFSFFSFSFSFS.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
  475. SFFSSFFS += SFSFFSFSFSFS.charAt((c2 & 0xF) << 2);
  476. SFFSSFFS += "=";
  477. break;
  478. }
  479. c3 = str.charCodeAt(i++);
  480. SFFSSFFS += SFSFFSFSFSFS.charAt(c1 >> 2);
  481. SFFSSFFS += SFSFFSFSFSFS.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
  482. SFFSSFFS += SFSFFSFSFSFS.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >> 6));
  483. SFFSSFFS += SFSFFSFSFSFS.charAt(c3 & 0x3F);
  484. }
  485. return SFFSSFFS;
  486. }
  487. }
  488. class AccountManager {
  489. constructor(_code, _userinfo, _nickname, _avatarurl, _gender, _province, _city, _country, _device, _shareid, _scene, _v) {
  490. this.createTime = Laya.timer.currTimer;
  491. AccountManager.ins = this;
  492. this.code = _code;
  493. this.userInfo = _userinfo;
  494. this.nickName = _nickname;
  495. this.avatarUrl = _avatarurl;
  496. this.gender = _gender;
  497. this.province = _province;
  498. this.city = _city;
  499. this.country = _country;
  500. this.device = _device;
  501. this.share_id = _shareid;
  502. this.scene = _scene;
  503. this.v = _v;
  504. }
  505. static get Instance() {
  506. if (AccountManager.ins == null) {
  507. new AccountManager("222222", "你找谁?", "1233", "123", 1, "中国", "上海", "上海", "iphone6s", "123", "123", "123");
  508. }
  509. return AccountManager.ins;
  510. }
  511. ReSetting(data, cb = null) {
  512. var zhengshu = data["token"];
  513. var netset = data["app_setting"];
  514. var user = data["user"];
  515. var jichu = data["user_base"];
  516. var qiandao = data["user_sign"];
  517. var chengjiu = data["user_achievement"];
  518. var invite = data["user_invite"];
  519. var lottery = data["user_lottery"];
  520. if (this.curplayerData == null) {
  521. this.curplayerData = new PlayerData(zhengshu, null, netset, user, jichu, invite, null, qiandao, chengjiu, lottery);
  522. this.JundgCfg(data.table_version, cb);
  523. }
  524. else {
  525. if (netset) {
  526. this.curplayerData.netzheshe = netset;
  527. }
  528. if (user) {
  529. this.curplayerData.account = user;
  530. }
  531. if (jichu) {
  532. this.curplayerData.accountssss = jichu;
  533. }
  534. if (qiandao) {
  535. this.curplayerData.qiandao = qiandao;
  536. }
  537. if (chengjiu) {
  538. this.curplayerData.renwu = chengjiu;
  539. }
  540. }
  541. }
  542. JundgCfg(ver, callball) {
  543. var cfg = Laya.LocalStorage.getJSON(Main.CFG);
  544. if (cfg) {
  545. if (cfg.VER == ver) {
  546. console.log("已经拥有,不用更新");
  547. this.SetCfg(cfg);
  548. if (callball)
  549. callball(true);
  550. }
  551. else {
  552. console.log("cfg存在但是过期了");
  553. Laya.LocalStorage.removeItem(Main.CFG);
  554. ServerManager.Instance.SendHttp(BlastToMerge.Config, null, Laya.Handler.create(this, (data) => {
  555. data.configs.VER = ver;
  556. Laya.LocalStorage.setJSON(Main.CFG, data.configs);
  557. this.SetCfg(data.configs);
  558. if (callball)
  559. callball(true);
  560. }), Laya.Handler.create(this, (data) => {
  561. console.log("配置获取失败" + data);
  562. if (callball)
  563. callball(false);
  564. return;
  565. }));
  566. }
  567. }
  568. else {
  569. console.log("本地没有cfg");
  570. ServerManager.Instance.SendHttp(BlastToMerge.Config, null, Laya.Handler.create(this, (data) => {
  571. data.configs.VER = ver;
  572. Laya.LocalStorage.setJSON(Main.CFG, data.configs);
  573. this.SetCfg(data.configs);
  574. if (callball)
  575. callball(true);
  576. }), Laya.Handler.create(this, (data) => {
  577. console.log("配置获取失败" + data);
  578. }));
  579. }
  580. }
  581. SetCfg(data) {
  582. this.curplayerData.peizhis = data;
  583. this.curplayerData.GetJiangLiLieBiao();
  584. this.curplayerData.GetShiTiLieBiao();
  585. this.curplayerData.GetChengJiuLieBiao();
  586. }
  587. RessetConfig() {
  588. ServerManager.Instance.SendHttp(BlastToMerge.Config, null, Laya.Handler.create(this, (data) => {
  589. this.curplayerData.peizhis = data["configs"];
  590. this.curplayerData.GetJiangLiLieBiao();
  591. this.curplayerData.GetShiTiLieBiao();
  592. this.curplayerData.GetChengJiuLieBiao();
  593. }), null);
  594. }
  595. get ServerTime() {
  596. let time = Laya.timer.currTimer;
  597. let stime = this.SFSFSF + Math.ceil((time - this.createTime) / 1000);
  598. return stime;
  599. }
  600. }
  601. class RankPan {
  602. constructor() {
  603. this.Width = 0;
  604. this.Height = 0;
  605. this.shareCanvas = Laya.Browser.window.sharedCanvas;
  606. this.ShareSprite = new Laya.Sprite();
  607. this.ShareSprite.zOrder = 1008;
  608. this.ShareSprite.pos(0, 0);
  609. this.ShareSprite.cacheAs = "normal";
  610. Laya.stage.addChild(this.ShareSprite);
  611. this.SSSS = new Laya.Texture2D();
  612. this.TTTT = new Laya.Texture(this.SSSS);
  613. }
  614. ShuShi(_width = 720, _heigth = 1280) {
  615. this.Width = Laya.stage.width;
  616. this.Height = Laya.stage.height;
  617. this.shareCanvas.width = _width;
  618. this.shareCanvas.height = _heigth;
  619. }
  620. open() {
  621. Laya.timer.frameLoop(10, this, this.gengxin);
  622. this.ShareSprite.visible = true;
  623. }
  624. close() {
  625. Laya.timer.clear(this, this.gengxin);
  626. this.ShareSprite.visible = false;
  627. }
  628. gengxin() {
  629. this.HuaTu();
  630. }
  631. HuaTu() {
  632. this.SSSS.loadImageSource(this.shareCanvas);
  633. this.TTTT.setTo(this.SSSS);
  634. this.ShareSprite.graphics.clear();
  635. this.ShareSprite.graphics.drawTexture(this.TTTT, 0, 0, this.TTTT.width, this.TTTT.height);
  636. }
  637. draw2d() {
  638. this.AAAA.drawImage(this.shareCanvas, 0, 0, this.shareCanvas.width, this.shareCanvas.height);
  639. }
  640. }
  641. class RankSDK {
  642. constructor() { }
  643. static ShuShi() {
  644. if (!Laya.Browser.onWeiXin)
  645. return;
  646. this.SetScreen();
  647. this.RankPan = new RankPan();
  648. this.RankPan.ShuShi();
  649. }
  650. static OpenRank(keyName = "Level") {
  651. if (Laya.Browser.onWeiXin) {
  652. this.Send(keyName, "show_friend_rank");
  653. console.log("打开排行榜---openrank");
  654. }
  655. }
  656. static Leftpe() {
  657. if (Laya.Browser.onWeiXin)
  658. this.Send("", "show_up_page");
  659. }
  660. static Rightpe() {
  661. if (Laya.Browser.onWeiXin)
  662. this.Send("", "show_next_page");
  663. }
  664. static OpenPan() {
  665. console.log("Laya.Browser.onWeiXin", Laya.Browser.onWeiXin);
  666. if (Laya.Browser.window.wx)
  667. this.RankPan.open();
  668. }
  669. static ClosePan() {
  670. if (Laya.Browser.onWeiXin)
  671. this.RankPan.close();
  672. }
  673. static SetScreen() {
  674. if (!Laya.Browser.onWeiXin)
  675. return;
  676. let width = Laya.stage.width;
  677. let height = Laya.stage.height;
  678. let data = { width: width, height: height };
  679. this.Send("", "canvase_width_height", data);
  680. }
  681. static Send(keyName, action, data) {
  682. console.log("消息发送成功0---send");
  683. Laya.Browser.window.wx.postMessage({
  684. keyName: keyName,
  685. action: action,
  686. data: data
  687. });
  688. console.log("消息发送成功---send");
  689. }
  690. static SetStage(keyName, value, callBack = null) {
  691. let obj = [{
  692. key: keyName,
  693. value: value
  694. }];
  695. Laya.Browser.window.wx.setUserCloudStorage({
  696. KVDataList: obj,
  697. success: function (res) {
  698. console.log("数据上传成功" + res);
  699. if (callBack) {
  700. callBack();
  701. }
  702. },
  703. fail: function (res) {
  704. console.log("数据上传失败" + res);
  705. if (callBack) {
  706. callBack();
  707. }
  708. }
  709. });
  710. }
  711. }
  712. class WXSDK {
  713. constructor() {
  714. WXSDK.ins = this;
  715. }
  716. static get Instance() {
  717. if (WXSDK.ins) {
  718. return WXSDK.ins;
  719. }
  720. else {
  721. return new WXSDK();
  722. }
  723. }
  724. static Init() {
  725. Laya.Browser.window.wx.showShareMenu({
  726. withShareTicket: true
  727. });
  728. Laya.Browser.window.wx.onShareAppMessage(function () {
  729. return {
  730. title: "",
  731. imageUrl: "gameResources/res/share/sharepictrue.png",
  732. };
  733. });
  734. Laya.Browser.window.wx.onShow((option) => {
  735. var shareTicket = option.shareTicket;
  736. var userId = option.query.userId;
  737. var shareTitle = option.query.shareTitle;
  738. Main.SceneNum = option.scene;
  739. WXSDK.querychannel = option.query.channel;
  740. WXSDK.shareOpenId = option.query.userId;
  741. console.log("option---", option);
  742. console.log("scene:", option.scene);
  743. if (WXSDK.querychannel != null) {
  744. console.log("onShow channel is:", WXSDK.querychannel);
  745. }
  746. if (option.referrerInfo) {
  747. WXSDK.referrerInfoappId = option.referrerInfo.appId;
  748. console.log("onShow appId is:", option.referrerInfo.appId);
  749. }
  750. });
  751. }
  752. static DengLu(_complete) {
  753. var that = this;
  754. Laya.Browser.window.wx.login({
  755. success: function (res) {
  756. if (res.code) {
  757. console.log("微信登陆成功----");
  758. that.codeValue = res.code;
  759. RankSDK.ShuShi();
  760. console.log("shareid:" + WXSDK.shareOpenId);
  761. new AccountManager(res.code, "", "", "", 0, "", "", "", "", WXSDK.shareOpenId, WXSDK.shareOpenId, Main.Ver);
  762. _complete(res);
  763. }
  764. else {
  765. WXSDK.DengLu(WXSDK.DengLu);
  766. console.log('wx no code' + res.errMsg);
  767. }
  768. },
  769. fail: function (res) { console.log("wx.login: failed, res=" + res); }
  770. });
  771. }
  772. static ShowTxt(text) {
  773. if (Laya.Browser.window.wx) {
  774. Laya.Browser.window.wx.showToast({ title: text });
  775. }
  776. else {
  777. console.log(text);
  778. }
  779. }
  780. static ShortShake() {
  781. Laya.Browser.window.wx.vibrateShort({});
  782. }
  783. static LongShake() {
  784. Laya.Browser.window.wx.vibrateLong({});
  785. }
  786. static Shake(_short = true) {
  787. if (Laya.Browser.onWeiXin && WXSDK.shake) {
  788. if (_short) {
  789. this.ShortShake();
  790. }
  791. else {
  792. this.LongShake();
  793. }
  794. }
  795. }
  796. static LoadSubPackage(name, _complete) {
  797. if (Laya.Browser.onWeiXin) {
  798. const loadTask = Laya.Browser.window.wx.loadSubpackage({
  799. name: 'Game',
  800. success: function (res) {
  801. _complete && _complete(true);
  802. console.log("分包加载成功");
  803. },
  804. fail: function (res) {
  805. _complete && _complete(false);
  806. console.log("分包加载失败");
  807. }
  808. });
  809. }
  810. else {
  811. console.log("未进行分包加载");
  812. _complete && _complete(true);
  813. }
  814. }
  815. static UpdateScore(_level) {
  816. var kvDataList = new Array();
  817. let date = new Date().getTime();
  818. var myValue = JSON.stringify({
  819. "wxgame": {
  820. "Level": _level,
  821. "update_time": date.toString(),
  822. }
  823. });
  824. kvDataList.push({ key: "Level", value: myValue });
  825. if (Laya.Browser.onWeiXin) {
  826. Laya.Browser.window.wx.setUserCloudStorage({
  827. KVDataList: kvDataList,
  828. success: r => {
  829. console.log("KVDATALIST---", kvDataList);
  830. console.log("上传分数成功:" + _level);
  831. }
  832. });
  833. }
  834. }
  835. IsNeedUpdate() {
  836. if (!Laya.Browser.onWeiXin)
  837. return;
  838. const updateManager = Laya.Browser.window.wx.getUpdateManager();
  839. updateManager.onCheckForUpdate(function (res) {
  840. console.log("最新版本:" + res.hasUpdate);
  841. });
  842. updateManager.onUpdateReady(function () {
  843. Laya.Browser.window.wx.showModal({
  844. showCancel: false,
  845. title: '更新提示',
  846. content: '新版本已经准备好,是否重启应用?',
  847. success(res) {
  848. updateManager.applyUpdate();
  849. },
  850. fail(res) {
  851. updateManager.applyUpdate();
  852. }
  853. });
  854. });
  855. }
  856. }
  857. WXSDK.codeValue = "";
  858. WXSDK.shareOpenId = "";
  859. WXSDK.openId = 0;
  860. WXSDK.shareScene = "";
  861. WXSDK.uid = "123";
  862. WXSDK.querychannel = "";
  863. WXSDK.referrerInfoappId = "";
  864. WXSDK.shake = true;
  865. var REG = Laya.ClassUtils.regClass;
  866. var ui;
  867. (function (ui) {
  868. class FailureViewUI extends Laya.Scene {
  869. constructor() { super(); }
  870. createChildren() {
  871. super.createChildren();
  872. this.createView(FailureViewUI.uiView);
  873. }
  874. }
  875. FailureViewUI.uiView = { "type": "Scene", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 0, "x": 0, "var": "BG", "top": 0, "skin": "WinView/black.png", "sizeGrid": "12,14,14,13", "right": 0, "left": 0, "bottom": 0 }, "compId": 8 }, { "type": "Image", "props": { "y": 525, "x": 360, "width": 720, "skin": "ReviveView/fuhuo-1-1.png", "height": 994, "anchorY": 0.5, "anchorX": 0.5 }, "compId": 5, "child": [{ "type": "Image", "props": { "y": 252, "x": 285, "skin": "FailureView/shibai-1-1.png" }, "compId": 4 }, { "type": "Button", "props": { "y": 506, "x": 360, "var": "BackBtn", "stateNum": 1, "skin": "FailureView/shibai-1-2.png", "anchorY": 0.5, "anchorX": 0.5 }, "compId": 6 }, { "type": "Button", "props": { "y": 627, "x": 360, "var": "TryBtn", "stateNum": 1, "skin": "FailureView/shibai-1-3.png", "anchorY": 0.5, "anchorX": 0.5 }, "compId": 7 }] }], "loadList": ["WinView/black.png", "ReviveView/fuhuo-1-1.png", "FailureView/shibai-1-1.png", "FailureView/shibai-1-2.png", "FailureView/shibai-1-3.png"], "loadList3D": [] };
  876. ui.FailureViewUI = FailureViewUI;
  877. REG("ui.FailureViewUI", FailureViewUI);
  878. class GetRewardViewUI extends Laya.Scene {
  879. constructor() { super(); }
  880. createChildren() {
  881. super.createChildren();
  882. this.createView(GetRewardViewUI.uiView);
  883. }
  884. }
  885. GetRewardViewUI.uiView = { "type": "Scene", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 488, "x": 360, "width": 696, "skin": "WinView/guoguan-1-7.png", "pivotY": 376, "pivotX": 348, "height": 720 }, "compId": 3, "child": [{ "type": "Image", "props": { "y": 182, "x": 328, "width": 126, "var": "skillicon", "pivotY": 62, "pivotX": 63, "height": 124 }, "compId": 4 }, { "type": "Text", "props": { "y": 461, "x": 348, "width": 338, "valign": "middle", "text": "双倍道具", "pivotY": 44, "pivotX": 169, "height": 88, "fontSize": 40, "align": "left", "runtime": "laya.display.Text" }, "compId": 6 }] }, { "type": "Button", "props": { "y": 759, "x": 360, "width": 264, "var": "GetBtn", "stateNum": 1, "skin": "WinView/guoguan-1-6.png", "pivotY": 53, "pivotX": 132, "height": 106 }, "compId": 5 }], "loadList": ["WinView/guoguan-1-7.png", "WinView/guoguan-1-6.png"], "loadList3D": [] };
  886. ui.GetRewardViewUI = GetRewardViewUI;
  887. REG("ui.GetRewardViewUI", GetRewardViewUI);
  888. class InGameSceneUI extends Laya.Scene {
  889. constructor() { super(); }
  890. createChildren() {
  891. super.createChildren();
  892. this.createView(InGameSceneUI.uiView);
  893. }
  894. }
  895. InGameSceneUI.uiView = { "type": "Scene", "props": { "width": 720, "pref": "@Prefab:Pr", "height": 1280, "autoDestroyAtClosed": true }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 892, "x": 0, "width": 729, "visible": true, "var": "BottomCollider", "skin": "InGameView/colliderbottom.png", "scaleY": 1, "scaleX": 1, "name": "BottomCollider", "height": 211, "bottom": 177, "alpha": 1 }, "compId": 58, "child": [{ "type": "Script", "props": { "points": "-2,-1,78,-1,78,65,83,81,110,108,147,129,190,145,248,157,291,164,353,166,423,164,486,156,551,139,596,119,626,96,642,72,643,0,732,0", "runtime": "laya.physics.ChainCollider" }, "compId": 200 }, { "type": "Script", "props": { "type": "static", "runtime": "laya.physics.RigidBody" }, "compId": 201 }] }, { "type": "Image", "props": { "y": 937, "x": 720, "width": 82, "var": "RightCollider", "skin": "InGameView/0.png", "pivotY": 939, "pivotX": 79, "name": "RightCollider", "height": 957, "alpha": 1 }, "compId": 55, "child": [{ "type": "Script", "props": { "y": 0, "x": 0, "points": "230,-454,82,-1,81,1404,2,1405,0,716,1,631,0,571,7,478,23,332,31,235,32,191,31,169,34,143,39,121,49,81,58,36,61,-1,84,0", "runtime": "laya.physics.ChainCollider" }, "compId": 195 }, { "type": "Script", "props": { "type": "static", "runtime": "laya.physics.RigidBody" }, "compId": 196 }] }, { "type": "Image", "props": { "y": 943, "x": 78, "width": 80, "var": "LeftCollider", "skin": "InGameView/1.png", "scaleY": 1, "scaleX": 1, "pivotY": 939, "pivotX": 80, "name": "LeftCollider", "height": 885, "alpha": 1 }, "compId": 52, "child": [{ "type": "Script", "props": { "y": 0, "x": 0, "points": "-153,-466,-1,-5,9,1434,0,-1,15,-1,18,32,25,67,39,115,44,144,46,165,46,198,49,254,57,312,63,366,80,533,80,678,83,1432", "runtime": "laya.physics.ChainCollider" }, "compId": 197 }, { "type": "Script", "props": { "type": "static", "runtime": "laya.physics.RigidBody" }, "compId": 198 }] }, { "type": "Image", "props": { "y": 0, "x": 0, "var": "BG", "top": 0, "skin": "InGameView/groundplane.png", "sizeGrid": "179,113,184,121", "right": 0, "left": 0, "bottom": 0 }, "compId": 4 }, { "type": "Image", "props": { "x": 78, "width": 514, "skin": "InGameView/borderbottom.png", "scaleX": 1.1, "name": "bottom", "height": 160, "bottom": 222 }, "compId": 37 }, { "type": "Image", "props": { "y": 0, "x": 14, "width": 346, "top": 0, "skin": "InGameView/border2.png", "scaleY": 2, "scaleX": 2, "name": "area", "bottom": 380 }, "compId": 36 }, { "type": "Image", "props": { "skin": "InGameView/blast-35.png", "right": 0, "name": "prop", "left": 0, "bottom": 0 }, "compId": 3, "child": [{ "type": "Button", "props": { "y": 132, "x": 629, "width": 82, "var": "arrowbtn", "stateNum": 1, "skin": "Skillicon/BoosterArrow1_00239.png", "pivotY": 37, "pivotX": 41, "name": "", "height": 73 }, "compId": 383, "child": [{ "type": "Image", "props": { "y": 62, "x": 84, "width": 29, "skin": "InGameView/blast-45.png", "pivotY": 14, "pivotX": 15, "name": "cycle", "height": 28 }, "compId": 20 }, { "type": "Text", "props": { "y": 64, "x": 84, "width": 32, "var": "Func5num", "valign": "middle", "text": "10", "pivotY": 9, "pivotX": 16, "height": 18, "fontSize": 20, "font": "Microsoft YaHei", "color": "#ffffff", "bold": false, "align": "center", "runtime": "laya.display.Text" }, "compId": 21 }] }, { "type": "Button", "props": { "y": 130, "x": 88, "width": 79, "var": "doublebtn", "stateNum": 1, "skin": "Skillicon/BoosterExplode1_00239.png", "pivotY": 29, "pivotX": 40, "height": 55 }, "compId": 384, "child": [{ "type": "Image", "props": { "y": 57, "x": 80, "width": 29, "skin": "InGameView/blast-45.png", "pivotY": 14, "pivotX": 15, "name": "cycle", "height": 28 }, "compId": 12 }, { "type": "Text", "props": { "y": 60, "x": 79, "width": 28, "var": "Func1num", "valign": "middle", "text": "10", "pivotY": 10, "pivotX": 14, "height": 20, "fontSize": 20, "font": "Microsoft YaHei", "color": "#ffffff", "bold": false, "align": "center", "runtime": "laya.display.Text" }, "compId": 13 }] }, { "type": "Button", "props": { "y": 166, "x": 222, "width": 85, "var": "zhunxin1btn", "stateNum": 1, "skin": "Skillicon/BoosterFire1_00239.png", "pivotY": 40, "pivotX": 43, "height": 80 }, "compId": 385, "child": [{ "type": "Image", "props": { "y": 57, "x": 79, "width": 29, "skin": "InGameView/blast-45.png", "pivotY": 14, "pivotX": 15, "name": "cycle", "height": 28 }, "compId": 14 }, { "type": "Text", "props": { "y": 59.5, "x": 79, "width": 27, "var": "Func2num", "valign": "middle", "text": "10", "pivotY": 12, "pivotX": 14, "height": 23, "fontSize": 20, "font": "Microsoft YaHei", "color": "#ffffff", "bold": false, "align": "center", "runtime": "laya.display.Text" }, "compId": 15 }] }, { "type": "Button", "props": { "y": 175, "x": 361, "width": 77, "var": "zhunxin2btn", "stateNum": 1, "skin": "Skillicon/BoosterShoot1_00240.png", "pivotY": 37, "pivotX": 39, "height": 73 }, "compId": 386, "child": [{ "type": "Image", "props": { "y": 58, "x": 76, "width": 29, "skin": "InGameView/blast-45.png", "pivotY": 14, "pivotX": 15, "name": "cycle", "height": 28 }, "compId": 16 }, { "type": "Text", "props": { "y": 61, "x": 76, "width": 31, "var": "Func3num", "valign": "middle", "text": "10", "pivotY": 11, "pivotX": 16, "height": 22, "fontSize": 20, "font": "Microsoft YaHei", "color": "#ffffff", "bold": false, "align": "center", "runtime": "laya.display.Text" }, "compId": 17 }] }, { "type": "Button", "props": { "y": 165, "x": 499, "width": 68, "var": "hammerbtn", "stateNum": 1, "skin": "Skillicon/BoosterHammer1_00238.png", "pivotY": 39, "pivotX": 34, "height": 78 }, "compId": 388, "child": [{ "type": "Image", "props": { "y": 56, "x": 84, "width": 29, "skin": "InGameView/blast-45.png", "pivotY": 14, "pivotX": 15, "name": "cycle", "height": 28 }, "compId": 18 }, { "type": "Text", "props": { "y": 58, "x": 84, "width": 31, "var": "Func4num", "valign": "middle", "text": "10", "pivotY": 12, "pivotX": 16, "height": 24, "fontSize": 20, "font": "Microsoft YaHei", "color": "#ffffff", "bold": false, "align": "center", "runtime": "laya.display.Text" }, "compId": 19 }] }] }, { "type": "Sprite", "props": { "y": 8, "x": 8, "width": 16, "var": "prefabbox", "pivotY": 8, "pivotX": 8, "height": 16 }, "compId": 677 }, { "type": "ProgressBar", "props": { "x": 360, "width": 281, "var": "LevelProgress", "value": 0, "top": 120, "skin": "InGameView/jindutiao-1-2.png", "pivotY": 22, "pivotX": 141, "height": 44 }, "compId": 574, "child": [{ "type": "Image", "props": { "y": 22, "x": -14, "width": 73, "skin": "InGameView/jindutiao-1-3.png", "pivotY": 37, "pivotX": 37, "height": 73 }, "compId": 570, "child": [{ "type": "FontClip", "props": { "y": 36, "x": 36, "width": 25, "var": "NowLv", "value": "1", "skin": "Ball/43.png", "sheet": "0123456789", "pivotY": 15, "pivotX": 13, "height": 29, "align": "center" }, "compId": 578 }] }, { "type": "Image", "props": { "y": 22, "x": 298, "width": 73, "skin": "InGameView/jindutiao-1-3.png", "pivotY": 37, "pivotX": 37, "height": 73 }, "compId": 571, "child": [{ "type": "FontClip", "props": { "y": 36.5, "x": 36.5, "width": 25, "var": "NextLv", "value": "2", "skin": "Ball/43.png", "sheet": "0123456789", "pivotY": 15, "pivotX": 13, "height": 29, "align": "center" }, "compId": 576 }] }, { "type": "Text", "props": { "y": -22, "x": 38, "width": 117, "var": "NowScore", "valign": "middle", "text": "0", "pivotY": 13, "pivotX": 19, "height": 26, "fontSize": 30, "color": "#ffffff", "align": "right", "runtime": "laya.display.Text" }, "compId": 674 }, { "type": "Text", "props": { "y": -21, "x": 208, "width": 124, "var": "RequireScore", "valign": "middle", "text": "0", "pivotY": 14, "pivotX": 62, "height": 27, "fontSize": 30, "color": "#ffffff", "align": "left", "runtime": "laya.display.Text" }, "compId": 675 }, { "type": "Text", "props": { "y": -34, "x": 136, "width": 10, "text": "/", "height": 25, "fontSize": 30, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 676 }] }, { "type": "Image", "props": { "y": 49, "x": 0, "visible": false, "var": "Effect", "skin": "InGameView/youxinei-1-2.png", "right": 0, "left": 0 }, "compId": 558, "child": [{ "type": "Button", "props": { "y": 883, "x": 360, "width": 298, "var": "EffectBtn", "stateNum": 1, "skin": "InGameView/youxinei-1-5.png", "pivotY": 53, "pivotX": 149, "height": 106 }, "compId": 564 }, { "type": "Image", "props": { "y": 95, "x": 626, "width": 69, "pivotY": 36, "pivotX": 35, "name": "ICON", "height": 72 }, "compId": 565 }, { "type": "Image", "props": { "x": 0, "width": 72, "top": -48, "skin": "InGameView/youxinei-1-1.png", "name": "Left", "height": 1280 }, "compId": 566 }, { "type": "Image", "props": { "x": 684, "width": 72, "top": -48, "skin": "InGameView/youxinei-1-1.png", "rotation": 180, "pivotY": 640, "pivotX": 36, "name": "Right", "height": 1280 }, "compId": 567 }, { "type": "Text", "props": { "y": 52, "x": 318, "width": 153, "valign": "middle", "text": "消除所有的", "pivotY": 28, "pivotX": 77, "name": "describe", "height": 55, "fontSize": 30, "font": "Microsoft YaHei", "color": "#ffffff", "align": "left", "runtime": "laya.display.Text" }, "compId": 579, "child": [{ "type": "Text", "props": { "y": 26, "x": 176, "width": 40, "var": "ClearNum", "valign": "middle", "text": "2", "pivotY": 23, "pivotX": 20, "height": 45, "fontSize": 35, "color": "#ffffff", "align": "center", "runtime": "laya.display.Text" }, "compId": 580 }] }, { "type": "Text", "props": { "y": 52, "x": 362, "width": 241, "valign": "middle", "text": "消除你所砸到的球", "pivotY": 28, "pivotX": 121, "name": "describe2", "height": 55, "fontSize": 30, "font": "Microsoft YaHei", "color": "#ffffff", "align": "left", "runtime": "laya.display.Text" }, "compId": 678 }] }, { "type": "Image", "props": { "x": 311, "width": 124, "visible": false, "var": "Guide", "skin": "InGameView/yindao.png", "pivotY": 32, "pivotX": 31, "height": 148, "bottom": 160 }, "compId": 734, "child": [{ "type": "Image", "props": { "y": -40, "x": -55, "skin": "InGameView/zhujiemian-1-9.png" }, "compId": 736 }] }], "animations": [{ "nodes": [{ "target": 383, "keyframes": { "var": [{ "value": "arrowbtn", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "var", "index": 0 }], "skin": [{ "value": "Skillicon/BoosterArrow1_00239.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 0 }, { "value": "Skillicon/BoosterArrow1_00240.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 1 }, { "value": "Skillicon/BoosterArrow1_00241.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 2 }, { "value": "Skillicon/BoosterArrow1_00242.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 3 }, { "value": "Skillicon/BoosterArrow1_00243.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 4 }, { "value": "Skillicon/BoosterArrow1_00244.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 5 }, { "value": "Skillicon/BoosterArrow1_00245.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 6 }, { "value": "Skillicon/BoosterArrow1_00246.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 7 }, { "value": "Skillicon/BoosterArrow1_00247.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 8 }, { "value": "Skillicon/BoosterArrow1_00248.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 9 }, { "value": "Skillicon/BoosterArrow1_00249.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 10 }, { "value": "Skillicon/BoosterArrow1_00250.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 11 }, { "value": "Skillicon/BoosterArrow1_00251.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 12 }, { "value": "Skillicon/BoosterArrow1_00252.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 13 }, { "value": "Skillicon/BoosterArrow1_00253.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 14 }, { "value": "Skillicon/BoosterArrow1_00254.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 15 }, { "value": "Skillicon/BoosterArrow1_00255.png", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "skin", "index": 16 }], "name": [{ "value": "", "tweenMethod": "linearNone", "tween": false, "target": 383, "key": "name", "index": 0 }] } }], "name": "ani1", "id": 1, "frameRate": 24, "action": 0 }, { "nodes": [{ "target": 384, "keyframes": { "skin": [{ "value": "Skillicon/BoosterExplode1_00239.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 0 }, { "value": "Skillicon/BoosterExplode1_00240.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 1 }, { "value": "Skillicon/BoosterExplode1_00241.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 2 }, { "value": "Skillicon/BoosterExplode1_00242.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 3 }, { "value": "Skillicon/BoosterExplode1_00243.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 4 }, { "value": "Skillicon/BoosterExplode1_00244.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 5 }, { "value": "Skillicon/BoosterExplode1_00245.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 6 }, { "value": "Skillicon/BoosterExplode1_00246.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 7 }, { "value": "Skillicon/BoosterExplode1_00247.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 8 }, { "value": "Skillicon/BoosterExplode1_00248.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 9 }, { "value": "Skillicon/BoosterExplode1_00249.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 10 }, { "value": "Skillicon/BoosterExplode1_00250.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 11 }, { "value": "Skillicon/BoosterExplode1_00251.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 12 }, { "value": "Skillicon/BoosterExplode1_00252.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 13 }, { "value": "Skillicon/BoosterExplode1_00253.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 14 }, { "value": "Skillicon/BoosterExplode1_00254.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 15 }, { "value": "Skillicon/BoosterExplode1_00255.png", "tweenMethod": "linearNone", "tween": false, "target": 384, "key": "skin", "index": 16 }] } }], "name": "ani2", "id": 2, "frameRate": 24, "action": 0 }, { "nodes": [{ "target": 385, "keyframes": { "skin": [{ "value": "Skillicon/BoosterFire1_00239.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 0 }, { "value": "Skillicon/BoosterFire1_00240.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 1 }, { "value": "Skillicon/BoosterFire1_00241.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 2 }, { "value": "Skillicon/BoosterFire1_00242.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 3 }, { "value": "Skillicon/BoosterFire1_00243.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 4 }, { "value": "Skillicon/BoosterFire1_00244.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 5 }, { "value": "Skillicon/BoosterFire1_00245.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 6 }, { "value": "Skillicon/BoosterFire1_00246.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 7 }, { "value": "Skillicon/BoosterFire1_00247.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 8 }, { "value": "Skillicon/BoosterFire1_00248.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 9 }, { "value": "Skillicon/BoosterFire1_00249.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 10 }, { "value": "Skillicon/BoosterFire1_00250.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 11 }, { "value": "Skillicon/BoosterFire1_00251.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 12 }, { "value": "Skillicon/BoosterFire1_00252.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 13 }, { "value": "Skillicon/BoosterFire1_00253.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 14 }, { "value": "Skillicon/BoosterFire1_00254.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 15 }, { "value": "Skillicon/BoosterFire1_00255.png", "tweenMethod": "linearNone", "tween": false, "target": 385, "key": "skin", "index": 16 }] } }], "name": "ani3", "id": 3, "frameRate": 24, "action": 0 }, { "nodes": [{ "target": 386, "keyframes": { "skin": [{ "value": "Skillicon/BoosterShoot1_00240.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 0 }, { "value": "Skillicon/BoosterShoot1_00241.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 1 }, { "value": "Skillicon/BoosterShoot1_00242.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 2 }, { "value": "Skillicon/BoosterShoot1_00243.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 3 }, { "value": "Skillicon/BoosterShoot1_00244.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 4 }, { "value": "Skillicon/BoosterShoot1_00245.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 5 }, { "value": "Skillicon/BoosterShoot1_00246.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 6 }, { "value": "Skillicon/BoosterShoot1_00247.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 7 }, { "value": "Skillicon/BoosterShoot1_00248.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 8 }, { "value": "Skillicon/BoosterShoot1_00249.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 9 }, { "value": "Skillicon/BoosterShoot1_00250.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 10 }, { "value": "Skillicon/BoosterShoot1_00251.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 11 }, { "value": "Skillicon/BoosterShoot1_00252.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 12 }, { "value": "Skillicon/BoosterShoot1_00253.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 13 }, { "value": "Skillicon/BoosterShoot1_00254.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 14 }, { "value": "Skillicon/BoosterShoot1_00255.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 15 }, { "value": "Skillicon/BoosterShoot1_00256.png", "tweenMethod": "linearNone", "tween": false, "target": 386, "key": "skin", "index": 16 }] } }], "name": "ani4", "id": 4, "frameRate": 24, "action": 0 }, { "nodes": [{ "target": 388, "keyframes": { "skin": [{ "value": "Skillicon/BoosterHammer1_00238.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 0 }, { "value": "Skillicon/BoosterHammer1_00239.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 1 }, { "value": "Skillicon/BoosterHammer1_00240.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 2 }, { "value": "Skillicon/BoosterHammer1_00241.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 3 }, { "value": "Skillicon/BoosterHammer1_00242.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 4 }, { "value": "Skillicon/BoosterHammer1_00243.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 5 }, { "value": "Skillicon/BoosterHammer1_00244.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 6 }, { "value": "Skillicon/BoosterHammer1_00245.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 7 }, { "value": "Skillicon/BoosterHammer1_00246.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 8 }, { "value": "Skillicon/BoosterHammer1_00247.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 9 }, { "value": "Skillicon/BoosterHammer1_00248.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 10 }, { "value": "Skillicon/BoosterHammer1_00249.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 11 }, { "value": "Skillicon/BoosterHammer1_00250.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 12 }, { "value": "Skillicon/BoosterHammer1_00251.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 13 }, { "value": "Skillicon/BoosterHammer1_00252.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 14 }, { "value": "Skillicon/BoosterHammer1_00253.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 15 }, { "value": "Skillicon/BoosterHammer1_00254.png", "tweenMethod": "linearNone", "tween": false, "target": 388, "key": "skin", "index": 16 }] } }], "name": "ani5", "id": 5, "frameRate": 24, "action": 0 }, { "nodes": [{ "target": 734, "keyframes": { "scaleY": [{ "value": 1, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 0 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 5 }, { "value": 0.9, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 10 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 15 }, { "value": 1, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 20 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 25 }, { "value": 0.9, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 30 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 35 }, { "value": 1, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleY", "index": 40 }], "scaleX": [{ "value": 1, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 0 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 5 }, { "value": 0.9, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 10 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 15 }, { "value": 1, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 20 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 25 }, { "value": 0.9, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 30 }, { "value": 0.95, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 35 }, { "value": 1, "tweenMethod": "linearNone", "tween": true, "target": 734, "key": "scaleX", "index": 40 }] } }], "name": "guide", "id": 6, "frameRate": 24, "action": 0 }], "loadList": ["InGameView/colliderbottom.png", "InGameView/0.png", "InGameView/1.png", "InGameView/groundplane.png", "InGameView/borderbottom.png", "InGameView/border2.png", "InGameView/blast-35.png", "Skillicon/BoosterArrow1_00239.png", "InGameView/blast-45.png", "Skillicon/BoosterExplode1_00239.png", "Skillicon/BoosterFire1_00239.png", "Skillicon/BoosterShoot1_00240.png", "Skillicon/BoosterHammer1_00238.png", "InGameView/jindutiao-1-2.png", "InGameView/jindutiao-1-3.png", "Ball/43.png", "InGameView/youxinei-1-2.png", "InGameView/youxinei-1-5.png", "InGameView/youxinei-1-1.png", "InGameView/yindao.png", "InGameView/zhujiemian-1-9.png", "Skillicon/BoosterArrow1_00240.png", "Skillicon/BoosterArrow1_00241.png", "Skillicon/BoosterArrow1_00242.png", "Skillicon/BoosterArrow1_00243.png", "Skillicon/BoosterArrow1_00244.png", "Skillicon/BoosterArrow1_00245.png", "Skillicon/BoosterArrow1_00246.png", "Skillicon/BoosterArrow1_00247.png", "Skillicon/BoosterArrow1_00248.png", "Skillicon/BoosterArrow1_00249.png", "Skillicon/BoosterArrow1_00250.png", "Skillicon/BoosterArrow1_00251.png", "Skillicon/BoosterArrow1_00252.png", "Skillicon/BoosterArrow1_00253.png", "Skillicon/BoosterArrow1_00254.png", "Skillicon/BoosterArrow1_00255.png", "Skillicon/BoosterExplode1_00240.png", "Skillicon/BoosterExplode1_00241.png", "Skillicon/BoosterExplode1_00242.png", "Skillicon/BoosterExplode1_00243.png", "Skillicon/BoosterExplode1_00244.png", "Skillicon/BoosterExplode1_00245.png", "Skillicon/BoosterExplode1_00246.png", "Skillicon/BoosterExplode1_00247.png", "Skillicon/BoosterExplode1_00248.png", "Skillicon/BoosterExplode1_00249.png", "Skillicon/BoosterExplode1_00250.png", "Skillicon/BoosterExplode1_00251.png", "Skillicon/BoosterExplode1_00252.png", "Skillicon/BoosterExplode1_00253.png", "Skillicon/BoosterExplode1_00254.png", "Skillicon/BoosterExplode1_00255.png", "Skillicon/BoosterFire1_00240.png", "Skillicon/BoosterFire1_00241.png", "Skillicon/BoosterFire1_00242.png", "Skillicon/BoosterFire1_00243.png", "Skillicon/BoosterFire1_00244.png", "Skillicon/BoosterFire1_00245.png", "Skillicon/BoosterFire1_00246.png", "Skillicon/BoosterFire1_00247.png", "Skillicon/BoosterFire1_00248.png", "Skillicon/BoosterFire1_00249.png", "Skillicon/BoosterFire1_00250.png", "Skillicon/BoosterFire1_00251.png", "Skillicon/BoosterFire1_00252.png", "Skillicon/BoosterFire1_00253.png", "Skillicon/BoosterFire1_00254.png", "Skillicon/BoosterFire1_00255.png", "Skillicon/BoosterShoot1_00241.png", "Skillicon/BoosterShoot1_00242.png", "Skillicon/BoosterShoot1_00243.png", "Skillicon/BoosterShoot1_00244.png", "Skillicon/BoosterShoot1_00245.png", "Skillicon/BoosterShoot1_00246.png", "Skillicon/BoosterShoot1_00247.png", "Skillicon/BoosterShoot1_00248.png", "Skillicon/BoosterShoot1_00249.png", "Skillicon/BoosterShoot1_00250.png", "Skillicon/BoosterShoot1_00251.png", "Skillicon/BoosterShoot1_00252.png", "Skillicon/BoosterShoot1_00253.png", "Skillicon/BoosterShoot1_00254.png", "Skillicon/BoosterShoot1_00255.png", "Skillicon/BoosterShoot1_00256.png", "Skillicon/BoosterHammer1_00239.png", "Skillicon/BoosterHammer1_00240.png", "Skillicon/BoosterHammer1_00241.png", "Skillicon/BoosterHammer1_00242.png", "Skillicon/BoosterHammer1_00243.png", "Skillicon/BoosterHammer1_00244.png", "Skillicon/BoosterHammer1_00245.png", "Skillicon/BoosterHammer1_00246.png", "Skillicon/BoosterHammer1_00247.png", "Skillicon/BoosterHammer1_00248.png", "Skillicon/BoosterHammer1_00249.png", "Skillicon/BoosterHammer1_00250.png", "Skillicon/BoosterHammer1_00251.png", "Skillicon/BoosterHammer1_00252.png", "Skillicon/BoosterHammer1_00253.png", "Skillicon/BoosterHammer1_00254.png"], "loadList3D": [] };
  896. ui.InGameSceneUI = InGameSceneUI;
  897. REG("ui.InGameSceneUI", InGameSceneUI);
  898. class LotteryViewUI extends Laya.View {
  899. constructor() { super(); }
  900. createChildren() {
  901. super.createChildren();
  902. this.createView(LotteryViewUI.uiView);
  903. }
  904. }
  905. LotteryViewUI.uiView = { "type": "View", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 460, "x": 337, "var": "dial", "skin": "LotteryView/choujiang-1-1.png", "anchorY": 0.5, "anchorX": 0.5 }, "compId": 4, "child": [{ "type": "Box", "props": { "y": 171, "x": 344, "width": 93, "rotation": 0, "pivotY": 46, "pivotX": 47, "height": 91 }, "compId": 8, "child": [{ "type": "Image", "props": { "y": 46, "x": 47, "width": 87, "skin": "LotteryView/func1.png", "rotation": 221, "pivotY": 43, "pivotX": 44, "height": 86 }, "compId": 9 }, { "type": "Text", "props": { "y": 2, "x": 91, "width": 68, "valign": "middle", "text": "X1", "rotation": 225, "pivotY": 13, "pivotX": 34, "height": 25, "fontSize": 20, "color": "#ffffff", "align": "center", "runtime": "laya.display.Text" }, "compId": 10 }] }, { "type": "Box", "props": { "y": 277, "x": 403, "width": 93, "rotation": 12, "pivotY": 46, "pivotX": 47, "height": 91 }, "compId": 14, "child": [{ "type": "Image", "props": { "y": 46, "x": 47, "width": 87, "skin": "LotteryView/func4.png", "rotation": 253, "pivotY": 43, "pivotX": 44, "height": 86 }, "compId": 15 }, { "type": "Text", "props": { "y": 33, "x": 110, "width": 68, "valign": "middle", "text": "X2", "rotation": 254, "pivotY": 13, "pivotX": 34, "height": 25, "fontSize": 20, "color": "#ffffff", "align": "center", "runtime": "laya.display.Text" }, "compId": 16 }] }, { "type": "Box", "props": { "y": 395, "x": 345, "width": 93, "rotation": 60, "pivotY": 46, "pivotX": 47, "height": 91 }, "compId": 17, "child": [{ "type": "Image", "props": { "y": 46, "x": 47, "width": 87, "skin": "LotteryView/func5.png", "rotation": -86, "pivotY": 43, "pivotX": 44, "height": 86 }, "compId": 18 }, { "type": "Text", "props": { "y": 45.5, "x": 109, "width": 68, "valign": "middle", "text": "X1", "rotation": -91, "pivotY": 13, "pivotX": 34, "height": 25, "fontSize": 20, "color": "#ffffff", "align": "center", "runtime": "laya.display.Text" }, "compId": 19 }] }, { "type": "Box", "props": { "y": 395, "x": 207, "width": 93, "rotation": 120, "pivotY": 46, "pivotX": 47, "height": 91 }, "compId": 20, "child": [{ "type": "Image", "props": { "y": 46, "x": 47, "width": 87, "skin": "LotteryView/func5.png", "rotation": -87, "pivotY": 43, "pivotX": 44, "height": 86 }, "compId": 21 }, { "type": "Text", "props": { "y": 45.5, "x": 109, "width": 68, "valign": "middle", "text": "X2", "rotation": -91, "pivotY": 13, "pivotX": 34, "height": 25, "fontSize": 20, "color": "#ffffff", "align": "center", "runtime": "laya.display.Text" }, "compId": 22 }] }, { "type": "Box", "props": { "y": 277, "x": 139, "width": 93, "rotation": 180, "pivotY": 46, "pivotX": 47, "height": 91 }, "compId": 23, "child": [{ "type": "Image", "props": { "y": 46, "x": 47, "width": 87, "skin": "LotteryView/func1.png", "rotation": -83, "pivotY": 43, "pivotX": 44, "height": 86 }, "compId": 24 }, { "type": "Text", "props": { "y": 45.5, "x": 109, "width": 68, "valign": "middle", "text": "X2", "rotation": -91, "pivotY": 13, "pivotX": 34, "height": 25, "fontSize": 20, "color": "#ffffff", "align": "center", "runtime": "laya.display.Text" }, "compId": 25 }] }, { "type": "Box", "props": { "y": 162, "x": 207, "width": 93, "rotation": 236, "pivotY": 46, "pivotX": 47, "height": 91 }, "compId": 26, "child": [{ "type": "Image", "props": { "y": 46, "x": 47, "width": 87, "skin": "LotteryView/func2.png", "rotation": 90, "pivotY": 43, "pivotX": 44, "height": 86 }, "compId": 27 }, { "type": "Text", "props": { "y": 45.5, "x": 109, "width": 68, "valign": "middle", "text": "X1", "rotation": -91, "pivotY": 13, "pivotX": 34, "height": 25, "fontSize": 20, "color": "#ffffff", "align": "center", "runtime": "laya.display.Text" }, "compId": 28 }] }] }, { "type": "Button", "props": { "y": 227, "x": 614, "var": "CloseBtn", "stateNum": 1, "skin": "LotteryView/choujiang-1-4.png" }, "compId": 5 }, { "type": "Image", "props": { "y": 437, "x": 337, "width": 87, "skin": "LotteryView/choujiang-1-2.png", "pivotY": 77, "pivotX": 44, "name": "Pointer", "height": 153 }, "compId": 6 }, { "type": "Button", "props": { "y": 931, "x": 360, "width": 298, "var": "LotteryBtn", "stateNum": 1, "skin": "LotteryView/choujiang-1-3.png", "pivotY": 53, "pivotX": 149, "height": 106 }, "compId": 7 }], "loadList": ["LotteryView/choujiang-1-1.png", "LotteryView/func1.png", "LotteryView/func4.png", "LotteryView/func5.png", "LotteryView/func2.png", "LotteryView/choujiang-1-4.png", "LotteryView/choujiang-1-2.png", "LotteryView/choujiang-1-3.png"], "loadList3D": [] };
  906. ui.LotteryViewUI = LotteryViewUI;
  907. REG("ui.LotteryViewUI", LotteryViewUI);
  908. class MainSceneUI extends Laya.View {
  909. constructor() { super(); }
  910. createChildren() {
  911. super.createChildren();
  912. this.createView(MainSceneUI.uiView);
  913. }
  914. }
  915. MainSceneUI.uiView = { "type": "View", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "var": "BG", "top": 0, "skin": "MainView/zhujiemian-1-8.png", "sizeGrid": "15,17,13,9", "right": 0, "left": 0, "bottom": 0, "alpha": 1 }, "compId": 13 }, { "type": "Button", "props": { "y": 258, "x": 42, "width": 42, "var": "SetBtn", "stateNum": 1, "skin": "MainView/zhujiemian-1-6.png", "pivotY": 21, "pivotX": 21, "height": 42 }, "compId": 30 }, { "type": "Box", "props": { "x": 97, "width": 555, "height": 173, "bottom": 180 }, "compId": 56, "child": [{ "type": "Button", "props": { "y": 25, "x": 220, "var": "RankBtn", "stateNum": 1, "skin": "MainView/zhujiemian-1-3(1).png" }, "compId": 31 }, { "type": "Button", "props": { "y": 16, "x": 436, "var": "LotteryBtn", "stateNum": 1, "skin": "MainView/zhujiemian-1-4(1).png" }, "compId": 32 }, { "type": "Button", "props": { "y": 16, "x": 19, "var": "SignBtn", "stateNum": 1, "skin": "MainView/zhujiemian-1-2(1).png" }, "compId": 33 }] }, { "type": "Image", "props": { "x": 360, "width": 629, "top": 2, "skin": "MainView/zhujiemian-1-7.png", "pivotY": 468, "pivotX": 315, "height": 936 }, "compId": 60, "child": [{ "type": "Button", "props": { "y": 832.5, "x": 298, "width": 207, "var": "StartBtn", "stateNum": 1, "skin": "MainView/zhujiemian-1-5.png", "pivotY": 104, "pivotX": 104, "height": 207 }, "compId": 9 }] }, { "type": "Image", "props": { "y": 205, "x": 375, "width": 526, "skin": "MainView/logo.png", "pivotY": 153, "pivotX": 263, "height": 305 }, "compId": 57 }], "loadList": ["MainView/zhujiemian-1-8.png", "MainView/zhujiemian-1-6.png", "MainView/zhujiemian-1-3(1).png", "MainView/zhujiemian-1-4(1).png", "MainView/zhujiemian-1-2(1).png", "MainView/zhujiemian-1-7.png", "MainView/zhujiemian-1-5.png", "MainView/logo.png"], "loadList3D": [] };
  916. ui.MainSceneUI = MainSceneUI;
  917. REG("ui.MainSceneUI", MainSceneUI);
  918. class RankViewUI extends Laya.View {
  919. constructor() { super(); }
  920. createChildren() {
  921. super.createChildren();
  922. this.createView(RankViewUI.uiView);
  923. }
  924. }
  925. RankViewUI.uiView = { "type": "View", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 513, "x": 360, "width": 555, "skin": "SetView/shezhi-1-1.png", "sizeGrid": "98,159,125,118", "height": 767, "anchorY": 0.5, "anchorX": 0.5 }, "compId": 5, "child": [{ "type": "Image", "props": { "y": 14, "x": 198, "skin": "RankView/paihang-1-1.png" }, "compId": 6 }] }, { "type": "Button", "props": { "y": 139, "x": 573, "var": "CloseBtn", "stateNum": 1, "skin": "SetView/shezhi-1-3.png" }, "compId": 7 }, { "type": "Box", "props": { "y": 231, "x": 118, "width": 495, "height": 623 }, "compId": 9, "child": [{ "type": "Image", "props": { "y": 6, "x": 12, "width": 459, "skin": "RankView/paihang-1-2.png", "sizeGrid": "22,39,25,23", "height": 65 }, "compId": 8 }, { "type": "Image", "props": { "y": 84, "x": 12, "width": 459, "skin": "RankView/paihang-1-2.png", "sizeGrid": "22,39,25,23", "height": 65 }, "compId": 11 }, { "type": "Image", "props": { "y": 163, "x": 12, "width": 459, "skin": "RankView/paihang-1-2.png", "sizeGrid": "22,39,25,23", "height": 65 }, "compId": 12 }, { "type": "Image", "props": { "y": 246.5, "x": 12, "width": 459, "skin": "RankView/paihang-1-2.png", "sizeGrid": "22,39,25,23", "height": 65 }, "compId": 13 }, { "type": "Image", "props": { "y": 328, "x": 12, "width": 459, "skin": "RankView/paihang-1-2.png", "sizeGrid": "22,39,25,23", "height": 65 }, "compId": 14 }, { "type": "Image", "props": { "y": 407, "x": 12, "width": 459, "skin": "RankView/paihang-1-2.png", "sizeGrid": "22,39,25,23", "height": 65 }, "compId": 15 }, { "type": "Image", "props": { "y": 551, "x": 2, "width": 487, "skin": "RankView/paihang-1-7.png", "sizeGrid": "25,31,28,24", "height": 70 }, "compId": 16 }] }, { "type": "Button", "props": { "y": 733, "x": 194, "var": "UpPageBtn", "stateNum": 1, "skin": "RankView/paihang-1-6.png" }, "compId": 17 }, { "type": "Button", "props": { "y": 744, "x": 476, "width": 69, "var": "DownPageBtn", "stateNum": 1, "skin": "RankView/paihang-1-6.png", "rotation": 180, "pivotY": 16, "pivotX": 35, "height": 31 }, "compId": 18 }], "loadList": ["SetView/shezhi-1-1.png", "RankView/paihang-1-1.png", "SetView/shezhi-1-3.png", "RankView/paihang-1-2.png", "RankView/paihang-1-7.png", "RankView/paihang-1-6.png"], "loadList3D": [] };
  926. ui.RankViewUI = RankViewUI;
  927. REG("ui.RankViewUI", RankViewUI);
  928. class ReviveViewUI extends Laya.Scene {
  929. constructor() { super(); }
  930. createChildren() {
  931. super.createChildren();
  932. this.createView(ReviveViewUI.uiView);
  933. }
  934. }
  935. ReviveViewUI.uiView = { "type": "Scene", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 0, "x": 0, "var": "BG", "top": 0, "skin": "WinView/black.png", "sizeGrid": "10,12,13,13", "right": 0, "left": 0, "bottom": 0 }, "compId": 10 }, { "type": "Image", "props": { "y": 17, "x": 0, "skin": "ReviveView/fuhuo-1-1.png" }, "compId": 4, "child": [{ "type": "Image", "props": { "y": 250, "x": 285, "skin": "ReviveView/fuhuo-1-2.png" }, "compId": 5 }] }, { "type": "Image", "props": { "y": 449, "x": 370, "width": 147, "skin": "ReviveView/fuhuo-1-4.png", "pivotY": 74, "pivotX": 74, "height": 147 }, "compId": 6, "child": [{ "type": "Text", "props": { "y": 70, "x": 74, "width": 103, "var": "Time", "valign": "middle", "text": "9", "pivotY": 58, "pivotX": 52, "height": 117, "fontSize": 125, "color": "#f05929", "align": "center", "runtime": "laya.display.Text" }, "compId": 7 }] }, { "type": "Button", "props": { "y": 760, "x": 304.5, "var": "NoBtn", "stateNum": 1, "skin": "ReviveView/fuhuo-1-5.png" }, "compId": 8 }, { "type": "Button", "props": { "y": 583, "x": 304.5, "var": "VideoBtn", "stateNum": 1, "skin": "ReviveView/fuhuo-1-3.png" }, "compId": 9 }], "loadList": ["WinView/black.png", "ReviveView/fuhuo-1-1.png", "ReviveView/fuhuo-1-2.png", "ReviveView/fuhuo-1-4.png", "ReviveView/fuhuo-1-5.png", "ReviveView/fuhuo-1-3.png"], "loadList3D": [] };
  936. ui.ReviveViewUI = ReviveViewUI;
  937. REG("ui.ReviveViewUI", ReviveViewUI);
  938. class SetViewUI extends Laya.View {
  939. constructor() { super(); }
  940. createChildren() {
  941. super.createChildren();
  942. this.createView(SetViewUI.uiView);
  943. }
  944. }
  945. SetViewUI.uiView = { "type": "View", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 380, "x": 360, "width": 550, "skin": "SetView/shezhi-1-1.png", "pivotY": 178, "pivotX": 275, "height": 355, "alpha": 1, "sizeGrid": "98,159,125,118" }, "compId": 4, "child": [{ "type": "Image", "props": { "y": 17, "x": 225, "skin": "SetView/shezhi-1-2.png" }, "compId": 5 }] }, { "type": "Button", "props": { "y": 226, "x": 574, "var": "CloseBtn", "stateNum": 1, "skin": "SetView/shezhi-1-3.png" }, "compId": 6 }, { "type": "Sprite", "props": { "y": 335, "x": 191, "texture": "SetView/shezhi-1-4.png", "name": "SoundSprite" }, "compId": 7 }, { "type": "Sprite", "props": { "y": 431, "x": 193, "texture": "SetView/shezhi-1-5.png", "name": "ShakeSprite" }, "compId": 8 }, { "type": "Box", "props": { "y": 325, "x": 427, "width": 100, "var": "Sound", "height": 51 }, "compId": 9, "child": [{ "type": "Image", "props": { "y": 21, "x": 0, "skin": "SetView/shezhi-1-6.png" }, "compId": 10 }, { "type": "Image", "props": { "y": 26, "x": 70, "width": 51, "skin": "SetView/shezhi-1-8.png", "pivotY": 26, "pivotX": 26, "name": "open", "height": 51 }, "compId": 11 }, { "type": "Image", "props": { "y": 26, "x": 32, "width": 51, "skin": "SetView/shezhi-1-9.png", "pivotY": 26, "pivotX": 26, "name": "close", "height": 51 }, "compId": 12 }, { "type": "Button", "props": { "y": 26, "x": 50, "width": 100, "pivotY": 26, "pivotX": 50, "name": "btn", "height": 51 }, "compId": 17 }] }, { "type": "Box", "props": { "y": 423, "x": 427, "width": 100, "var": "Shake", "height": 54 }, "compId": 13, "child": [{ "type": "Image", "props": { "y": 23, "x": 0, "skin": "SetView/shezhi-1-7.png" }, "compId": 14 }, { "type": "Image", "props": { "y": 28, "x": 70, "width": 51, "skin": "SetView/shezhi-1-8.png", "pivotY": 26, "pivotX": 26, "name": "open", "height": 51 }, "compId": 15 }, { "type": "Image", "props": { "y": 28, "x": 32, "width": 51, "skin": "SetView/shezhi-1-9.png", "pivotY": 26, "pivotX": 26, "name": "close", "height": 51 }, "compId": 16 }, { "type": "Button", "props": { "y": 28, "x": 50, "width": 100, "pivotY": 26, "pivotX": 50, "name": "btn", "height": 51 }, "compId": 18 }] }, { "type": "Text", "props": { "y": 515, "x": 285, "width": 128, "valign": "middle", "text": "UserID:", "pivotY": 26, "pivotX": 64, "height": 52, "fontSize": 30, "align": "center", "runtime": "laya.display.Text" }, "compId": 19 }, { "type": "Text", "props": { "y": 493, "x": 360, "width": 189, "var": "userid", "valign": "middle", "height": 45, "fontSize": 30, "align": "left", "runtime": "laya.display.Text" }, "compId": 20 }], "loadList": ["SetView/shezhi-1-1.png", "SetView/shezhi-1-2.png", "SetView/shezhi-1-3.png", "SetView/shezhi-1-4.png", "SetView/shezhi-1-5.png", "SetView/shezhi-1-6.png", "SetView/shezhi-1-8.png", "SetView/shezhi-1-9.png", "SetView/shezhi-1-7.png"], "loadList3D": [] };
  946. ui.SetViewUI = SetViewUI;
  947. REG("ui.SetViewUI", SetViewUI);
  948. class SignViewUI extends Laya.Scene {
  949. constructor() { super(); }
  950. createChildren() {
  951. super.createChildren();
  952. this.createView(SignViewUI.uiView);
  953. }
  954. }
  955. SignViewUI.uiView = { "type": "Scene", "props": { "width": 720, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "y": 581, "x": 360, "width": 555, "skin": "SetView/shezhi-1-1.png", "sizeGrid": "98,159,125,118", "height": 871, "anchorY": 0.5, "anchorX": 0.5 }, "compId": 3, "child": [{ "type": "Image", "props": { "y": 13, "x": 225, "skin": "SignView/qiandao-1-1.png" }, "compId": 4 }, { "type": "Box", "props": { "y": 109, "x": 27, "width": 497, "var": "ItemList", "height": 572 }, "compId": 5, "child": [{ "type": "Box", "props": { "y": 3, "x": 0, "width": 150, "height": 188 }, "compId": 6, "child": [{ "type": "Image", "props": { "y": 32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-3.png", "sizeGrid": "9,45,22,34", "height": 157 }, "compId": 7, "child": [{ "type": "Image", "props": { "y": -32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-2.png", "height": 46 }, "compId": 8 }, { "type": "Image", "props": { "y": -23, "x": 39, "skin": "SignView/qiandao-1-4.png" }, "compId": 9 }, { "type": "Text", "props": { "y": -23, "x": 66.548095703125, "text": "1", "fontSize": 25, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 10 }] }, { "type": "Button", "props": { "y": 114, "x": 74, "width": 147, "pivotY": 73, "pivotX": 74, "name": "btn", "height": 145 }, "compId": 11 }, { "type": "Image", "props": { "y": 94, "x": 74, "width": 100, "pivotY": 50, "pivotX": 50, "name": "icon", "height": 100 }, "compId": 12, "child": [{ "type": "Text", "props": { "y": 119, "x": 50, "width": 99, "valign": "middle", "text": "X3", "pivotY": 16, "pivotX": 50, "name": "num", "height": 31, "fontSize": 25, "align": "center", "runtime": "laya.display.Text" }, "compId": 13 }] }, { "type": "Image", "props": { "y": 0, "x": 0, "width": 148, "visible": false, "skin": "SignView/qiandao-1-7(1).png", "name": "complete", "height": 186 }, "compId": 14, "child": [{ "type": "Image", "props": { "y": 93, "x": 74, "width": 51, "skin": "SignView/qiandao-1-8.png", "pivotY": 26, "pivotX": 26, "height": 51 }, "compId": 15 }] }] }, { "type": "Box", "props": { "y": 3, "x": 173.5, "width": 150, "height": 188 }, "compId": 16, "child": [{ "type": "Image", "props": { "y": 32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-3.png", "sizeGrid": "9,45,22,34", "height": 157 }, "compId": 17, "child": [{ "type": "Image", "props": { "y": -32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-2.png", "height": 46 }, "compId": 18 }, { "type": "Image", "props": { "y": -23, "x": 39, "skin": "SignView/qiandao-1-4.png" }, "compId": 19 }, { "type": "Text", "props": { "y": -23, "x": 66.548095703125, "text": "2", "fontSize": 25, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 20 }] }, { "type": "Button", "props": { "y": 114, "x": 74, "width": 147, "pivotY": 73, "pivotX": 74, "name": "btn", "height": 145 }, "compId": 21 }, { "type": "Image", "props": { "y": 94, "x": 74, "width": 100, "pivotY": 50, "pivotX": 50, "name": "icon", "height": 100 }, "compId": 22, "child": [{ "type": "Text", "props": { "y": 119, "x": 50, "width": 99, "valign": "middle", "text": "X3", "pivotY": 16, "pivotX": 50, "name": "num", "height": 31, "fontSize": 25, "align": "center", "runtime": "laya.display.Text" }, "compId": 23 }] }, { "type": "Image", "props": { "y": 0, "x": 0, "width": 148, "visible": false, "skin": "SignView/qiandao-1-7(1).png", "name": "complete", "height": 186 }, "compId": 24, "child": [{ "type": "Image", "props": { "y": 93, "x": 74, "width": 51, "skin": "SignView/qiandao-1-8.png", "pivotY": 26, "pivotX": 26, "height": 51 }, "compId": 25 }] }] }, { "type": "Box", "props": { "y": 3, "x": 347, "width": 150, "height": 188 }, "compId": 26, "child": [{ "type": "Image", "props": { "y": 32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-3.png", "sizeGrid": "9,45,22,34", "height": 157 }, "compId": 27, "child": [{ "type": "Image", "props": { "y": -32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-2.png", "height": 46 }, "compId": 28 }, { "type": "Image", "props": { "y": -23, "x": 39, "skin": "SignView/qiandao-1-4.png" }, "compId": 29 }, { "type": "Text", "props": { "y": -23, "x": 66.548095703125, "text": "3", "fontSize": 25, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 30 }] }, { "type": "Button", "props": { "y": 114, "x": 74, "width": 147, "pivotY": 73, "pivotX": 74, "name": "btn", "height": 145 }, "compId": 31 }, { "type": "Image", "props": { "y": 94, "x": 74, "width": 100, "pivotY": 50, "pivotX": 50, "name": "icon", "height": 100 }, "compId": 32, "child": [{ "type": "Text", "props": { "y": 119, "x": 50, "width": 99, "valign": "middle", "text": "X3", "pivotY": 16, "pivotX": 50, "name": "num", "height": 31, "fontSize": 25, "align": "center", "runtime": "laya.display.Text" }, "compId": 33 }] }, { "type": "Image", "props": { "y": 0, "x": 0, "width": 148, "visible": false, "skin": "SignView/qiandao-1-7(1).png", "name": "complete", "height": 186 }, "compId": 34, "child": [{ "type": "Image", "props": { "y": 93, "x": 74, "width": 51, "skin": "SignView/qiandao-1-8.png", "pivotY": 26, "pivotX": 26, "height": 51 }, "compId": 35 }] }] }, { "type": "Box", "props": { "y": 217, "x": 0, "width": 150, "height": 188 }, "compId": 36, "child": [{ "type": "Image", "props": { "y": 32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-3.png", "sizeGrid": "9,45,22,34", "height": 157 }, "compId": 37, "child": [{ "type": "Image", "props": { "y": -32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-2.png", "height": 46 }, "compId": 38 }, { "type": "Image", "props": { "y": -23, "x": 39, "skin": "SignView/qiandao-1-4.png" }, "compId": 39 }, { "type": "Text", "props": { "y": -23, "x": 66.548095703125, "text": "4", "fontSize": 25, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 40 }] }, { "type": "Button", "props": { "y": 114, "x": 74, "width": 147, "pivotY": 73, "pivotX": 74, "name": "btn", "height": 145 }, "compId": 41 }, { "type": "Image", "props": { "y": 94, "x": 74, "width": 100, "pivotY": 50, "pivotX": 50, "name": "icon", "height": 100 }, "compId": 42, "child": [{ "type": "Text", "props": { "y": 119, "x": 50, "width": 99, "valign": "middle", "text": "X3", "pivotY": 16, "pivotX": 50, "name": "num", "height": 31, "fontSize": 25, "align": "center", "runtime": "laya.display.Text" }, "compId": 43 }] }, { "type": "Image", "props": { "y": 0, "x": 0, "width": 148, "visible": false, "skin": "SignView/qiandao-1-7(1).png", "name": "complete", "height": 186 }, "compId": 44, "child": [{ "type": "Image", "props": { "y": 93, "x": 74, "width": 51, "skin": "SignView/qiandao-1-8.png", "pivotY": 26, "pivotX": 26, "height": 51 }, "compId": 45 }] }] }, { "type": "Box", "props": { "y": 217, "x": 173.5, "width": 150, "height": 188 }, "compId": 46, "child": [{ "type": "Image", "props": { "y": 32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-3.png", "sizeGrid": "9,45,22,34", "height": 157 }, "compId": 47, "child": [{ "type": "Image", "props": { "y": -32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-2.png", "height": 46 }, "compId": 48 }, { "type": "Image", "props": { "y": -23, "x": 39, "skin": "SignView/qiandao-1-4.png" }, "compId": 49 }, { "type": "Text", "props": { "y": -23, "x": 66.548095703125, "text": "5", "fontSize": 25, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 50 }] }, { "type": "Button", "props": { "y": 114, "x": 74, "width": 147, "pivotY": 73, "pivotX": 74, "name": "btn", "height": 145 }, "compId": 51 }, { "type": "Image", "props": { "y": 94, "x": 74, "width": 100, "pivotY": 50, "pivotX": 50, "name": "icon", "height": 100 }, "compId": 52, "child": [{ "type": "Text", "props": { "y": 119, "x": 50, "width": 99, "valign": "middle", "text": "X3", "pivotY": 16, "pivotX": 50, "name": "num", "height": 31, "fontSize": 25, "align": "center", "runtime": "laya.display.Text" }, "compId": 53 }] }, { "type": "Image", "props": { "y": 0, "x": 0, "width": 148, "visible": false, "skin": "SignView/qiandao-1-7(1).png", "name": "complete", "height": 186 }, "compId": 54, "child": [{ "type": "Image", "props": { "y": 93, "x": 74, "width": 51, "skin": "SignView/qiandao-1-8.png", "pivotY": 26, "pivotX": 26, "height": 51 }, "compId": 55 }] }] }, { "type": "Box", "props": { "y": 217, "x": 347, "width": 150, "height": 188 }, "compId": 56, "child": [{ "type": "Image", "props": { "y": 32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-3.png", "sizeGrid": "9,45,22,34", "height": 157 }, "compId": 57, "child": [{ "type": "Image", "props": { "y": -32, "x": 0, "width": 147, "skin": "SignView/qiandao-1-2.png", "height": 46 }, "compId": 58 }, { "type": "Image", "props": { "y": -23, "x": 39, "skin": "SignView/qiandao-1-4.png" }, "compId": 59 }, { "type": "Text", "props": { "y": -23, "x": 66.548095703125, "text": "6", "fontSize": 25, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 60 }] }, { "type": "Button", "props": { "y": 114, "x": 74, "width": 147, "pivotY": 73, "pivotX": 74, "name": "btn", "height": 145 }, "compId": 61 }, { "type": "Image", "props": { "y": 94, "x": 74, "width": 100, "pivotY": 50, "pivotX": 50, "name": "icon", "height": 100 }, "compId": 62, "child": [{ "type": "Text", "props": { "y": 119, "x": 50, "width": 99, "valign": "middle", "text": "X3", "pivotY": 16, "pivotX": 50, "name": "num", "height": 31, "fontSize": 25, "align": "center", "runtime": "laya.display.Text" }, "compId": 63 }] }, { "type": "Image", "props": { "y": 0, "x": 0, "width": 148, "visible": false, "skin": "SignView/qiandao-1-7(1).png", "name": "complete", "height": 186 }, "compId": 64, "child": [{ "type": "Image", "props": { "y": 93, "x": 74, "width": 51, "skin": "SignView/qiandao-1-8.png", "pivotY": 26, "pivotX": 26, "height": 51 }, "compId": 65 }] }] }, { "type": "Box", "props": { "y": 413, "x": 1, "width": 490, "height": 158 }, "compId": 66, "child": [{ "type": "Image", "props": { "y": 2, "x": 3, "skin": "SignView/qiandao-1-6.png" }, "compId": 67, "child": [{ "type": "Image", "props": { "y": 20, "x": 243.5, "width": 69, "skin": "SignView/qiandao-1-4.png", "pivotY": 14, "pivotX": 35, "height": 28 }, "compId": 68 }, { "type": "Text", "props": { "y": 6, "x": 237, "text": "7", "fontSize": 25, "color": "#ffffff", "runtime": "laya.display.Text" }, "compId": 69 }] }, { "type": "Button", "props": { "y": 43, "x": 4, "width": 485, "name": "btn", "height": 113 }, "compId": 70 }, { "type": "Image", "props": { "y": 79, "x": 245, "width": 71, "pivotY": 32, "pivotX": 34, "name": "icon", "height": 69 }, "compId": 71, "child": [{ "type": "Text", "props": { "y": 86, "x": 34, "width": 99, "valign": "middle", "text": "X3", "pivotY": 16, "pivotX": 50, "name": "num", "height": 31, "fontSize": 25, "align": "center", "runtime": "laya.display.Text" }, "compId": 72 }] }, { "type": "Image", "props": { "y": 0, "x": 2, "width": 489, "visible": false, "skin": "SignView/qiandao-1-7(1).png", "name": "complete", "height": 157 }, "compId": 73, "child": [{ "type": "Image", "props": { "y": 78.5, "x": 244.5, "width": 51, "skin": "SignView/qiandao-1-8.png", "pivotY": 26, "pivotX": 26, "height": 51 }, "compId": 74 }] }] }] }, { "type": "Button", "props": { "y": 17, "x": 490, "var": "CloseBtn", "stateNum": 1, "skin": "SetView/shezhi-1-3.png" }, "compId": 75 }, { "type": "Button", "props": { "y": 765, "x": 278, "width": 298, "var": "SignBtn", "stateNum": 1, "skin": "SignView/qiandao-1-5.png", "pivotY": 53, "pivotX": 149, "height": 106 }, "compId": 76 }] }], "loadList": ["SetView/shezhi-1-1.png", "SignView/qiandao-1-1.png", "SignView/qiandao-1-3.png", "SignView/qiandao-1-2.png", "SignView/qiandao-1-4.png", "SignView/qiandao-1-7(1).png", "SignView/qiandao-1-8.png", "SignView/qiandao-1-6.png", "SetView/shezhi-1-3.png", "SignView/qiandao-1-5.png"], "loadList3D": [] };
  956. ui.SignViewUI = SignViewUI;
  957. REG("ui.SignViewUI", SignViewUI);
  958. class WinViewUI extends Laya.Scene {
  959. constructor() { super(); }
  960. createChildren() {
  961. super.createChildren();
  962. this.createView(WinViewUI.uiView);
  963. }
  964. }
  965. WinViewUI.uiView = { "type": "Scene", "props": { "width": 720, "visible": true, "height": 1280 }, "compId": 2, "child": [{ "type": "Image", "props": { "var": "BG", "top": 0, "skin": "WinView/black.png", "sizeGrid": "12,14,12,12", "right": 0, "left": 0, "bottom": 0 }, "compId": 8 }, { "type": "Image", "props": { "y": 520, "x": 360, "width": 720, "skin": "WinView/guoguan-1-1.png", "pivotY": 510, "pivotX": 360, "height": 994 }, "compId": 4, "child": [{ "type": "Image", "props": { "y": 249, "x": 283, "visible": true, "skin": "WinView/guoguan-1-2.png" }, "compId": 5 }] }, { "type": "Button", "props": { "y": 487, "x": 252, "var": "BackBtn", "stateNum": 1, "skin": "WinView/guoguan-1-3.png" }, "compId": 6 }, { "type": "Button", "props": { "y": 600, "x": 228, "var": "NextBtn", "stateNum": 1, "skin": "WinView/guoguan-1-4.png" }, "compId": 7 }], "loadList": ["WinView/black.png", "WinView/guoguan-1-1.png", "WinView/guoguan-1-2.png", "WinView/guoguan-1-3.png", "WinView/guoguan-1-4.png"], "loadList3D": [] };
  966. ui.WinViewUI = WinViewUI;
  967. REG("ui.WinViewUI", WinViewUI);
  968. })(ui || (ui = {}));
  969. var PropEffecf;
  970. (function (PropEffecf) {
  971. PropEffecf[PropEffecf["NONE"] = 0] = "NONE";
  972. PropEffecf[PropEffecf["DOUBLE"] = 1] = "DOUBLE";
  973. PropEffecf[PropEffecf["HAMMER"] = 2] = "HAMMER";
  974. PropEffecf[PropEffecf["UP"] = 3] = "UP";
  975. PropEffecf[PropEffecf["CLEARLAST"] = 4] = "CLEARLAST";
  976. PropEffecf[PropEffecf["CLEARTWO"] = 5] = "CLEARTWO";
  977. })(PropEffecf || (PropEffecf = {}));
  978. var StageMode;
  979. (function (StageMode) {
  980. StageMode[StageMode["ReStart"] = 0] = "ReStart";
  981. StageMode[StageMode["Start"] = 1] = "Start";
  982. StageMode[StageMode["Lose"] = 2] = "Lose";
  983. StageMode[StageMode["Win"] = 3] = "Win";
  984. StageMode[StageMode["Clone"] = 4] = "Clone";
  985. StageMode[StageMode["Over"] = 5] = "Over";
  986. StageMode[StageMode["Revive"] = 6] = "Revive";
  987. StageMode[StageMode["Refresh"] = 7] = "Refresh";
  988. StageMode[StageMode["Check"] = 8] = "Check";
  989. })(StageMode || (StageMode = {}));
  990. class EventManager {
  991. static EventOn(_mode, caller, fun, args = []) {
  992. EventManager.Instance.on(PropEffecf[_mode], caller, fun, args);
  993. }
  994. static EventOff(_mode, caller, fun, args = []) {
  995. EventManager.Instance.off(PropEffecf[_mode], caller, fun);
  996. }
  997. static EventTrigger(_mode, args = []) {
  998. EventManager.Instance.event(PropEffecf[_mode], args);
  999. EventManager.PropState = _mode;
  1000. }
  1001. static StageOn(_mode, caller, fun, args = []) {
  1002. EventManager.Instance.on(StageMode[_mode], caller, fun, args);
  1003. }
  1004. static StageOff(_mode, caller, fun, args = []) {
  1005. EventManager.Instance.off(StageMode[_mode], caller, fun);
  1006. }
  1007. static StageTrigger(_mode, args = []) {
  1008. EventManager.Instance.event(StageMode[_mode], args);
  1009. }
  1010. }
  1011. EventManager.Instance = new Laya.EventDispatcher();
  1012. EventManager.PropState = PropEffecf.NONE;
  1013. class GameManager {
  1014. constructor() {
  1015. this.ReviveNum = 0;
  1016. this.ScoreProgress = 0;
  1017. this.ScoreRecord2 = 0;
  1018. this.ScoreRecord = 0;
  1019. this.First = true;
  1020. this.Wave = 1;
  1021. this.CheckHeight = true;
  1022. this.played = false;
  1023. this.EliminateNum = 0;
  1024. GameManager.ins = this;
  1025. EventManager.StageOn(StageMode.Refresh, this, this.Fresh);
  1026. }
  1027. static get Instance() {
  1028. if (GameManager.ins) {
  1029. return GameManager.ins;
  1030. }
  1031. else {
  1032. return new GameManager();
  1033. }
  1034. }
  1035. Fresh() {
  1036. this.ScoreProgress = 0;
  1037. }
  1038. }
  1039. class MainView extends ui.MainSceneUI {
  1040. constructor() {
  1041. super();
  1042. this.STAGE = 0;
  1043. }
  1044. static get Instance() {
  1045. if (MainView.ins) {
  1046. return MainView.ins;
  1047. }
  1048. else {
  1049. return new MainView();
  1050. }
  1051. }
  1052. Show() {
  1053. let stage = AccountManager.Instance.curplayerData.GainAccount("stage");
  1054. this.STAGE = Number(stage);
  1055. this.StartBtn.clickHandler = Laya.Handler.create(this, this.ClickStart);
  1056. this.RankBtn.clickHandler = Laya.Handler.create(this, this.ClickRank);
  1057. this.SignBtn.clickHandler = Laya.Handler.create(this, this.ClickSign);
  1058. this.LotteryBtn.clickHandler = Laya.Handler.create(this, this.ClickLottery);
  1059. this.SetBtn.clickHandler = Laya.Handler.create(this, this.ClickSet);
  1060. this.height = Laya.stage.height;
  1061. this.BG.height = Laya.stage.height;
  1062. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  1063. this.height = Laya.stage.height;
  1064. this.BG.height = Laya.stage.height;
  1065. });
  1066. }
  1067. ClickStart() {
  1068. var agrs = [{ "t": AccountManager.Instance.ServerTime.toString() }];
  1069. ServerManager.Instance.SendHttp(BlastToMerge.KaiShi, agrs, Laya.Handler.create(this, this.GameStart), null);
  1070. }
  1071. GameStart(_data) {
  1072. GameManager.Instance.play_id = _data.play_id;
  1073. EventManager.StageTrigger(StageMode.Start);
  1074. }
  1075. ClickRank() {
  1076. ViewManager.Instance.ShowView(ViewType.RankView);
  1077. }
  1078. ClickLottery() {
  1079. ViewManager.Instance.ShowView(ViewType.LotteryView);
  1080. }
  1081. ClickSign() {
  1082. ViewManager.Instance.ShowView(ViewType.SignView);
  1083. }
  1084. ClickSet() {
  1085. ViewManager.Instance.ShowView(ViewType.SetView);
  1086. }
  1087. Close() {
  1088. }
  1089. }
  1090. class faafssfafsa {
  1091. constructor(_message, _pos, _size, _fontSize, _color = null) {
  1092. this.fontSize = 30;
  1093. this.message = "";
  1094. this.size = new Laya.Vector2(_size.x, _size.y);
  1095. this.fontSize = _fontSize;
  1096. this.color = _color;
  1097. this.message = _message;
  1098. this.pos = _pos;
  1099. }
  1100. }
  1101. class GameTools {
  1102. constructor() {
  1103. GameTools.ins = this;
  1104. }
  1105. static get Instance() {
  1106. if (GameTools.ins) {
  1107. return GameTools.ins;
  1108. }
  1109. else {
  1110. return new GameTools();
  1111. }
  1112. }
  1113. lerp(form, to, t) {
  1114. if (t <= 0) {
  1115. return form;
  1116. }
  1117. else if (t >= 1) {
  1118. return to;
  1119. }
  1120. var a = t * to + (1 - t) * form;
  1121. return a;
  1122. }
  1123. SetCollider(setNode, CollisionGroup) {
  1124. var numchild = setNode.numChildren;
  1125. for (var i = 0; i < setNode.numChildren; i++) {
  1126. var numchild2 = setNode.getChildAt(i).numChildren;
  1127. if (numchild2 > 1) {
  1128. this.SetCollider(setNode.getChildAt(i), CollisionGroup);
  1129. }
  1130. var physicsCollider = setNode.getChildAt(i).getComponent(Laya.PhysicsCollider);
  1131. if (physicsCollider) {
  1132. physicsCollider.collisionGroup = CollisionGroup;
  1133. }
  1134. }
  1135. }
  1136. static RandomNumber(from, to) {
  1137. if (from >= to) {
  1138. return 0;
  1139. }
  1140. var size = to - from;
  1141. var curNumber = Math.random() * size + from;
  1142. return curNumber;
  1143. }
  1144. static RandomANumber(from, to) {
  1145. if (from >= to) {
  1146. return 0;
  1147. }
  1148. var size = to - from;
  1149. var curNumber = Math.random() * size + from;
  1150. return Math.floor(curNumber);
  1151. }
  1152. static GetMoney(_num, _pos = null, _completeHandle = null) {
  1153. if (_num == 0)
  1154. return;
  1155. var fafaafsfa = new Laya.Box;
  1156. fafaafsfa.width = 400;
  1157. fafaafsfa.height = 100;
  1158. fafaafsfa.pivotX = fafaafsfa.width / 2;
  1159. fafaafsfa.pivotY = fafaafsfa.height / 2;
  1160. if (_pos == null) {
  1161. _pos = new Laya.Vector2(Laya.stage.width / 2, Laya.stage.height / 2);
  1162. }
  1163. fafaafsfa.pos(_pos.x, _pos.y);
  1164. var aafafaffa = new Laya.Image;
  1165. aafafaffa.skin = "game/qiandao_1_7.png";
  1166. aafafaffa.width = 60;
  1167. aafafaffa.height = 60;
  1168. aafafaffa.left = 50;
  1169. aafafaffa.y = 10;
  1170. fafaafsfa.addChild(aafafaffa);
  1171. var faasfafsafs = new Laya.Text;
  1172. faasfafsafs.width = 300;
  1173. faasfafsafs.height = 50;
  1174. faasfafsafs.align = "center";
  1175. faasfafsafs.valign = "middle";
  1176. faasfafsafs.font = "Microsoft YaHei";
  1177. faasfafsafs.fontSize = 40;
  1178. faasfafsafs.color = "#FFFFFF";
  1179. faasfafsafs.bold = true;
  1180. faasfafsafs.font = "Microsoft YaHei";
  1181. faasfafsafs.text = "金币 +" + _num;
  1182. faasfafsafs.x = 60;
  1183. faasfafsafs.y = 10;
  1184. fafaafsfa.addChild(faasfafsafs);
  1185. Laya.stage.addChild(fafaafsfa);
  1186. var faasfsaf = Laya.Tween.to(fafaafsfa, { y: fafaafsfa.y - 200 }, 1500, Laya.Ease.expoInOut, Laya.Handler.create(this, () => {
  1187. faasfsaf.clear();
  1188. fafaafsfa.destroy();
  1189. if (_completeHandle) {
  1190. _completeHandle.run();
  1191. }
  1192. }), 100);
  1193. }
  1194. static TweenText(faafssfafsa, _hight, _completeHandle = null, hide = true, _duration = 500) {
  1195. var afasafsafsfa = new Laya.Text();
  1196. afasafsafsfa.width = faafssfafsa.size.x;
  1197. afasafsafsfa.height = faafssfafsa.size.y;
  1198. afasafsafsfa.align = "center";
  1199. afasafsafsfa.valign = "middle";
  1200. afasafsafsfa.font = "Microsoft YaHei";
  1201. afasafsafsfa.fontSize = faafssfafsa.fontSize;
  1202. afasafsafsfa.pivotX = afasafsafsfa.width / 2;
  1203. afasafsafsfa.pivotY = afasafsafsfa.height / 2;
  1204. afasafsafsfa.color = "#5ad122";
  1205. afasafsafsfa.bold = true;
  1206. afasafsafsfa.stroke = 5;
  1207. afasafsafsfa.strokeColor = "#ffffff";
  1208. if (faafssfafsa.color) {
  1209. faafssfafsa.color = faafssfafsa.color;
  1210. }
  1211. afasafsafsfa.text = faafssfafsa.message;
  1212. afasafsafsfa.zOrder = 1;
  1213. Laya.stage.addChildAt(afasafsafsfa, Laya.stage.numChildren - 1);
  1214. afasafsafsfa.pos(faafssfafsa.pos.x, faafssfafsa.pos.y);
  1215. var tween = Laya.Tween.to(afasafsafsfa, { y: afasafsafsfa.y - _hight, update: new Laya.Handler(this, function () {
  1216. }) }, _duration, Laya.Ease.expoInOut, Laya.Handler.create(this, function () {
  1217. tween.clear();
  1218. if (hide) {
  1219. afasafsafsfa.destroy();
  1220. }
  1221. if (_completeHandle) {
  1222. _completeHandle.run();
  1223. }
  1224. }));
  1225. if (hide) {
  1226. Laya.Tween.to(afasafsafsfa, { alpha: 0.4 }, 500);
  1227. }
  1228. return afasafsafsfa;
  1229. }
  1230. static StationTweenText(faafssfafsa, _hight, _completeHandle = null, hide = true, _duration = 500) {
  1231. var afasafsafsfa = new Laya.Text();
  1232. afasafsafsfa.width = faafssfafsa.size.x;
  1233. afasafsafsfa.height = faafssfafsa.size.y;
  1234. afasafsafsfa.align = "center";
  1235. afasafsafsfa.valign = "middle";
  1236. afasafsafsfa.font = "Microsoft YaHei";
  1237. afasafsafsfa.fontSize = 50;
  1238. afasafsafsfa.pivotX = afasafsafsfa.width / 2;
  1239. afasafsafsfa.pivotY = afasafsafsfa.height / 2;
  1240. afasafsafsfa.color = "#5ad122";
  1241. afasafsafsfa.bold = true;
  1242. afasafsafsfa.stroke = 5;
  1243. afasafsafsfa.strokeColor = "#ffffff";
  1244. if (faafssfafsa.color) {
  1245. faafssfafsa.color = faafssfafsa.color;
  1246. }
  1247. afasafsafsfa.text = faafssfafsa.message;
  1248. afasafsafsfa.zOrder = 1;
  1249. Laya.stage.addChildAt(afasafsafsfa, Laya.stage.numChildren - 1);
  1250. afasafsafsfa.pos(faafssfafsa.pos.x, faafssfafsa.pos.y);
  1251. var tween = Laya.Tween.to(afasafsafsfa, { y: afasafsafsfa.y - _hight, update: new Laya.Handler(this, function () {
  1252. }) }, _duration, Laya.Ease.expoInOut, Laya.Handler.create(this, function () {
  1253. tween.clear();
  1254. if (hide) {
  1255. afasafsafsfa.destroy();
  1256. }
  1257. if (_completeHandle) {
  1258. _completeHandle.run();
  1259. }
  1260. }));
  1261. if (hide) {
  1262. Laya.Tween.to(afasafsafsfa, { alpha: 0.4 }, 10000);
  1263. }
  1264. return afasafsafsfa;
  1265. }
  1266. static tweenMove(transform, targPos, delay, ease, complete) {
  1267. let curPos = transform.position.clone();
  1268. return Laya.Tween.to(curPos, {
  1269. x: targPos.x,
  1270. y: targPos.y,
  1271. z: targPos.z,
  1272. update: new Laya.Handler(this, () => {
  1273. transform.position = curPos.clone();
  1274. })
  1275. }, delay, ease, complete);
  1276. }
  1277. static tweenRotate(transform, targEuler, delay, ease, complete) {
  1278. let curEuler = transform.rotationEuler.clone();
  1279. return Laya.Tween.to(curEuler, {
  1280. x: targEuler.x,
  1281. y: targEuler.y,
  1282. z: targEuler.z,
  1283. update: new Laya.Handler(this, () => {
  1284. transform.rotationEuler = curEuler.clone();
  1285. })
  1286. }, delay, ease, complete);
  1287. }
  1288. }
  1289. var MusicType;
  1290. (function (MusicType) {
  1291. MusicType[MusicType["clear"] = 0] = "clear";
  1292. MusicType[MusicType["down"] = 1] = "down";
  1293. })(MusicType || (MusicType = {}));
  1294. class AudioManager {
  1295. constructor() { }
  1296. static musicres(_type) {
  1297. return "Game/res/Music/" + MusicType[_type] + ".wav";
  1298. }
  1299. static playMusic(_type) {
  1300. if (!this.open)
  1301. return;
  1302. Laya.SoundManager.playSound(this.musicres(_type));
  1303. }
  1304. static StopMusic() {
  1305. Laya.SoundManager.stopMusic();
  1306. }
  1307. }
  1308. AudioManager.open = true;
  1309. class DropRule {
  1310. constructor() {
  1311. this.EffectName = new Array("blue", "yellow", "purple", "green");
  1312. this.EffectArray = [];
  1313. this.PrefabName = new Array("2", "4", "8", "16", "32", "64", "128", "256", "512", "1024", "2048", "4096", "8192", "16384", "32768", "65536", "131072", "262144");
  1314. this.Cloned = false;
  1315. DropRule.ins = this;
  1316. this.Init();
  1317. this.InitEffect();
  1318. EventManager.StageOn(StageMode.Refresh, this, this.Init);
  1319. }
  1320. static get Instance() {
  1321. if (DropRule.ins) {
  1322. return DropRule.ins;
  1323. }
  1324. else {
  1325. return new DropRule();
  1326. }
  1327. }
  1328. Init(_data) {
  1329. this.STAGE = Number(AccountManager.Instance.curplayerData.GainAccount("stage"));
  1330. let level = AccountManager.Instance.curplayerData.GainCollocation("level");
  1331. if (_data) {
  1332. for (var key in level) {
  1333. if (level[key].id == this.STAGE) {
  1334. let Level = level[Number(key)];
  1335. this.DropHeight = Number(Level.hight);
  1336. this.GoalScore = Number(Level.goal);
  1337. this.BallNum = Level.edge.split(";");
  1338. this.StartNum = Number(Level.start_number);
  1339. this.DropNum = Level.drop_number.split(";");
  1340. let min = Number(this.BallNum[0]);
  1341. let minnext = Number(this.BallNum[1]);
  1342. this.MinBall = Number(this.PrefabName[min - 1]);
  1343. this.MinNextBall = Number(this.PrefabName[minnext - 1]);
  1344. }
  1345. }
  1346. }
  1347. else {
  1348. for (var key in level) {
  1349. if (level[key].id == this.STAGE) {
  1350. let Level = level[Number(key)];
  1351. this.DropHeight = Number(Level.hight);
  1352. this.GoalScore = Number(Level.goal);
  1353. this.SizeIndex = Level.index.split(";");
  1354. console.log(this.SizeIndex);
  1355. this.BallNum = Level.edge.split(";");
  1356. this.StartNum = Number(Level.start_number);
  1357. this.DropNum = Level.drop_number.split(";");
  1358. this.EdgeIndex = Level.edgeindex.split(";");
  1359. let min = Number(this.BallNum[0]);
  1360. let minnext = Number(this.BallNum[this.BallNum.length - 1]);
  1361. this.MinBall = Number(this.PrefabName[min - 1]);
  1362. this.MinNextBall = Number(this.PrefabName[minnext - 1]);
  1363. }
  1364. }
  1365. }
  1366. this.Read();
  1367. }
  1368. InitEffect() {
  1369. for (let i = 0; i < this.EffectName.length; i++) {
  1370. this.ReadJson(i);
  1371. }
  1372. }
  1373. ReadJson(i) {
  1374. Laya.loader.create("Effect/" + this.EffectName[i] + ".json", Laya.Handler.create(this, this.creat));
  1375. }
  1376. creat(Prefab) {
  1377. let obj = new Laya.Prefab();
  1378. obj.json = Prefab;
  1379. this.EffectArray.push(obj);
  1380. }
  1381. CreateEffect(_score, _pos) {
  1382. let effect;
  1383. let index;
  1384. if (_score == 2 || _score == 16 || _score == 256 || _score == 2048 || _score == 32768 || _score == 262144) {
  1385. effect = this.EffectArray[3];
  1386. index = 3;
  1387. }
  1388. else if (_score == 8 || _score == 32 || _score == 4096 || _score == 131072) {
  1389. effect = this.EffectArray[1];
  1390. index = 1;
  1391. }
  1392. else if (_score == 64 || _score == 512 || _score == 16384) {
  1393. effect = this.EffectArray[2];
  1394. index = 2;
  1395. }
  1396. else if (_score == 4 || _score == 128 || _score == 1024 || _score == 8192 || _score == 65536) {
  1397. effect = this.EffectArray[0];
  1398. index = 0;
  1399. }
  1400. let pre = Laya.Pool.getItemByCreateFun(this.EffectName[index], effect.create, effect);
  1401. pre.pos(_pos.x, _pos.y);
  1402. Laya.stage.addChild(pre);
  1403. pre.on(Laya.Event.COMPLETE, this, () => {
  1404. pre.removeSelf();
  1405. pre.destroy();
  1406. });
  1407. }
  1408. GetBallIndex(_score) {
  1409. let num;
  1410. for (let i = 0; i < this.PrefabName.length; i++) {
  1411. if (_score == Number(this.PrefabName[i])) {
  1412. num = i;
  1413. }
  1414. else if (_score > Number(this.PrefabName[i]) && _score < Number(this.PrefabName[i + 1])) {
  1415. num = i;
  1416. }
  1417. }
  1418. return num;
  1419. }
  1420. GetScore(_score) {
  1421. let num;
  1422. for (let i = 0; i < this.PrefabName.length; i++) {
  1423. if (_score == Number(this.PrefabName[i])) {
  1424. num = Number(this.PrefabName[i]);
  1425. }
  1426. else if (_score > Number(this.PrefabName[i]) && _score < Number(this.PrefabName[i + 1])) {
  1427. num = Number(this.PrefabName[i]);
  1428. }
  1429. }
  1430. return num;
  1431. }
  1432. GetBallSize(_score) {
  1433. let num;
  1434. let index;
  1435. let size = 0;
  1436. for (let i = 0; i < this.PrefabName.length; i++) {
  1437. if (_score == Number(this.PrefabName[i])) {
  1438. num = i;
  1439. }
  1440. else if (_score > Number(this.PrefabName[i]) && _score < Number(this.PrefabName[i + 1])) {
  1441. num = i;
  1442. }
  1443. }
  1444. for (let j = 0; j < this.EdgeIndex.length; j++) {
  1445. if (num + 1 == Number(this.EdgeIndex[j])) {
  1446. index = Number(this.SizeIndex[j]);
  1447. size = this.Size(num + 1, index);
  1448. }
  1449. }
  1450. if (size == 0) {
  1451. let cimi = Number(this.EdgeIndex[this.EdgeIndex.length - 1]);
  1452. index = Number(this.SizeIndex[this.EdgeIndex.length - 1]);
  1453. size = this.Size(cimi, index);
  1454. let n = (num + 1) - cimi;
  1455. size = size + (n * 5);
  1456. }
  1457. return size;
  1458. }
  1459. Size(_index, sizelevel) {
  1460. let ballsize;
  1461. let ball = AccountManager.Instance.curplayerData.GainCollocation("ball");
  1462. for (var key in ball) {
  1463. let item = ball[key];
  1464. if (_index == item.ball && sizelevel == item.size_level) {
  1465. ballsize = Number(item.size);
  1466. }
  1467. }
  1468. return ballsize;
  1469. }
  1470. CreatBall(_index, size, pos) {
  1471. let ball = new Laya.Image();
  1472. ball.skin = "Game/res/Ball/blast" + _index + ".png";
  1473. ball.anchorX = 0.5;
  1474. ball.anchorY = 0.5;
  1475. ball.height = size;
  1476. ball.width = size;
  1477. let collider = ball.addComponent(Laya.CircleCollider);
  1478. collider.restitution = AccountManager.Instance.curplayerData.Restitution;
  1479. collider.radius = size / 2;
  1480. console.log("碰撞器半径--", collider.radius, size);
  1481. let rig = ball.addComponent(Laya.RigidBody);
  1482. rig.gravityScale = 3;
  1483. let num = new Laya.FontClip();
  1484. num.name = "num";
  1485. num.skin = "Game/res/Ball/44.png";
  1486. num.anchorX = 0.5;
  1487. num.anchorY = 0.5;
  1488. num.sheet = "0123456789";
  1489. let zi = this.PrefabName[_index];
  1490. num.value = zi;
  1491. ball.addChild(num);
  1492. num.centerX = 0;
  1493. num.centerY = 0;
  1494. let light = new Laya.Image();
  1495. light.skin = "Game/res/Ball/" + zi + ".png";
  1496. light.anchorX = 0.5;
  1497. light.anchorY = 0.5;
  1498. light.width = this.LightSize(size);
  1499. light.height = this.LightSize(size);
  1500. light.name = "light";
  1501. ball.addChild(light);
  1502. light.centerX = 0;
  1503. light.centerY = 0;
  1504. let script = ball.addComponent(Ball);
  1505. ball.pos(pos.x, pos.y);
  1506. Laya.timer.once(1, this, () => {
  1507. EventManager.StageTrigger(StageMode.Clone, [ball]);
  1508. });
  1509. this.Cloned = true;
  1510. AudioManager.playMusic(MusicType.down);
  1511. }
  1512. CreatBall2(_index, size, pos) {
  1513. let ball = new Laya.Image();
  1514. ball.skin = "Game/res/Ball/blast" + _index + ".png";
  1515. ball.anchorX = 0.5;
  1516. ball.anchorY = 0.5;
  1517. ball.height = size;
  1518. ball.width = size;
  1519. let collider = ball.addComponent(Laya.CircleCollider);
  1520. collider.restitution = AccountManager.Instance.curplayerData.Restitution;
  1521. if (this.STAGE == 1 && GameManager.Instance.Wave < 3) {
  1522. collider.restitution = 0;
  1523. }
  1524. collider.radius = size / 2;
  1525. let rig = ball.addComponent(Laya.RigidBody);
  1526. rig.allowRotation = true;
  1527. rig.gravityScale = 3;
  1528. let num = new Laya.FontClip();
  1529. num.name = "num";
  1530. num.skin = "Game/res/Ball/44.png";
  1531. num.anchorX = 0.5;
  1532. num.anchorY = 0.5;
  1533. num.sheet = "0123456789";
  1534. let zi = this.PrefabName[_index];
  1535. num.value = zi;
  1536. ball.addChild(num);
  1537. num.centerX = 0;
  1538. num.centerY = 0;
  1539. let light = new Laya.Image();
  1540. light.skin = "Game/res/Ball/" + zi + ".png";
  1541. light.anchorX = 0.5;
  1542. light.anchorY = 0.5;
  1543. light.width = this.LightSize(size);
  1544. light.height = this.LightSize(size);
  1545. light.name = "light";
  1546. ball.addChild(light);
  1547. light.centerX = 0;
  1548. light.centerY = 0;
  1549. let script = ball.addComponent(Ball);
  1550. this.SetPosition(ball, pos);
  1551. Laya.timer.once(1, this, () => {
  1552. EventManager.StageTrigger(StageMode.Clone, [ball]);
  1553. });
  1554. AudioManager.playMusic(MusicType.down);
  1555. }
  1556. SetPosition(_node, _pos) {
  1557. _node.pos(_pos.x, _pos.y);
  1558. }
  1559. LightSize(_size) {
  1560. let num;
  1561. switch (_size) {
  1562. case 65:
  1563. num = 79;
  1564. break;
  1565. case 70:
  1566. num = 87;
  1567. break;
  1568. case 75:
  1569. num = 95;
  1570. break;
  1571. case 80:
  1572. num = 100;
  1573. break;
  1574. case 85:
  1575. num = 105;
  1576. break;
  1577. case 90:
  1578. num = 110;
  1579. break;
  1580. case 95:
  1581. num = 117;
  1582. break;
  1583. case 100:
  1584. num = 124;
  1585. break;
  1586. case 105:
  1587. num = 130;
  1588. break;
  1589. case 110:
  1590. num = 136;
  1591. break;
  1592. case 115:
  1593. num = 143;
  1594. break;
  1595. case 120:
  1596. num = 150;
  1597. break;
  1598. case 125:
  1599. num = 152;
  1600. break;
  1601. case 130:
  1602. num = 160;
  1603. break;
  1604. case 135:
  1605. num = 165;
  1606. break;
  1607. case 140:
  1608. num = 174;
  1609. break;
  1610. case 145:
  1611. num = 181;
  1612. break;
  1613. case 150:
  1614. num = 186;
  1615. break;
  1616. case 155:
  1617. num = 192;
  1618. break;
  1619. case 160:
  1620. num = 199;
  1621. break;
  1622. case 165:
  1623. num = 202;
  1624. break;
  1625. case 170:
  1626. num = 210;
  1627. break;
  1628. case 175:
  1629. num = 215;
  1630. break;
  1631. case 180:
  1632. num = 223;
  1633. break;
  1634. }
  1635. return num;
  1636. }
  1637. FallDown(_time) {
  1638. if (!_time) {
  1639. let mindrop = Number(this.DropNum[0]);
  1640. let maxdrop = Number(this.DropNum[1]);
  1641. _time = GameTools.RandomANumber(mindrop, maxdrop + 1);
  1642. }
  1643. let min = Number(this.BallNum[0]);
  1644. let max = Number(this.BallNum[this.BallNum.length - 1]);
  1645. let index;
  1646. let size;
  1647. for (let j = 0; j < _time; j++) {
  1648. let num = GameTools.RandomANumber(min, max + 1);
  1649. for (let i = 0; i < this.BallNum.length; i++) {
  1650. if (num == Number(this.BallNum[i])) {
  1651. index = Number(this.SizeIndex[i]);
  1652. size = this.Size(num, index);
  1653. }
  1654. }
  1655. let X = GameTools.RandomANumber(100, 500);
  1656. let pos = new Laya.Vector2(X, 30);
  1657. this.CreatBall2(num - 1, size, pos);
  1658. }
  1659. }
  1660. GuideFallDown() {
  1661. GameManager.Instance.CheckHeight = false;
  1662. let num;
  1663. let shuliang;
  1664. if (GameManager.Instance.Wave == 1) {
  1665. shuliang = 2;
  1666. num = 1;
  1667. }
  1668. else if (GameManager.Instance.Wave == 2) {
  1669. shuliang = 2;
  1670. num = 2;
  1671. }
  1672. else if (GameManager.Instance.Wave == 3) {
  1673. shuliang = 6;
  1674. num = 1;
  1675. }
  1676. else if (GameManager.Instance.Wave == 4) {
  1677. shuliang = 12;
  1678. num = 1;
  1679. }
  1680. else if (GameManager.Instance.Wave == 5) {
  1681. shuliang = 6;
  1682. num = 2;
  1683. }
  1684. else if (GameManager.Instance.Wave == 6) {
  1685. shuliang = 12;
  1686. num = 2;
  1687. }
  1688. else {
  1689. GameManager.Instance.CheckHeight = true;
  1690. this.DropHeight = AccountManager.Instance.curplayerData.GuideHeight;
  1691. let mindrop = Number(this.DropNum[0]);
  1692. let maxdrop = Number(this.DropNum[1]);
  1693. num = GameTools.RandomANumber(mindrop, maxdrop + 1);
  1694. }
  1695. let score = Number(this.PrefabName[num - 1]);
  1696. let index = this.GetBallIndex(score);
  1697. let size = this.GetBallSize(score);
  1698. for (let j = 0; j < shuliang; j++) {
  1699. let X = GameTools.RandomANumber(100, 500);
  1700. let pos = new Laya.Vector2(X, 30);
  1701. this.CreatBall2(num - 1, size, pos);
  1702. }
  1703. }
  1704. RecoverScene() {
  1705. for (let i = 0; i < this.progress.length - 3; i++) {
  1706. let item = this.progress[i];
  1707. this.CreatBall2(Number(item.index) - 1, Number(item.size), new Laya.Vector2(Number(item.pos.x), Number(item.pos.y)));
  1708. }
  1709. }
  1710. Read() {
  1711. if (this.STAGE > 1) {
  1712. var args = [{ "stage": "0" }];
  1713. ServerManager.Instance.SendHttp(BlastToMerge.GetProgress, args, Laya.Handler.create(this, (res) => {
  1714. let json = JSON.parse(res.user_game.detail);
  1715. this.progress = json;
  1716. if (this.progress.length > 1) {
  1717. let items = this.progress[this.progress.length - 2];
  1718. let _score = Number(items.jindu);
  1719. GameManager.Instance.ScoreProgress = _score;
  1720. this.SizeIndex = this.progress[this.progress.length - 1].sizeindex;
  1721. this.EdgeIndex = this.progress[this.progress.length - 3].edgeindex;
  1722. }
  1723. console.log("获取进度成功");
  1724. }), Laya.Handler.create(this, () => {
  1725. console.log("获取进度失败");
  1726. }));
  1727. }
  1728. }
  1729. }
  1730. var Vector2 = Laya.Vector2;
  1731. class Ball extends Laya.Script {
  1732. constructor() {
  1733. super();
  1734. this.moved = false;
  1735. this.mark = false;
  1736. this.clear = false;
  1737. this.score = 0;
  1738. Ball.ins = this;
  1739. }
  1740. static get Instance() {
  1741. if (Ball.ins) {
  1742. return Ball.ins;
  1743. }
  1744. else {
  1745. return new Ball();
  1746. }
  1747. }
  1748. onAwake() {
  1749. this.Light = this.owner.getChildByName("light");
  1750. this.Light.visible = false;
  1751. this.owner.on(Laya.Event.CLICK, this, this.ClickBall);
  1752. EventManager.EventOn(PropEffecf.DOUBLE, this, this.ClickDouble);
  1753. EventManager.EventOn(PropEffecf.NONE, this, this.ClickNone);
  1754. EventManager.EventOn(PropEffecf.HAMMER, this, this.ClickHammer);
  1755. let score = this.owner.getChildByName("num");
  1756. this.score = Number(score.value);
  1757. }
  1758. onUpdate() {
  1759. this.CheckLight();
  1760. if (this.mark) {
  1761. let _rig = this.owner.getComponent(Laya.RigidBody);
  1762. let _collider = this.owner.getComponent(Laya.CircleCollider);
  1763. _collider.isSensor = true;
  1764. _collider.enabled = false;
  1765. _rig.enabled = false;
  1766. this.Move(GameManager.Instance.TargetPosition);
  1767. this.moved = true;
  1768. }
  1769. }
  1770. CheckLight() {
  1771. let _node = this.owner;
  1772. for (let i = 0; i < InGameView.Instance.prefabbox.numChildren; i++) {
  1773. let other = InGameView.Instance.prefabbox.getChildAt(i);
  1774. let ball = other.getComponent(Ball);
  1775. if (other.x == _node.x && other.y == _node.y) {
  1776. continue;
  1777. }
  1778. let distan = Laya.Vector3.distance(new Laya.Vector3(other.x, other.y, 0), new Laya.Vector3(_node.x, _node.y, 0));
  1779. let dis = _node.width / 2 + other.width / 2;
  1780. if (Math.abs(distan - dis) <= 3 || Math.abs(distan - dis) <= 3) {
  1781. if (ball.score == this.score) {
  1782. this.Light.visible = true;
  1783. }
  1784. }
  1785. }
  1786. }
  1787. ClickNone() {
  1788. this.owner.off(Laya.Event.CLICK, this, this.Hammer);
  1789. this.owner.off(Laya.Event.CLICK, this, this.Double);
  1790. this.owner.on(Laya.Event.CLICK, this, this.ClickBall);
  1791. }
  1792. ClickDouble() {
  1793. this.owner.off(Laya.Event.CLICK, this, this.ClickBall);
  1794. this.owner.off(Laya.Event.CLICK, this, this.Hammer);
  1795. this.owner.on(Laya.Event.CLICK, this, this.Double);
  1796. }
  1797. Double() {
  1798. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "fid": "1" }];
  1799. ServerManager.Instance.SendHttp(BlastToMerge.Use, args, Laya.Handler.create(this, () => {
  1800. let num = this.score * 2;
  1801. let owner = this.owner;
  1802. let _position = new Laya.Vector2(owner.x, owner.y);
  1803. let _rig = this.owner.getComponent(Laya.RigidBody);
  1804. let _collider = this.owner.getComponent(Laya.CircleCollider);
  1805. _collider.enabled = false;
  1806. _rig.enabled = false;
  1807. this.owner.removeSelf();
  1808. this.owner.destroy();
  1809. let id = DropRule.Instance.GetBallIndex(num);
  1810. let size = DropRule.Instance.GetBallSize(num);
  1811. GameManager.Instance.ScoreProgress += num;
  1812. DropRule.Instance.CreatBall(id, size, _position);
  1813. InGameView.Instance.SkillNumRefresh();
  1814. EventManager.EventTrigger(PropEffecf.NONE);
  1815. }), Laya.Handler.create(this, () => {
  1816. console.log("道具使用失败");
  1817. }));
  1818. }
  1819. ClickHammer() {
  1820. this.owner.off(Laya.Event.CLICK, this, this.ClickBall);
  1821. this.owner.off(Laya.Event.CLICK, this, this.Double);
  1822. this.owner.on(Laya.Event.CLICK, this, this.Hammer);
  1823. }
  1824. Hammer() {
  1825. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "fid": "4" }];
  1826. ServerManager.Instance.SendHttp(BlastToMerge.Use, args, Laya.Handler.create(this, () => {
  1827. let num = this.score;
  1828. let owner = this.owner;
  1829. GameManager.Instance.ScoreProgress += num;
  1830. let _rig = this.owner.getComponent(Laya.RigidBody);
  1831. let _collider = this.owner.getComponent(Laya.CircleCollider);
  1832. _collider.enabled = false;
  1833. _rig.enabled = false;
  1834. this.owner.removeSelf();
  1835. this.owner.destroy();
  1836. InGameView.Instance.SkillNumRefresh();
  1837. EventManager.EventTrigger(PropEffecf.NONE);
  1838. InGameView.Instance.EffectMode(false);
  1839. }), Laya.Handler.create(this, () => {
  1840. console.log("道具使用失败");
  1841. }));
  1842. }
  1843. onDestroy() {
  1844. this.owner.offAll();
  1845. EventManager.EventOff(PropEffecf.DOUBLE, this, this.ClickDouble);
  1846. EventManager.EventOff(PropEffecf.NONE, this, this.ClickNone);
  1847. EventManager.EventOff(PropEffecf.HAMMER, this, this.ClickHammer);
  1848. }
  1849. Move(_position) {
  1850. if (!this.moved) {
  1851. let owner = this.owner;
  1852. GameManager.Instance.EliminateNum += 1;
  1853. let ball = owner.getComponent(Ball);
  1854. let ownerscore = ball.score;
  1855. GameManager.Instance.ScoreRecord += ownerscore;
  1856. GameManager.Instance.ScoreRecord2 = GameManager.Instance.ScoreRecord;
  1857. let move = Laya.Tween.to(this.owner, {
  1858. x: _position.x, y: _position.y, update: new Laya.Handler(this, function () {
  1859. })
  1860. }, AccountManager.Instance.curplayerData.MergeSpeed * 1000, Laya.Ease.linearInOut, Laya.Handler.create(this, () => {
  1861. move.clear();
  1862. this.owner.removeSelf();
  1863. this.owner.destroy();
  1864. if (!DropRule.Instance.Cloned) {
  1865. let num = DropRule.Instance.GetBallIndex(GameManager.Instance.ScoreRecord2);
  1866. let size = DropRule.Instance.GetBallSize(GameManager.Instance.ScoreRecord2);
  1867. let score = DropRule.Instance.GetScore(GameManager.Instance.ScoreRecord2);
  1868. let ball = DropRule.Instance.CreatBall(num, size, GameManager.Instance.TargetPosition);
  1869. GameManager.Instance.ScoreProgress += score;
  1870. if (GameManager.Instance.EliminateNum >= AccountManager.Instance.curplayerData.ShakeNum) {
  1871. WXSDK.Shake();
  1872. }
  1873. GameManager.Instance.EliminateNum = 0;
  1874. GameManager.Instance.ScoreRecord = 0;
  1875. GameManager.Instance.played = false;
  1876. GameManager.Instance.Wave += 1;
  1877. AudioManager.playMusic(MusicType.clear);
  1878. if (DropRule.Instance.STAGE == 1) {
  1879. if (InGameView.Instance.Guide.visible == true) {
  1880. InGameView.Instance.Guide.visible = false;
  1881. }
  1882. DropRule.Instance.GuideFallDown();
  1883. }
  1884. EventManager.StageTrigger(StageMode.Check);
  1885. }
  1886. }));
  1887. }
  1888. }
  1889. ClickBall() {
  1890. let owner = this.owner;
  1891. DropRule.Instance.Cloned = false;
  1892. GameManager.Instance.TargetPosition = new Vector2(owner.x, owner.y);
  1893. this.MouseClick(owner);
  1894. }
  1895. MouseClick(_node) {
  1896. let _nodeball = _node.getComponent(Ball);
  1897. for (let i = 0; i < InGameView.Instance.prefabbox.numChildren; i++) {
  1898. let other = InGameView.Instance.prefabbox.getChildAt(i);
  1899. let ball = other.getComponent(Ball);
  1900. if (other.x == _node.x && other.y == _node.y) {
  1901. continue;
  1902. }
  1903. if (ball.mark) {
  1904. continue;
  1905. }
  1906. let distan = Laya.Vector3.distance(new Laya.Vector3(other.x, other.y, 0), new Laya.Vector3(_node.x, _node.y, 0));
  1907. let distanceX = Math.abs(_node.x - other.x);
  1908. let distanceY = Math.abs(_node.y - other.y);
  1909. let dis = _node.width / 2 + other.width / 2;
  1910. if (Math.abs(distan - dis) <= 3 || Math.abs(distan - dis) <= 3) {
  1911. if (ball.score == _nodeball.score) {
  1912. ball.mark = true;
  1913. this.MouseClick(other);
  1914. }
  1915. }
  1916. }
  1917. }
  1918. }
  1919. class InGameView extends ui.InGameSceneUI {
  1920. constructor() {
  1921. super();
  1922. this.LoseView = false;
  1923. this.WinView = false;
  1924. InGameView.ins = this;
  1925. EventManager.StageOn(StageMode.Clone, this, this.AddPrefab);
  1926. EventManager.StageOn(StageMode.Win, this, this.Win);
  1927. EventManager.StageOn(StageMode.Lose, this, this.Lose);
  1928. EventManager.StageOn(StageMode.ReStart, this, this.ReStart);
  1929. EventManager.StageOn(StageMode.Over, this, this.Over);
  1930. EventManager.StageOn(StageMode.Revive, this, this.Revive);
  1931. EventManager.StageOn(StageMode.Check, this, this.Check);
  1932. }
  1933. static get Instance() {
  1934. if (InGameView.ins) {
  1935. return InGameView.ins;
  1936. }
  1937. else {
  1938. return new InGameView();
  1939. }
  1940. }
  1941. Show() {
  1942. let stage = AccountManager.Instance.curplayerData.GainAccount("stage");
  1943. this.STAGE = Number(stage);
  1944. Laya.timer.loop(AccountManager.Instance.curplayerData.Save * 1000, this, this.Save);
  1945. Laya.timer.once(200, this, this.SkillRefresh);
  1946. Laya.timer.frameLoop(2, this, this.CheckHeight);
  1947. Laya.timer.frameLoop(1, this, this.Progress);
  1948. Laya.timer.once(AccountManager.Instance.curplayerData.CheckLose * 1000, this, this.CheckLose);
  1949. Laya.timer.frameLoop(500, this, this.SkillAnimation);
  1950. this.ScoreRefresh();
  1951. this.SkillNumRefresh();
  1952. this.arrowbtn.clickHandler = new Laya.Handler(this, this.ClickArrow);
  1953. this.zhunxin1btn.clickHandler = new Laya.Handler(this, this.ClickZhunXin1);
  1954. this.zhunxin2btn.clickHandler = new Laya.Handler(this, this.ClickZhunXin2);
  1955. this.doublebtn.clickHandler = new Laya.Handler(this, this.ClickDouble);
  1956. this.hammerbtn.clickHandler = new Laya.Handler(this, this.ClickHammer);
  1957. this.height = Laya.stage.height;
  1958. this.BG.height = Laya.stage.height;
  1959. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  1960. this.height = Laya.stage.height;
  1961. this.BG.height = Laya.stage.height;
  1962. });
  1963. }
  1964. Check() {
  1965. Laya.timer.clear(this, this.CheckLose);
  1966. Laya.timer.once(AccountManager.Instance.curplayerData.CheckLose * 1000, this, this.CheckLose);
  1967. }
  1968. AddPrefab(ball) {
  1969. this.prefabbox.addChild(ball);
  1970. }
  1971. CheckHeight() {
  1972. if (GameManager.Instance.CheckHeight) {
  1973. let down = false;
  1974. for (let i = 0; i < this.prefabbox.numChildren; i++) {
  1975. let child = this.prefabbox.getChildAt(i);
  1976. if (child.y < DropRule.Instance.DropHeight) {
  1977. down = true;
  1978. }
  1979. }
  1980. if (!down) {
  1981. DropRule.Instance.FallDown();
  1982. }
  1983. }
  1984. }
  1985. CheckLose() {
  1986. if (!this.LoseView) {
  1987. let lose = true;
  1988. for (let i = 0; i < this.prefabbox.numChildren; i++) {
  1989. let ball = this.prefabbox.getChildAt(i);
  1990. let light = ball.getChildByName("light");
  1991. if (light.visible) {
  1992. lose = false;
  1993. }
  1994. }
  1995. if (lose) {
  1996. this.LoseView = true;
  1997. Laya.timer.clear(this, this.Save);
  1998. this.Save(true);
  1999. EventManager.StageTrigger(StageMode.Lose);
  2000. }
  2001. }
  2002. }
  2003. ScoreRefresh() {
  2004. let score = DropRule.Instance.GoalScore;
  2005. this.NowLv.value = DropRule.Instance.STAGE.toString();
  2006. this.NextLv.value = (DropRule.Instance.STAGE + 1).toString();
  2007. this.NowScore.text = GameManager.Instance.ScoreProgress.toString();
  2008. this.RequireScore.text = score.toString();
  2009. }
  2010. SkillNumRefresh() {
  2011. this.Func1num.text = AccountManager.Instance.curplayerData.GetPropNum(1).toString();
  2012. this.Func2num.text = AccountManager.Instance.curplayerData.GetPropNum(2).toString();
  2013. this.Func3num.text = AccountManager.Instance.curplayerData.GetPropNum(3).toString();
  2014. this.Func4num.text = AccountManager.Instance.curplayerData.GetPropNum(4).toString();
  2015. this.Func5num.text = AccountManager.Instance.curplayerData.GetPropNum(5).toString();
  2016. }
  2017. SkillRefresh() {
  2018. this.ani1.play(null, false);
  2019. this.ani2.play(null, false);
  2020. this.ani3.play(null, false);
  2021. this.ani4.play(null, false);
  2022. this.ani5.play(null, false);
  2023. }
  2024. SkillAnimation() {
  2025. let random = GameTools.RandomANumber(1, 6);
  2026. switch (random) {
  2027. case 1:
  2028. this.ani1.play(null, false);
  2029. break;
  2030. case 2:
  2031. this.ani2.play(null, false);
  2032. break;
  2033. case 3:
  2034. this.ani3.play(null, false);
  2035. break;
  2036. case 4:
  2037. this.ani4.play(null, false);
  2038. break;
  2039. case 5:
  2040. this.ani5.play(null, false);
  2041. break;
  2042. }
  2043. }
  2044. get Ratio() {
  2045. let score = DropRule.Instance.GoalScore;
  2046. let value = GameManager.Instance.ScoreProgress / score;
  2047. return value;
  2048. }
  2049. Progress() {
  2050. if (!this.WinView) {
  2051. this.LevelProgress.value = this.Ratio;
  2052. if (GameManager.Instance.ScoreProgress >= Number(this.RequireScore.text)) {
  2053. GameManager.Instance.ScoreProgress = Number(this.RequireScore.text);
  2054. this.NowScore.text = GameManager.Instance.ScoreProgress.toString();
  2055. Laya.timer.clear(this, this.Save);
  2056. Laya.timer.clear(this, this.CheckLose);
  2057. this.Save(true);
  2058. EventManager.StageTrigger(StageMode.Win);
  2059. this.WinView = true;
  2060. }
  2061. this.NowScore.text = GameManager.Instance.ScoreProgress.toString();
  2062. }
  2063. }
  2064. ClickArrow() {
  2065. console.log("点到了推球道具--");
  2066. if (Number(this.Func5num.text) > 0) {
  2067. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "fid": "5" }];
  2068. ServerManager.Instance.SendHttp(BlastToMerge.Use, args, Laya.Handler.create(this, () => {
  2069. for (let i = 0; i < this.prefabbox.numChildren; i++) {
  2070. let ball = this.prefabbox.getChildAt(i);
  2071. if (ball.destroyed) {
  2072. continue;
  2073. }
  2074. else {
  2075. let _rig = ball.getComponent(Laya.RigidBody);
  2076. _rig.applyLinearImpulseToCenter({ x: 0, y: -1000 });
  2077. }
  2078. }
  2079. this.SkillNumRefresh();
  2080. }), Laya.Handler.create(this, () => {
  2081. }));
  2082. }
  2083. }
  2084. ClickDouble() {
  2085. if (EventManager.PropState == PropEffecf.DOUBLE) {
  2086. EventManager.EventTrigger(PropEffecf.NONE);
  2087. console.log("切换为普通模式");
  2088. return;
  2089. }
  2090. if (EventManager.PropState != PropEffecf.NONE) {
  2091. this.EffectMode(false);
  2092. return;
  2093. }
  2094. if (Number(this.Func1num.text) > 0) {
  2095. EventManager.EventTrigger(PropEffecf.DOUBLE);
  2096. console.log("切换为双倍模式");
  2097. }
  2098. }
  2099. ClickZhunXin1() {
  2100. console.log("点到了准心1道具--");
  2101. if (Number(this.Func2num.text) > 0) {
  2102. if (EventManager.PropState == PropEffecf.NONE) {
  2103. this.EffectMode(true, PropEffecf.CLEARLAST);
  2104. }
  2105. else {
  2106. this.EffectMode(false);
  2107. }
  2108. }
  2109. }
  2110. ClickZhunXin2() {
  2111. console.log("点到了准心2道具--");
  2112. if (Number(this.Func3num.text) > 0) {
  2113. if (EventManager.PropState == PropEffecf.NONE) {
  2114. this.EffectMode(true, PropEffecf.CLEARTWO);
  2115. }
  2116. else {
  2117. this.EffectMode(false);
  2118. }
  2119. }
  2120. }
  2121. ClickHammer() {
  2122. console.log("点到了锤子道具--");
  2123. if (Number(this.Func4num.text) > 0) {
  2124. if (EventManager.PropState == PropEffecf.NONE) {
  2125. this.EffectMode(true, PropEffecf.HAMMER);
  2126. }
  2127. else {
  2128. this.EffectMode(false);
  2129. }
  2130. }
  2131. }
  2132. EffectMode(_open, _type = null) {
  2133. this.Effect.visible = _open;
  2134. if (_open) {
  2135. EventManager.PropState = _type;
  2136. let describe2 = this.Effect.getChildByName("describe2");
  2137. let describe = this.Effect.getChildByName("describe");
  2138. let icon = this.Effect.getChildByName("ICON");
  2139. switch (_type) {
  2140. case PropEffecf.CLEARLAST:
  2141. this.EffectBtn.visible = true;
  2142. describe.visible = true;
  2143. describe2.visible = false;
  2144. icon.visible = true;
  2145. icon.skin = this.GetIcon(DropRule.Instance.MinBall);
  2146. this.ClearNum.text = DropRule.Instance.MinBall.toString();
  2147. this.EffectBtn.clickHandler = Laya.Handler.create(this, this.ClearLast);
  2148. break;
  2149. case PropEffecf.CLEARTWO:
  2150. this.EffectBtn.visible = true;
  2151. describe.visible = true;
  2152. describe2.visible = false;
  2153. icon.visible = true;
  2154. icon.skin = this.GetIcon(DropRule.Instance.MinNextBall);
  2155. this.ClearNum.text = DropRule.Instance.MinNextBall.toString();
  2156. this.EffectBtn.clickHandler = Laya.Handler.create(this, this.ClearTwo);
  2157. break;
  2158. case PropEffecf.HAMMER:
  2159. this.EffectBtn.visible = false;
  2160. describe.visible = false;
  2161. describe2.visible = true;
  2162. icon.visible = false;
  2163. EventManager.EventTrigger(PropEffecf.HAMMER);
  2164. break;
  2165. }
  2166. }
  2167. else {
  2168. EventManager.PropState = PropEffecf.NONE;
  2169. this.EffectBtn.clickHandler = null;
  2170. }
  2171. }
  2172. ClearLast() {
  2173. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "fid": "2" }];
  2174. ServerManager.Instance.SendHttp(BlastToMerge.Use, args, Laya.Handler.create(this, () => {
  2175. for (let i = this.prefabbox.numChildren - 1; i > -1; i--) {
  2176. let prefab = this.prefabbox.getChildAt(i);
  2177. let ball = prefab.getComponent(Ball);
  2178. if (ball.score == DropRule.Instance.MinBall) {
  2179. GameManager.Instance.ScoreProgress += ball.score;
  2180. DropRule.Instance.CreateEffect(ball.score, new Laya.Vector2(prefab.x, prefab.y));
  2181. prefab.removeSelf();
  2182. }
  2183. }
  2184. this.SkillNumRefresh();
  2185. this.Effect.visible = false;
  2186. this.EffectBtn.clickHandler = null;
  2187. EventManager.PropState = PropEffecf.NONE;
  2188. }), Laya.Handler.create(this, () => {
  2189. console.log("道具使用失败");
  2190. }));
  2191. }
  2192. ClearTwo() {
  2193. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "fid": "3" }];
  2194. ServerManager.Instance.SendHttp(BlastToMerge.Use, args, Laya.Handler.create(this, () => {
  2195. for (let i = this.prefabbox.numChildren - 1; i > -1; i--) {
  2196. let prefab = this.prefabbox.getChildAt(i);
  2197. let ball = prefab.getComponent(Ball);
  2198. if (ball.score == DropRule.Instance.MinNextBall) {
  2199. GameManager.Instance.ScoreProgress += ball.score;
  2200. DropRule.Instance.CreateEffect(ball.score, new Laya.Vector2(prefab.x, prefab.y));
  2201. prefab.removeSelf();
  2202. }
  2203. }
  2204. this.SkillNumRefresh();
  2205. this.Effect.visible = false;
  2206. this.EffectBtn.clickHandler = null;
  2207. EventManager.PropState = PropEffecf.NONE;
  2208. }), Laya.Handler.create(this, () => {
  2209. console.log("道具使用失败");
  2210. }));
  2211. }
  2212. GetIcon(_score) {
  2213. let index;
  2214. for (let i = 0; i < DropRule.Instance.PrefabName.length; i++) {
  2215. if (_score == Number(DropRule.Instance.PrefabName[i])) {
  2216. index = i.toString();
  2217. }
  2218. }
  2219. return "Ball/blast" + index + ".png";
  2220. }
  2221. ClearStage() {
  2222. if (!this.prefabbox.destroyed) {
  2223. for (let i = this.prefabbox.numChildren - 1; i > -1; i--) {
  2224. let ball = this.prefabbox.getChildAt(i);
  2225. let _rig = ball.getComponent(Laya.RigidBody);
  2226. let _collider = ball.getComponent(Laya.CircleCollider);
  2227. _collider.enabled = false;
  2228. _rig.enabled = false;
  2229. Laya.timer.clearAll(ball);
  2230. ball.removeSelf();
  2231. ball.destroy();
  2232. }
  2233. }
  2234. }
  2235. Over() {
  2236. this.ClearStage();
  2237. EventManager.StageOff(StageMode.Clone, this, this.AddPrefab);
  2238. EventManager.StageOff(StageMode.Win, this, this.Win);
  2239. EventManager.StageOff(StageMode.Lose, this, this.Lose);
  2240. EventManager.StageOff(StageMode.ReStart, this, this.ReStart);
  2241. EventManager.StageOff(StageMode.Over, this, this.Over);
  2242. EventManager.StageOff(StageMode.Revive, this, this.Revive);
  2243. EventManager.StageOff(StageMode.Check, this, this.Check);
  2244. this.ClearCollider(this.BottomCollider);
  2245. this.ClearCollider(this.RightCollider);
  2246. this.ClearCollider(this.LeftCollider);
  2247. }
  2248. Revive() {
  2249. for (let i = this.prefabbox.numChildren - 1; i > -1; i--) {
  2250. let prefab = this.prefabbox.getChildAt(i);
  2251. let ball = prefab.getComponent(Ball);
  2252. for (let j = 0; j < DropRule.Instance.BallNum.length; j++) {
  2253. let Score = DropRule.Instance.GetBallIndex(ball.score);
  2254. if (Score + 1 == Number(DropRule.Instance.BallNum[j])) {
  2255. DropRule.Instance.CreateEffect(ball.score, new Laya.Vector2(prefab.x, prefab.y));
  2256. prefab.removeSelf();
  2257. }
  2258. }
  2259. }
  2260. Laya.timer.frameLoop(2, this, this.CheckHeight);
  2261. Laya.timer.once(500, this, () => {
  2262. this.LoseView = false;
  2263. });
  2264. }
  2265. Win() {
  2266. Laya.timer.clear(this, this.CheckHeight);
  2267. }
  2268. Lose() {
  2269. Laya.timer.clear(this, this.CheckHeight);
  2270. }
  2271. ReStart(_data) {
  2272. if (_data) {
  2273. for (let i = this.prefabbox.numChildren - 1; i > -1; i--) {
  2274. let prefab = this.prefabbox.getChildAt(i);
  2275. let ball = prefab.getComponent(Ball);
  2276. for (let j = 0; j < DropRule.Instance.BallNum.length; j++) {
  2277. let Score = DropRule.Instance.GetBallIndex(ball.score);
  2278. if (Score + 1 == Number(DropRule.Instance.BallNum[j])) {
  2279. DropRule.Instance.CreateEffect(ball.score, new Laya.Vector2(prefab.x, prefab.y));
  2280. prefab.removeSelf();
  2281. }
  2282. }
  2283. }
  2284. let ballarray = this.PassDeal;
  2285. if (ballarray.length > 4) {
  2286. let ballarray2 = [];
  2287. for (let m = 0; m < 4; m++) {
  2288. ballarray2.push(ballarray[m]);
  2289. }
  2290. for (let k = this.prefabbox.numChildren - 1; k > -1; k--) {
  2291. let prefab = this.prefabbox.getChildAt(k);
  2292. let ball = prefab.getComponent(Ball);
  2293. let dispear = false;
  2294. for (let l = 0; l < ballarray2.length; l++) {
  2295. if (ball.score < ballarray2[l]) {
  2296. dispear = true;
  2297. }
  2298. }
  2299. if (dispear) {
  2300. DropRule.Instance.CreateEffect(ball.score, new Laya.Vector2(prefab.x, prefab.y));
  2301. prefab.removeSelf();
  2302. }
  2303. }
  2304. }
  2305. Laya.timer.loop(5000, this, this.Save);
  2306. this.WinView = false;
  2307. this.ScoreRefresh();
  2308. this.Progress();
  2309. DropRule.Instance.FallDown(DropRule.Instance.StartNum);
  2310. Laya.timer.frameLoop(2, this, this.CheckHeight);
  2311. }
  2312. else {
  2313. this.ClearStage();
  2314. this.LoseView = false;
  2315. this.WinView = false;
  2316. this.ScoreRefresh();
  2317. this.Progress();
  2318. if (DropRule.Instance.STAGE == 1) {
  2319. this.Guide.visible = false;
  2320. GameManager.Instance.Wave = 1;
  2321. DropRule.Instance.GuideFallDown();
  2322. GameManager.Instance.CheckHeight = false;
  2323. }
  2324. else {
  2325. DropRule.Instance.FallDown(DropRule.Instance.StartNum);
  2326. }
  2327. Laya.timer.frameLoop(2, this, this.CheckHeight);
  2328. }
  2329. }
  2330. ClearCollider(_node) {
  2331. let collier = _node.getComponent(Laya.ChainCollider);
  2332. let rig = _node.getComponent(Laya.RigidBody);
  2333. if (collier) {
  2334. collier.enabled = false;
  2335. }
  2336. if (rig) {
  2337. rig.enabled = false;
  2338. }
  2339. if (_node) {
  2340. _node.removeSelf();
  2341. _node.destroy();
  2342. }
  2343. }
  2344. Close() {
  2345. Laya.timer.clearAll(this);
  2346. }
  2347. get PassDeal() {
  2348. let array = [];
  2349. for (let i = 0; i < this.prefabbox.numChildren; i++) {
  2350. let prefab = this.prefabbox.getChildAt(i);
  2351. let ball = prefab.getComponent(Ball);
  2352. if (array.length == 0) {
  2353. array.push(ball.score);
  2354. }
  2355. if (i > 0) {
  2356. let add = true;
  2357. for (let j = 0; j < array.length; j++) {
  2358. if (ball.score == array[j]) {
  2359. add = false;
  2360. }
  2361. }
  2362. if (add) {
  2363. array.push(ball.score);
  2364. }
  2365. }
  2366. }
  2367. if (array.length > 4) {
  2368. for (let k = 0; k < array.length; k++) {
  2369. for (let l = 0; l < array.length - k - 1; l++) {
  2370. if (array[l] < array[l + 1]) {
  2371. let temp = array[l];
  2372. array[l] = array[l + 1];
  2373. array[l + 1] = temp;
  2374. }
  2375. }
  2376. }
  2377. }
  2378. return array;
  2379. }
  2380. Save(_data) {
  2381. let ball;
  2382. let score;
  2383. let size;
  2384. let index;
  2385. let point;
  2386. let obj = {};
  2387. let objarray = [];
  2388. if (!_data) {
  2389. for (let i = 0; i < this.prefabbox.numChildren; i++) {
  2390. let prefab = this.prefabbox.getChildAt(i);
  2391. ball = prefab.getComponent(Ball);
  2392. score = ball.score;
  2393. index = (DropRule.Instance.GetBallIndex(score) + 1).toString();
  2394. size = prefab.width.toString();
  2395. point = new Laya.Vector2(prefab.x, prefab.y);
  2396. obj = { "index": index, "size": size, "pos": point };
  2397. objarray.push(obj);
  2398. }
  2399. let jindutiao = { "jindu": GameManager.Instance.ScoreProgress.toString() };
  2400. let sizeindex = { "sizeindex": DropRule.Instance.SizeIndex };
  2401. let edgeindex = { "edgeindex": DropRule.Instance.EdgeIndex };
  2402. objarray.push(edgeindex);
  2403. objarray.push(jindutiao);
  2404. objarray.push(sizeindex);
  2405. var progress = JSON.stringify(objarray);
  2406. var args = [{ "stage": DropRule.Instance.STAGE.toString() }, { "progress": progress }];
  2407. }
  2408. else {
  2409. obj = { "0": "0" };
  2410. objarray.push(obj);
  2411. var progress = JSON.stringify(objarray);
  2412. var args = [{ "stage": DropRule.Instance.STAGE.toString() }, { "progress": progress }];
  2413. }
  2414. ServerManager.Instance.SendHttp(BlastToMerge.Save, args, Laya.Handler.create(this, (res) => {
  2415. }), Laya.Handler.create(this, () => {
  2416. console.log("保存进度失败++");
  2417. }));
  2418. }
  2419. }
  2420. var on_off;
  2421. (function (on_off) {
  2422. on_off[on_off["on"] = 0] = "on";
  2423. on_off[on_off["off"] = 1] = "off";
  2424. })(on_off || (on_off = {}));
  2425. class Switch extends Laya.Script {
  2426. constructor() {
  2427. super();
  2428. this.kaiguan = on_off.off;
  2429. }
  2430. onAwake() {
  2431. this.CloseSprite = this.owner.getChildByName("close");
  2432. this.OpenSprite = this.owner.getChildByName("open");
  2433. this.Button = this.owner.getChildByName("btn");
  2434. this.Button.clickHandler = Laya.Handler.create(this, () => {
  2435. this.ChangeMode(this.kaiguan);
  2436. this.kaiguan++;
  2437. if (this.kaiguan > 1) {
  2438. this.kaiguan = 0;
  2439. }
  2440. }, null, false);
  2441. }
  2442. ListenOn_Off(on = true, OpenFunction = null, CloseFunction = null) {
  2443. this.kaiguan = on ? on_off.on : on_off.off;
  2444. this.OpenFunction = OpenFunction;
  2445. this.CloseFunction = CloseFunction;
  2446. this.ChangeMode(this.kaiguan);
  2447. this.kaiguan++;
  2448. if (this.kaiguan > 1) {
  2449. this.kaiguan = 0;
  2450. }
  2451. }
  2452. ChangeMode(_mode) {
  2453. switch (_mode) {
  2454. case on_off.off:
  2455. this.OpenSprite.visible = false;
  2456. this.CloseSprite.visible = true;
  2457. this.CloseFunction.run();
  2458. break;
  2459. case on_off.on:
  2460. this.OpenSprite.visible = true;
  2461. this.CloseSprite.visible = false;
  2462. this.OpenFunction.run();
  2463. break;
  2464. }
  2465. }
  2466. }
  2467. class SetView extends ui.SetViewUI {
  2468. constructor() {
  2469. super();
  2470. }
  2471. static get Instance() {
  2472. if (SetView.ins) {
  2473. return SetView.ins;
  2474. }
  2475. else {
  2476. return new SetView();
  2477. }
  2478. }
  2479. Show() {
  2480. this.userid.text = AccountManager.Instance.curplayerData.userId;
  2481. this.CloseBtn.clickHandler = Laya.Handler.create(this, this.ClickClose);
  2482. this.SoundSwitch = this.Sound.addComponent(Switch);
  2483. this.ShakeSwitch = this.Shake.addComponent(Switch);
  2484. this.SoundSwitch.ListenOn_Off(AudioManager.open, Laya.Handler.create(this, this.OpenSound, [true], false), Laya.Handler.create(this, this.OpenSound, [false], false));
  2485. this.ShakeSwitch.ListenOn_Off(WXSDK.shake, Laya.Handler.create(this, this.OpenShake, [true], false), Laya.Handler.create(this, this.OpenShake, [false], false));
  2486. this.height = Laya.stage.height;
  2487. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  2488. this.height = Laya.stage.height;
  2489. });
  2490. }
  2491. Close() {
  2492. }
  2493. ClickClose() {
  2494. ViewManager.Instance.ShowView(ViewType.MainView);
  2495. }
  2496. OpenSound(_open) {
  2497. AudioManager.open = _open;
  2498. }
  2499. OpenShake(_open) {
  2500. WXSDK.shake = _open;
  2501. }
  2502. }
  2503. class RankView extends ui.RankViewUI {
  2504. constructor() {
  2505. super();
  2506. }
  2507. static get Instance() {
  2508. if (RankView.ins) {
  2509. return RankView.ins;
  2510. }
  2511. else {
  2512. return new RankView();
  2513. }
  2514. }
  2515. Show() {
  2516. this.CloseBtn.clickHandler = Laya.Handler.create(this, this.ClickClose);
  2517. this.height = Laya.stage.height;
  2518. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  2519. this.height = Laya.stage.height;
  2520. });
  2521. }
  2522. Close() {
  2523. }
  2524. ClickClose() {
  2525. ViewManager.Instance.ShowView(ViewType.MainView);
  2526. }
  2527. }
  2528. class GuangGao {
  2529. static InitId() {
  2530. }
  2531. static JiaZaiShiPin() {
  2532. if (this.afsfsaafsfsa)
  2533. return;
  2534. if (!Laya.Browser.onWeiXin)
  2535. return;
  2536. this.fsaasfafssfa = Laya.Browser.window.wx.createRewardedVideoAd({ adUnitId: this.videlAdUnitId });
  2537. this.fsaasfafssfa.onLoad(() => {
  2538. console.log('激励视频 广告加载成功');
  2539. this.asfasfsaffsa = true;
  2540. });
  2541. this.fsaasfafssfa.onError(err => {
  2542. console.log("激励视屏加载失败:" + err);
  2543. this.asfasfsaffsa = false;
  2544. });
  2545. this.afsfasfasasf = 0;
  2546. this.afsfsaafsfsa = true;
  2547. }
  2548. static KaiShiPin(callback) {
  2549. if (Laya.Browser.onWeiXin) {
  2550. console.log("showVideoAd , asfasfsaffsa:" + this.asfasfsaffsa);
  2551. if (AccountManager.Instance.curplayerData.videoshare && AccountManager.Instance.curplayerData.fenxiang) ;
  2552. if (AccountManager.Instance.curplayerData.video == false) {
  2553. WXSDK.ShowTxt("暂未开放");
  2554. return;
  2555. }
  2556. this.fassfafasafs(callback);
  2557. this.fsaasfafssfa.show().catch(err => {
  2558. this.fsaasfafssfa.load().then(() => {
  2559. this.fassfafasafs(callback);
  2560. this.fsaasfafssfa.show();
  2561. });
  2562. });
  2563. }
  2564. else {
  2565. callback(false);
  2566. }
  2567. }
  2568. static fassfafasafs(callback) {
  2569. this.fsaasfafssfa.offClose();
  2570. this.fsaasfafssfa.onClose(res => {
  2571. console.log("激励视频关闭:" + res.isEnded);
  2572. if (res && res.isEnded || res === undefined) {
  2573. callback && callback(true);
  2574. }
  2575. else {
  2576. callback && callback(false);
  2577. }
  2578. this.fsaasfafssfa.offClose();
  2579. });
  2580. }
  2581. static OpenBanner(gap = 0, callVack = null, iswait = false) {
  2582. if (!Laya.Browser.onWeiXin)
  2583. return;
  2584. if (this.afsfasfasasf >= 10000) {
  2585. var hh = this.gasagsgasgsa(gap);
  2586. if (iswait) {
  2587. this.asgagassga.hide();
  2588. Laya.timer.once(AccountManager.Instance.curplayerData.wudaoshijian * 1000, this, () => {
  2589. if (callVack != null) {
  2590. callVack(hh);
  2591. }
  2592. this.asgagassga.show();
  2593. });
  2594. }
  2595. else {
  2596. if (callVack != null) {
  2597. callVack(hh);
  2598. }
  2599. this.asgagassga.show();
  2600. }
  2601. }
  2602. else {
  2603. var idd = this.bannerAdUnitId;
  2604. console.log("adUnitId:" + idd);
  2605. let newBanner = Laya.Browser.window.wx.createBannerAd({
  2606. adUnitId: idd,
  2607. style: {
  2608. left: 0,
  2609. top: 0,
  2610. width: 460
  2611. }
  2612. });
  2613. newBanner.onError(err => {
  2614. console.log(err);
  2615. this.gasagsgasgsa(gap);
  2616. });
  2617. newBanner.onLoad(() => {
  2618. this.afsfasfasasf++;
  2619. if (this.asgagassga)
  2620. this.asgagassga.destroy();
  2621. this.asgagassga = newBanner;
  2622. var hight = this.gasagsgasgsa(gap);
  2623. if (iswait) {
  2624. this.asgagassga.hide();
  2625. Laya.timer.once(AccountManager.Instance.curplayerData.wudaoshijian * 1000, this, () => {
  2626. if (callVack != null) {
  2627. callVack(hight);
  2628. }
  2629. this.asgagassga.show();
  2630. });
  2631. }
  2632. else {
  2633. if (callVack != null) {
  2634. callVack(hight);
  2635. }
  2636. this.asgagassga.show();
  2637. }
  2638. });
  2639. }
  2640. }
  2641. static gasagsgasgsa(gap) {
  2642. if (this.asgagassga) {
  2643. let info = Laya.Browser.window.wx.getSystemInfoSync();
  2644. this.asgagassga.style.width = info.windowWidth;
  2645. this.asgagassga.style.top = info.windowHeight - this.asgagassga.style.realHeight - gap - 30;
  2646. return Laya.stage.height / info.windowHeight * this.asgagassga.style.realHeight;
  2647. }
  2648. }
  2649. static Clear() {
  2650. Laya.timer.clearAll(this);
  2651. if (!Laya.Browser.onWeiXin)
  2652. return;
  2653. if (this.asgagassga)
  2654. this.asgagassga.hide();
  2655. }
  2656. static agagsagags() {
  2657. if (!Laya.Browser.onWeiXin)
  2658. return;
  2659. if (this.asgagassga)
  2660. this.asgagassga.hide();
  2661. }
  2662. static gasagsasg() {
  2663. if (!Laya.Browser.onWeiXin)
  2664. return;
  2665. if (this.asgagassga)
  2666. this.asgagassga.show();
  2667. }
  2668. static get keyiwudao() {
  2669. var wudao = AccountManager.Instance.curplayerData.wudao;
  2670. if (wudao == false) {
  2671. console.log("cheat:" + wudao);
  2672. return false;
  2673. }
  2674. if (Main.SceneNum == "1037" || Main.SceneNum == "1007"
  2675. || Main.SceneNum == "1044" || Main.SceneNum == "1104"
  2676. || Main.SceneNum == "1089" || Main.SceneNum == "1001"
  2677. || Main.SceneNum == "00000") {
  2678. console.log("cheat:true-> " + Main.SceneNum);
  2679. return true;
  2680. }
  2681. else {
  2682. var checkscence = AccountManager.Instance.curplayerData.jiancechangjin;
  2683. if (checkscence == false) {
  2684. console.log("cheat:true->checkscence: " + checkscence);
  2685. return true;
  2686. }
  2687. }
  2688. console.log("cheat:false-> " + Main.SceneNum);
  2689. return false;
  2690. }
  2691. static WudaoAnNiu(btn, ShowBanner = true, complete = null, gap = 0) {
  2692. if (AccountManager.Instance.curplayerData.banner) {
  2693. GuangGao.agagsagags();
  2694. if (GuangGao.keyiwudao == false) {
  2695. btn.bottom = 300;
  2696. GuangGao.OpenBanner();
  2697. }
  2698. else {
  2699. if (ShowBanner) {
  2700. btn.bottom = 100;
  2701. btn.mouseEnabled = false;
  2702. console.log("bottom:100");
  2703. GuangGao.OpenBanner(gap, (height) => {
  2704. if (height == null) {
  2705. console.log("展示互推位");
  2706. }
  2707. else {
  2708. var end = Laya.stage.height - height - btn.height;
  2709. btn.y = end;
  2710. btn.bottom = NaN;
  2711. console.log("y:" + end);
  2712. }
  2713. }, true);
  2714. Laya.timer.once(AccountManager.Instance.curplayerData.wudaoshijian * 1000, this, () => {
  2715. btn.mouseEnabled = true;
  2716. if (complete != null) {
  2717. complete();
  2718. }
  2719. });
  2720. }
  2721. else {
  2722. if (complete != null) {
  2723. complete();
  2724. }
  2725. }
  2726. }
  2727. }
  2728. }
  2729. on3DComplete() {
  2730. var scene;
  2731. Laya.stage.addChild(scene);
  2732. var camera1 = new Laya.Camera();
  2733. scene.addChild(camera1);
  2734. camera1.transform.translate(new Laya.Vector3(0, 2, 8), true);
  2735. camera1.transform.rotate(new Laya.Vector3(-23, 0, 0), true, false);
  2736. camera1.viewport = new Laya.Viewport(0, 0, 640, 720);
  2737. var camera2 = new Laya.Camera();
  2738. scene.addChild(camera2);
  2739. camera2.transform.rotate(new Laya.Vector3(-45, 0, 0), false, false);
  2740. camera2.transform.translate(new Laya.Vector3(0, 0, 25), true);
  2741. camera2.viewport = new Laya.Viewport(640, 0, 640, 720);
  2742. }
  2743. onModelOK() {
  2744. var scene = new Laya.Scene();
  2745. Laya.stage.addChild(scene);
  2746. var camera = new Laya.Camera(0, 0.1, 1000);
  2747. scene.addChild(camera);
  2748. camera.transform.rotate(new Laya.Vector3(-25, 0, 0), false, false);
  2749. camera.transform.position = new Laya.Vector3(0, 5, 10);
  2750. var role3D = Laya.loader.getRes("monkey/monkey.lh");
  2751. scene.addChild(role3D);
  2752. }
  2753. }
  2754. GuangGao.videlAdUnitId = "adunit-47ace2391e74f21e";
  2755. GuangGao.bannerAdUnitId = "adunit-876b793421608933";
  2756. GuangGao.afsfsaafsfsa = false;
  2757. GuangGao.asfasfsaffsa = false;
  2758. GuangGao.afsfasfasasf = 0;
  2759. var QianDaoMode;
  2760. (function (QianDaoMode) {
  2761. QianDaoMode[QianDaoMode["start"] = 0] = "start";
  2762. QianDaoMode[QianDaoMode["none"] = 1] = "none";
  2763. QianDaoMode[QianDaoMode["end"] = 2] = "end";
  2764. })(QianDaoMode || (QianDaoMode = {}));
  2765. class reward {
  2766. constructor(_rewradid, _rewradnum) {
  2767. this.rewardid = _rewradid;
  2768. this.rewardnum = _rewradnum;
  2769. }
  2770. }
  2771. class SignItem {
  2772. get GetRewardData() {
  2773. var data = this.rewardids.split(";");
  2774. if (data.length > 1) {
  2775. return new reward(Number(6000), Number(1));
  2776. }
  2777. else {
  2778. return new reward(Number(this.rewardids), Number(this.rewardnum));
  2779. }
  2780. }
  2781. }
  2782. class SignView extends ui.SignViewUI {
  2783. constructor() {
  2784. super();
  2785. this.SignDatas = [];
  2786. this.rewardsdic = {};
  2787. SignView.ins = this;
  2788. }
  2789. static get Instance() {
  2790. if (SignView.ins) {
  2791. return SignView.ins;
  2792. }
  2793. else {
  2794. return new SignView();
  2795. }
  2796. }
  2797. Show() {
  2798. this.SignDatas = this.GainSignDatas();
  2799. this.RefreshDatas();
  2800. this.SignBtn.visible = SignView.CanSign;
  2801. this.SignBtn.clickHandler = Laya.Handler.create(this, this.OnNormalSign);
  2802. this.CloseBtn.clickHandler = Laya.Handler.create(this, this.ClickClose);
  2803. this.height = Laya.stage.height;
  2804. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  2805. this.height = Laya.stage.height;
  2806. });
  2807. }
  2808. Close() {
  2809. }
  2810. ClickClose() {
  2811. ViewManager.Instance.ShowView(ViewType.MainView);
  2812. }
  2813. RefreshDatas() {
  2814. for (var i = 0; i < this.ItemList.numChildren; i++) {
  2815. var sign = this.ItemList.getChildAt(i);
  2816. var data = this.SignDatas[i];
  2817. var rewardid = data.GetRewardData.rewardid;
  2818. var icon = sign.getChildByName("icon");
  2819. var num = sign.getChildByName("icon").getChildByName("num");
  2820. num.text = "X" + data.GetRewardData.rewardnum.toString();
  2821. var roleicon = AccountManager.Instance.curplayerData.GainShiTi(rewardid.toString(), "icon");
  2822. icon.skin = "Game/res/Skin/" + roleicon + ".png";
  2823. var cansign = data.mold;
  2824. if (cansign == QianDaoMode.end) {
  2825. var complete = sign.getChildByName("complete");
  2826. complete.visible = true;
  2827. }
  2828. else if (cansign == QianDaoMode.start) {
  2829. var btn = sign.getChildByName("btn");
  2830. btn.clickHandler = Laya.Handler.create(this, this.OnDoubleSign, null, false);
  2831. }
  2832. }
  2833. }
  2834. OnSign() {
  2835. var curgold = Number(AccountManager.Instance.curplayerData.GainAccount("money"));
  2836. let param = [{ "video": "0" }];
  2837. ServerManager.Instance.SendHttp(BlastToMerge.QianDao, param, Laya.Handler.create(this, function (e) {
  2838. var reward = e["rewards"];
  2839. SignView.Instance.SignDatas = SignView.Instance.GainSignDatas();
  2840. SignView.Instance.SignBtn.visible = false;
  2841. SignView.Instance.RefreshDatas();
  2842. if (reward["1000"]) {
  2843. var gg = Number(AccountManager.Instance.curplayerData.GainAccount("money")) - curgold;
  2844. GameTools.GetMoney(gg, null, Laya.Handler.create(this, () => {
  2845. ViewManager.Instance.ShowView(ViewType.MainView);
  2846. }));
  2847. }
  2848. else {
  2849. GameTools.TweenText(new faafssfafsa("道具 + 1", new Laya.Vector2(Laya.stage.width / 2, Laya.stage.height * 0.35), new Laya.Vector2(250, 80), 30), 150, Laya.Handler.create(this, () => {
  2850. ViewManager.Instance.ShowView(ViewType.MainView);
  2851. }));
  2852. }
  2853. }), Laya.Handler.create(this, this.OnSignError), true);
  2854. }
  2855. OnNormalSign() {
  2856. this.OnSign();
  2857. }
  2858. OnDoubleSign() {
  2859. GuangGao.KaiShiPin((flag) => {
  2860. if (flag) {
  2861. let param = [{ "video": "1" }];
  2862. ServerManager.Instance.SendHttp(BlastToMerge.QianDao, param, Laya.Handler.create(this, function (e) {
  2863. var reward = e["rewards"];
  2864. SignView.Instance.SignDatas = SignView.Instance.GainSignDatas();
  2865. SignView.Instance.SignBtn.visible = false;
  2866. SignView.Instance.RefreshDatas();
  2867. GameTools.TweenText(new faafssfafsa("道具 + 1", new Laya.Vector2(Laya.stage.width / 2, Laya.stage.height * 0.35), new Laya.Vector2(250, 80), 30), 150, Laya.Handler.create(this, () => {
  2868. ViewManager.Instance.ShowView(ViewType.MainView);
  2869. }));
  2870. }), Laya.Handler.create(this, this.OnSignError), true);
  2871. }
  2872. });
  2873. }
  2874. OnSignError(e) {
  2875. console.log(e);
  2876. }
  2877. GainSignDatas() {
  2878. var signdatas = [];
  2879. var config = AccountManager.Instance.curplayerData.GainCollocation("sign");
  2880. var signday = Number(AccountManager.Instance.curplayerData.GainQinDao("sign_days"));
  2881. var once = signday < 7;
  2882. var indes = once ? 0 : 7;
  2883. for (var i = indes; i < indes + 7; i++) {
  2884. this.rewardsdic[config[i].id] = config[i].rewards;
  2885. }
  2886. for (var key in this.rewardsdic) {
  2887. var rewardid = this.rewardsdic[key];
  2888. var reward = AccountManager.Instance.curplayerData.GainJiangLi(rewardid);
  2889. var item = new SignItem();
  2890. item.desc = reward.group_name;
  2891. item.icon = reward.icon;
  2892. item.signday = Number(reward.id);
  2893. item.rewardids = reward.reward_item;
  2894. item.rewardnum = reward.reward_num;
  2895. item.weight = reward.reward_weight;
  2896. var num = Number(key);
  2897. if (signday > num - 1)
  2898. item.mold = QianDaoMode.end;
  2899. if (signday < num - 1)
  2900. item.mold = QianDaoMode.none;
  2901. if (signday == num - 1 && SignView.CanSign) {
  2902. item.mold = QianDaoMode.start;
  2903. }
  2904. signdatas.push(item);
  2905. }
  2906. return signdatas;
  2907. }
  2908. static get CanSign() {
  2909. let SSS = new Date(AccountManager.Instance.ServerTime * 1000);
  2910. SSS.setHours(0, 0, 0, 0);
  2911. var AAA = SSS.valueOf();
  2912. var SignTime = Number(AccountManager.Instance.curplayerData.GainQinDao("sign_time"));
  2913. var DDD = SignTime * 1000;
  2914. var TTT = DDD < AAA ? true : false;
  2915. return TTT;
  2916. }
  2917. }
  2918. class LotteryView extends ui.LotteryViewUI {
  2919. constructor() {
  2920. super();
  2921. this.circleNum = 5;
  2922. }
  2923. static get Instance() {
  2924. if (LotteryView.ins) {
  2925. return LotteryView.ins;
  2926. }
  2927. else {
  2928. return new LotteryView();
  2929. }
  2930. }
  2931. Show() {
  2932. this.CloseBtn.clickHandler = Laya.Handler.create(this, this.ClickClose);
  2933. this.LotteryBtn.clickHandler = Laya.Handler.create(this, this.OnVedio);
  2934. this.height = Laya.stage.height;
  2935. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  2936. this.height = Laya.stage.height;
  2937. });
  2938. }
  2939. Close() {
  2940. }
  2941. ClickClose() {
  2942. ViewManager.Instance.ShowView(ViewType.MainView);
  2943. }
  2944. OnVedio() {
  2945. GuangGao.KaiShiPin((flag) => {
  2946. if (flag) {
  2947. this.LotteryBtn.visible = false;
  2948. let param = [{ "channel": "video" }, { "t": AccountManager.Instance.ServerTime.toString() }];
  2949. ServerManager.Instance.SendHttp(BlastToMerge.Lottery, param, Laya.Handler.create(this, function (e) {
  2950. this.RotationDial(e);
  2951. }), Laya.Handler.create(this, () => {
  2952. WXSDK.ShowTxt("抽奖次数已经用完!");
  2953. }), true);
  2954. }
  2955. });
  2956. }
  2957. RotationDial(e) {
  2958. var result = e.lottery_id - 1;
  2959. this.dial.rotation = 0;
  2960. let tween = Laya.Tween.to(this.dial, {
  2961. rotation: 360 * (this.circleNum) - result * 60
  2962. }, 5000, Laya.Ease.quadInOut, new Laya.Handler(null, () => {
  2963. tween.clear();
  2964. this.LotteryBtn.visible = true;
  2965. if (!LotteryView.IsCanLottery()) {
  2966. this.LotteryBtn.gray = true;
  2967. console.log("观看视频抽奖按钮已变灰");
  2968. }
  2969. var reward = e["rewards"];
  2970. GameTools.TweenText(new faafssfafsa("道具 + 1", new Laya.Vector2(Laya.stage.width / 2, Laya.stage.height * 0.35), new Laya.Vector2(250, 80), 30), 150, Laya.Handler.create(this, () => {
  2971. ViewManager.Instance.ShowView(ViewType.MainView);
  2972. }));
  2973. }));
  2974. }
  2975. static IsCanLottery() {
  2976. var _timer = Number(AccountManager.Instance.curplayerData.lottery.day_video_times);
  2977. return _timer > 0;
  2978. }
  2979. }
  2980. class FailureView extends ui.FailureViewUI {
  2981. constructor() {
  2982. super();
  2983. }
  2984. static get Instance() {
  2985. if (FailureView.ins) {
  2986. return FailureView.ins;
  2987. }
  2988. else {
  2989. return new FailureView();
  2990. }
  2991. }
  2992. Show() {
  2993. this.BackBtn.clickHandler = Laya.Handler.create(this, this.ClickBack);
  2994. this.TryBtn.clickHandler = Laya.Handler.create(this, this.ClickTry);
  2995. this.height = Laya.stage.height;
  2996. this.BG.height = Laya.stage.height;
  2997. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  2998. this.height = Laya.stage.height;
  2999. this.BG.height = Laya.stage.height;
  3000. });
  3001. }
  3002. Close() {
  3003. Laya.timer.clearAll(this);
  3004. }
  3005. ClickBack() {
  3006. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "win": "0" }];
  3007. ServerManager.Instance.SendHttp(BlastToMerge.JieShu, args, Laya.Handler.create(this, this.BackMain), null);
  3008. }
  3009. ClickTry() {
  3010. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "win": "0" }];
  3011. ServerManager.Instance.SendHttp(BlastToMerge.JieShu, args, Laya.Handler.create(this, this.Try), null);
  3012. }
  3013. BackMain() {
  3014. EventManager.StageTrigger(StageMode.Over);
  3015. EventManager.StageTrigger(StageMode.Refresh);
  3016. ViewManager.Instance.ShowView(ViewType.MainView);
  3017. }
  3018. Try() {
  3019. ViewManager.Instance.ClosePopView(ViewType.FailureView);
  3020. EventManager.StageTrigger(StageMode.Refresh);
  3021. EventManager.StageTrigger(StageMode.ReStart);
  3022. }
  3023. }
  3024. class WinView extends ui.WinViewUI {
  3025. constructor() {
  3026. super();
  3027. }
  3028. static get Instance() {
  3029. if (WinView.ins) {
  3030. return WinView.ins;
  3031. }
  3032. else {
  3033. return new WinView();
  3034. }
  3035. }
  3036. Show() {
  3037. this.BackBtn.clickHandler = Laya.Handler.create(this, this.ClickBack);
  3038. this.NextBtn.clickHandler = Laya.Handler.create(this, this.ClickNextLevel);
  3039. this.height = Laya.stage.height;
  3040. this.BG.height = Laya.stage.height;
  3041. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  3042. this.height = Laya.stage.height;
  3043. this.BG.height = Laya.stage.height;
  3044. });
  3045. }
  3046. Close() {
  3047. Laya.timer.clearAll(this);
  3048. }
  3049. ClickBack() {
  3050. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "win": "1" }];
  3051. ServerManager.Instance.SendHttp(BlastToMerge.JieShu, args, Laya.Handler.create(this, this.BackMain), null);
  3052. }
  3053. ClickNextLevel() {
  3054. var args = [{ "t": AccountManager.Instance.ServerTime.toString() }, { "play_id": GameManager.Instance.play_id }, { "win": "1" }];
  3055. ServerManager.Instance.SendHttp(BlastToMerge.JieShu, args, Laya.Handler.create(this, this.NextLevel), null);
  3056. }
  3057. BackMain() {
  3058. EventManager.StageTrigger(StageMode.Over);
  3059. EventManager.StageTrigger(StageMode.Refresh);
  3060. ViewManager.Instance.ShowView(ViewType.MainView);
  3061. let level = DropRule.Instance.STAGE;
  3062. WXSDK.UpdateScore(level);
  3063. }
  3064. NextLevel() {
  3065. var agrs = [{ "t": AccountManager.Instance.ServerTime.toString() }];
  3066. ServerManager.Instance.SendHttp(BlastToMerge.KaiShi, agrs, Laya.Handler.create(this, this.StartNextLevel), null);
  3067. }
  3068. StartNextLevel(_data) {
  3069. ViewManager.Instance.ClosePopView(ViewType.WinView);
  3070. let stage = AccountManager.Instance.curplayerData.GainAccount("stage");
  3071. GameManager.Instance.play_id = _data.play_id;
  3072. DropRule.Instance.STAGE = Number(AccountManager.Instance.curplayerData.GainAccount("stage"));
  3073. EventManager.StageTrigger(StageMode.Refresh, [true]);
  3074. EventManager.StageTrigger(StageMode.ReStart, [true]);
  3075. let level = DropRule.Instance.STAGE;
  3076. WXSDK.UpdateScore(level);
  3077. }
  3078. }
  3079. class ReviveView extends ui.ReviveViewUI {
  3080. constructor() {
  3081. super();
  3082. this.time = 9;
  3083. this.count = false;
  3084. this.fuhuo = false;
  3085. }
  3086. static get Instance() {
  3087. if (ReviveView.ins) {
  3088. return ReviveView.ins;
  3089. }
  3090. else {
  3091. return new ReviveView();
  3092. }
  3093. }
  3094. Show() {
  3095. this.VideoBtn.clickHandler = Laya.Handler.create(this, this.VideoRevive);
  3096. this.NoBtn.visible = false;
  3097. Laya.timer.once(1000, this, () => {
  3098. this.NoBtn.visible = true;
  3099. this.NoBtn.clickHandler = Laya.Handler.create(this, this.DontRevive, null, false);
  3100. });
  3101. this.count = true;
  3102. Laya.timer.loop(1000, this, this.CountTime);
  3103. this.height = Laya.stage.height;
  3104. this.BG.height = Laya.stage.height;
  3105. Laya.stage.on(Laya.Event.RESIZE, this, () => {
  3106. this.height = Laya.stage.height;
  3107. this.BG.height = Laya.stage.height;
  3108. });
  3109. }
  3110. CountTime() {
  3111. if (this.count && this.time > 0) {
  3112. this.time -= 1;
  3113. this.Time.text = this.time.toString();
  3114. if (this.time < 1) {
  3115. Laya.timer.clear(this, this.CountTime);
  3116. this.DontRevive();
  3117. }
  3118. }
  3119. }
  3120. DontRevive() {
  3121. Laya.timer.clear(this, this.CountTime);
  3122. this.count = false;
  3123. ViewManager.Instance.ClosePopView(ViewType.ReviveView);
  3124. ViewManager.Instance.OpenPopView(ViewType.FailureView);
  3125. }
  3126. VideoRevive() {
  3127. Laya.timer.clear(this, this.CountTime);
  3128. this.count = false;
  3129. EventManager.StageTrigger(StageMode.Revive);
  3130. ViewManager.Instance.ClearPopViews();
  3131. }
  3132. Close() {
  3133. Laya.timer.clearAll(this);
  3134. }
  3135. }
  3136. var ViewType;
  3137. (function (ViewType) {
  3138. ViewType[ViewType["MainView"] = 0] = "MainView";
  3139. ViewType[ViewType["SignView"] = 1] = "SignView";
  3140. ViewType[ViewType["SetView"] = 2] = "SetView";
  3141. ViewType[ViewType["LotteryView"] = 3] = "LotteryView";
  3142. ViewType[ViewType["InGameView"] = 4] = "InGameView";
  3143. ViewType[ViewType["RankView"] = 5] = "RankView";
  3144. ViewType[ViewType["WinView"] = 6] = "WinView";
  3145. ViewType[ViewType["FailureView"] = 7] = "FailureView";
  3146. ViewType[ViewType["ReviveView"] = 8] = "ReviveView";
  3147. })(ViewType || (ViewType = {}));
  3148. class ViewManager {
  3149. constructor() {
  3150. this.ViewDic = [];
  3151. this.OtherViewDic = [];
  3152. this.ViewSprite = new Laya.Sprite;
  3153. this.OtherViewSprite = new Laya.Sprite;
  3154. ViewManager.ins = this;
  3155. this.Init();
  3156. }
  3157. static get Instance() {
  3158. if (ViewManager.ins) {
  3159. return ViewManager.ins;
  3160. }
  3161. else {
  3162. return new ViewManager();
  3163. }
  3164. }
  3165. Init() {
  3166. this.ViewDic[ViewType.MainView] = MainView;
  3167. this.ViewDic[ViewType.SignView] = SignView;
  3168. this.ViewDic[ViewType.SetView] = SetView;
  3169. this.ViewDic[ViewType.LotteryView] = LotteryView;
  3170. this.ViewDic[ViewType.InGameView] = InGameView;
  3171. this.ViewDic[ViewType.RankView] = RankView;
  3172. this.ViewDic[ViewType.WinView] = WinView;
  3173. this.ViewDic[ViewType.FailureView] = FailureView;
  3174. this.ViewDic[ViewType.ReviveView] = ReviveView;
  3175. Laya.stage.addChild(this.ViewSprite);
  3176. Laya.stage.addChild(this.OtherViewSprite);
  3177. }
  3178. ShowView(_viewtype, data = null) {
  3179. if (this.curView != null) {
  3180. this.curView.Close();
  3181. this.curView.destroy();
  3182. this.curView.removeSelf();
  3183. }
  3184. this.ClearPopViews();
  3185. this.curView = this.CreateView(_viewtype);
  3186. this.curView.name = ViewType[_viewtype];
  3187. this.ViewSprite.addChild(this.curView);
  3188. this.curView.Show(data);
  3189. }
  3190. CloseView() {
  3191. if (this.curView != null) {
  3192. this.curView.Close();
  3193. this.curView.destroy();
  3194. this.curView.removeSelf();
  3195. }
  3196. }
  3197. OpenPopView(viewType, data = null) {
  3198. GuangGao.Clear();
  3199. var popView;
  3200. if (this.OtherViewDic[viewType]) {
  3201. popView = this.OtherViewDic[viewType];
  3202. this.OtherViewSprite.setChildIndex(popView, this.OtherViewSprite.numChildren - 1);
  3203. popView.visible = true;
  3204. }
  3205. else {
  3206. popView = this.CreateView(viewType);
  3207. this.OtherViewSprite.addChild(popView);
  3208. this.OtherViewDic[viewType] = popView;
  3209. }
  3210. popView.Show(data);
  3211. }
  3212. ClosePopView(viewType) {
  3213. var popView = this.OtherViewDic[viewType];
  3214. if (popView == null) {
  3215. return;
  3216. }
  3217. GuangGao.Clear();
  3218. popView.Close();
  3219. popView.visible = false;
  3220. }
  3221. ClearPopViews() {
  3222. GuangGao.Clear();
  3223. this.ClosePopView(ViewType.WinView);
  3224. this.ClosePopView(ViewType.FailureView);
  3225. this.ClosePopView(ViewType.ReviveView);
  3226. }
  3227. CreateView(_viewtype) {
  3228. switch (_viewtype) {
  3229. case ViewType.MainView:
  3230. return new MainView();
  3231. case ViewType.InGameView:
  3232. return new InGameView();
  3233. case ViewType.SetView:
  3234. return new SetView();
  3235. case ViewType.RankView:
  3236. return new RankView();
  3237. case ViewType.SignView:
  3238. return new SignView();
  3239. case ViewType.LotteryView:
  3240. return new LotteryView();
  3241. case ViewType.FailureView:
  3242. return new FailureView();
  3243. case ViewType.WinView:
  3244. return new WinView();
  3245. case ViewType.ReviveView:
  3246. return new ReviveView();
  3247. }
  3248. return null;
  3249. }
  3250. }
  3251. class GameControl {
  3252. constructor() {
  3253. GameControl.ins = this;
  3254. this.Init();
  3255. }
  3256. static get Instance() {
  3257. if (GameControl.ins) {
  3258. return GameControl.ins;
  3259. }
  3260. else {
  3261. return new GameControl();
  3262. }
  3263. }
  3264. Init() {
  3265. EventManager.StageOn(StageMode.Start, this, this.GameStart);
  3266. EventManager.StageOn(StageMode.Lose, this, this.GameLose);
  3267. EventManager.StageOn(StageMode.Win, this, this.GameWin);
  3268. }
  3269. GameStart() {
  3270. ViewManager.Instance.ShowView(ViewType.InGameView);
  3271. if (DropRule.Instance.STAGE == 1) {
  3272. DropRule.Instance.GuideFallDown();
  3273. return;
  3274. }
  3275. if (DropRule.Instance.progress.length > 1 && GameManager.Instance.First) {
  3276. DropRule.Instance.RecoverScene();
  3277. GameManager.Instance.First = false;
  3278. }
  3279. else {
  3280. DropRule.Instance.FallDown(DropRule.Instance.StartNum);
  3281. }
  3282. }
  3283. GameLose() {
  3284. if (GameManager.Instance.ReviveNum > 0) {
  3285. ViewManager.Instance.OpenPopView(ViewType.ReviveView);
  3286. GameManager.Instance.ReviveNum--;
  3287. }
  3288. else {
  3289. ViewManager.Instance.OpenPopView(ViewType.FailureView);
  3290. }
  3291. }
  3292. GameWin() {
  3293. ViewManager.Instance.OpenPopView(ViewType.WinView);
  3294. }
  3295. }
  3296. class LoadView {
  3297. constructor() {
  3298. this.Login();
  3299. new GameControl();
  3300. new GameManager();
  3301. }
  3302. static get Instance() {
  3303. if (LoadView.ins) {
  3304. return LoadView.ins;
  3305. }
  3306. else {
  3307. return new LoadView();
  3308. }
  3309. }
  3310. Login() {
  3311. if (Laya.Browser.onWeiXin) {
  3312. this.WXLogin();
  3313. }
  3314. else {
  3315. this.LocalLogin();
  3316. }
  3317. }
  3318. WXLogin() {
  3319. if (Laya.Browser.onWeiXin) {
  3320. WXSDK.DengLu((res) => {
  3321. if (res != "error") {
  3322. console.log("1微信登录成功:" + res);
  3323. this.LocalLogin();
  3324. }
  3325. else {
  3326. this.WXLogin();
  3327. }
  3328. });
  3329. }
  3330. else {
  3331. this.LocalLogin();
  3332. ServerManager.Instance.Login(null, Laya.Handler.create(this, this.LoginComplete), Laya.Handler.create(this, this.LoginFail));
  3333. }
  3334. }
  3335. LocalLogin() {
  3336. ServerManager.Instance.Login(null, Laya.Handler.create(this, this.LoginComplete), Laya.Handler.create(this, this.LoginFail));
  3337. }
  3338. LoginComplete() {
  3339. console.log("本地服务器登陆成功");
  3340. this.LoadSubPackage();
  3341. }
  3342. LoginFail(e) {
  3343. console.log("本地服务器登陆失败");
  3344. console.log(e);
  3345. }
  3346. LoadSubPackage() {
  3347. WXSDK.LoadSubPackage("Game", callback => {
  3348. if (callback) {
  3349. new DropRule();
  3350. ViewManager.Instance.ShowView(ViewType.MainView);
  3351. }
  3352. });
  3353. }
  3354. }
  3355. class Main$1 {
  3356. constructor() {
  3357. if (CheckMain.Creat)
  3358. return;
  3359. CheckMain.Creat = true;
  3360. if (window["Laya3D"])
  3361. Laya3D.init(GameConfig.width, GameConfig.height);
  3362. else
  3363. Laya.init(GameConfig.width, GameConfig.height, Laya["WebGL"]);
  3364. Laya["Physics"] && Laya["Physics"].enable();
  3365. Laya["DebugPanel"] && Laya["DebugPanel"].enable();
  3366. Laya.stage.scaleMode = GameConfig.scaleMode;
  3367. Laya.stage.screenMode = GameConfig.screenMode;
  3368. Laya.stage.alignV = GameConfig.alignV;
  3369. Laya.stage.alignH = GameConfig.alignH;
  3370. Laya.URL.exportSceneToJson = GameConfig.exportSceneToJson;
  3371. if (GameConfig.debug || Laya.Utils.getQueryString("debug") == "true")
  3372. Laya.enableDebugPanel();
  3373. if (GameConfig.physicsDebug && Laya["PhysicsDebugDraw"])
  3374. Laya["PhysicsDebugDraw"].enable();
  3375. if (GameConfig.stat)
  3376. Laya.Stat.show();
  3377. Laya.alertGlobalError = true;
  3378. if (Laya.Browser.onWeiXin) {
  3379. Laya.Browser.window.wx.showShareMenu({
  3380. withShareTicket: true
  3381. });
  3382. Laya.Browser.window.wx.onShareAppMessage(function () {
  3383. return {
  3384. title: "试一下你的脑力能到第几关",
  3385. imageUrl: "Game/res/Share/fx.png",
  3386. };
  3387. });
  3388. Laya.Browser.window.wx.onShow((option) => {
  3389. var shareTicket = option.shareTicket;
  3390. var userId = option.query.userId;
  3391. var shareTitle = option.query.shareTitle;
  3392. Main$1.SceneNum = option.scene;
  3393. WXSDK.querychannel = option.query.channel;
  3394. WXSDK.shareOpenId = option.query.userId;
  3395. console.log("option---", option);
  3396. console.log("scene:", option.scene);
  3397. if (WXSDK.querychannel != null) {
  3398. console.log("onShow channel is:", WXSDK.querychannel);
  3399. }
  3400. if (option.referrerInfo) {
  3401. WXSDK.referrerInfoappId = option.referrerInfo.appId;
  3402. console.log("onShow appId is:", option.referrerInfo.appId);
  3403. }
  3404. });
  3405. const updateManager = Laya.Browser.window.wx.getUpdateManager();
  3406. updateManager.onCheckForUpdate(function (res) {
  3407. console.log("最新版本:" + res.hasUpdate);
  3408. });
  3409. updateManager.onUpdateReady(function () {
  3410. Laya.Browser.window.wx.showModal({
  3411. showCancel: false,
  3412. title: '更新提示',
  3413. content: '新版本已经准备好,是否重启应用?',
  3414. success(res) {
  3415. updateManager.applyUpdate();
  3416. },
  3417. fail(res) {
  3418. updateManager.applyUpdate();
  3419. }
  3420. });
  3421. });
  3422. }
  3423. Laya.ResourceVersion.enable("version.json", Laya.Handler.create(this, this.onVersionLoaded), Laya.ResourceVersion.FILENAME_VERSION);
  3424. }
  3425. onVersionLoaded() {
  3426. Laya.AtlasInfoManager.enable("fileconfig.json", Laya.Handler.create(this, this.onConfigLoaded));
  3427. }
  3428. onConfigLoaded() {
  3429. new LoadView();
  3430. }
  3431. }
  3432. Main$1.Ver = "1.0.0";
  3433. Main$1.CFG = "123";
  3434. Main$1.SceneNum = "000";
  3435. new Main$1();
  3436. exports.Main = Main$1;
  3437. return exports;
  3438. }({}));
  3439. //# sourceMappingURL=bundle.js.map