mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-19 10:36:43 +00:00
63 lines
1.5 KiB
Java
63 lines
1.5 KiB
Java
package net.simon987.cubotplugin;
|
|
|
|
import net.simon987.server.GameServer;
|
|
import net.simon987.server.assembly.CpuHardware;
|
|
import net.simon987.server.assembly.Status;
|
|
import org.bson.Document;
|
|
|
|
public class CubotBattery extends CpuHardware {
|
|
|
|
public static final int DEFAULT_ADDRESS = 0x000A;
|
|
|
|
/**
|
|
* Hardware ID (Should be unique)
|
|
*/
|
|
public static final char HWID = 0x000A;
|
|
|
|
private Cubot cubot;
|
|
private static final int BATTERY_POLL = 1;
|
|
private static final int BATTERY_GET_MAX_CAPACITY = 2;
|
|
|
|
public CubotBattery(Cubot cubot) {
|
|
this.cubot = cubot;
|
|
}
|
|
|
|
@Override
|
|
public void handleInterrupt(Status status) {
|
|
|
|
int a = getCpu().getRegisterSet().getRegister("A").getValue();
|
|
|
|
if (a == BATTERY_POLL) {
|
|
getCpu().getRegisterSet().getRegister("B").setValue(cubot.getEnergy());
|
|
|
|
} else if (a == BATTERY_GET_MAX_CAPACITY) {
|
|
getCpu().getRegisterSet().getRegister("B").setValue(cubot.getMaxEnergy());
|
|
} else if (a == 0xFFFF) {
|
|
cubot.setEnergy(cubot.getMaxEnergy());
|
|
}
|
|
|
|
}
|
|
|
|
@Override
|
|
public char getId() {
|
|
return HWID;
|
|
}
|
|
|
|
@Override
|
|
public Document mongoSerialise() {
|
|
|
|
Document dbObject = new Document();
|
|
|
|
dbObject.put("hwid", (int) HWID);
|
|
dbObject.put("cubot", cubot.getObjectId());
|
|
|
|
return dbObject;
|
|
}
|
|
|
|
|
|
public static CubotBattery deserialize(Document obj) {
|
|
return new CubotBattery((Cubot) GameServer.INSTANCE.getGameUniverse().getObject((long) obj.get("cubot")));
|
|
}
|
|
|
|
}
|