SyncedVar/test/Main.java

129 lines
3.9 KiB
Java

import net.tofvesson.annotation.SyncedVar;
import net.tofvesson.data.DiffTracked;
import net.tofvesson.data.DiffTrackedArray;
import net.tofvesson.data.SyncHandler;
import net.tofvesson.math.ArithmeticKt;
import net.tofvesson.serializers.MathSerializer;
import net.tofvesson.math.Vector3;
import java.nio.ByteBuffer;
public class Main {
@SyncedVar("NonNegative")
public int syncTest = 5;
@SyncedVar
public static long staticTest = 90;
@SyncedVar
public static float value = 1f;
@SyncedVar
public boolean testbool = false;
@SyncedVar
public static boolean testbool1 = true;
@SyncedVar
public static boolean[] test = {true, false};
@SyncedVar
public static DiffTracked<Integer> tracker = new DiffTracked<>(5, Integer.class);
@SyncedVar
public static DiffTrackedArray<Long> tracker2 = new DiffTrackedArray<>(Long.class, 8, i -> (long)i); //14,11
@SyncedVar({MathSerializer.flagLowCompressionRotation, MathSerializer.flagPassiveCompress})
public static Vector3 lookDirection = new Vector3(60, 90, 80);
public static void main(String[] args){
ByteBuffer buf = ByteBuffer.allocate(256);
ArithmeticKt.writeVarInt(buf, 0, -260);
Main testObject = new Main();
SyncHandler sync = new SyncHandler();
sync.registerSyncObject(testObject);
sync.registerSyncObject(Main.class);
// Generate mismatch check
byte[] mismatchCheck = sync.generateMismatchCheck();
// Trigger change flags
tracker.setValue(9);
tracker2.set(3L, 2);
tracker2.set(5L, 0);
lookDirection.setX(355);
lookDirection.setZ(0);
// Generate snapshot of values to serialize
byte[] ser = sync.serialize().array();
System.out.print("Created and serialized snapshot of field values:\n\t"+
testObject.syncTest+"\n\t"+
staticTest+"\n\t"+
value+"\n\t"+
testObject.testbool+"\n\t"+
testbool1+"\n\t"+
test[0]+"\n\t"+
test[1]+"\n\t"+
tracker+"\n\t"+
lookDirection
);
for(Long value : tracker2.getValues())
System.out.print("\n\t"+value);
System.out.println('\n');
// Modify all the values
testObject.syncTest = 20;
staticTest = 32;
value = 9.0f;
testObject.testbool = true;
testbool1 = false;
test[0] = false;
test[1] = true;
tracker.setValue(400);
tracker2.set(100L, 0);
tracker2.set(8L, 2);
lookDirection.setX(200);
lookDirection.setZ(360);
System.out.print("Set a new state of test values:\n\t"+
testObject.syncTest+"\n\t"+
staticTest+"\n\t"+
value+"\n\t"+
testObject.testbool+"\n\t"+
testbool1+"\n\t"+
test[0]+"\n\t"+
test[1]+"\n\t"+
tracker+"\n\t"+
lookDirection
);
for(Long value : tracker2.getValues())
System.out.print("\n\t"+value);
System.out.println('\n');
// Do mismatch check
if(!sync.doMismatchCheck(mismatchCheck)) throw new RuntimeException("Target sync mismatch");
// Load snapshot values back
sync.deserialize(ser);
System.out.print("Deserialized snapshot values:\n\t"+
testObject.syncTest+"\n\t"+
staticTest+"\n\t"+
value+"\n\t"+
testObject.testbool+"\n\t"+
testbool1+"\n\t"+
test[0]+"\n\t"+
test[1]+"\n\t"+
tracker+"\n\t"+
lookDirection);
for(Long value : tracker2.getValues())
System.out.print("\n\t"+value);
System.out.println("\n\nSnapshot size: "+ser.length+" bytes");
}
}