mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 17:47:16 +00:00
* initial test for generator class functions * return promise from functions that need async * move null check into isPromise and fix condition * implementing popmenu * fix dynamic node creation in prod build * remove unnecessary async/await * rename function with js_ prefix * TODO to fix styles
114 lines
2.2 KiB
JavaScript
114 lines
2.2 KiB
JavaScript
import Group from "./Group";
|
|
import MakiObject from "./MakiObject";
|
|
import { findDescendantByTypeAndId, unimplementedWarning } from "../utils";
|
|
import * as Actions from "../Actions";
|
|
import * as Selectors from "../Selectors";
|
|
|
|
class System extends MakiObject {
|
|
constructor(scriptGroup = new Group(), store) {
|
|
super(null, null, {}, store);
|
|
|
|
this.scriptGroup = scriptGroup;
|
|
this.root = scriptGroup;
|
|
while (this.root.parent) {
|
|
this.root = this.root.parent;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* getclassname()
|
|
*
|
|
* Returns the class name for the object.
|
|
* @ret The class name.
|
|
*/
|
|
getclassname() {
|
|
return "System";
|
|
}
|
|
|
|
js_start() {
|
|
this.js_trigger("onScriptLoaded");
|
|
}
|
|
|
|
getscriptgroup() {
|
|
return this.scriptGroup;
|
|
}
|
|
|
|
getcontainer(id) {
|
|
return findDescendantByTypeAndId(this.root, "container", id);
|
|
}
|
|
|
|
getruntimeversion() {
|
|
return "5.666";
|
|
}
|
|
|
|
gettoken(str, separator, tokennum) {
|
|
unimplementedWarning("gettoken");
|
|
return "Some Token String";
|
|
}
|
|
|
|
getparam() {
|
|
unimplementedWarning("getparam");
|
|
return "Some String";
|
|
}
|
|
|
|
messagebox(message, msgtitle, flag, notanymoreId) {
|
|
console.log({ message, msgtitle, flag, notanymoreId });
|
|
}
|
|
|
|
integertostring(value) {
|
|
return value.toString();
|
|
}
|
|
|
|
getprivateint(section, item, defvalue) {
|
|
unimplementedWarning("getprivateint");
|
|
return defvalue;
|
|
}
|
|
|
|
setprivateint(section, item, defvalue) {
|
|
unimplementedWarning("setprivateint");
|
|
}
|
|
|
|
getleftvumeter() {
|
|
unimplementedWarning("getleftvumeter");
|
|
return 0.5;
|
|
}
|
|
|
|
getrightvumeter() {
|
|
unimplementedWarning("getrightvumeter");
|
|
return 0.5;
|
|
}
|
|
|
|
// Seems like volume is 0-255
|
|
getvolume() {
|
|
return Selectors.getVolume(this._store.getState());
|
|
}
|
|
|
|
setvolume(volume) {
|
|
return this._store.dispatch(Actions.setVolume(volume));
|
|
}
|
|
|
|
getplayitemlength() {
|
|
unimplementedWarning("getplayitemlength");
|
|
return 100000;
|
|
}
|
|
|
|
seekto(pos) {
|
|
unimplementedWarning("seekto");
|
|
}
|
|
|
|
getviewportheight() {
|
|
return Math.max(
|
|
document.documentElement.clientHeight,
|
|
window.innerHeight || 0
|
|
);
|
|
}
|
|
|
|
getviewportwidth() {
|
|
return Math.max(
|
|
document.documentElement.clientWidth,
|
|
window.innerWidth || 0
|
|
);
|
|
}
|
|
}
|
|
|
|
export default System;
|