-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProperty.java
106 lines (92 loc) · 2.94 KB
/
Property.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
/* Name: Kaleb Tessema
* Start Date: Jan 16 2023
* Due Date: Jan 23 2023
* Class: ICS4U1
* Instructor: E, Katsman
* Desc: A class dedicated to controlling how Properties run
*/
public class Property extends Space {
private int location;
private int cost;
private String name;
private int rentCost;
private int owner;
// Pre: Requires no parameters
// Post: Returns nothing to main
// Desc: Constructor which initializes variables to the object in main
public Property() {
super();
location = 0;
name = "";
cost = 0;
owner = -1;
}
// Pre: Requires the cost of the rides
// Post: Returns nothing to main
// Desc: Sets the cost of the ride
public void setCost(int newCost) {
cost = newCost;
}
// Pre: Requires no parameters
// Post: Returns cost of rides
// Desc: Returns cost of rides
public int getCost() {
return cost;
}
// Pre: Requires the amount of hunger that is being subtracted
// Post: Returns nothing to main
// Desc: Sets the hunger being subtracted
public void setLocation(int newLocation) {
location = newLocation;
}
// Pre: Requires no parameters
// Post: Returns hunger being subtracted
// Desc: Returns hunger being subtracted
public int getLocation() {
return location;
}
// Pre: Requires the newName as a parameter
// Post: Returns nothing to main
// Desc: Sets the name of the user
public void setName(String newName) {
name = newName;
}
// Pre: Requires no parameters
// Post: Returns the user's name
// Desc: Returns the user's name
public String getName() {
return name;
}
// Pre: Requires the amount of hunger that is being subtracted
// Post: Returns nothing to main
// Desc: Sets the hunger being subtracted
public void setRentCost(int newRentCost) {
rentCost = newRentCost;
}
// Pre: Requires no parameters
// Post: Returns hunger being subtracted
// Desc: Returns hunger being subtracted
public int getRentCost() {
return rentCost;
}
// public void doAction(Player player) {
// if(owner < 0){
// Util.print(player, player.getName() + ", do you want to buy " + getName() + "?");
// Random rand = new Random();
// if(rand.nextBoolean()){
// Util.print(player, player.getName() + " buy " + getName() + " for " + price);
// owner = player.getID();
// player.getMoney().substractMoney(price);
// }else{
// Util.print(player, player.getName() + " don't want to buy " + getName());
// }
// }else{
// if(owner != player.getID()){
// int lost = price * 70 / 100;
// Util.print(player, player.getName() + " lost " + lost + " money to " + board.getPlayer(owner).getName());
// player.getMoney().substractMoney(lost);
// board.getPlayer(owner).getMoney().addMoney(lost);
// }
// }
// }
}