123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
-
-
-
- import java.util.ArrayList;
- import java.util.List;
- import java.util.StringTokenizer;
- import java.util.Collections;
-
-
-
- public class cubeWorker {
-
- private final int framesRemaining = 2016;
- private boolean changedState = false;
- private Frame parentFrame;
- private Animation[] animations = new Animation[1];
-
-
-
- public cubeWorker(Frame parent) {
- animations[0] = new Animation();
- parentFrame = parent;
- }
-
- public cubeWorker(Animation[] anims, Frame parent) {
- animations = anims;
- parentFrame = parent;
- }
-
-
-
- public int completeNumOfFrames() {
- int c = 0;
- for (int i = 0; i < size(); i++) {
- c += getAnimation(i).size();
- }
- return c;
- }
-
-
-
-
-
-
-
- public int size() {
- return animations.length;
- }
-
-
-
- public int memoryRemaining() {
- return framesRemaining - completeNumOfFrames();
- }
-
-
-
- public int addAnimation() {
- changedState = true;
- if (memoryRemaining() <= 0) {
- return -1;
- } else {
- extendArray();
- animations[animations.length - 1] = new Animation();
- return animations.length - 1;
- }
- }
-
-
-
- public void removeAnimation(int i) {
- changedState = true;
- shiftOver(i);
- shrinkArray();
- }
-
-
-
- public void moveAnimationUp(int i) {
- if (i > 0) {
- Animation tmp = animations[i];
- animations[i] = animations[i - 1];
- animations[i - 1] = tmp;
- }
- }
-
-
-
- public void moveAnimationDown(int i) {
- if (i < (animations.length - 1)) {
- Animation tmp = animations[i];
- animations[i] = animations[i + 1];
- animations[i + 1] = tmp;
- }
- }
-
- public Animation getAnimation(int i) {
- if (i < animations.length) {
- return animations[i];
- } else {
- return null;
- }
- }
-
- public void setAnimation(Animation a, int i) {
- changedState = true;
- if (i < animations.length) {
- animations[i] = a;
- }
- }
-
-
-
- public int loadState(String path) {
- changedState = false;
- try {
- animations = AnimationUtility.readFile(path);
- } catch (Exception e) {
- System.out.println("Did not load!");
- e.printStackTrace(System.out);
- return -1;
- }
- int size = 0;
- for (int i = 0; i < animations.length; i++) {
- size += animations[i].size();
- }
- if (size > framesRemaining) {
- return -1;
- }
- return 0;
- }
-
-
-
- public int saveState(String path) {
- changedState = false;
- AnimationUtility.writeFile(path, animations);
- if (AnimationUtility.getLastError() != null) {
- System.out.println(AnimationUtility.getLastError());
- return -1;
- }
- return 0;
- }
-
-
-
- public boolean changedStateSinceSave() {
- return changedState;
- }
-
-
-
- public int cubeSendState(String port) {
- try {
- SerialHelper sh = new SerialHelper(port, parentFrame);
- int ret = sh.sendAnimationsToCube(this);
- sh.closeSerialPort();
- return ret;
- } catch (Exception e) {
- return -1;
- }
- }
-
-
-
- public Animation[] getAnimationArray() {
- return animations;
- }
-
-
-
- public int cubeGetState(String port) {
- try {
- SerialHelper sh = new SerialHelper(port, parentFrame);
- cubeWorker ret = sh.getAnimationsFromCube();
- sh.closeSerialPort();
- if (ret == null) {
- return -1;
- } else {
- changedState = true;
- animations = ret.getAnimationArray();
- return 0;
- }
- } catch (Exception e) {
- return -1;
- }
- }
-
-
-
- public boolean cubeProbeConnected(String port) {
- try {
- SerialHelper sh = new SerialHelper(port, parentFrame);
- boolean response = sh.probeForCube();
- sh.closeSerialPort();
- return response;
- } catch (Exception e) {
- return false;
- }
- }
-
- private void extendArray() {
- Animation newArray[] = new Animation[animations.length + 1];
- for (int i = 0; i < animations.length; i++) {
- newArray[i] = animations[i];
- }
- animations = newArray;
- }
-
- private void shrinkArray() {
- Animation newArray[] = new Animation[animations.length - 1];
- for (int i = 0; i < newArray.length; i++) {
- newArray[i] = animations[i];
- }
- animations = newArray;
- }
-
- private void shiftOver(int toForget) {
- for (int i = (toForget + 1); i < animations.length; i++) {
- animations[i - 1] = animations[i];
- }
- }
- }
|