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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
|
using System;
using System.Collections.Generic;
using UILib;
using UnityEngine;
using XMainClient.UI.UICommon;
using XUtliPoolLib;
namespace XMainClient.UI
{
internal class QuickReplyDlg : DlgBase<QuickReplyDlg, XQuickReplyBehavior>
{
public override string fileName
{
get
{
return "GameSystem/QuickReplyDlg";
}
}
public override int layer
{
get
{
return 100;
}
}
public override bool autoload
{
get
{
return true;
}
}
private XQuickReplyDocument _Doc;
private int m_quickReplyType = 1;
private Vector2 m_DragDistance = Vector2.zero;
private bool m_CancelRecord = false;
private Action<bool> m_cancelAction = null;
public void ShowView(int type, Action<bool> action = null)
{
this.m_quickReplyType = type;
this.m_cancelAction = action;
this.SetVisibleWithAnimation(true, null);
}
protected override void Init()
{
this._Doc = XDocuments.GetSpecificDocument<XQuickReplyDocument>(XQuickReplyDocument.uuID);
}
protected override void OnShow()
{
base.OnShow();
this.OnUpdateReplyList();
this.OnShowTitle();
}
private void OnShowTitle()
{
string key = string.Format("QUICK_REPLY_{0}", this.m_quickReplyType);
this.m_uiBehaviour.m_Title.SetText(XStringDefineProxy.GetString(key));
}
private void OnUpdateReplyList()
{
List<QuickReplyTable.RowData> quickReplyList = this._Doc.GetQuickReplyList(this.m_quickReplyType);
bool flag = quickReplyList == null;
if (!flag)
{
int count = quickReplyList.Count;
this.m_uiBehaviour.m_ItemPool.FakeReturnAll();
for (int i = 0; i < count; i++)
{
GameObject gameObject = this.m_uiBehaviour.m_ItemPool.FetchGameObject(false);
QuickReplyTable.RowData rowData = quickReplyList[i];
gameObject.name = rowData.ID.ToString();
gameObject.transform.localPosition = this.m_uiBehaviour.m_ItemPool.TplPos - new Vector3(0f, (float)(this.m_uiBehaviour.m_ItemPool.TplHeight * i));
IXUISprite ixuisprite = gameObject.GetComponent("XUISprite") as IXUISprite;
IXUILabel ixuilabel = gameObject.transform.Find("Content").GetComponent("XUILabel") as IXUILabel;
ixuilabel.SetText(rowData.Content);
ixuisprite.ID = (ulong)((long)rowData.ID);
ixuisprite.RegisterSpriteClickEventHandler(new SpriteClickEventHandler(this.OnReplyClicked));
}
this.m_uiBehaviour.m_ItemPool.ActualReturnAll(false);
this.m_uiBehaviour.m_WrapScrollView.ResetPosition();
}
}
private void OnReplyClicked(IXUISprite button)
{
QuickReplyTable.RowData rowData = this._Doc.GetRowData((int)button.ID);
DlgBase<XChatView, XChatBehaviour>.singleton.AddChat(rowData.Content, ChatChannelType.Guild, null, false);
XSingleton<UiUtility>.singleton.ShowSystemTip(XStringDefineProxy.GetString("INVITATION_SENT_NOTIFICATION"), "fece00");
bool flag = this.m_cancelAction != null;
if (flag)
{
this.m_cancelAction(true);
this.m_cancelAction = null;
this.SetVisible(false, true);
}
}
public override void RegisterEvent()
{
base.RegisterEvent();
base.uiBehaviour.m_Close.RegisterSpriteClickEventHandler(new SpriteClickEventHandler(this.OnCloseClicked));
base.uiBehaviour.m_Voice.RegisterPressEventHandler(new ButtonPressEventHandler(this.OnVoicePressButton));
base.uiBehaviour.m_Voice.RegisterDragEventHandler(new ButtonDragEventHandler(this.OnVoiceDragButton));
}
private void OnCloseClicked(IXUISprite go)
{
bool flag = this.m_cancelAction != null;
if (flag)
{
this.m_cancelAction(false);
this.m_cancelAction = null;
}
this.SetVisible(false, true);
}
private void OnVoicePressButton(IXUIButton button, bool state)
{
if (state)
{
this.m_DragDistance = Vector2.zero;
bool useApollo = XChatDocument.UseApollo;
if (useApollo)
{
XSingleton<XChatApolloMgr>.singleton.StartRecord(VoiceUsage.CHAT, null);
}
else
{
XSingleton<XChatIFlyMgr>.singleton.StartRecord(VoiceUsage.CHAT, null);
}
}
else
{
DlgBase<XChatView, XChatBehaviour>.singleton.SetActiveChannel(ChatChannelType.Guild);
bool useApollo2 = XChatDocument.UseApollo;
if (useApollo2)
{
XSingleton<XChatApolloMgr>.singleton.StopRecord(this.m_CancelRecord);
}
else
{
XSingleton<XChatIFlyMgr>.singleton.StopRecord(this.m_CancelRecord);
}
bool flag = !this.m_CancelRecord;
if (flag)
{
bool flag2 = this.m_cancelAction != null;
if (flag2)
{
this.m_cancelAction(true);
this.m_cancelAction = null;
this.SetVisible(false, true);
}
}
}
}
private void OnVoiceDragButton(IXUIButton button, Vector2 delta)
{
this.m_DragDistance += delta;
bool flag = this.m_DragDistance.magnitude >= 100f;
if (flag)
{
this.m_CancelRecord = true;
}
else
{
this.m_CancelRecord = false;
}
}
private void _WrapContentItemUpdated(Transform t, int index)
{
}
}
}
|