-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml.cs
873 lines (726 loc) · 28.8 KB
/
MainWindow.xaml.cs
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
using MapleRoll.Coin;
using MapleRoll.Connect;
using MapleRoll.Greed;
using MapleRoll.Net;
using MapleRoll.Roll;
using MapleRoll.RPS;
using System;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Linq;
using System.Reflection.Metadata;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Documents.DocumentStructures;
using System.Windows.Input;
using System.Windows.Media;
//using static System.Net.Mime.MediaTypeNames;
namespace MapleRoll
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
//public static ObservableCollection<string> Messages { get; set; }
public static ObservableCollection<string> Messages { get; set; }
public static ObservableCollection<User> GroupMembers { get; set; }
//Connect Data
internal static bool isConnectedToServer = false;
internal bool isPrivateMessage = false;
internal string userName { get; set; }
internal string UID { get; set; }
internal string groupId { get; set; }
internal static Server server { get; set; }
//rollWindow data
public int rollWindowUserRoll;
public int rollWindowWinningRoll;
public string rollWindowWinnerName;
public bool rollRadialChecked = false;
public bool rollWindowCanRoll = false;
public bool rollWindowIsOpen = false;
public bool connectWindowIsOpen = false;
public bool coinFlipWindowIsOpen = false;
public bool coinRadialChecked = false;
public bool rpsWindowIsOpen = false;
public static bool playSoundEnabled = true;
public bool soundIsChecked = true;
public bool rpsRadialChecked = false;
public string privateMessageReceiverUid = "";
public bool greedWindowIsOpen = false;
public bool greedRadialChecked = false;
internal static RollWindow rollWindow { get; set; }
internal static RPSWindow rpsWindow { get; set; }
internal static MapleRollConnect connectWindow { get; set; }
internal static CoinFlipWindow coinFlipWindow { get; set; }
internal static SoundProfileWindow soundProfileWindow { get; set; }
internal static NeedGreedWindow needGreedWindow { get; set; }
internal static ContextWindow context { get; set; }
internal static Point mouseLocation { get; set; }
internal bool soundWindowOpen = false;
internal bool contextOpen = false;
public MainWindow()
{
try
{
InitializeComponent();
MapleRollConnect.mainWindow = this;
coinFlipWindow = new CoinFlipWindow();
rollWindow = new RollWindow();
rpsWindow = new RPSWindow();
needGreedWindow = new NeedGreedWindow();
soundProfileWindow = new SoundProfileWindow();
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
public void SendMessageToConsole(string message, int color)
{
switch (color)
{
//System
case 1:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.Salmon);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#ff0055");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
//Winning
case 7:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.GreenYellow);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#40ff00");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
//Message
case 5:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.DeepSkyBlue);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#00ddff");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
//Roll
case 6:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.MediumVioletRed);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#ff00ff");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
//needGreed
case 15:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.MediumOrchid);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#ffa200");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
//RPS
case 17:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.Yellow);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#9000ff");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
//Flip
case 16:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.Moccasin);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#005eff");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
case 20:
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.Moccasin);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#ffe600");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
case 25: //private message
this.Dispatcher.Invoke((() =>
{
Run run = new Run(message);
//run.Foreground = new SolidColorBrush(Colors.DeepSkyBlue);
run.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#00ff91");
rtb_Console.Document.Blocks.Add(new Paragraph(run));
rtb_Console.ScrollToEnd();
}));
break;
}
Console.WriteLine("Completed Message sent to Text box");
}
public void UpdateConnectionInfo(string uid, string _user, string _groupId)
{
userName = _user.ToUpper();
groupId = _groupId;
UID = uid;
this.Dispatcher.Invoke((() =>
{
lbl_UserName.Content = userName;
lbl_GroupID.Content = groupId;
lbl_ClientId.Content = UID;
}));
}
private void btn_SendChat_Click(object sender, RoutedEventArgs e)
{
if (!string.IsNullOrEmpty(txb_ChatInput.Text))
{
if (!isPrivateMessage)
{
string message = txb_ChatInput.Text;
server.SendMessageToServerGroup(groupId, message);
txb_ChatInput.Clear();
}
else if (isPrivateMessage)
{
string msg = txb_ChatInput.Text;
var splitmessage = msg.Split(':', 2);
string privateTag = splitmessage[0].ToUpper();
string message = splitmessage[1];
server.SendPrivateMessageToServerGroup(groupId, privateMessageReceiverUid, message);
txb_ChatInput.Clear();
isPrivateMessage = false;
string consoleMsg = $"[{privateTag}]: {message}";
SendMessageToConsole(consoleMsg,25);
privateMessageReceiverUid = "";
txb_ChatInput.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#ffffff");
}
}
}
public void BuildMembersListView()
{
this.Dispatcher.Invoke(() => lst_GroupMembers.Items.Clear());
foreach (var user in MapleRollConnect.groupMembers)
{
this.Dispatcher.Invoke(() =>
{
{
ListViewItem item = new ListViewItem();
//ContextMenu menu = (ContextMenu)this.FindResource("ItemContextMenu");
item.FontWeight = FontWeights.Bold;
item.Visibility = Visibility.Visible;
item.Width = 90;
//textBox.Height = 25;
item.Name = user.Username;
item.Content = user.Username;
//textBox.TextWrapping = TextWrapping.NoWrap;
item.VerticalContentAlignment = VerticalAlignment.Center;
item.HorizontalContentAlignment = HorizontalAlignment.Center;
item.Background = Brushes.Transparent;
item.BorderBrush= Brushes.White;
item.BorderThickness = new Thickness(.5,.5,.5,.5);
item.Foreground = new SolidColorBrush(Colors.White);
item.FontSize = 9;
item.IsTabStop = false;
//textBox.IsReadOnly = true;
item.Uid = user.UID;
item.ContextMenu = lst_GroupMembers.Resources["MembersContextMenu"] as ContextMenu;
//item.MouseMove += Window_MouseMove;
item.Focusable = true;
item.MouseRightButtonUp += ContextMenuOpening;
lst_GroupMembers.Items.Add(item);
}
});
}
}
public void kickOnClick(object sender, RoutedEventArgs e)
{
Console.WriteLine($"Kick clicked userToKick:");
this.Dispatcher.Invoke(() =>
{
{
ListViewItem item = new ListViewItem();
ContextMenu contextMenu = sender as ContextMenu;
if (contextMenu != null)
{
item = contextMenu.PlacementTarget as ListViewItem;
if (item != null)
{
// Attach the ListViewItem to the context menu as a Tag
contextMenu.Tag = item;
string userToKick = item.Uid;
//MapleRollConnect.SendVoteToKickToServer(userToKick);
Console.WriteLine($" userToKick: {userToKick}");
}
}
}
});
}
public void messageOnClick(object sender, RoutedEventArgs e)
{
Console.WriteLine($"PrivateMessage Clicked");
this.Dispatcher.Invoke(() =>
{
{
isPrivateMessage = true;
Console.WriteLine($"IsPrivateMessage");
ListViewItem item = new ListViewItem();
ContextMenu contextMenu = sender as ContextMenu;
if (contextMenu != null)
{
Console.WriteLine($"Context Menu not null");
item = contextMenu.PlacementTarget as ListViewItem;
if (item != null)
{
// Attach the ListViewItem to the context menu as a Tag
contextMenu.Tag = item;
Console.WriteLine($"Message clicked Send message. ");
txb_ChatInput.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#e600ff");
txb_ChatInput.Text = $"@{item.Name}: ";
txb_ChatInput.Tag = txb_ChatInput.Text.Length.ToString();
txb_ChatInput.Focus();
txb_ChatInput.CaretIndex = int.Parse(txb_ChatInput.Tag.ToString());
}
}
}
});
}
public void kickOnClickList(ListViewItem item)
{
this.Dispatcher.Invoke(() =>
{
{
string userToKick = item.Uid;
MapleRollConnect.SendVoteToKickToServer(userToKick);
Console.WriteLine($"Kick clicked userToKick: {userToKick}");
context.Close();
contextOpen = false;
}
});
}
public void messageOnClickList(ListViewItem item)
{
this.Dispatcher.Invoke(() =>
{
{
isPrivateMessage = true;
privateMessageReceiverUid = item.Uid;
Console.WriteLine($"Message clicked Send message. ");
txb_ChatInput.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#00ff91");
txb_ChatInput.Text = $"@{item.Name}: ";
txb_ChatInput.Tag = txb_ChatInput.Text.Length.ToString();
txb_ChatInput.Focus();
txb_ChatInput.CaretIndex = int.Parse(txb_ChatInput.Tag.ToString());
context.Close();
contextOpen = false;
}
});
}
public void ContextMenuOpening(object sender, MouseButtonEventArgs e)
{
e.Handled = true;
if (context != null)
{
context.Close();
}
this.Dispatcher.Invoke(() =>
{
{
ListViewItem item = sender as ListViewItem;
if (item != null)
{
Console.WriteLine($"RightClicked.{item.Name}");
ContextWindow contextWindow = new ContextWindow();
contextWindow.Owner = this;
contextWindow.WindowStartupLocation = WindowStartupLocation.CenterOwner;
contextWindow.mainWindow = this;
contextWindow.selectedUser = item;
//contextWindow.Focus();
context = contextWindow;
contextWindow.Show();
contextOpen=true;
//contextWindow.Deactivated += (sender, args) => { contextWindow.Hide(); };
}
}
});
}
public void UpdateUserStatDisplay()
{
decimal averageRoll = new decimal();
decimal winLoss = new decimal();
decimal totalSum = MapleRollConnect.userTotalRollSum;
decimal totalRolls = MapleRollConnect.totalUserRollCount;
decimal winningRolls = MapleRollConnect.totalWinningRolls;
if (totalSum > 0 && totalRolls > 0)
{
averageRoll = totalSum / totalRolls;
}
else
{
averageRoll = 0;
}
if (winningRolls > 0 && totalRolls > 0)
{
winLoss = winningRolls / totalRolls;
}
else
{
winLoss = 0;
}
Application.Current.Dispatcher.Invoke((() =>
{
lbl_AverageRoll.Content = averageRoll.ToString(".00");
lbl_WinLoss.Content = winLoss.ToString(".00");
lbl_100Roll.Content = MapleRollConnect.totalPerfectRollCount.ToString();
lbl_1Roll.Content = MapleRollConnect.totalOneRolls.ToString();
lbl_TotalRolls.Content = MapleRollConnect.totalUserRollCount.ToString();
}));
}
private void rbn_Roll_Click(object sender, RoutedEventArgs e)
{
rollRadialChecked = !rollRadialChecked;
try
{
if (rollRadialChecked)
{
rbn_Roll.IsChecked = true;
rollWindowIsOpen = true;
rollWindow.Show();
}
else if (!rollRadialChecked)
{
rbn_Roll.IsChecked = false;
rollWindowIsOpen = false;
rollWindow.Hide();
if (RollWindow.privateRollWindow.IsEnabled)
{
RollWindow.privateRollWindow.Hide();
rollWindow.privateRollwindowOpen = false;
this.Dispatcher.Invoke((() => rollWindow.rbt_PrivateRoll.IsChecked = false));
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private void SignOutbtn_Click(object sender, RoutedEventArgs e)
{
if (rollWindow.IsEnabled)
{
if (RollWindow.privateRollWindow.IsEnabled)
{
RollWindow.privateRollWindow.Close();
rollWindow.privateRollwindowOpen = false;
this.Dispatcher.Invoke((() => rollWindow.rbt_PrivateRoll.IsChecked = false));
}
rollWindow.Close();
}
MapleRollConnect.Disconnect();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
if (rollWindow.IsEnabled)
{
if (RollWindow.privateRollWindow.IsEnabled)
{
RollWindow.privateRollWindow.Close();
rollWindow.privateRollwindowOpen = false;
this.Dispatcher.Invoke((() => rollWindow.rbt_PrivateRoll.IsChecked = false));
}
rollWindow.Close();
}
Application.Current.Shutdown();
}
private void Window_MouseDown(object sender, MouseButtonEventArgs e)
{
if (contextOpen)
{
if (!context.mouseOver)
{
context.Close();
}
}
if (e.ChangedButton == MouseButton.Left)
this.DragMove();
}
private void rbn_Roll_MouseDown(object sender, MouseButtonEventArgs e)
{
rollRadialChecked = !rollRadialChecked;
try
{
if (rollRadialChecked)
{
rbn_Roll.IsChecked = true;
rollWindowIsOpen = true;
rollWindow.Show();
}
else if (!rollRadialChecked)
{
rbn_Roll.IsChecked = false;
rollWindowIsOpen = false;
rollWindow.Hide();
if (RollWindow.privateRollWindow.IsEnabled)
{
RollWindow.privateRollWindow.Hide();
rollWindow.privateRollwindowOpen = false;
this.Dispatcher.Invoke((() => rollWindow.rbt_PrivateRoll.IsChecked = false));
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private void rbn_Coin_Click(object sender, RoutedEventArgs e)
{
coinRadialChecked = !coinRadialChecked;
try
{
if (coinRadialChecked)
{
rbn_Coin.IsChecked = true;
coinFlipWindowIsOpen = true;
this.Dispatcher.Invoke((() => coinFlipWindow.stk_FlipIcon.Visibility = Visibility.Visible));
this.Dispatcher.Invoke((() => coinFlipWindow.stk_HeadsIcon.Visibility = Visibility.Hidden));
this.Dispatcher.Invoke((() => coinFlipWindow.stk_TailsIcon.Visibility = Visibility.Hidden));
coinFlipWindow.Show();
}
else if (!coinRadialChecked)
{
rbn_Coin.IsChecked = false;
coinFlipWindowIsOpen = false;
coinFlipWindow.Hide();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private void rbn_Coin_MouseDown(object sender, MouseButtonEventArgs e)
{
coinRadialChecked = !coinRadialChecked;
try
{
if (coinRadialChecked)
{
rbn_Coin.IsChecked = true;
coinFlipWindowIsOpen = true;
this.Dispatcher.Invoke((() => coinFlipWindow.stk_FlipIcon.Visibility = Visibility.Visible));
this.Dispatcher.Invoke((() => coinFlipWindow.stk_HeadsIcon.Visibility = Visibility.Hidden));
this.Dispatcher.Invoke((() => coinFlipWindow.stk_TailsIcon.Visibility = Visibility.Hidden));
coinFlipWindow.Show();
}
else if (!coinRadialChecked)
{
rbn_Coin.IsChecked = false;
coinFlipWindowIsOpen = false;
coinFlipWindow.Hide();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private void rbn_RPS_Checked(object sender, RoutedEventArgs e)
{
rpsRadialChecked = !rpsRadialChecked;
try
{
if (rpsRadialChecked)
{
rbn_RPS.IsChecked = true;
rpsWindowIsOpen = true;
rpsWindow.Show();
}
else if (!rpsRadialChecked)
{
rbn_RPS.IsChecked = false;
rpsWindowIsOpen = false;
rpsWindow.ResetRPSWindow();
rpsWindow.Hide();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private void rbn_RPS_MouseDown(object sender, MouseButtonEventArgs e)
{
rpsRadialChecked = !rpsRadialChecked;
try
{
if (rpsRadialChecked)
{
rbn_RPS.IsChecked = true;
rpsWindowIsOpen = true;
rpsWindow.Show();
}
else if (!rpsRadialChecked)
{
rbn_RPS.IsChecked = false;
rpsWindowIsOpen = false;
rpsWindow.ResetRPSWindow();
rpsWindow.Hide();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
public void chk_SoundEnabled_Checked(object sender, RoutedEventArgs e)
{
soundIsChecked = !soundIsChecked;
if (soundIsChecked)
{
playSoundEnabled = true;
chk_SoundEnabled.IsChecked = true;
}
else if (!soundIsChecked)
{
playSoundEnabled = false;
chk_SoundEnabled.IsChecked = false;
}
}
private void btn_SoundProfile_Click(object sender, RoutedEventArgs e)
{
soundWindowOpen = !soundWindowOpen;
if (soundWindowOpen)
{
soundProfileWindow.Show();
}
else if (!soundWindowOpen)
{
soundProfileWindow.Hide();
}
}
private void TextBlock_MouseDown(object sender, MouseButtonEventArgs e)
{
System.Diagnostics.Process.Start(new ProcessStartInfo
{
FileName = "https://discord.gg/gRGFDDTBvz",
UseShellExecute = true
});
}
private void rbn_Greed_Click(object sender, RoutedEventArgs e)
{
greedRadialChecked = !greedRadialChecked;
try
{
if (greedRadialChecked)
{
greedWindowIsOpen = true;
needGreedWindow.Show();
rbn_Greed.IsChecked = true;
}
else if (!greedRadialChecked)
{
greedWindowIsOpen = false;
rbn_Greed.IsChecked = false;
needGreedWindow.Hide();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private void rbn_Greed_MouseDown(object sender, MouseButtonEventArgs e)
{
greedRadialChecked = !greedRadialChecked;
try
{
if (greedRadialChecked)
{
greedWindowIsOpen = true;
needGreedWindow.Show();
rbn_Greed.IsChecked = true;
}
else if (!greedRadialChecked)
{
greedWindowIsOpen = false;
rbn_Greed.IsChecked = false;
needGreedWindow.Hide();
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private void txb_ChatInput_PreviewKeyDown(object sender, KeyEventArgs e)
{
if (isPrivateMessage)
{
TextBox textBox = sender as TextBox;
int indexLength = int.Parse(textBox.Tag.ToString());
if (e.Key == Key.Left || e.Key == Key.Back)
{
if (textBox != null && textBox.CaretIndex <= indexLength)
{
e.Handled = true;
}
}
if (textBox != null && textBox.CaretIndex < indexLength)
{
e.Handled = true;
}
if (e.Key == Key.Enter)
{
btn_SendChat_Click(sender, e);
}
if (e.Key == Key.Escape)
{
txb_ChatInput.Clear();
txb_ChatInput.Foreground = null;
isPrivateMessage = false;
txb_ChatInput.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#ffffff");
}
}
else
{
if (e.Key == Key.Enter)
{
btn_SendChat_Click(sender, e);
}
if (e.Key == Key.Escape)
{
txb_ChatInput.Clear();
txb_ChatInput.Foreground = null;
isPrivateMessage = false;
txb_ChatInput.Foreground = (SolidColorBrush)new BrushConverter().ConvertFrom("#ffffff");
}
}
}
}
}