From bc1c9a0736d0eb5198eb1fe481812976a70b6591 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 10 Oct 2011 09:31:25 +0100 Subject: Some changes probably not related to graphics --- .../src/uk/ac/open/punchingbag/PunchingBag.java | 31 ++++++++++++++++++++-- .../src/uk/ac/open/punchingbag/PunchingBagGUI.java | 8 +++--- .../uk/ac/open/punchingbag/examples/Keyboard.java | 4 ++- 3 files changed, 37 insertions(+), 6 deletions(-) diff --git a/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java b/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java index e4e0c5e..6582fba 100644 --- a/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java +++ b/PunchingBag/src/uk/ac/open/punchingbag/PunchingBag.java @@ -175,7 +175,7 @@ public class PunchingBag implements Runnable { * Private constructor, starts the run method. */ private PunchingBag() { - loadConfig(); + //loadConfig(); Thread bagControlThread = new Thread(this); bagControlThread.setPriority(Thread.MAX_PRIORITY); bagControlThread.start(); @@ -233,6 +233,7 @@ public class PunchingBag implements Runnable { * the ButtonListener to be added */ public void addButtonListener(ButtonListener l) { + System.out.println(l.toString() + " added as button listener"); buttonListenerList.add(ButtonListener.class, l); } @@ -370,6 +371,21 @@ public class PunchingBag implements Runnable { public void fillRect(int x, int y, int width, int height, Color colour, long time) { runningEffects.add(new FillRect(x, y, width, height, colour, time)); } + + /** + * This should fill in a rectangle + * + * @param x + * The x coordinate of the top right of the rectangle + * @param y + * The y coordinate of the top right of the + * @param width + * @param height + * @param colour + */ + public void fillRect(int x, int y, int width, int height, Color colour) { + runningEffects.add(new FillRect(x, y, width, height, colour)); + } /** * @param x @@ -468,10 +484,19 @@ public class PunchingBag implements Runnable { this.colour = colour; this.time = System.currentTimeMillis() + time; } + + public FillRect(int x, int y, int width, int height, Color colour) { + this.x = x; + this.y = y; + this.width = width; + this.height = height; + this.colour = colour; + this.time = -1; + } public void draw() { fillRectInternal(x, y, width, height, colour); - if (System.currentTimeMillis() >= time) { + if (time != -1 && System.currentTimeMillis() >= time) { stop(); } } @@ -1164,10 +1189,12 @@ public class PunchingBag implements Runnable { if (buttonsChanged) { ButtonListener[] buttonListeners = buttonListenerList.getListeners(ButtonListener.class); + //System.out.println(buttonListenerList.getListenerCount() + " button listeners"); for (int i = 0; i < buttonListenerList.getListenerCount(); i++) { for (int x = 0; x < buttonWidth; x++) { for (int y = 0; y < buttonHeight; y++) { if (buttons[x][y]) { + System.out.println(" x " + x + " y " + y + " is pressed"); buttonListeners[i].buttonPressed(x, y); buttonListeners[i].contact(new Contact(System.currentTimeMillis(), x, y, bottomAccelX)); } diff --git a/PunchingBag/src/uk/ac/open/punchingbag/PunchingBagGUI.java b/PunchingBag/src/uk/ac/open/punchingbag/PunchingBagGUI.java index f76c033..f6cebe2 100644 --- a/PunchingBag/src/uk/ac/open/punchingbag/PunchingBagGUI.java +++ b/PunchingBag/src/uk/ac/open/punchingbag/PunchingBagGUI.java @@ -54,6 +54,7 @@ import javax.sound.sampled.AudioFormat.Encoding; import javax.sound.sampled.Mixer.Info; import uk.ac.open.punchingbag.examples.Keyboard; +import uk.ac.open.punchingbag.examples.MidiSequencer; import uk.ac.open.punchingbag.examples.SimpleKeyboard; import PicHelper.ImagePanel; @@ -95,7 +96,8 @@ public class PunchingBagGUI implements MouseListener, MouseMotionListener, public static void main(String[] args) throws InterruptedException { new PunchingBagGUI(); - new Keyboard(); + //new Keyboard(); + new MidiSequencer(); } PunchingBagGUI() throws InterruptedException { @@ -112,7 +114,7 @@ public class PunchingBagGUI implements MouseListener, MouseMotionListener, } frame = new JFrame("Punching Bag GUI"); - frame.setUndecorated(true); + //frame.setUndecorated(true); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // frame.setSize(600, 600); @@ -156,7 +158,7 @@ public class PunchingBagGUI implements MouseListener, MouseMotionListener, device = GraphicsEnvironment.getLocalGraphicsEnvironment() .getDefaultScreenDevice(); if (device.isFullScreenSupported()) { - device.setFullScreenWindow(frame); + //device.setFullScreenWindow(frame); } else { System.err.println("Full screen not supported"); } diff --git a/PunchingBag/src/uk/ac/open/punchingbag/examples/Keyboard.java b/PunchingBag/src/uk/ac/open/punchingbag/examples/Keyboard.java index 14d29a1..8b0d19d 100644 --- a/PunchingBag/src/uk/ac/open/punchingbag/examples/Keyboard.java +++ b/PunchingBag/src/uk/ac/open/punchingbag/examples/Keyboard.java @@ -42,6 +42,8 @@ public class Keyboard implements Runnable, ButtonListener { public static final int END_OF_TRACK = 47; Sequencer sequencer; + + int instrument = 0; static final int[] offsets = { // add these amounts to the base value // A B C D E F G @@ -114,7 +116,7 @@ public class Keyboard implements Runnable, ButtonListener { void genKeys() throws InvalidMidiDataException, MidiUnavailableException { for (int key = 0; key < 20; key++) { - int instrument = 0; + instrument++; // 16 ticks per quarter note. Sequence sequence = new Sequence(Sequence.PPQ, 16); -- cgit v1.2.3