Version 2.0 of sigIRC rewritten and remastered for Java. Includes "Modules" which can be enabled/disabled to modify functionality of the program.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sigIRCv2/src/sig/CustomSound.java

45 lines
1.1 KiB

package sig;
public class CustomSound {
final static int SOUNDCOOLDOWN = 108000;
private int cooldown = 0;
private String customsound;
private String username;
public String getUsername() {
return username;
}
/**
* Initializes a <b>Custom Sound</b> object that will listen for a specific username.
* @param username The username to listen for playing this sound.
* @param customsound Just the filename of the custom sound. Not the absolute path.
*/
public CustomSound(String username, String customsound) {
this.username=username;
this.customsound=customsound;
}
public boolean isSoundAvailable() {
return cooldown<=0;
}
public void decreaseCooldown(int amt) {
cooldown-=amt;
}
public void playCustomSound() {
SoundUtils.playSound(sigIRC.BASEDIR+"sounds\\"+customsound);
cooldown = SOUNDCOOLDOWN;
}
public static CustomSound getCustomSound(String user) {
for (CustomSound cs : sigIRC.customsounds) {
if (cs.getUsername().equalsIgnoreCase(user)) {
return cs;
}
}
return null;
}
}