mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 04:05:06 -04:00
Build 29041811
This commit is contained in:
parent
0c7d729ece
commit
edfc8b4f08
9 changed files with 19 additions and 11 deletions
|
@ -11,8 +11,8 @@ android {
|
|||
applicationId = "me.lecaro.breakout"
|
||||
minSdk = 21
|
||||
targetSdk = 34
|
||||
versionCode = 29041790
|
||||
versionName = "29041790"
|
||||
versionCode = 29041811
|
||||
versionName = "29041811"
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
useSupportLibrary = true
|
||||
|
|
File diff suppressed because one or more lines are too long
9
dist/index.html
vendored
9
dist/index.html
vendored
|
@ -842,7 +842,7 @@ async function openScorePanel() {
|
|||
max: (0, _gameUtils.max_levels)(gameState)
|
||||
}),
|
||||
text: `
|
||||
${gameState.isCreativeModeRun ? "<p>${t('score_panel.test_run}</p>" : ""}
|
||||
${gameState.isCreativeModeRun ? `<p>${(0, _i18N.t)("score_panel.test_run")}</p>` : ""}
|
||||
<p>${(0, _i18N.t)("score_panel.upgrades_picked")}</p>
|
||||
<p>${(0, _gameUtils.pickedUpgradesHTMl)(gameState)}</p>
|
||||
`,
|
||||
|
@ -1271,7 +1271,7 @@ const upgrades = (0, _upgrades.rawUpgrades).map((u)=>({
|
|||
}));
|
||||
|
||||
},{"./data/palette.json":"ktRBU","./data/levels.json":"8JSUc","./data/version.json":"iyP6E","./upgrades":"1u3Dx","./getLevelBackground":"7OIPf","./levelIcon":"6rQoT","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3"}],"iyP6E":[function(require,module,exports,__globalThis) {
|
||||
module.exports = JSON.parse("\"29041790\"");
|
||||
module.exports = JSON.parse("\"29041811\"");
|
||||
|
||||
},{}],"1u3Dx":[function(require,module,exports,__globalThis) {
|
||||
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
|
||||
|
@ -2604,7 +2604,9 @@ function addToScore(gameState, coin) {
|
|||
if (gameState.perks.asceticism) resetCombo(gameState, coin.x, coin.y);
|
||||
}
|
||||
async function setLevel(gameState, l) {
|
||||
// Here to alleviade double upgrades issues
|
||||
// Here to alleviate double upgrades issues
|
||||
if (gameState.upgradesOfferedFor >= l) return console.warn("Extra upgrade request ignored ");
|
||||
gameState.upgradesOfferedFor = l;
|
||||
(0, _game.pause)(false);
|
||||
(0, _recording.stopRecording)();
|
||||
if (l > 0) await (0, _game.openUpgradesPicker)(gameState);
|
||||
|
@ -4003,6 +4005,7 @@ function newGameState(params) {
|
|||
const gameState = {
|
||||
runLevels,
|
||||
currentLevel: 0,
|
||||
upgradesOfferedFor: -1,
|
||||
perks,
|
||||
puckWidth: 200,
|
||||
baseSpeed: 12,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// The version of the cache.
|
||||
const VERSION = "29041790";
|
||||
const VERSION = "29041811";
|
||||
|
||||
// The name of the cache
|
||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29041790"
|
||||
"29041811"
|
||||
|
|
|
@ -394,7 +394,7 @@ async function openScorePanel() {
|
|||
max: max_levels(gameState),
|
||||
}),
|
||||
text: `
|
||||
${gameState.isCreativeModeRun ? "<p>${t('score_panel.test_run}</p>" : ""}
|
||||
${gameState.isCreativeModeRun ? `<p>${t("score_panel.test_run")}</p>` : ""}
|
||||
<p>${t("score_panel.upgrades_picked")}</p>
|
||||
<p>${pickedUpgradesHTMl(gameState)}</p>
|
||||
`,
|
||||
|
|
|
@ -497,8 +497,11 @@ export function addToScore(gameState: GameState, coin: Coin) {
|
|||
}
|
||||
|
||||
export async function setLevel(gameState: GameState, l: number) {
|
||||
// Here to alleviade double upgrades issues
|
||||
|
||||
// Here to alleviate double upgrades issues
|
||||
if (gameState.upgradesOfferedFor >= l) {
|
||||
return console.warn("Extra upgrade request ignored ");
|
||||
}
|
||||
gameState.upgradesOfferedFor = l;
|
||||
pause(false);
|
||||
stopRecording();
|
||||
if (l > 0) {
|
||||
|
|
|
@ -31,6 +31,7 @@ export function newGameState(params: RunParams): GameState {
|
|||
const gameState: GameState = {
|
||||
runLevels,
|
||||
currentLevel: 0,
|
||||
upgradesOfferedFor: -1,
|
||||
perks,
|
||||
puckWidth: 200,
|
||||
baseSpeed: 12,
|
||||
|
|
1
src/types.d.ts
vendored
1
src/types.d.ts
vendored
|
@ -183,6 +183,7 @@ export type GameState = {
|
|||
gridSize: number;
|
||||
// 0 based index of the current level in the run (level X / 7)
|
||||
currentLevel: number;
|
||||
upgradesOfferedFor: number;
|
||||
|
||||
// 10 levels selected randomly at start for the run
|
||||
runLevels: Level[];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue