/*
* UFO Saved Game Editor
* Copyright (C) 2010 Christopher Davoren
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package net.rubikscomplex.ufosge.data;
import java.io.EOFException;
import java.io.IOException;
import net.rubikscomplex.ufosge.util.UFOInputStream;
import net.rubikscomplex.ufosge.util.UFOOutputStream;
/**
*
* @author Chris Davoren
*/
public class FinancialInfo {
public static final int NUM_RECORDS = 12;
public int funds;
public int[] expenditureRecord;
public int[] maintenanceRecord;
public int[] fundsRecord;
public boolean readFromFile(UFOInputStream in) throws IOException {
try {
funds = in.readUFOInt();
expenditureRecord = new int[NUM_RECORDS];
for(int i = 0; i < NUM_RECORDS; i++) {
expenditureRecord[i] = in.readUFOInt();
}
maintenanceRecord = new int[NUM_RECORDS];
for(int i = 0; i < NUM_RECORDS; i++) {
maintenanceRecord[i] = in.readUFOInt();
}
fundsRecord = new int[NUM_RECORDS];
for(int i =0; i < NUM_RECORDS; i++) {
fundsRecord[i] = in.readUFOInt();
}
return true;
}
catch (EOFException e) {
return false;
}
}
public void writeToFile(UFOOutputStream out) throws IOException {
out.writeUFOInt(funds);
for(int i=0; i < NUM_RECORDS; i++) {
out.writeUFOInt(expenditureRecord[i]);
}
for(int i=0; i < NUM_RECORDS; i++) {
out.writeUFOInt(maintenanceRecord[i]);
}
for(int i=0; i < NUM_RECORDS; i++) {
out.writeUFOInt(fundsRecord[i]);
}
}
}