projectpossibility
Class CMatchableSound

java.lang.Object
  extended by projectpossibility.CMatchableSound

public class CMatchableSound
extends java.lang.Object

A previously recorded sound which can match itself against the incoming audio stream and generate an alert to the user. This initial implementation uses a simple matching scheme and can only handle constant frequency sounds. Later revisions will probably include more sophisticated functionality.


Constructor Summary
CMatchableSound(java.lang.String name, javax.microedition.lcdui.Display display)
          Construct a new matchable sound
 
Method Summary
 boolean checkMatch(double loudestFreq)
          Analyze the dominant frequency in the current sound stream and generate an alert if it is a match.
 java.lang.String getName()
          Get the sound's name
 boolean isEnabled()
          Determine whether or not the sound is currently enabled
 void setEnabled(boolean enabled)
          Set the enabled status of the sound
 void setFrequency(double freq)
          Set the dominant frequency of the sound
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CMatchableSound

public CMatchableSound(java.lang.String name,
                       javax.microedition.lcdui.Display display)
Construct a new matchable sound

Parameters:
name - The name of the sound
display - The display object that should be alerted when the sound is detected
Method Detail

setFrequency

public void setFrequency(double freq)
Set the dominant frequency of the sound

Parameters:
freq - The frequency to set

getName

public java.lang.String getName()
Get the sound's name

Returns:
The name of the sound

isEnabled

public boolean isEnabled()
Determine whether or not the sound is currently enabled

Returns:
true if the sound is enabled, false otherwise

setEnabled

public void setEnabled(boolean enabled)
Set the enabled status of the sound

Parameters:
enabled - true if the sound should be enabled, false otherwise

checkMatch

public boolean checkMatch(double loudestFreq)
Analyze the dominant frequency in the current sound stream and generate an alert if it is a match.

Parameters:
loudestFreq - The loudest frequency in the current waveform
Returns:
true if the sound was matched, false otherwise