123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- "use strict";
- cc._RF.push(module, 'bdc28kKbixG/p3jT/6oVjm7', 'InsufficientPanel');
- // Script/view/insufficientPanel/InsufficientPanel.ts
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- var BaseView_1 = require("../../../lightMVC/core/base/BaseView");
- var App_1 = require("../../Manager/App");
- var SDK_1 = require("../../sdk/SDK");
- var SoundManager_1 = require("../../Manager/SoundManager");
- var ATRewardedVideoJSSDK_1 = require("../../AnyThinkAds/ATRewardedVideoJSSDK");
- var ATAndroidJS2_1 = require("../../ATAndroidJS2");
- var GlobalManager_1 = require("../../GlobalManager");
- var _a = cc._decorator, ccclass = _a.ccclass, property = _a.property;
- var InsufficientPanel = /** @class */ (function (_super) {
- __extends(InsufficientPanel, _super);
- function InsufficientPanel() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- InsufficientPanel.prototype.onLoad = function () {
- console.log('zh:InsufficientPanel.ts onload');
- SDK_1.default.Instance.initAdForPage();
- };
- InsufficientPanel.prototype.drawView = function () {
- var _this = this;
- // 返回
- var closeBtn = this.ui.getNode("close");
- closeBtn.on(cc.Node.EventType.TOUCH_END, function () {
- _this.closeView();
- }, this);
- //体力不足看AD
- var confirmBtn = this.ui.getNode("confirm");
- confirmBtn.on(cc.Node.EventType.TOUCH_END, function () {
- SoundManager_1.SoundManager.getInstance().VideoStartStop();
- if (cc.sys.os == cc.sys.OS_ANDROID) {
- if (ATRewardedVideoJSSDK_1.default.hasAdReady(ATAndroidJS2_1.default.getPlacementId())) {
- cc.sys.localStorage.setItem('yxAdMark', 'callBack_for_tiLiAd'); //看广告用于 xx 标记
- GlobalManager_1.default.instance.registerMethod('callBack_for_tiLiAd', _this.callBack_for_tiLiAd.bind(_this));
- ATRewardedVideoJSSDK_1.default.showAd(ATAndroidJS2_1.default.getPlacementId());
- }
- else {
- console.log('zh:AD 没有OK');
- SDK_1.default.Instance.initAdForPage();
- _this.callBack_for_tiLiAd();
- }
- }
- else {
- _this.callBack_for_tiLiAd();
- }
- // SDK.Instance.showRewardVideo(() => {
- // App.DataManager.UpdateTili(App.DataManager.VideoAddTili);
- // SoundManager.getInstance().VideoEndOpen();
- // this.closeView();
- // }, () => {
- // SoundManager.getInstance().VideoEndOpen();
- // }, () => {
- // SoundManager.getInstance().VideoEndOpen();
- // });
- }, this);
- };
- InsufficientPanel.prototype.callBack_for_tiLiAd = function () {
- console.log('zh:callBack_for_tiLiAd 被触发');
- App_1.App.DataManager.UpdateTili(App_1.App.DataManager.VideoAddTili);
- SoundManager_1.SoundManager.getInstance().VideoEndOpen();
- this.closeView();
- // SDK.Instance.showRewardVideo(() => {
- // }, () => {
- // SoundManager.getInstance().VideoEndOpen();
- // }, () => {
- // SoundManager.getInstance().VideoEndOpen();
- // });
- };
- InsufficientPanel.path = function () {
- return "/prefabs/InsufficientPanel";
- };
- InsufficientPanel = __decorate([
- ccclass
- ], InsufficientPanel);
- return InsufficientPanel;
- }(BaseView_1.BaseView));
- exports.default = InsufficientPanel;
- cc._RF.pop();
|