====== Assignment 14 - Pick and Propose your Project ====== The suggested DMA list of final projects: [[https://dl.dropboxusercontent.com/u/3235343/Teaching/DMA/Java13/Programming%20with%20JAVA/Handouts/Day5/ProjectSuggestions.pdf|Handout]] Other considerations: * You can use OpenProcessing or Eclipse/Java * Finishing up the Breakout game is a valid final project ====== Proposal ====== - Team Name: - Team Members: - Project Name: - What programming language you are using: - What it will do: ====== Sound in Processing ====== * http://www.erase.net/projects/processing-sc/ * http://www.smallbutdigital.com/themidibus.php * http://wiki.processing.org/w/How_to_Install_a_Contributed_Library * http://processing.org/reference/libraries/#sound * http://www.openprocessing.org/sketch/103492 ====== Shape Arrays ====== * http://www.openprocessing.org/sketch/49076 * http://www.openprocessing.org/sketch/49125 ====== Asteroids ====== * http://www.openprocessing.org/sketch/1129 * http://www.openprocessing.org/sketch/72177 * http://www.openprocessing.org/sketch/58270 ====== Pacman ====== * http://www.openprocessing.org/sketch/64131 ====== Ball Games ====== * http://www.openprocessing.org/sketch/51516 * http://www.openprocessing.org/sketch/6640 ====== Rainbow ====== * http://www.openprocessing.org/sketch/40618 ====== Key Event - Java ====== * http://docs.oracle.com/javase/1.4.2/docs/api/java/awt/event/KeyEvent.html ====== Swarm AI ====== * http://www.openprocessing.org/sketch/104840 ====== Sound in Java ====== javax * http://docs.oracle.com/javase/7/docs/technotes/guides/sound/ * http://docs.oracle.com/javase/7/docs/technotes/guides/sound/programmer_guide/contents.html * http://docs.oracle.com/javase/tutorial/sound/MIDI-synth.html applet * http://sampywise.wordpress.com/2013/07/12/a-java-piano/ * http://pastebin.com/6d0cc3N6 ====== All Packages in Java ====== * http://docs.oracle.com/javase/7/docs/api/ ====== Filling Array ====== int[] array = new int [20]; int index = 0; array[index] = 77; index++; array[index] = 88; index++; for (int i=0; i