105 lines
No EOL
2.3 KiB
JavaScript
105 lines
No EOL
2.3 KiB
JavaScript
Loader.addToManifest(Loader.manifest,{
|
|
|
|
// SFX
|
|
button1: "assets/sounds/button1.mp3",
|
|
button2: "assets/sounds/button2.mp3",
|
|
button3: "assets/sounds/button3.mp3"
|
|
|
|
});
|
|
|
|
function Button(config){
|
|
|
|
var self = this;
|
|
self.id = config.id;
|
|
self.config = config;
|
|
|
|
// Create DOM
|
|
var button = document.createElement("div");
|
|
button.className = "object";
|
|
button.classList.add("button");
|
|
if(config.size) button.setAttribute("size", config.size);
|
|
self.dom = button;
|
|
|
|
// BG
|
|
var bg = document.createElement("div");
|
|
bg.id = "background";
|
|
var text = document.createElement("div");
|
|
text.id = "text";
|
|
var hitbox = document.createElement("div");
|
|
hitbox.id = "hitbox";
|
|
button.appendChild(bg);
|
|
button.appendChild(text);
|
|
button.appendChild(hitbox);
|
|
|
|
// Customize DOM
|
|
button.style.left = config.x+"px";
|
|
button.style.top = config.y+"px";
|
|
self.setText = function(text_id){
|
|
var words = Words.get(text_id);
|
|
if(config.uppercase) words = words.toUpperCase();
|
|
self.setText2(words);
|
|
};
|
|
self.setText2 = function(words){
|
|
text.innerHTML = words;
|
|
};
|
|
self.setText(config.text_id);
|
|
|
|
// On hover...
|
|
hitbox.onmouseover = function(){
|
|
if(self.active) button.setAttribute("hover","yes");
|
|
};
|
|
hitbox.onmouseout = function(){
|
|
if(self.active) button.removeAttribute("hover");
|
|
};
|
|
|
|
// On click...
|
|
hitbox.onclick = function(){
|
|
|
|
if(parseFloat(getComputedStyle(self.dom).opacity)<0.5) return; // DON'T CLICK INVISIBLE BUTTONS
|
|
|
|
if(self.active){
|
|
|
|
// Sound!
|
|
if(config.sound){
|
|
Loader.sounds[config.sound].play();
|
|
}else{
|
|
var num = Math.ceil(Math.random()*3);
|
|
Loader.sounds["button"+num].play();
|
|
}
|
|
|
|
// Actual Logic
|
|
if(config.onclick) config.onclick();
|
|
if(config.message) publish(config.message);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
// Activate/Deactivate
|
|
self.active = true;
|
|
self.activate = function(){
|
|
self.active = true;
|
|
button.removeAttribute("deactivated");
|
|
};
|
|
self.deactivate = function(){
|
|
self.active = false;
|
|
button.setAttribute("deactivated","yes");
|
|
button.removeAttribute("hover");
|
|
};
|
|
if(config.active===undefined) config.active=true;
|
|
if(!config.active) self.deactivate();
|
|
|
|
// Listeners!
|
|
if(self.id){
|
|
listen(self, self.id+"/activate", self.activate);
|
|
listen(self, self.id+"/deactivate", self.deactivate);
|
|
}
|
|
|
|
// Add & Remove
|
|
self.add = function(){ _add(self); };
|
|
self.remove = function(){
|
|
unlisten(self);
|
|
_remove(self);
|
|
};
|
|
|
|
} |