-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml.cs
397 lines (361 loc) · 14.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace European_Calculator
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
// Instantiation of the Votelogger class,
// this allows us to link the UI to the backend code
Votelogger Vote_Logger = new Votelogger();
//Methods containing lists for all the different clickboxes
//These lists are used to find which checkbox was checked allowing me to
//greatly decrease the number of methods required from around 81 to 10
private CheckBox[] EUParticipants()
{
CheckBox[] particpants = new CheckBox[]
{
AusPart, BelgPart, BulPart, CroPart, CypPart, CzePart, DenPart,
EstPart,FinPart,FraPart,GerPart,GrePart, HunPart, IrePart, ItaPart,
LatPart, LitPart, LuxPart, MalPart, NetPart, PolPart, PorPart, RomPart,
SloPart,SlovPart,SpaPart,SwePart
};
return particpants;
}
private CheckBox[] EUAbstain()
{
CheckBox[] Abstain = new CheckBox[]
{
AusAb, BelgAb, BulAb, CroAb, CypAb, CzeAb, DenAb,
EstAb,FinAb,FraAb,GerAb,GreAb, HunAb, IreAb, ItaAb,
LatAb, LitAb, LuxAb, MalAb, NetAb, PolAb, PorAb, RomAb,
SloAb,SlovAb,SpaAb,SweAb
};
return Abstain;
}
private CheckBox[] EUVote()
{
CheckBox[] Vote = new CheckBox[]
{
AusVote, BelgVote, BulVote, CroVote, CypVote, CzeVote, DenVote,
EstVote,FinVote,FraVote,GerVote,GreVote, HunVote, IreVote, ItaVote,
LatVote, LitVote, LuxVote, MalVote, NetVote, PolVote, PorVote, RomVote,
SloVote,SlovVote,SpaVote,SweVote
};
return Vote;
}
private CheckBox[] NotEuro()
{
CheckBox[] NonEuro = new CheckBox[]
{
BulPart,CroPart,CzePart,DenPart,HunPart,PolPart,RomPart,SwePart
};
return NonEuro;
}
private Label[] LabelNames()
{
Label[] particpants = new Label[]
{
Aus, Bel, Bul, Cro, Cyp, Cze, Den,
Est,Fin,Fra,Ger,Gre, Hun, Ire, Ita,
Lat, Lit, Lux, Mal, Net, Pol, Por, Rom,
Slo,Slov,Spa,Swe
};
return particpants;
}
//Initialize the main window for the UI
public MainWindow()
{
InitializeComponent();
Vote_Logger.Create();
Population_Stat_Updater();
}
// Method Name: limit_Euro
// Return: Void
// Purpose: To uncheck all of the non eurozone countries
private void limit_Euro(object sender, RoutedEventArgs e)
{
bool limit = true;
if(Euro_Control.IsChecked == true)
{
limit = false;
}
foreach(CheckBox nonEUCountry in NotEuro())
{
nonEUCountry.IsChecked = limit;
int loc = Array.IndexOf(EUParticipants(), nonEUCountry);
EUAbstain()[loc].IsChecked = false;
EUVote()[loc].IsChecked = limit;
}
Update_numbers();
}
// Method Name: Participation
// Return: Void
// Purpose: To control particpation, if participation is unchecked then vote or abstain is also unchecked
private void Participaction(object sender, RoutedEventArgs e)
{
int count = 0;
foreach(CheckBox country in EUParticipants())
{
bool join = true;
if (country.IsChecked == false)
{
join = false;
}
if (country.IsChecked == false)
{
EUAbstain()[count].IsChecked = false;
EUVote()[count].IsChecked = join;
LabelNames()[count].Content = $"{Vote_Logger.EuCountries[count].CountrieName}, Not Particpating";
All_Part.IsChecked = false;
}
else EUVote()[count].IsChecked = true;
RemoveEurotag(country);
Update_numbers();
count++;
}
}
// Method Name: Abstaining
// Return: Void
// Purpose: To control the abstain vote, if abstain is checked vote is unchecked
// If particpation is unchecked and abstain is checked then then participation will turn on
private void Abstaining(object sender, RoutedEventArgs e)
{
int count = 0;
foreach (CheckBox country in EUAbstain())
{
bool abs = false;
if (country.IsChecked == true)
{
abs = true;
}
if(EUParticipants()[count].IsChecked == !abs )
{
EUParticipants()[count].IsChecked = true;
RemoveEurotag(EUParticipants()[count]);
}
if(EUVote()[count].IsChecked == true)
{
EUVote()[count].IsChecked = !abs;
RemoveEurotag(EUParticipants()[count]);
}
Update_numbers();
count++;
}
}
// Method Name: Voting
// Return: Void
// Purpose: Controls voting , if checked then abastain will be unchecked
// If particpation is unchecked and voting is checked then then participation will turn on
private void Voting(object sender, RoutedEventArgs e)
{
int count = 0;
foreach (CheckBox country in EUVote())
{
bool vot = false;
if (country.IsChecked == true)
{
vot = true;
}
if (EUParticipants()[count].IsChecked == !vot)
{
EUParticipants()[count].IsChecked = true;
RemoveEurotag(EUParticipants()[count]);
}
if (EUAbstain()[count].IsChecked == vot)
{
EUAbstain()[count].IsChecked = false;
}
Update_numbers();
count++;
}
}
// Method Name: Force_Part
// Return: Void
// Purpose: To force all countries to particpate
private void Force_Part(object sender, RoutedEventArgs e)
{
int count = 0;
foreach(CheckBox country in EUParticipants())
{
if (country.IsChecked == false)
{
country.IsChecked = true;
EUVote()[count].IsChecked = true;
count++;
}
}
}
// Method Name: RemoveEurotag
// Return: Void
// Purpose: Will uncheck the eurozone check box if one of the non euro zone section is checked while the filter is on
private void RemoveEurotag(CheckBox country)
{
if (NotEuro().Contains(country))
{
Euro_Control.IsChecked = false;
Update_numbers();
}
}
// Method Name: Update_numbers
// Return: void
// Purpose: This method is responsible for updating the number of countries particpating, voting yes, or voting no
// Updates live
// Purely visual but also triggers the methods that update the Country structure
private void Update_numbers()
{
int count = 0, countries_yes = EUParticipants().Count(), countries_no = 0, countries_abs = 0, total = EUParticipants().Count();
foreach(CheckBox country in EUParticipants())
{
if (country.IsChecked == true && EUVote()[count].IsChecked == true)
{
countries_no += 1;
countries_yes -= 1;
Vote_Logger.VoteChange(count,true);
}
if(country.IsChecked == false)
{
countries_yes -= 1;
total -= 1;
Vote_Logger.PartispantChange(count);
}
if (country.IsChecked == true && EUVote()[count].IsChecked == false)
{
Vote_Logger.VoteChange(count, false);
}
if (country.IsChecked == true && EUAbstain()[count].IsChecked == true)
{
countries_abs += 1;
countries_yes -= 1;
Vote_Logger.AbstainChange(count);
}
Mem_No.Content = $"No: {countries_yes}";
Mem_Yes.Content = $"Yes: {countries_no}";
Mem_Abs.Content = $"Abstain: {countries_abs}";
Mem_Total.Content = $"Total: {total}";
count++;
}
Population_Stat_Updater();
}
// Method Name: Vote_Rule
// Return: void
// Purpose: This method takes note of what is selected in the voting rule drop down menu and updates an
// enumerated list to match the current selection
private void Vote_Rule(object sender, RoutedEventArgs e)
{
string VoteState = Voting_Rules.SelectedValue.ToString().ToLower();
try
{
switch (VoteState.Remove(0, 38))
{
case "qualified majority":
Vote_Logger.vote_system = Votelogger.Majority_System.qual;
break;
case "reinforced qualified majority":
Vote_Logger.vote_system = Votelogger.Majority_System.rein;
break;
case "simple majority":
Vote_Logger.vote_system = Votelogger.Majority_System.sim;
break;
case "unanamity":
Vote_Logger.vote_system = Votelogger.Majority_System.unam;
break;
default:
break;
}
Update_numbers();
}
catch
{
}
}
// Method Name: If_Pass
// Return: void
// Purpose: This method acts as an AND gate if the population and number of member states is high enough
// it modifies the text to say if the bill has passed or not
private void If_Pass(double percfor)
{
var countfor = from state in Vote_Logger.EuCountries
where state.Position.ToString() == "Yes"
select state;
var Notparticipating = from state in Vote_Logger.EuCountries
where state.Position.ToString() == "Notparticpating"
select state;
Mem_Pass.Content = $"Member States to Pass: {Convert.ToInt32(Math.Ceiling((double)(((Vote_Logger.EuCountries.Count() - 1) - Notparticipating.Count()) * Vote_Logger.Majority_Choose(Vote_Logger.vote_system,true))))}";
if (Vote_Logger.Population_Check(Vote_Logger.vote_system, percfor) && Vote_Logger.Member_States_Check(Vote_Logger.vote_system, Notparticipating.Count(), countfor.Count()-1))
Pass_Marker.Content = "Approved";
else
Pass_Marker.Content = "Denied";
}
// Method Name: Population_Stat_Updater
// Return: void
// Purpose: To collect all of the population data and not only output to the UI the population figures rounded to 2DP
// It also triggers the If_Pass method to decide if the bill passes.
private void Population_Stat_Updater()
{
int countYe=0, countNo=0, countAbs=0, countNotParc= 0;
foreach (var State in Vote_Logger.EuCountries)
{
switch (State.Position.ToString())
{
case "Yes":
countYe += State.Population;
break;
case "No":
countNo += State.Population;
break;
case "Abstain":
countAbs += State.Population;
break;
case "Notparticpating":
countNotParc += State.Population;
break;
default:
break;
}
//totalPercentage += Math.Round((double)(ParticpatingCountry / PercentageParticpating), 2);
}
double PercentageParticpating = Convert.ToInt32(Vote_Logger.PopulationTotal- countNotParc);
double PercYes = Math.Round((double)(100*(countYe / PercentageParticpating)), 2),
PercNo = Math.Round((double)(100*(countNo / PercentageParticpating)),2),
Percabs = Math.Round((double)(100*(countAbs / PercentageParticpating)),2);
If_Pass(Math.Round((double)(countYe / PercentageParticpating), 2));
Pop_Yes.Content = $"Yes: {PercYes}%";
Pop_No.Content = $"No: {PercNo}%";
Pop_Abs.Content = $"Abstain: {Percabs}%";
Pop_Pass.Content = $"Population to Pass: {Vote_Logger.Majority_Choose(Vote_Logger.vote_system, false)*100}%";
Redistribute(PercentageParticpating);
}
private void Redistribute(double PopulationPaticipating)
{
int count = 0;
foreach(Label State in LabelNames())
{
if(EUParticipants()[count].IsChecked == true)
{
if(State == Cze)
{
State.Content = $"Czech Republic, {Math.Round((double)(100 * (Vote_Logger.EuCountries[count].Population / PopulationPaticipating)), 2)}%";
}
else
State.Content = $"{Vote_Logger.EuCountries[count].CountrieName}, {Math.Round((double)(100 * (Vote_Logger.EuCountries[count].Population / PopulationPaticipating)), 2)}%";
}
count++;
}
}
}
}