mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-23 01:21:42 +00:00
192 lines
4.1 KiB
Java
192 lines
4.1 KiB
Java
// Copyright (c) FIRST and other WPILib contributors.
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
// the WPILib BSD license file in the root directory of this project.
|
|
|
|
package edu.wpi.first.util;
|
|
|
|
/** This is a simple circular buffer so we don't need to "bucket brigade" copy old values. */
|
|
public class CircularBuffer {
|
|
private double[] m_data;
|
|
|
|
// Index of element at front of buffer
|
|
private int m_front;
|
|
|
|
// Number of elements used in buffer
|
|
private int m_length;
|
|
|
|
/**
|
|
* Create a CircularBuffer with the provided size.
|
|
*
|
|
* @param size The size of the circular buffer.
|
|
*/
|
|
public CircularBuffer(int size) {
|
|
m_data = new double[size];
|
|
for (int i = 0; i < m_data.length; i++) {
|
|
m_data[i] = 0.0;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns number of elements in buffer.
|
|
*
|
|
* @return number of elements in buffer
|
|
*/
|
|
double size() {
|
|
return m_length;
|
|
}
|
|
|
|
/**
|
|
* Get value at front of buffer.
|
|
*
|
|
* @return value at front of buffer
|
|
*/
|
|
double getFirst() {
|
|
return m_data[m_front];
|
|
}
|
|
|
|
/**
|
|
* Get value at back of buffer.
|
|
*
|
|
* @return value at back of buffer
|
|
*/
|
|
double getLast() {
|
|
// If there are no elements in the buffer, do nothing
|
|
if (m_length == 0) {
|
|
return 0.0;
|
|
}
|
|
|
|
return m_data[(m_front + m_length - 1) % m_data.length];
|
|
}
|
|
|
|
/**
|
|
* Push new value onto front of the buffer. The value at the back is overwritten if the buffer is
|
|
* full.
|
|
*
|
|
* @param value The value to push.
|
|
*/
|
|
public void addFirst(double value) {
|
|
if (m_data.length == 0) {
|
|
return;
|
|
}
|
|
|
|
m_front = moduloDec(m_front);
|
|
|
|
m_data[m_front] = value;
|
|
|
|
if (m_length < m_data.length) {
|
|
m_length++;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Push new value onto back of the buffer. The value at the front is overwritten if the buffer is
|
|
* full.
|
|
*
|
|
* @param value The value to push.
|
|
*/
|
|
public void addLast(double value) {
|
|
if (m_data.length == 0) {
|
|
return;
|
|
}
|
|
|
|
m_data[(m_front + m_length) % m_data.length] = value;
|
|
|
|
if (m_length < m_data.length) {
|
|
m_length++;
|
|
} else {
|
|
// Increment front if buffer is full to maintain size
|
|
m_front = moduloInc(m_front);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Pop value at front of buffer.
|
|
*
|
|
* @return value at front of buffer
|
|
*/
|
|
public double removeFirst() {
|
|
// If there are no elements in the buffer, do nothing
|
|
if (m_length == 0) {
|
|
return 0.0;
|
|
}
|
|
|
|
double temp = m_data[m_front];
|
|
m_front = moduloInc(m_front);
|
|
m_length--;
|
|
return temp;
|
|
}
|
|
|
|
/**
|
|
* Pop value at back of buffer.
|
|
*
|
|
* @return value at back of buffer
|
|
*/
|
|
public double removeLast() {
|
|
// If there are no elements in the buffer, do nothing
|
|
if (m_length == 0) {
|
|
return 0.0;
|
|
}
|
|
|
|
m_length--;
|
|
return m_data[(m_front + m_length) % m_data.length];
|
|
}
|
|
|
|
/**
|
|
* Resizes internal buffer to given size.
|
|
*
|
|
* <p>A new buffer is allocated because arrays are not resizable.
|
|
*
|
|
* @param size New buffer size.
|
|
*/
|
|
void resize(int size) {
|
|
double[] newBuffer = new double[size];
|
|
m_length = Math.min(m_length, size);
|
|
for (int i = 0; i < m_length; i++) {
|
|
newBuffer[i] = m_data[(m_front + i) % m_data.length];
|
|
}
|
|
m_data = newBuffer;
|
|
m_front = 0;
|
|
}
|
|
|
|
/** Sets internal buffer contents to zero. */
|
|
public void clear() {
|
|
for (int i = 0; i < m_data.length; i++) {
|
|
m_data[i] = 0.0;
|
|
}
|
|
m_front = 0;
|
|
m_length = 0;
|
|
}
|
|
|
|
/**
|
|
* Get the element at the provided index relative to the start of the buffer.
|
|
*
|
|
* @param index Index into the buffer.
|
|
* @return Element at index starting from front of buffer.
|
|
*/
|
|
public double get(int index) {
|
|
return m_data[(m_front + index) % m_data.length];
|
|
}
|
|
|
|
/**
|
|
* Increment an index modulo the length of the m_data buffer.
|
|
*
|
|
* @param index Index into the buffer.
|
|
*/
|
|
private int moduloInc(int index) {
|
|
return (index + 1) % m_data.length;
|
|
}
|
|
|
|
/**
|
|
* Decrement an index modulo the length of the m_data buffer.
|
|
*
|
|
* @param index Index into the buffer.
|
|
*/
|
|
private int moduloDec(int index) {
|
|
if (index == 0) {
|
|
return m_data.length - 1;
|
|
} else {
|
|
return index - 1;
|
|
}
|
|
}
|
|
}
|