aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <cbaines8@gmail.com>2011-09-15 10:53:55 +0100
committerChristopher Baines <cbaines8@gmail.com>2011-09-15 10:53:55 +0100
commitf9c1cfa97d8783f776891a02d25494c11e92ab04 (patch)
tree0d79be5911196f5d59c39663f5e36ee50be7f589
parente9891427e16e9335dfd1467240855c86fac0799c (diff)
downloadpunchingbag-f9c1cfa97d8783f776891a02d25494c11e92ab04.tar
punchingbag-f9c1cfa97d8783f776891a02d25494c11e92ab04.tar.gz
More comments and a fix for the SetLedInternal method.
-rw-r--r--PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java32
1 files changed, 10 insertions, 22 deletions
diff --git a/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java b/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java
index 265cbdc..d815ec3 100644
--- a/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java
+++ b/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java
@@ -23,19 +23,7 @@ import java.util.Iterator;
* controlling the led's and reading the state of the accelerometers and buttons.
*
* @author Christopher Baines <cbaines8@gmail.com>
- * @author Adam Martindale
- */
-/**
- * @author cb24367
- *
- */
-/**
- * @author cb24367
- *
- */
-/**
- * @author cb24367
- *
+ * @author Adam Martindale <awiamartindale@googlemail.com>
*/
public class PunchingBag implements Runnable {
/**
@@ -225,7 +213,7 @@ public class PunchingBag implements Runnable {
private boolean setLEDInternal(int x, int y, Color colour) {
if (x >= 0 && x < ledWidth && y >= 0 && y < ledHeight) {
if (leds[x][y] != colour) {
- if (colour != Color.red || colour != Color.green || colour != Color.yellow) {
+ if (!colour.equals(Color.red) && !colour.equals(Color.green) && !colour.equals(Color.yellow)) {
if (leds[x][y] != Color.white) {
leds[x][y] = Color.white;
ledsChanged = true;
@@ -251,7 +239,7 @@ public class PunchingBag implements Runnable {
runningEffects.add(new CircleExpand(x, y, 100));
}
- void squareExpand(int x, int y, int intensity, Color colour) {
+ public void squareExpand(int x, int y, int intensity, Color colour) {
runningEffects.add(new SquareExpand(x, y, intensity, colour));
}
@@ -259,11 +247,11 @@ public class PunchingBag implements Runnable {
runningEffects.add(new FillRect(x, y, width, height, colour, time));
}
- void rect(int x, int y, int width, int height, Color colour) {
+ public void rect(int x, int y, int width, int height, Color colour) {
runningEffects.add(new Rect(x, y, width, height, colour));
}
- void noise(Rectangle rect, long time) {
+ public void noise(Rectangle rect, long time) {
runningEffects.add(new Noise(rect, System.currentTimeMillis() + time));
}
@@ -900,12 +888,12 @@ public class PunchingBag implements Runnable {
calculateRawLeds();
String str;
- for (int i = 0; i < (6 * 8); i++) {
- // printByte(rawLeds[i]);
- }
- // System.out.println("");
+ //for (int i = 0; i < (6 * 8); i++) {
+ // printByte(rawLeds[i]);
+ //}
+ //System.out.println("");
- // Arrays.fill(rawLeds, (byte) -42);
+ //Arrays.fill(rawLeds, (byte) -42);
long beginTimeLedOut = System.currentTimeMillis();
if (ledArduino.out != null) {
// calculateRawLeds();