import { getLogoSprite } from "../core/background_resources_loader"; import { cachebust } from "../core/cachebust"; import { A_B_TESTING_LINK_TYPE, globalConfig, THIRDPARTY_URLS } from "../core/config"; import { GameState } from "../core/game_state"; import { DialogWithForm } from "../core/modal_dialog_elements"; import { FormElementInput } from "../core/modal_dialog_forms"; import { ReadWriteProxy } from "../core/read_write_proxy"; import { formatSecondsToTimeAgo, generateFileDownload, isSupportedBrowser, makeButton, makeButtonElement, makeDiv, removeAllChildren, startFileChoose, waitNextFrame, } from "../core/utils"; import { HUDModalDialogs } from "../game/hud/parts/modal_dialogs"; import { PlatformWrapperImplElectron } from "../platform/electron/wrapper"; import { getApplicationSettingById } from "../profile/application_settings"; import { T } from "../translations"; const trim = require("trim"); /** * @typedef {import("../savegame/savegame_typedefs").SavegameMetadata} SavegameMetadata * @typedef {import("../profile/setting_types").EnumSetting} EnumSetting */ export class MainMenuState extends GameState { constructor() { super("MainMenuState"); } getInnerHTML() { const bannerHtml = `

${T.demoBanners.title}

${T.demoBanners.intro}

Get the shapez.io standalone! `; const showDemoBadges = this.app.restrictionMgr.getIsStandaloneMarketingActive(); const puzzleDlc = G_IS_STANDALONE && /** @type { PlatformWrapperImplElectron }*/ (this.app.platformWrapper).dlcs.puzzle; return `
${ G_CHINA_VERSION || G_WEGAME_VERSION ? "" : `` } ${ G_IS_STANDALONE || G_IS_DEV ? ` ` : "" }
${showDemoBadges ? `
${bannerHtml}
` : ""}
${ G_IS_STANDALONE || isSupportedBrowser() ? "" : `
${T.mainMenu.browserWarning}
` }
${ !G_WEGAME_VERSION && ((G_IS_STANDALONE && puzzleDlc) || G_IS_DEV) ? `
` : "" } ${ !G_WEGAME_VERSION && G_IS_STANDALONE && !puzzleDlc ? `

${T.mainMenu.puzzleDlcText}

` : "" }
${ G_WEGAME_VERSION ? "" : ` ` } `; } /** * Asks the user to import a savegame */ requestImportSavegame() { if ( this.app.savegameMgr.getSavegamesMetaData().length > 0 && !this.app.restrictionMgr.getHasUnlimitedSavegames() ) { this.app.analytics.trackUiClick("importgame_slot_limit_show"); this.showSavegameSlotLimit(); return; } // Create a 'fake' file-input to accept savegames startFileChoose(".bin").then(file => { if (file) { const closeLoader = this.dialogs.showLoadingDialog(); waitNextFrame().then(() => { this.app.analytics.trackUiClick("import_savegame"); const reader = new FileReader(); reader.addEventListener("load", event => { const contents = event.target.result; let realContent; try { realContent = ReadWriteProxy.deserializeObject(contents); } catch (err) { closeLoader(); this.dialogs.showWarning( T.dialogs.importSavegameError.title, T.dialogs.importSavegameError.text + "

" + err ); return; } this.app.savegameMgr.importSavegame(realContent).then( () => { closeLoader(); this.dialogs.showWarning( T.dialogs.importSavegameSuccess.title, T.dialogs.importSavegameSuccess.text ); this.renderMainMenu(); this.renderSavegames(); }, err => { closeLoader(); this.dialogs.showWarning( T.dialogs.importSavegameError.title, T.dialogs.importSavegameError.text + ":

" + err ); } ); }); reader.addEventListener("error", error => { this.dialogs.showWarning( T.dialogs.importSavegameError.title, T.dialogs.importSavegameError.text + ":

" + error ); }); reader.readAsText(file, "utf-8"); }); } }); } onBackButton() { this.app.platformWrapper.exitApp(); } onEnter(payload) { this.dialogs = new HUDModalDialogs(null, this.app); const dialogsElement = document.body.querySelector(".modalDialogParent"); this.dialogs.initializeToElement(dialogsElement); if (payload.loadError) { this.dialogs.showWarning( T.dialogs.gameLoadFailure.title, T.dialogs.gameLoadFailure.text + "

" + payload.loadError ); } const qs = this.htmlElement.querySelector.bind(this.htmlElement); if (G_IS_DEV && globalConfig.debug.testPuzzleMode) { this.onPuzzleModeButtonClicked(true); return; } if (G_IS_DEV && globalConfig.debug.fastGameEnter) { const games = this.app.savegameMgr.getSavegamesMetaData(); if (games.length > 0 && globalConfig.debug.resumeGameOnFastEnter) { this.resumeGame(games[0]); } else { this.onPlayButtonClicked(); } } // Initialize video this.videoElement = this.htmlElement.querySelector("video"); this.videoElement.playbackRate = 0.9; this.videoElement.addEventListener("canplay", () => { if (this.videoElement) { this.videoElement.classList.add("loaded"); } }); this.trackClicks(qs(".settingsButton"), this.onSettingsButtonClicked); if (!G_CHINA_VERSION && !G_WEGAME_VERSION) { this.trackClicks(qs(".languageChoose"), this.onLanguageChooseClicked); this.trackClicks(qs(".redditLink"), this.onRedditClicked); this.trackClicks(qs(".changelog"), this.onChangelogClicked); this.trackClicks(qs(".helpTranslate"), this.onTranslationHelpLinkClicked); } if (G_IS_STANDALONE) { this.trackClicks(qs(".exitAppButton"), this.onExitAppButtonClicked); } this.renderMainMenu(); this.renderSavegames(); const steamLink = this.htmlElement.querySelector(".steamLink"); if (steamLink) { this.trackClicks(steamLink, () => this.onSteamLinkClicked(), { preventClick: true }); } const discordLink = this.htmlElement.querySelector(".discordLink"); if (discordLink) { this.trackClicks( discordLink, () => { this.app.analytics.trackUiClick("main_menu_link_discord"); this.app.platformWrapper.openExternalLink(THIRDPARTY_URLS.discord); }, { preventClick: true } ); } const githubLink = this.htmlElement.querySelector(".githubLink"); if (githubLink) { this.trackClicks( githubLink, () => { this.app.analytics.trackUiClick("main_menu_link_github"); this.app.platformWrapper.openExternalLink(THIRDPARTY_URLS.github); }, { preventClick: true } ); } const producerLink = this.htmlElement.querySelector(".producerLink"); if (producerLink) { this.trackClicks( producerLink, () => this.app.platformWrapper.openExternalLink("https://tobspr.io"), { preventClick: true, } ); } const puzzleModeButton = qs(".puzzleDlcPlayButton"); if (puzzleModeButton) { this.trackClicks(puzzleModeButton, () => this.onPuzzleModeButtonClicked()); } const puzzleWishlistButton = qs(".puzzleDlcGetButton"); if (puzzleWishlistButton) { this.trackClicks(puzzleWishlistButton, () => this.onPuzzleWishlistButtonClicked()); } } renderMainMenu() { const buttonContainer = this.htmlElement.querySelector(".mainContainer .buttons"); removeAllChildren(buttonContainer); // Import button const importButtonElement = makeButtonElement( ["importButton", "styledButton"], T.mainMenu.importSavegame ); this.trackClicks(importButtonElement, this.requestImportSavegame); if (this.savedGames.length > 0) { // Continue game const continueButton = makeButton( buttonContainer, ["continueButton", "styledButton"], T.mainMenu.continue ); this.trackClicks(continueButton, this.onContinueButtonClicked); const outerDiv = makeDiv(buttonContainer, null, ["outer"], null); outerDiv.appendChild(importButtonElement); const newGameButton = makeButton( this.htmlElement.querySelector(".mainContainer .outer"), ["newGameButton", "styledButton"], T.mainMenu.newGame ); this.trackClicks(newGameButton, this.onPlayButtonClicked); } else { // New game const playBtn = makeButton(buttonContainer, ["playButton", "styledButton"], T.mainMenu.play); this.trackClicks(playBtn, this.onPlayButtonClicked); buttonContainer.appendChild(importButtonElement); } } onPuzzleModeButtonClicked(force = false) { const hasUnlockedBlueprints = this.app.savegameMgr.getSavegamesMetaData().some(s => s.level >= 12); console.log(hasUnlockedBlueprints); if (!force && !hasUnlockedBlueprints) { const { ok } = this.dialogs.showWarning( T.dialogs.puzzlePlayRegularRecommendation.title, T.dialogs.puzzlePlayRegularRecommendation.desc, ["cancel:good", "ok:bad:timeout"] ); ok.add(() => this.onPuzzleModeButtonClicked(true)); return; } this.moveToState("LoginState", { nextStateId: "PuzzleMenuState", }); } onPuzzleWishlistButtonClicked() { this.app.platformWrapper.openExternalLink( THIRDPARTY_URLS.puzzleDlcStorePage + "?ref=mmsl2&prc=" + A_B_TESTING_LINK_TYPE ); } onBackButtonClicked() { this.renderMainMenu(); this.renderSavegames(); } onSteamLinkClicked() { this.app.analytics.trackUiClick("main_menu_steam_link_" + A_B_TESTING_LINK_TYPE); this.app.platformWrapper.openExternalLink( THIRDPARTY_URLS.standaloneStorePage + "?ref=mmsl2&prc=" + A_B_TESTING_LINK_TYPE ); return false; } onExitAppButtonClicked() { this.app.platformWrapper.exitApp(); } onChangelogClicked() { this.moveToState("ChangelogState"); } onRedditClicked() { this.app.analytics.trackUiClick("main_menu_reddit_link"); this.app.platformWrapper.openExternalLink(THIRDPARTY_URLS.reddit); } onLanguageChooseClicked() { this.app.analytics.trackUiClick("choose_language"); const setting = /** @type {EnumSetting} */ (getApplicationSettingById("language")); const { optionSelected } = this.dialogs.showOptionChooser(T.settings.labels.language.title, { active: this.app.settings.getLanguage(), options: setting.options.map(option => ({ value: setting.valueGetter(option), text: setting.textGetter(option), desc: setting.descGetter(option), iconPrefix: setting.iconPrefix, })), }); optionSelected.add(value => { this.app.settings.updateLanguage(value).then(() => { if (setting.restartRequired) { if (this.app.platformWrapper.getSupportsRestart()) { this.app.platformWrapper.performRestart(); } else { this.dialogs.showInfo( T.dialogs.restartRequired.title, T.dialogs.restartRequired.text, ["ok:good"] ); } } if (setting.changeCb) { setting.changeCb(this.app, value); } }); // Update current icon this.htmlElement.querySelector("button.languageChoose").setAttribute("data-languageIcon", value); }, this); } get savedGames() { return this.app.savegameMgr.getSavegamesMetaData(); } renderSavegames() { const oldContainer = this.htmlElement.querySelector(".mainContainer .savegames"); if (oldContainer) { oldContainer.remove(); } const games = this.savedGames; if (games.length > 0) { const parent = makeDiv(this.htmlElement.querySelector(".mainContainer"), null, ["savegames"]); for (let i = 0; i < games.length; ++i) { const elem = makeDiv(parent, null, ["savegame"]); makeDiv( elem, null, ["playtime"], formatSecondsToTimeAgo((new Date().getTime() - games[i].lastUpdate) / 1000.0) ); makeDiv( elem, null, ["level"], games[i].level ? T.mainMenu.savegameLevel.replace("", "" + games[i].level) : T.mainMenu.savegameLevelUnknown ); const name = makeDiv( elem, null, ["name"], "" + (games[i].name ? games[i].name : T.mainMenu.savegameUnnamed) + "" ); const deleteButton = document.createElement("button"); deleteButton.classList.add("styledButton", "deleteGame"); elem.appendChild(deleteButton); const downloadButton = document.createElement("button"); downloadButton.classList.add("styledButton", "downloadGame"); elem.appendChild(downloadButton); const renameButton = document.createElement("button"); renameButton.classList.add("styledButton", "renameGame"); name.appendChild(renameButton); const resumeButton = document.createElement("button"); resumeButton.classList.add("styledButton", "resumeGame"); elem.appendChild(resumeButton); this.trackClicks(deleteButton, () => this.deleteGame(games[i])); this.trackClicks(downloadButton, () => this.downloadGame(games[i])); this.trackClicks(resumeButton, () => this.resumeGame(games[i])); this.trackClicks(renameButton, () => this.requestRenameSavegame(games[i])); } } } /** * @param {SavegameMetadata} game */ requestRenameSavegame(game) { const regex = /^[a-zA-Z0-9_\- ]{1,20}$/; const nameInput = new FormElementInput({ id: "nameInput", label: null, placeholder: "", defaultValue: game.name || "", validator: val => val.match(regex) && trim(val).length > 0, }); const dialog = new DialogWithForm({ app: this.app, title: T.dialogs.renameSavegame.title, desc: T.dialogs.renameSavegame.desc, formElements: [nameInput], buttons: ["cancel:bad:escape", "ok:good:enter"], }); this.dialogs.internalShowDialog(dialog); // When confirmed, save the name dialog.buttonSignals.ok.add(() => { game.name = trim(nameInput.getValue()); this.app.savegameMgr.writeAsync(); this.renderSavegames(); }); } /** * @param {SavegameMetadata} game */ resumeGame(game) { this.app.analytics.trackUiClick("resume_game"); this.app.adProvider.showVideoAd().then(() => { this.app.analytics.trackUiClick("resume_game_adcomplete"); const savegame = this.app.savegameMgr.getSavegameById(game.internalId); savegame .readAsync() .then(() => { this.moveToState("InGameState", { savegame, }); }) .catch(err => { this.dialogs.showWarning( T.dialogs.gameLoadFailure.title, T.dialogs.gameLoadFailure.text + "

" + err ); }); }); } /** * @param {SavegameMetadata} game */ deleteGame(game) { this.app.analytics.trackUiClick("delete_game"); const signals = this.dialogs.showWarning( T.dialogs.confirmSavegameDelete.title, T.dialogs.confirmSavegameDelete.text .replace("", game.name || T.mainMenu.savegameUnnamed) .replace("", String(game.level)), ["cancel:good", "delete:bad:timeout"] ); signals.delete.add(() => { this.app.savegameMgr.deleteSavegame(game).then( () => { this.renderSavegames(); if (this.savedGames.length <= 0) this.renderMainMenu(); }, err => { this.dialogs.showWarning( T.dialogs.savegameDeletionError.title, T.dialogs.savegameDeletionError.text + "

" + err ); } ); }); } /** * @param {SavegameMetadata} game */ downloadGame(game) { this.app.analytics.trackUiClick("download_game"); const savegame = this.app.savegameMgr.getSavegameById(game.internalId); savegame.readAsync().then(() => { const data = ReadWriteProxy.serializeObject(savegame.currentData); const filename = (game.name || "unnamed") + ".bin"; generateFileDownload(filename, data); }); } /** * Shows a hint that the slot limit has been reached */ showSavegameSlotLimit() { const { getStandalone } = this.dialogs.showWarning( T.dialogs.oneSavegameLimit.title, T.dialogs.oneSavegameLimit.desc, ["cancel:bad", "getStandalone:good"] ); getStandalone.add(() => { this.app.analytics.trackUiClick("visit_steampage_from_slot_limit"); this.app.platformWrapper.openExternalLink(THIRDPARTY_URLS.standaloneStorePage + "?reF=ssll"); }); } onSettingsButtonClicked() { this.moveToState("SettingsState"); } onTranslationHelpLinkClicked() { this.app.analytics.trackUiClick("translation_help_link"); this.app.platformWrapper.openExternalLink( "https://github.com/tobspr/shapez.io/blob/master/translations" ); } onPlayButtonClicked() { if ( this.app.savegameMgr.getSavegamesMetaData().length > 0 && !this.app.restrictionMgr.getHasUnlimitedSavegames() ) { this.app.analytics.trackUiClick("startgame_slot_limit_show"); this.showSavegameSlotLimit(); return; } this.app.analytics.trackUiClick("startgame"); this.app.adProvider.showVideoAd().then(() => { const savegame = this.app.savegameMgr.createNewSavegame(); this.moveToState("InGameState", { savegame, }); this.app.analytics.trackUiClick("startgame_adcomplete"); }); } onContinueButtonClicked() { let latestLastUpdate = 0; let latestInternalId; this.app.savegameMgr.currentData.savegames.forEach(saveGame => { if (saveGame.lastUpdate > latestLastUpdate) { latestLastUpdate = saveGame.lastUpdate; latestInternalId = saveGame.internalId; } }); const savegame = this.app.savegameMgr.getSavegameById(latestInternalId); savegame.readAsync().then(() => { this.moveToState("InGameState", { savegame, }); }); } onLeave() { this.dialogs.cleanup(); } }