difenduandada
2024-12-31 34abe6963b344c882358274957f4b992456fee40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
"use strict";
cc._RF.push(module, '161a8Dz3zNHzLt0mT9lT09S', 'endless_trail_buff_item_panel');
// Scripts/mod/endless_trail/view/endless_trail_buff_item_panel.js
 
"use strict";
 
// --------------------------------------------------------------------
// @author: xxx@syg.com(必填, 创建模块的人员)
// @description:
//     这里是描述这个窗体的作用的
// <br/>Create: 2019-03-06 10:13:47
// --------------------------------------------------------------------
var PathTool = require("pathtool");
 
var Endless_trailController = require("endless_trail_controller");
 
var Endless_trail_buff_itemPanel = cc.Class({
  "extends": BasePanel,
  ctor: function ctor() {
    this.prefabPath = PathTool.getPrefabPath("endlesstrail", "endlesstrail_buff_item");
    this.ctrl = Endless_trailController.getInstance();
    this.model = Endless_trailController.getInstance().getModel();
  },
  // 可以初始化声明一些变量的
  initConfig: function initConfig() {},
  // 初始化一些配置数据,可以用于声明一些变量之类的
  initPanel: function initPanel() {
    this.root = this.root_wnd.getChildByName("root");
    this.buff_icon = this.root.getChildByName("buff_icon").getComponent(cc.Sprite);
    this.desc_label = Utils.createRichLabel(24, new cc.Color(0x68, 0x45, 0x2a, 0xff), cc.v2(0, 0.5), cc.v2(130, this.root.getContentSize().height / 2), 30, 250);
    this.desc_label.horizontalAlign = cc.macro.TextAlignment.LEFT;
    this.root.addChild(this.desc_label.node);
    this.select_btn = this.root.getChildByName("select_btn");
    this.select_label = this.select_btn.getChildByName("select_label").getComponent(cc.Label);
    this.select_label.string = Utils.TI18N("选择并挑战");
 
    if (this.data) {
      this.updateInfo();
    }
  },
  // 注册事件监听的接口,不需要手动调用,如果是使用gcore.GlobalEvent监听,可以直接调用addGlobalEvent
  registerEvent: function registerEvent() {
    Utils.onTouchEnd(this.select_btn, function () {
      if (this.data) {
        this.ctrl.send23911(this.data.buff_id);
      }
    }.bind(this), 1);
  },
  updateInfo: function updateInfo() {
    if (!this.root_wnd) return;
 
    if (this.data) {
      if (Config.endless_data.data_buff_data) {
        if (Config.endless_data.data_buff_data[this.data.group_id]) {
          if (Config.endless_data.data_buff_data[this.data.group_id][this.data.buff_id]) {
            var config = Config.endless_data.data_buff_data[this.data.group_id][this.data.buff_id];
 
            if (config) {
              this.desc_label.string = config.desc;
 
              if (config.icon != "") {
                this.loadRes(PathTool.getIconPath("bufficon", config.icon), function (res_object) {
                  this.buff_icon.spriteFrame = res_object;
                }.bind(this));
              }
            }
          }
        }
      }
    }
  },
  setData: function setData(data) {
    this.data = data;
    this.updateInfo();
  },
  getData: function getData() {
    return this.data;
  },
  // 预制体加载完成之后,添加到对应主节点之后的回调可以设置一些数据了
  onShow: function onShow(params) {},
  // 面板设置不可见的回调,这里做一些不可见的屏蔽处理
  onHide: function onHide() {},
  // 当面板从主节点释放掉的调用接口,需要手动调用,而且也一定要调用
  onDelete: function onDelete() {// this:removeAllChildren()
    // this:removeFromParent()
  }
});
 
cc._RF.pop();