-
Notifications
You must be signed in to change notification settings - Fork 0
/
ICPA6.cs
234 lines (212 loc) · 6.85 KB
/
ICPA6.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
static int RegularCone = 50;
static int WaffleCone = 25;
static int SugarCone = 10;
static int ChocolateFlavor = 2560;
static int VanillaFlavor = 6400;
static int ChocolateTopping = 640;
static int CaramelTopping = 256;
static int ChocolateChipSprinkles = 16;
static int ColoredSprinkles = 16;
static int Marshmallows = 16;
public void Cones(string TypeOfCone)
{
if (TypeOfCone.ToLower() == "regular")
{
RegularCone--;
}
else if (TypeOfCone.ToLower() == "waffle")
{
WaffleCone--;
}
else
{
SugarCone--;
}
}
public void IceCream(string TypeOfFlavor)
{
if (TypeOfFlavor.ToLower() == "chocolate")
{
ChocolateFlavor -= 8;
}
else
{
VanillaFlavor -= 8;
}
}
public void Topping(string TypeOfTopping)
{
if(TypeOfTopping.ToLower() == "chocolate")
{
ChocolateTopping -= 4;
}
else
{
CaramelTopping -= 4;
}
}
public void Sprinkles(string TypeOfSprinkle)
{
if(TypeOfSprinkle.ToLower() == "chocolate chip")
{
ChocolateChipSprinkles -= 2;
}
else if(TypeOfSprinkle.ToLower() == "colored")
{
ColoredSprinkles -= 2;
}
else
{
Marshmallows -= 2;
}
}
public bool check(string TypeOfCone, string TypeOfFlavor, string TypeOfTopping, string TypeOfSprinkle)
{
//Validating cone entries
if(TypeOfCone.ToLower() == "regular")
{
if (RegularCone-1 < 0)
{
MessageBox.Show("Cone Type out of stock.Please place a new order.");
return false;
}
}
else if(TypeOfCone.ToLower() == "sugar")
{
if (SugarCone-1 < 0)
{
MessageBox.Show("Cone Type out of stock.Please place a new order.");
return false;
}
}
else if(TypeOfCone.ToLower() == "waffle")
{
if (WaffleCone-1 < 0)
{
MessageBox.Show("Cone Type out of stock.Please place a new order.");
return false;
}
}
else
{
MessageBox.Show("Error, Invalid.");
return false;
}
//Validating Ice Cream Flavor entries
if (TypeOfFlavor.ToLower() == "vanilla" )
{
if (VanillaFlavor-8 < 0)
{
MessageBox.Show("Flavor out of stock.Please place a new order.");
return false;
}
}
else if (TypeOfFlavor.ToLower() == "chocolate")
{
if (ChocolateFlavor-8 < 0)
{
MessageBox.Show("Flavor out of stock.Please place a new order.");
return false;
}
}
else
{
MessageBox.Show("Error, Invalid.");
return false;
}
//Validating Toppings entries
if (TypeOfTopping.ToLower() == "chocolate")
{
if (ChocolateTopping-4 < 0)
{
MessageBox.Show("Topping out of stock.Please place a new order.");
return false;
}
}
else if (TypeOfTopping.ToLower() == "caramel")
{
if (ChocolateFlavor-4 < 0)
{
MessageBox.Show("Topping out of stock.Please place a new order.");
return false;
}
}
else
{
MessageBox.Show("Error, Invalid.");
return false;
}
//Validating Sprinkles entries
if (TypeOfSprinkle.ToLower() == "chocolate chip")
{
if (ChocolateChipSprinkles-2 < 0)
{
MessageBox.Show("Sprinkle out of stock.Please place a new order.");
return false;
}
}
else if (TypeOfSprinkle.ToLower() == "colored")
{
if (ChocolateChipSprinkles-2 < 0)
{
MessageBox.Show("Sprinkle out of stock.Please place a new order.");
return false;
}
}
else if (TypeOfSprinkle.ToLower() == "marshmallows")
{
if (Marshmallows-2 < 0)
{
MessageBox.Show("Sprinkle out of stock.Please place a new order.");
return false;
}
}
else
{
MessageBox.Show("Error, Invalid.");
return false;
}
return true;
}
private void button1_Click(object sender, EventArgs e)
{
string TypeOfCone;
string TypeOfFlavor;
string TypeOfTopping;
string TypeOfSprinkle;
//Get user input
TypeOfCone = ConesRemaining.Text;
TypeOfFlavor = IceCreamRemaining.Text;
TypeOfTopping = ToppingsRemaining.Text;
TypeOfSprinkle = SprinklesRemaining.Text;
if (check(TypeOfCone, TypeOfFlavor, TypeOfTopping, TypeOfSprinkle))
{
Cones(TypeOfCone);
IceCream(TypeOfFlavor);
Topping(TypeOfTopping);
Sprinkles(TypeOfSprinkle);
ConesRemaining.Text = "Regular: " + RegularCone + "\nSugar: " + SugarCone + "\nWaffle:" + WaffleCone;
IceCreamRemaining.Text = "Chocolate: " + ChocolateFlavor + "\nVanilla: " + VanillaFlavor;
ToppingsRemaining.Text = "Chocolate: " + ChocolateTopping + "\nCaramel: " + CaramelTopping;
SprinklesRemaining.Text = "Chocolate chip: " + ChocolateChipSprinkles + "\nColored: " + ColoredSprinkles + "\nMarshmallows: " + Marshmallows;
}
}
}
}