/*
* 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 java.util.ArrayList;
import java.util.Iterator;
import net.rubikscomplex.ufosge.util.UFOInputStream;
import net.rubikscomplex.ufosge.util.UFOOutputStream;
/**
*
* @author Chris Davoren
*/
public class Research {
public static final int UNKNOWN2_SIZE = 3;
public static final int UNKNOWN3_SIZE = 3;
public static final int UNKNOWN4_SIZE = 3;
public static final int NUM_TOPIC_INFO = 3;
public static final int TOPIC_INFO_ITEM = 0;
public static final int TOPIC_INFO_RACE = 1;
public static final int TOPIC_INFO_TYPE = 2;
public static final int RACE_NONE = 0x00;
public static final int RACE_SECTOID = 0x01;
public static final int RACE_SNAKEMAN = 0x02;
public static final int RACE_ETHEREAL = 0x03;
public static final int RACE_MUTON = 0x04;
public static final int RACE_FLOATER = 0x05;
public static final int RACE_CELATID = 0x06;
public static final int RACE_SILACOID = 0x07;
public static final int RACE_CHRYSSALID = 0x08;
public static final int RACE_REAPER = 0x09;
public static final short LASER_CATEGORY = 0x0B;
public short index;
public short time;
public short topicInfo[];
public byte unknown1;
public short UFOpaediaCategory;
public short UFOpaediaEntry;
public short points;
public boolean completed;
public byte[] unknown2;
public boolean prerequisitesRequired;
public byte[] unknown3;
public boolean prerequisitesMet;
public byte[] unknown4;
public static final String[] PROJECT_NAMES = {
"Laser Weapons",
"Motion Scanner",
"Medi-Kit",
"Psi-Amp",
"Heavy Plasma",
"Heavy Plasma Clip",
"Plasma Rifle",
"Plasma Rifle Clip",
"Plasma Pistol",
"Plasma Pistol Clip",
"Blaster Launcher",
"Blaster Bomb",
"Small Launcher",
"Stun Bomb",
"Alien Grenade",
"Elerium-115",
"Mind Probe",
"UFO Power Source",
"UFO Navigation",
"UFO Construction",
"Alien Food",
"Alien Reproduction",
"Alien Entertainment",
"Alien Surgery",
"Examination Room",
"Alien Alloys",
"New Fighter",
"New Fighter-Transporter",
"Ultimate Craft",
"Laser Pistol",
"Laser Rifle",
"Heavy Laser",
"Laser Cannon",
"Plasma Cannon",
"Fusion Missile",
"Laser Defense",
"Plasma Defense",
"Fusion Ball Defense",
"Grav Shield",
"Mind Shield",
"Psionic Laboratory",
"Hyper-Wave Decoder",
"N/A) Tank/Laser Cannon*",
"N/A) Plasma Hovertank*",
"N/A) Launcher Hovertank*",
"Sectoid Corpse",
"Snakeman Corpse",
"Ethereal Corpse",
"Muton Corpse",
"Floater Corpse",
"Celatid Corpse",
"Silacoid Corpse",
"Chryssalid Corpse",
"Reaper Corpse",
"Sectopod Corpse",
"Cyberdisc Corpse",
"Alien Origins",
"The Martian Solution",
"Cydonia or Bust",
"Personal Armor",
"Power Suit",
"Flying Suit",
"Live Sectoid Commander",
"Live Sectoid Leader",
"Live Sectoid Engineer",
"Live Sectoid Medic",
"Live Sectoid Navigator",
"Live Sectoid Soldier",
"Live Snakeman Commander",
"Live Snakeman Leader",
"Live Snakeman Engineer",
"Live Snakeman Medic",
"Live Snakeman Navigator",
"Live Snakeman Soldier",
"Live Ethereal Commander",
"Live Ethereal Leader",
"Live Ethereal Engineer",
"Live Ethereal Medic",
"Live Ethereal Navigator",
"Live Ethereal Soldier",
"Live Muton Commander",
"Live Muton Leader",
"Live Muton Engineer",
"Live Muton Medic",
"Live Muton Navigator",
"Live Muton Soldier",
"Live Floater Commander",
"Live Floater Leader",
"Live Floater Engineer",
"Live Floater Medic",
"Live Floater Navigator",
"Live Floater Soldier",
"Live Celatid Terrorist",
"Live Silacoid Terrorist",
"Live Chryssalid Terrorist",
"Live Reaper Terrorist"
};
protected Research() {
}
public Research(Research other) {
copy(other);
}
public void copy(Research other) {
this.index = other.index;
this.time = other.time;
this.topicInfo = new short[NUM_TOPIC_INFO];
System.arraycopy(other.topicInfo, 0, this.topicInfo, 0, NUM_TOPIC_INFO);
this.unknown1 = other.unknown1;
this.UFOpaediaCategory = other.UFOpaediaCategory;
this.UFOpaediaEntry = other.UFOpaediaEntry;
this.points = other.points;
this.completed = other.completed;
this.unknown2 = new byte[UNKNOWN2_SIZE];
System.arraycopy(other.unknown2, 0, this.unknown2, 0, UNKNOWN2_SIZE);
this.prerequisitesRequired = other.prerequisitesRequired;
this.unknown3 = new byte[UNKNOWN3_SIZE];
System.arraycopy(other.unknown3, 0, this.unknown3, 0, UNKNOWN3_SIZE);
this.prerequisitesMet = other.prerequisitesMet;
this.unknown4 = new byte[UNKNOWN4_SIZE];
System.arraycopy(other.unknown4, 0, this.unknown4, 0, UNKNOWN4_SIZE);
};
public boolean readFromFile(UFOInputStream in) throws IOException {
try {
time = in.readUFOShort();
topicInfo = new short[NUM_TOPIC_INFO];
topicInfo[0] = in.readUFOByte();
topicInfo[1] = in.readUFOByte();
topicInfo[2] = in.readUFOByte();
unknown1 = in.readByte();
UFOpaediaCategory = in.readUFOByte();
UFOpaediaEntry = in.readUFOByte();
points = in.readUFOShort();
completed = in.readUFOByte() == 1;
unknown2 = new byte[UNKNOWN2_SIZE];
in.read(unknown2);
prerequisitesRequired = in.readByte() == 0;
unknown3 = new byte[UNKNOWN3_SIZE];
in.read(unknown3);
prerequisitesMet = in.readByte() == 1;
unknown4 = new byte[UNKNOWN4_SIZE];
in.read(unknown4);
return true;
}
catch (EOFException e) {
return false;
}
}
public void writeToFile(UFOOutputStream out) throws IOException {
out.writeUFOShort(time);
out.writeByte(topicInfo[0]);
out.writeByte(topicInfo[1]);
out.writeByte(topicInfo[2]);
out.write(unknown1);
out.writeByte(UFOpaediaCategory);
out.writeByte(UFOpaediaEntry);
out.writeUFOShort(points);
out.writeByte(completed ? 1 : 0);
out.write(unknown2);
out.writeByte(prerequisitesRequired ? 0 : 1);
out.write(unknown3);
out.writeByte(prerequisitesMet ? 1 : 0);
out.write(unknown4);
}
public static ArrayList<Research> readList(UFOInputStream in) throws IOException {
ArrayList<Research> list = new ArrayList<Research>();
int index = 0;
while(true) {
Research research = new Research();
if (research.readFromFile(in)) {
research.index = (short)index++;
list.add(research);
}
else {
break;
}
}
return list;
}
public static void writeList(UFOOutputStream out, ArrayList<Research> list) throws IOException {
Iterator<Research> ri = list.iterator();
while (ri.hasNext()) {
ri.next().writeToFile(out);
}
}
public boolean isLiveAlien() {
return topicInfo[TOPIC_INFO_RACE] != RACE_NONE;
}
public static boolean otherResearchForRaceCompleted(Research item, ArrayList<Research> list) {
if (!item.isLiveAlien()) {
return false;
}
Iterator<Research> ri = list.iterator();
while(ri.hasNext()) {
Research ro = ri.next();
if (ro.topicInfo[TOPIC_INFO_RACE] == item.topicInfo[TOPIC_INFO_RACE] && ro.completed && ro.index != item.index) {
return true;
}
}
return false;
}
}