xxxxxxxxxx
46
let sounds = [];
let soundIndex = 0;
let pressCount = 0;
function preload() {
// Load sound files from the Drum folder
for (let i = 1; i <= 6; i++) {
sounds.push(loadSound(`Drum/${i}.mp3`));
}
sounds.push(loadSound(`Drum/bell.wav`)); // Add the bell.wav file
}
function setup() {
createCanvas(400, 200);
textSize(16);
textAlign(CENTER, CENTER);
fill(255);
background(50);
text("Click to play/pause each sound file in succession", width / 2, height / 2);
}
function mousePressed() {
if (sounds.length > 0) {
let currentSound = sounds[soundIndex];
if (currentSound.isPlaying()) {
currentSound.pause();
} else {
currentSound.play();
}
pressCount++;
// Move to the next sound after two presses
if (pressCount === 2) {
soundIndex++;
pressCount = 0;
// Reset index if it reaches the end of the array
if (soundIndex >= sounds.length) {
soundIndex = 0;
}
}
}
}