-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCokeMachine.java
147 lines (124 loc) · 3.64 KB
/
CokeMachine.java
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
/*
* Inshaad Merchant 1001861293
*/
package code4_1001861293;
public class CokeMachine
{
public enum ACTION
{
DISPENSECHANGE, INSUFFICIENTCHANGE, INSUFFICIENTFUNDS, EXACTPAYMENT
}
private String machineName;
private int changeLevel;
private int maxChangeCapacity = 5000;
private int inventoryLevel;
private int maxInventoryCapacity = 100;
private int CokePrice;
private int changeDispensed;
private static int numberOfCokesSold = 0;
public CokeMachine(String name, int cost, int change, int inventory)
{
machineName = name;
CokePrice = cost;
changeLevel = change;
inventoryLevel = inventory;
}
public CokeMachine()
{
machineName = "NewMachine";
CokePrice = 50;
changeLevel = 500;
inventoryLevel = 100;
}
public String toString()
{
return String.format("Machine Name \t\t\t\t %s\nCurrent Inventory Level \t\t %d\nCurrent Change Level \t\t\t %d\nLast Change Dispensed \t\t\t %d\nInventory Capacity \t\t\t %d\nChange Capacity \t\t\t %d\nCoke Price \t\t\t\t %d\nCokes Sold \t\t\t\t %d\n", machineName, inventoryLevel, changeLevel, changeDispensed, maxInventoryCapacity, maxChangeCapacity, CokePrice, numberOfCokesSold);
}
public String getMachineName()
{
return machineName;
}
public int getChangeLevel()
{
return changeLevel;
}
public int getMaxChangeCapacity()
{
return maxChangeCapacity;
}
public int getInventoryLevel()
{
return inventoryLevel;
}
public int getMaxInventoryLevel()
{
return maxInventoryCapacity;
}
public int getCokePrice()
{
return CokePrice;
}
public int getChangeDispensed()
{
return changeDispensed;
}
public int getNumberOfCokesSold()
{
return numberOfCokesSold;
}
public void setMachineName(String newMachineName)
{
machineName = newMachineName;
}
public void setCokePrice (int newCokePrice)
{
CokePrice = newCokePrice;
}
public boolean incrementInventoryLevel(int amountToAdd)
{
boolean flag = false;
if ((inventoryLevel + amountToAdd) <= maxInventoryCapacity)
{
inventoryLevel = inventoryLevel + amountToAdd;
flag = true;
}
return flag;
}
public boolean incrementChangeLevel(int amountToAdd)
{
boolean flag = false;
if ((changeLevel + amountToAdd) <= maxChangeCapacity)
{
changeLevel = changeLevel + amountToAdd;
flag = true;
}
return flag;
}
public ACTION buyACoke(int payment)
{
ACTION action = ACTION.EXACTPAYMENT;
if (CokePrice == payment)
{
inventoryLevel = inventoryLevel - 1;
changeLevel = changeLevel + payment;
numberOfCokesSold++;
}
if (CokePrice < payment && changeLevel > payment)
{
action = ACTION.DISPENSECHANGE;
inventoryLevel = inventoryLevel - 1;
changeDispensed = payment - CokePrice;
changeLevel = changeLevel + payment - CokePrice;
numberOfCokesSold++;
}
if (CokePrice < payment && changeLevel < payment)
{
action = ACTION.INSUFFICIENTCHANGE;
}
if (CokePrice > payment)
{
action = ACTION.INSUFFICIENTFUNDS;
}
return action;
}
}