-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPlayer.java
238 lines (208 loc) · 7.39 KB
/
Player.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
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
import java.util.Scanner;
import java.io.PrintWriter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
/**
* This "Player" class is used to create player objects to store information
* about each player. This class comes with methods for updating a players position.
* @author Ross Petridis | [email protected] | 1080249
*
*/
public class Player extends Creature {
private static final int INITIAL_POS_X = 1;
private static final int INITIAL_POS_Y = 1;
private static final int INITIAL_LEVEL = 1;
private static final int INITIAL_DAMAGE = 1;
private static final int INITIAL_HEALTH = 17;
private static final int HEALTH_MULTIPLIER = 3;
private static final String SAVE_FILE_NAME = "player.dat";
private static final String NORTH = "w";
private static final String SOUTH = "s";
private static final String EAST = "d";
private static final String WEST = "a";
private int level;
/**
* Constructor for when loading from file
*/
public Player(String name, int level){
super(
new Position(),
name,
INITIAL_HEALTH + level * HEALTH_MULTIPLIER, // initial health
INITIAL_HEALTH + level * HEALTH_MULTIPLIER, // max health
INITIAL_DAMAGE + level // initial damage
);
/*this.level = INITIAL_LEVEL;
setDamage(INITIAL_DAMAGE + level);
setHealth(INITIAL_HEALTH + level * HEALTH_MULTIPLIER);
setMaxHealth(getHealth());*/ // health initialised to max!
}
//private Position position = new Position(INITIAL_POS_X,INITIAL_POS_Y);
/**
* No arg constructor for initialisation of player and its attributes to default but leaving name as None.
*/
public Player(){
level = INITIAL_LEVEL;
setDamage(INITIAL_DAMAGE + level);
setHealth(INITIAL_HEALTH + level * HEALTH_MULTIPLIER);
setMaxHealth(getHealth()); // health initialised to max!
}
/**
* This method is used to set the non default player attributes, such as the name.
*/
public void createPlayer(){
if (getName()!=null){
printPlayerInfo();
}
else{
Scanner scanner = GameEngine.getStdInScanner();
System.out.println("What is your character's name?");
setName(scanner.next());
System.out.println(String.format("Player '%s' created.\n", getName()));
}
}
/**
* Displays a players name and Health for the main menu.
*/
public void displayNameAndHealth(){
System.out.print("Player: ");
if(getName() != null){
displayStatus();//name + " " + health + "/" + maxHealth;
}
else{
System.out.print("[None]");
}
}
/**
* Displays a players status for during battle.
*/
public void displayStatus(){
System.out.print(getName() + " " + getHealth() + "/" + getMaxHealth());
}
/**
* Logic for printing a players information in the main menu.
*/
public void printPlayerInfo(){
System.out.println(String.format("%s (Lv. %d)", getName(), getLevel()));
System.out.println("Damage: " + getDamage());
System.out.print(String.format("Health: %d/%d\n\n", getHealth(), getMaxHealth()));
}
/**
* Resets a players positon to the initial default values.
*/
public void resetPosition(){
setPosition(INITIAL_POS_X, INITIAL_POS_Y);
}
public int getLevel(){
return level;
}
public void setLevel(int level){
this.level = level;
}
public void render(){
System.out.print(Character.toUpperCase(getName().charAt(0)));
}
public void resetDamage(){
setDamage(INITIAL_DAMAGE + level);
}
public void levelUp(){
level+=1;
}
/**
* Undoes the previous move by performing the opposite update
* on the players positon to what was initially peformed
* @param action The initial action which resulted in an invalid position and the
*/
public void undoMove(String action){
switch (action){
case NORTH:
moveSouth();
break;
case SOUTH:
moveNorth();
break;
case EAST:
moveWest();
break;
case WEST:
moveEast();
break;
default:
System.out.println("Internal Error: Code called UndowMove with invalid action");
System.exit(0);
//throw new Exception("Internal Error: Code called UndowMove with invalid action");
}
}
@Override
public String toString() {
return getName()+" "+getLevel();
}
/**
* Logic for facilitating the saving of player data to default file location
* @throws NoPlayerException If no player exists in the game to be saved
* @throws FileNotFoundException If method fails to create the file, or open if already exists.
*/
public void save() throws NoPlayerException, FileNotFoundException {
if (getName()!=null){
try {
PrintWriter outputStream = new PrintWriter(new FileOutputStream(SAVE_FILE_NAME));
outputStream.print(this); // will use custome toString() method
outputStream.close();
}
finally {}
}
else {
throw new NoPlayerException(); //("Cannot save player data as no player was found!");
}
}
/**
* method for reading in player data stored in the default file location.
*/
public void load() {
Scanner inputStream=null;;
try {
inputStream = new Scanner(new FileInputStream(SAVE_FILE_NAME));
String[] playerData = inputStream.nextLine().split(" ");
int level = Integer.parseInt(playerData[1]);
setName(playerData[0]);
setLevel(level);
resetDamage();
updateMaxHealth();
heal();
System.out.println("Player data loaded.");
} catch (FileNotFoundException e) {
System.out.print ("No player data found.");
}
finally {
inputStream.close();
}
return;
}
public void updateMaxHealth(){
setMaxHealth(INITIAL_HEALTH+level*HEALTH_MULTIPLIER);
}
}
/* Having items interactWwith players now.
// returns true if the item parsed is the warptoken as the game should end if in custom map!
public boolean parseItem(String effectID){
switch (effectID){
case "+":
setHealth(getMaxHealth());
System.out.println("Healed!");
break;
case "^":
setDamage(getDamage()+1);
System.out.println("Attack up!");
break;
case "@":
levelUp();
System.out.println("World complete! (You leveled up!)\n");
return true;
default:
System.err.println("Unkown Item reciefed:" + effectID);
break;
}
return false;
}
*/