/*
Copyright (c) 2010, NullNoname
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of NullNoname nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
package mu.nu.nullpo.game.component;
import java.io.Serializable;
import java.util.ArrayList;
import mu.nu.nullpo.util.CustomProperties;
/**
* button input data
*/
public class ReplayData implements Serializable {
/** Serial version ID */
private static final long serialVersionUID = 737226985994393117L;
/** Button input data default */
public static final int DEFAULT_ARRAYLIST_SIZE = 60 * 60 * 10;
/** Button input data */
public ArrayList<Integer> inputDataArray;
/**
* Default constructor
*/
public ReplayData() {
reset();
}
/**
* Copy constructor
* @param r Copy source
*/
public ReplayData(ReplayData r) {
copy(r);
}
/**
* Reset to defaults
*/
public void reset() {
if(inputDataArray == null)
inputDataArray = new ArrayList<Integer>(DEFAULT_ARRAYLIST_SIZE);
else
inputDataArray.clear();
}
/**
* ReplayData
* @param r Copy source
*/
public void copy(ReplayData r) {
reset();
for(int i = 0; i < r.inputDataArray.size(); i++) {
inputDataArray.add(i, r.inputDataArray.get(i));
}
}
/**
* button input
* @param input button input flag
* @param frame frame ( time
*/
public void setInputData(int input, int frame) {
if((frame < 0) || (frame >= inputDataArray.size())) {
inputDataArray.add(input);
} else {
inputDataArray.set(frame, input);
}
}
/**
* button input
* @param frame frame ( time
* @return button input flag
*/
public int getInputData(int frame) {
if((frame < 0) || (frame >= inputDataArray.size())) {
return 0;
}
return inputDataArray.get(frame);
}
/**
*
* @param p
* @param id ID (Player ID
* @param maxFrame frame count (-1
*/
public void writeProperty(CustomProperties p, int id, int maxFrame) {
int max = maxFrame;
if((maxFrame < 0) || (maxFrame > inputDataArray.size())) max = inputDataArray.size();
for(int i = 0; i < max; i++) {
int input = getInputData(i);
int previous = getInputData(i - 1);
if(input != previous) p.setProperty(id + ".r." + i, input);
}
p.setProperty(id + ".r.max", max);
}
/**
*
* @param p
* @param id ID (Player ID
*/
public void readProperty(CustomProperties p, int id) {
reset();
int max = p.getProperty(id + ".r.max", 0);
int input = 0;
for(int i = 0; i < max; i++) {
int data = p.getProperty(id + ".r." + i, -1);
if(data != -1) input = data;
setInputData(input, i);
}
}
}
|