Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 110 additions & 25 deletions src/pages/CookieClicker.vue
Original file line number Diff line number Diff line change
@@ -1,48 +1,133 @@
<script setup>
import { computed, ref } from 'vue';
import { ref, computed, onMounted, onBeforeUnmount } from 'vue';

const cookies = ref(0);
const buildings = ref([
{ name: 'Cursor', price: 15, cps: 0.1, count: 0},
{ name: 'Grandma', price: 100, cps: 1, count: 0},
{ name: 'Farm', price: 1000, cps: 10, count: 0},
{ name: 'Factory', price: 10_000, cps: 100, count: 0},
{ name: 'Farm', price: 1_000, cps: 10, count: 0},
{ name: 'Factory', price: 10_000, cps: 30, count: 0},
]);

function buyBuilding(building){
// AutoSave
const saveGameState = () => {
const gameState = {
cookies: cookies.value,
buildings: buildings.value.map(b => ({
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why are you mapping this to exact same structure?

name: b.name,
price: b.price,
cps: b.cps,
count: b.count
}))
};

try {
localStorage.setItem('cookieGameSave', JSON.stringify(gameState));
} catch (error) {
console.error('Save error:', error);
}
};

// Loading the save
const loadGameState = () => {
try {
const savedData = localStorage.getItem('cookieGameSave');
if (savedData) {
const parsedData = JSON.parse(savedData);
cookies.value = parsedData.cookies || 0;
buildings.value = buildings.value.map(b => {
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again if you saved it shouldn't it still be same?

const savedBuilding = parsedData.buildings.find(sb => sb.name === b.name);
return savedBuilding ? {...b, ...savedBuilding} : b;
});
}
} catch (error) {
console.error('Load error:', error);
}
};

let saveInterval;

onMounted(() => {
loadGameState();
saveInterval = setInterval(saveGameState, 1000);
});

onBeforeUnmount(() => {
clearInterval(saveInterval);
});

function buyBuilding(building) {
if (cookies.value >= building.price) {
cookies.value -= building.price;
building.price += Math.ceil(building.price / 100 * 15);
building.price += Math.ceil(building.price * 0.15);
building.count++;
}
}
let cps = computed(() => {
let cps = 0;
buildings.value.forEach(building => {
cps+=building.cps*building.count;
});
return cps;
});
setInterval(()=>{
cookies.value+=cps.value;

document.title ='🍪' + +cookies.value.toFixed(1) + ' Cookies!';
},1000);
const cps = computed(() =>
buildings.value.reduce((acc, building) =>
acc + (building.cps * building.count), 0)
);

setInterval(() => {
cookies.value += cps.value / 10;
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay we do this 10 times more so give 10 times less cookies but why? we could also do this every 1 ms and give 1000 times less cookies? Can you come up with idea why it would be bad idea?

document.title = `🍪${cookies.value.toFixed(1)} Cookies!`;
}, 100);

</script>

<template>
<div class="columns">
<div class="column is-4 has-background-primary has-text-centered">
<h1 class="is-size-1">{{ +cookies.toFixed(1) }} cookies</h1>
<h3 class="is-size-3">{{ +cps.toFixed(1) }} cps</h3>
<div class="column is-4 has-background-grey has-text-centered">
<h1 class="is-size-1"> {{ cookies.toFixed(1) }} cookies </h1>
<h3 class="is-size-3"> {{ cps.toFixed(1) }} cps </h3>
<figure class="image is-square" @click="cookies++">
<img src="https://sweetlorens.com/cdn/shop/products/Copy-of-Chocolate-Chunk-Full-Cookie-transparent-background.png?v=1687811511" />
<img src="https://www.freeiconspng.com/uploads/download-biscuit-cookie-monster-clipart-24.png">
</figure>
</div>
<div class="column is-6 has-background-link">
asdas

<div class="column is-6 has-background-grey-light">
<!-- Grandma Images -->
<div class="columns is-flex is-flex-wrap-wrap">
<figure
v-for="n in Math.floor(buildings.find(b => b.name === 'Grandma').count / 10) + 1"
v-if="buildings.find(b => b.name === 'Grandma').count >= 1"
class="image is-96x96 m-2"
:key="'grandma-' + n">
<img src="https://png.pngtree.com/png-clipart/20230914/original/pngtree-cute-grandma-clipart-the-cartoon-old-lady-character-has-a-bouquet-png-image_11242831.png">
</figure>
</div>

<!-- Farm Images -->
<div class="columns is-flex is-flex-wrap-wrap">
<figure
v-for="n in Math.floor(buildings.find(b => b.name === 'Farm').count / 10) + 1"
v-if="buildings.find(b => b.name === 'Farm').count >= 1"
class="image is-96x96 m-2"
:key="'farm-' + n">
<img src="https://pics.clipartpng.com/Corn_PNG_Clipart-466.png">
</figure>
</div>

<!-- Factory Images -->
<div class="columns is-flex is-flex-wrap-wrap">
<figure
v-for="n in Math.floor(buildings.find(b => b.name === 'Factory').count / 10) + 1"
v-if="buildings.find(b => b.name === 'Factory').count >= 1"
class="image is-96x96 m-2"
:key="'factory-' + n">
<img src="https://www.freeiconspng.com/uploads/gear-icon-11.png">
</figure>
</div>
</div>
<div class="column is-2 has-background-warning">
<button v-for="building in buildings" :disabled="cookies<building.price" @click="buyBuilding(building)" class="button is-primary is-large is-fullwidth">
{{ building.name }} 🍪{{ building.price }} #{{ building.count }}

<div class="column is-2 has-background-white-ter">
<button
v-for="building in buildings"
:disabled="cookies < building.price"
@click="buyBuilding(building)"
class="button is-primary is-large is-fullwidth mb-3">
{{ building.name }} 🍪 {{ building.price }} #{{ building.count }}
</button>
</div>
</div>
Expand Down