-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathIngredient.java
More file actions
245 lines (187 loc) · 8.17 KB
/
Ingredient.java
File metadata and controls
245 lines (187 loc) · 8.17 KB
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
package RecipeBox;
import java.util.Scanner;
/**
*
* @author josh
*/
public class Ingredient {
private String nameOfIngredient;
private String unitMeasurement; //Options: Cup(s), Tbsp(s), Tsp(s), or Gram(s)
private double ingredientAmount; //Number of unitMeasurement Units
private int numberCaloriesPerUnit; //Number of Calories per each unit of unitMeasurement
private double totalCalories; //(Calories Per Unit * Ingredient Amount)
/**
* @return the nameOfIngredient
*/
public String getNameOfIngredient() {
return nameOfIngredient;
}
/**
* @param nameOfIngredient the nameOfIngredient to set
*/
public void setNameOfIngredient(String nameOfIngredient) {
this.nameOfIngredient = nameOfIngredient;
}
/**
* @return the unitMeasurement
*/
public String unitMeasurement() {
return unitMeasurement;
}
/**
* @param unitMeasurement the unitMeasurement to set
*/
public void numberOfCups(float numberOfCups) {
this.unitMeasurement = unitMeasurement;
}
/**
* @return ingredientAmount
*/
public double ingredientAmount() {
return ingredientAmount;
}
/**
*@param ingredientAmount the ingredientAmount to set
*/
public void ingredientAmount(float ingredientAmount) {
this.ingredientAmount = ingredientAmount;
}
/**
* @return the numberCaloriesPerUnit
*/
public int getNumberCaloriesPerUnit() {
return numberCaloriesPerUnit;
}
/**
* @param numberCaloriesPerUnit the numberCaloriesPerUnit to set
*/
public void setNumberCaloriesPerUnit(int numberCaloriesPerUnit) {
this.numberCaloriesPerUnit = numberCaloriesPerUnit;
}
/**
* @return the totalCalories
*/
public double getTotalCalories() {
return totalCalories;
}
/**
* @param totalCalories the totalCalories to set
*/
public void setTotalCalories(double totalCalories) {
this.totalCalories = totalCalories;
}
//Initializng Constructor
public Ingredient() {
this.nameOfIngredient = "";
this.unitMeasurement = "";
this.ingredientAmount = 0;
this.numberCaloriesPerUnit = 0;
this.totalCalories = 0.0;
}
//Overloaded Constructor
public void Ingredient(String nameOfIngredient, String unitMeasurement,
double ingredientAmount, int numberCaloriesPerUnit, double totalCalories) {
this.nameOfIngredient = nameOfIngredient;
this.unitMeasurement = unitMeasurement;
this.ingredientAmount = ingredientAmount;
this.numberCaloriesPerUnit = numberCaloriesPerUnit;
this.totalCalories = totalCalories;
}
public Ingredient addIngredient(String tempNameOfIngredient) {
Scanner scnr = new Scanner(System.in);
Ingredient newIngredient = new Ingredient(); //Creates New Ingredient "newIngredient" of Class "Ingredient"
//Prompt user for name of ingredient
System.out.println("Please Enter Ingredient Name: ");
nameOfIngredient = scnr.nextLine();
//Prompt user for unit of measurement
System.out.println("Please Enter the Unit of Measurement for this Ingredient. You have the following options:");
System.out.println("Cup(s)");
System.out.println("Tbsp(s)");
System.out.println("Tsp(s)");
System.out.println("Gram(s)");
System.out.println("Type a unit of measurement exactly as it appears in this list above.");
if (scnr.hasNext()) {
unitMeasurement = scnr.next();
if (!"Gram(s)".equals(unitMeasurement) && !"Cup(s)".equals(unitMeasurement) && !"Tbsp(s)".equals(unitMeasurement) && !"Tsp(s)".equals(unitMeasurement)) {
System.out.println("Please enter one of the preceding options.");
}
else {
System.out.println("You have selected " + unitMeasurement);
}
}
else {
System.out.println("Please enter one of the preceding options.");
if (scnr.hasNext()) {
unitMeasurement = scnr.next();
if (!"Gram(s)".equals(unitMeasurement) && !"Cup(s)".equals(unitMeasurement) && !"Tbsp(s)".equals(unitMeasurement) && !"Tsp(s)".equals(unitMeasurement)) {
System.out.println("Unit not recognized. You are out of attempts.");
}
else {
System.out.println("You have selected " + unitMeasurement);
}
}
}
//Prompt user for number of units
System.out.println("Please enter the number of " + unitMeasurement + " of " + nameOfIngredient + " required (between 1 and 1000: )");
if (scnr.hasNextInt()) {
ingredientAmount = scnr.nextInt();
if ((ingredientAmount >= 1) && (ingredientAmount <= 1000)) {
System.out.println(ingredientAmount + " is a valid amount. Any recipes using this "
+ "ingredient will require " + ingredientAmount + " " + unitMeasurement + " of " + nameOfIngredient);
}
else {
System.out.println(ingredientAmount + " is not a valid amount.");
System.out.println("Please enter a valid number of units between 1 and 1000: ");
if (scnr.hasNextInt()) {
ingredientAmount = scnr.nextInt();
if ((ingredientAmount >= 1) && (ingredientAmount <= 1000)) {
System.out.println(ingredientAmount + " is a valid amount!");
}
else if (ingredientAmount < 1) {
System.out.println(ingredientAmount + " is less than 1 unit. Sorry, you are out of attempts.");
}
else {
System.out.println(ingredientAmount + " is greater than 1000 units. Sorry, you are out of attempts.");
}
}
}
}
else {
System.out.println("Error: That is not a number. Sorry, you are out of attempts.");
}
//Prompt user for calories per unit
System.out.println("Please enter the number of calories per " + unitMeasurement + " of " + nameOfIngredient + " (between 1 and 2000): ");
if (scnr.hasNextInt()) {
numberCaloriesPerUnit = scnr.nextInt();
if ((numberCaloriesPerUnit >= 1) && (numberCaloriesPerUnit <= 2000)) {
System.out.println(numberCaloriesPerUnit + " is a valid number of calories.");
}
else {
System.out.println(numberCaloriesPerUnit + " is not a valid number of calories.");
System.out.println("Please enter a valid number of calories per unit between 1 and 2000: ");
if (scnr.hasNextInt()) {
numberCaloriesPerUnit = scnr.nextInt();
if ((numberCaloriesPerUnit >= 1) && (numberCaloriesPerUnit <= 2000)) {
System.out.println(numberCaloriesPerUnit + " is a valid number of calories!");
}
else if (numberCaloriesPerUnit < 1) {
System.out.println(numberCaloriesPerUnit + " is less than 1. Sorry, you are out of attempts.");
}
else {
System.out.println(numberCaloriesPerUnit + " is greater than 2000. Sorry, you are out of attempts.");
}
}
}
}
else {
System.out.println("Error: That is not a number. Sorry, you are out of attempts.");
}
//Calculate total calories
totalCalories = ingredientAmount * numberCaloriesPerUnit;
System.out.println("Congratulations!");
System.out.println("Any recipe that uses " + nameOfIngredient + " will use " + ingredientAmount + " number of " +
unitMeasurement + " of " + ingredientAmount + " which contains " + totalCalories + " total calories.");
System.out.println("Ingredient has been successfully added.");
return newIngredient;
}
}