- Created DumpResults.java, which simply outputs all scores in a player model so that they can be graphed.
36 lines
808 B
Java
36 lines
808 B
Java
package model;
|
|
|
|
import java.io.FileInputStream;
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
import java.io.ObjectInputStream;
|
|
|
|
import model.playerModel.GameLog;
|
|
import model.playerModel.PlayerModel;
|
|
|
|
public class DumpResults {
|
|
public static void main(String[] args) {
|
|
FileInputStream fin = null;
|
|
ObjectInputStream oin = null;
|
|
|
|
try {
|
|
fin = new FileInputStream(PlayerModel.getPlayerPath("marshall"));
|
|
|
|
oin = new ObjectInputStream(fin);
|
|
PlayerModel pm = (PlayerModel) oin.readObject();
|
|
oin.close();
|
|
|
|
for (GameLog gl : pm.getScores()) {
|
|
System.out.println(gl.getScore());
|
|
}
|
|
|
|
} catch (FileNotFoundException e) {
|
|
e.printStackTrace();
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
} catch (ClassNotFoundException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|