123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- /*
- * cubeWorker.java
- *
- * Copyright 2011 Thomas Buck <xythobuz@me.com>
- * Copyright 2011 Max Nuding <max.nuding@gmail.com>
- * Copyright 2011 Felix Bäder <baeder.felix@gmail.com>
- *
- * This file is part of LED-Cube.
- *
- * LED-Cube is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * LED-Cube is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with LED-Cube. If not, see <http://www.gnu.org/licenses/>.
- */
-
- /*
- * This class handles one animation file. This file can contain
- * many animations, but has to be only 1Mbit in size (128*1024 Byte).
- */
- import java.util.ArrayList;
- import java.util.List;
- import java.util.StringTokenizer;
- import java.util.Collections;
-
- /**
- * This class holds all Data of the Application. Additionally it performs the
- * transmission of animation data to/from the cube and saves/loads animations
- * in/from a file.
- *
- * @author Thomas Buck
- * @author Felix Bäder
- * @author Max Nuding
- * @version 1.0
- */
-
- public class cubeWorker {
-
- private final int framesRemaining = 2016; // (128 * 1024) / 65 = 2016,...
- private boolean changedState = false;
- private Frame parentFrame;
- private Animation[] animations = new Animation[1];
-
- /**
- * Creates a worker with one animation, containing an empty frame.
- */
- public cubeWorker(Frame parent) {
- animations[0] = new Animation();
- parentFrame = parent;
- }
-
- public cubeWorker(Animation[] anims, Frame parent) {
- animations = anims;
- parentFrame = parent;
- }
-
- /**
- * Returns number of frames in this cubeWorker.
- *
- * @return number of frames.
- */
- public int completeNumOfFrames() {
- int c = 0;
- for (int i = 0; i < size(); i++) {
- c += getAnimation(i).size();
- }
- return c;
- }
-
- // --------------------
- // Misc. Methods
- // --------------------
-
- /**
- * Get the number of animations in this worker.
- *
- * @return number of animations
- */
- public int size() {
- return animations.length;
- }
-
- /**
- * Get the number of frames you can add until the Cubes memory is full.
- *
- * @return number of frames remaining
- */
- public int memoryRemaining() {
- return framesRemaining - completeNumOfFrames();
- }
-
- /**
- * Add an animation. It has an initial empty frame
- *
- * @return Index of new animation, or -1 if not enough space remaining.
- */
- public int addAnimation() {
- changedState = true;
- if (memoryRemaining() <= 0) {
- return -1;
- } else {
- extendArray();
- animations[animations.length - 1] = new Animation();
- return animations.length - 1;
- }
- }
-
- /**
- * Remove an animation.
- *
- * @param i the animation you want to delete
- */
- public void removeAnimation(int i) {
- changedState = true;
- shiftOver(i);
- shrinkArray();
- }
-
- /**
- * Move an animation up.
- * @param i the animation you want to move
- */
- public void moveAnimationUp(int i) {
- if (i > 0) {
- Animation tmp = animations[i];
- animations[i] = animations[i - 1];
- animations[i - 1] = tmp;
- }
- }
-
- /**
- * Move an animation down.
- * @param i the animation you want to move
- */
- 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;
- }
- }
-
- /**
- * Loads an animation file into this worker.
- *
- * @param path Path of file to load
- * @return 0 on success, -1 on error.
- */
- 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;
- }
-
- /**
- * Save the state of this object into a file.
- *
- * @param path Path to save file in
- * @return 0 on success, -1 on error
- */
- public int saveState(String path) {
- changedState = false;
- AnimationUtility.writeFile(path, animations);
- if (AnimationUtility.getLastError() != null) {
- System.out.println(AnimationUtility.getLastError());
- return -1;
- }
- return 0;
- }
-
- /**
- * Check if something changed after loading/saving.
- *
- * @return TRUE if something changed, FALSE otherwise
- */
- public boolean changedStateSinceSave() {
- return changedState;
- }
-
- /**
- * Send all animations to the cube.
- *
- * @param port Name of serial port to use
- * @return 0 on success, -1 on error
- */
- 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;
- }
- }
-
- /**
- * Get the array of animations in this worker.
- * @return animation array
- */
- public Animation[] getAnimationArray() {
- return animations;
- }
-
- /**
- * Get all animations from the cube, place it in this object
- *
- * @param port Name of serial port to use
- * @return 0 on success, -1 on error
- */
- 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;
- }
- }
-
- /**
- * Try to speak with the cube.
- *
- * @return TRUE if cube responds
- * @param port Name of serial port
- */
- 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];
- }
- }
- }
|