67 lines
1.5 KiB
Java
67 lines
1.5 KiB
Java
package net.minecraft.util.debugchart;
|
|
|
|
public class LocalSampleLogger extends AbstractSampleLogger implements SampleStorage {
|
|
public static final int CAPACITY = 240;
|
|
private final long[][] samples;
|
|
private int start;
|
|
private int size;
|
|
|
|
public LocalSampleLogger(int size) {
|
|
this(size, new long[size]);
|
|
}
|
|
|
|
public LocalSampleLogger(int i, long[] ls) {
|
|
super(i, ls);
|
|
this.samples = new long[240][i];
|
|
}
|
|
|
|
@Override
|
|
protected void useSample() {
|
|
int i = this.wrapIndex(this.start + this.size);
|
|
System.arraycopy(this.sample, 0, this.samples[i], 0, this.sample.length);
|
|
if (this.size < 240) {
|
|
this.size++;
|
|
} else {
|
|
this.start = this.wrapIndex(this.start + 1);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public int capacity() {
|
|
return this.samples.length;
|
|
}
|
|
|
|
@Override
|
|
public int size() {
|
|
return this.size;
|
|
}
|
|
|
|
@Override
|
|
public long get(int index) {
|
|
return this.get(index, 0);
|
|
}
|
|
|
|
@Override
|
|
public long get(int index, int dimension) {
|
|
if (index >= 0 && index < this.size) {
|
|
long[] ls = this.samples[this.wrapIndex(this.start + index)];
|
|
if (dimension >= 0 && dimension < ls.length) {
|
|
return ls[dimension];
|
|
} else {
|
|
throw new IndexOutOfBoundsException(dimension + " out of bounds for dimensions " + ls.length);
|
|
}
|
|
} else {
|
|
throw new IndexOutOfBoundsException(index + " out of bounds for length " + this.size);
|
|
}
|
|
}
|
|
|
|
private int wrapIndex(int index) {
|
|
return index % 240;
|
|
}
|
|
|
|
@Override
|
|
public void reset() {
|
|
this.start = 0;
|
|
this.size = 0;
|
|
}
|
|
}
|