pixel-editor/js/pixel-editor.js

140 lines
3.6 KiB
JavaScript
Raw Normal View History

2019-03-27 02:20:54 +03:00
/**utilities**/
//=include lib/cookies.js
2021-12-06 13:26:42 +03:00
//=include lib/jscolor.js
//=include data/variables.js
//=include lib/sortable.js
2021-06-29 02:54:54 +03:00
//=include Util.js
//=include Events.js
//=include Color.js
//=include Dialogue.js
//=include History.js
2019-03-27 02:20:54 +03:00
//=include File.js
2021-11-01 13:33:18 +03:00
//=include ColorModule.js
2021-11-01 15:02:18 +03:00
2021-11-09 01:12:51 +03:00
//=include Tool.js
2021-11-01 15:02:18 +03:00
//=include tools/ResizableTool.js
//=include tools/SelectionTool.js
//=include tools/BrushTool.js
//=include tools/EraserTool.js
//=include tools/LineTool.js
//=include tools/RectangleTool.js
//=include tools/FillTool.js
//=include tools/EyedropperTool.js
//=include tools/PanTool.js
//=include tools/ZoomTool.js
//=include tools/RectangularSelectionTool.js
//=include tools/MoveSelectionTool.js
2019-03-27 02:20:54 +03:00
/**init**/
//=include data/consts.js
2021-07-23 19:45:23 +03:00
//=include Settings.js
//=include LayerList.js
//=include layers/Layer.js
//=include layers/Checkerboard.js
//=include layers/PixelGrid.js
//=include Startup.js
//=include EditorState.js
//=include ToolManager.js
2019-03-27 02:20:54 +03:00
/**dropdown formatting**/
//=include PresetModule.js
//=include data/palettes.js
2019-03-27 02:20:54 +03:00
/**functions**/
2020-07-23 00:29:27 +03:00
//=include _resizeCanvas.js
//=include _resizeSprite.js
2021-12-06 13:26:42 +03:00
//=include ColorPicker.js
//=include PaletteBlock.js
//=include SplashPage.js
2019-03-27 02:20:54 +03:00
/**menus**/
//=include FileManager.js
//=include TopMenuModule.js
/**event listeners**/
//=include Input.js
2019-03-27 02:20:54 +03:00
/**feature toggles**/
2021-12-06 13:26:42 +03:00
//=include FeatureToggles.js
2021-06-29 02:54:54 +03:00
// Controls execution of this preset module
2021-07-15 23:26:08 +03:00
PresetModule.instrumentPresetMenu();
//when the page is done loading, you can get ready to start
window.onload = function () {
featureToggles.onLoad();
2021-10-27 11:02:21 +03:00
ToolManager.currentTool().updateCursor();
2021-07-15 23:26:08 +03:00
//check if there are any url parameters
if (window.location.pathname.replace('/pixel-editor/','').length <= 1) {
//show splash screen
Dialogue.showDialogue('splash', false);
}
//url parameters were specified
else {
let args = window.location.pathname.split('/');
let paletteSlug = args[2];
let dimentions = args[3];
//fetch palette via lospec palette API
fetch('https://lospec.com/palette-list/'+paletteSlug+'.json')
.then(response => response.json())
.then(data => {
//palette loaded successfully
palettes[paletteSlug] = data;
palettes[paletteSlug].specified = true;
//refresh list of palettes
document.getElementById('palette-menu-splash').refresh();
//if the dimentions were specified
if (dimentions && dimentions.length >= 3 && dimentions.includes('x')) {
let width = dimentions.split('x')[0];
let height = dimentions.split('x')[1];
//create new document
Startup.newPixel(width, height);
}
//dimentions were not specified -- show splash screen with palette preselected
else {
//show splash
Dialogue.showDialogue('new-pixel', false);
}
})
//error fetching url (either palette doesn't exist, or lospec is down)
.catch((error) => {
console.warn('failed to load palette "'+paletteSlug+'"', error);
//proceed to splash screen
Dialogue.showDialogue('splash', false);
});
}
};
//prevent user from leaving page with unsaved data
window.onbeforeunload = function() {
if (documentCreated)
return 'You will lose your pixel if it\'s not saved!';
else return;
2021-12-05 01:11:21 +03:00
};
// Compatibility functions
function closeCompatibilityWarning() {
document.getElementById("compatibility-warning").style.visibility = "hidden";
}
//check browser/version
if (
(bowser.firefox && bowser.version >= 28) ||
(bowser.chrome && bowser.version >= 29) ||
(!bowser.mobile && !bowser.tablet)
)
console.log("compatibility check passed");
//show warning
else document.getElementById("compatibility-warning").style.visibility = "visible";