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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
"use strict";
cc._RF.push(module, '40df15wFWhEyLZdjJ6H4ndP', 'time_summon_progress_window');
// Scripts/mod/timesummon/view/time_summon_progress_window.js
 
"use strict";
 
// --------------------------------------------------------------------
// @author: xxx@syg.com(必填, 创建模块的人员)
// @description:
//     这里是描述这个窗体的作用的
// <br/>Create: 2019-07-11 16:53:44
// --------------------------------------------------------------------
var PathTool = require("pathtool");
 
var TimeSummonProgressView = cc.Class({
  "extends": BaseView,
  ctor: function ctor() {
    this.prefabPath = PathTool.getPrefabPath("action", "action_time_summon_progress");
    this.viewTag = SCENE_TAG.dialogue; //该窗体所属ui层级,全屏ui需要在ui层,非全屏ui在dialogue层,这个要注意
 
    this.win_type = WinType.Mini; //是否是全屏窗体  WinType.Full, WinType.Big, WinType.Mini, WinType.Tips
 
    this.ctrl = arguments[0];
  },
  // 初始化一些配置数据,可以用于声明一些变量之类的
  initConfig: function initConfig() {
    this.award_item_list = {}; // 奖励item列表
  },
  // 预制体加载完成之后的回调,可以在这里捕获相关节点或者组件
  openCallBack: function openCallBack() {
    var container = this.root_wnd.getChildByName("container");
    this.container = container;
    var win_title = container.getChildByName("win_title").getComponent(cc.Label);
    win_title.string = Utils.TI18N("查看奖励");
    this.close_btn = container.getChildByName("close_btn");
    this.summon_num_txt = container.getChildByName("title_txt_1").getComponent(cc.Label);
    this.progress = container.getChildByName("progress").getComponent(cc.ProgressBar);
    var time_label = container.getChildByName("time_label").getComponent(cc.Label);
    time_label.string = Utils.TI18N("限定召唤期间达到指定招募次数可获对应奖励");
  },
  // 注册事件监听的接口,不需要手动调用,如果是使用gcore.GlobalEvent监听,可以直接调用addGlobalEvent
  registerEvent: function registerEvent() {
    this.close_btn.on("click", function () {
      Utils.playButtonSound(2);
      this.ctrl.openTimeSummonProgressView(false);
    }, this);
  },
  // 预制体加载完成之后,添加到对应主节点之后的回调,也就是一个窗体的正式入口,可以设置一些数据了
  openRootWnd: function openRootWnd(params) {
    this.cur_times = params.times;
    this.camp_id = params.camp_id;
    this.setData();
  },
  setData: function setData() {
    if (this.cur_times == null || this.camp_id == null) {
      return;
    }
 
    this.summon_num_txt.string = cc.js.formatStr(Utils.TI18N("当前已招募次数:%d"), this.cur_times);
    var award_config = Config.recruit_holiday_data.data_award[this.camp_id];
 
    var EliteSummonController = require("elitesummon_controller");
 
    var status = EliteSummonController.getInstance().getModel().isHolidayHasID(this.camp_id);
 
    if (status) {
      award_config = Config.recruit_holiday_elite_data.data_award[this.camp_id];
    }
 
    var start_x = 100;
    var distance_x = 523;
 
    if (award_config) {
      var offset_x = (distance_x - start_x + 60.5) / (Utils.getArrLen(award_config) - 1);
 
      for (var i in award_config) {
        var v = award_config[i];
        var item = this.award_item_list[i];
 
        if (item == null) {
          item = this.creatorTimeSummonProgressItem();
          this.container.addChild(item);
          this.award_item_list[i] = item;
        }
 
        item.active = true;
        var reward = v.reward[0];
        item.award_item.setData({
          bid: reward[0],
          num: reward[1]
        });
        item.times_txt.string = v.times;
 
        if (v.times <= this.cur_times) {
          item.award_item.setReceivedIcon(true);
        } else {
          item.award_item.setReceivedIcon(false);
        }
 
        var pos_x = start_x + (i - 1) * offset_x;
        item.setPosition(cc.v2(-(this.container.width / 2) + pos_x, -65));
      } // -- 计算进度条
 
 
      var last_times = 0;
      var progress_width = 523;
      var first_off = start_x - 60.5; // 0到第一个的距离
 
      var distance = 0;
 
      for (var _i in award_config) {
        var _v = award_config[_i];
 
        if (_i == 1) {
          if (this.cur_times <= _v.times) {
            distance = this.cur_times / _v.times * first_off;
            break;
          } else {
            distance = first_off;
          }
        } else {
          if (this.cur_times <= _v.times) {
            distance = distance + (this.cur_times - last_times) / (_v.times - last_times) * offset_x;
            break;
          } else {
            distance = distance + offset_x;
          }
        }
 
        last_times = _v.times;
      }
 
      this.progress.progress = distance / progress_width;
    }
  },
  creatorTimeSummonProgressItem: function creatorTimeSummonProgressItem() {
    var size = cc.size(84, 122);
    var node = new cc.Node();
    node.setContentSize(size);
    node.setAnchorPoint(cc.v2(0.5, 0));
    var award_item = ItemsPool.getInstance().getItem("backpack_item");
    award_item.initConfig(false, 0.7, true, true);
    award_item.setPosition(0, -119 / 2 * 0.7 + size.height);
    award_item.setParent(node);
    award_item.show();
    node.award_item = award_item;
    node.times_txt = Utils.createLabel(22, new cc.Color(100, 50, 35), null, 0, -5, "1", node, null, cc.v2(0.5, 1));
    var arrow = Utils.createImage(node, null, 0, size.height - 86, cc.v2(0.5, 1));
    var line = Utils.createImage(node, null, 0, 0, cc.v2(0.5, 0));
    this.loadRes(PathTool.getUIIconPath("timesummon", "timesummon_1004"), function (res) {
      arrow.spriteFrame = res;
    }.bind(this));
    this.loadRes(PathTool.getUIIconPath("timesummon", "timesummon_1005"), function (res) {
      line.spriteFrame = res;
    }.bind(this));
    return node;
  },
  // 关闭窗体回调,需要在这里调用该窗体所属controller的close方法没用于置空该窗体实例对象
  closeCallBack: function closeCallBack() {
    if (this.award_item_list) {
      for (var i in this.award_item_list) {
        if (this.award_item_list[i].award_item) {
          this.award_item_list[i].award_item.deleteMe();
          this.award_item_list[i].award_item = null;
        }
      }
    }
 
    this.award_item_list = null;
    this.ctrl.openTimeSummonProgressView(false);
  }
});
 
cc._RF.pop();