mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
Show images in calendar instead of emojis
This commit is contained in:
parent
fb95712b9e
commit
9b9ca2137b
6 changed files with 17 additions and 27 deletions
|
@ -6,7 +6,7 @@
|
|||
<div class="date">Dec<br />{{ day }}</div>
|
||||
</div>
|
||||
</Transition>
|
||||
<div class="icon" v-if="symbolComp"><component :is="symbolComp" /></div>
|
||||
<div class="icon" :style="{ backgroundImage: `url(${symbol})` }"></div>
|
||||
<div class="lore" @click="emit('openLore')">?</div>
|
||||
<Notif v-if="unref(shouldNotify)" />
|
||||
</div>
|
||||
|
@ -24,18 +24,16 @@
|
|||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { CoercableComponent } from "features/feature";
|
||||
import { unref, toRef, computed } from "vue";
|
||||
import type { Ref } from "vue";
|
||||
import Notif from "components/Notif.vue";
|
||||
import { computeComponent } from "util/vue";
|
||||
import { ProcessedComputable } from "util/computed";
|
||||
import Decimal from "util/bignum";
|
||||
import { ProcessedComputable } from "util/computed";
|
||||
import type { Ref } from "vue";
|
||||
import { computed, unref } from "vue";
|
||||
import { main } from "./projEntry";
|
||||
|
||||
const props = defineProps<{
|
||||
day: number;
|
||||
symbol: CoercableComponent;
|
||||
symbol: string;
|
||||
opened: Ref<boolean>;
|
||||
shouldNotify: ProcessedComputable<boolean>;
|
||||
}>();
|
||||
|
@ -46,8 +44,6 @@ const emit = defineEmits<{
|
|||
(e: "unlockLayer"): void;
|
||||
}>();
|
||||
|
||||
const symbolComp = computeComponent(toRef(props, "symbol"));
|
||||
|
||||
const canOpen = computed(
|
||||
() =>
|
||||
Decimal.gte(main.day.value, props.day) &&
|
||||
|
@ -169,12 +165,11 @@ function tryUnlock() {
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.icon,
|
||||
.icon .material-icons {
|
||||
font-size: xx-large;
|
||||
.icon {
|
||||
pointer-events: none;
|
||||
display: flex;
|
||||
user-select: none;
|
||||
background-size: contain;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.lore {
|
||||
|
|
|
@ -1,12 +1,5 @@
|
|||
import "@fontsource/material-icons";
|
||||
import Spacer from "components/layout/Spacer.vue";
|
||||
import {
|
||||
CoercableComponent,
|
||||
Component,
|
||||
GatherProps,
|
||||
GenericComponent,
|
||||
jsx
|
||||
} from "features/feature";
|
||||
import { Component, GatherProps, GenericComponent, jsx } from "features/feature";
|
||||
import { BaseLayer, createLayer, GenericLayer, layers } from "game/layers";
|
||||
import { persistent } from "game/persistence";
|
||||
import type { PlayerData } from "game/player";
|
||||
|
@ -21,11 +14,13 @@ import "./advent.css";
|
|||
import Day from "./Day.vue";
|
||||
import trees from "./layers/trees";
|
||||
import workshop from "./layers/workshop";
|
||||
import treeSymbol from "./symbols/tree.png";
|
||||
import workshopSymbol from "./symbols/sws.png";
|
||||
|
||||
export interface Day extends VueFeature {
|
||||
day: number;
|
||||
layer: string | null;
|
||||
symbol: CoercableComponent;
|
||||
symbol: string;
|
||||
story: string;
|
||||
opened: Ref<boolean>;
|
||||
shouldNotify: ProcessedComputable<boolean>;
|
||||
|
@ -42,7 +37,7 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
day: number;
|
||||
shouldNotify: Computable<boolean>;
|
||||
layer: string | null;
|
||||
symbol: CoercableComponent;
|
||||
symbol: string;
|
||||
story: string;
|
||||
}
|
||||
): Day {
|
||||
|
@ -75,8 +70,8 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
player.tabs.splice(index, 1);
|
||||
} else {
|
||||
player.tabs.push(layer ?? "trees");
|
||||
main.minimized.value = true;
|
||||
}
|
||||
main.minimized.value = true;
|
||||
},
|
||||
onUnlockLayer() {
|
||||
opened.value = true;
|
||||
|
@ -96,14 +91,14 @@ export const main = createLayer("main", function (this: BaseLayer) {
|
|||
day: 1,
|
||||
shouldNotify: false,
|
||||
layer: "trees",
|
||||
symbol: "🎄",
|
||||
symbol: treeSymbol,
|
||||
story: "Oh no! Santa forgot about Christmas and it's only 25 days away! He's asked for your help due to your history getting large quantities of things in short amounts of time. Unfortunately you're really starting from scratch here - let's start with getting wood, which you'll need for everything from building workshops to wrapping paper to many of the toys themselves!"
|
||||
})),
|
||||
createDay(() => ({
|
||||
day: 2,
|
||||
shouldNotify: false,
|
||||
layer: "workshop",
|
||||
symbol: "<span class='material-icons'>cabin</span>",
|
||||
symbol: workshopSymbol,
|
||||
story: "Santa looked over your tree farm and was impressed with how much you could accomplish in just one day. Today's goal is to get a workshop built up for the elves to work in - and apparently, they need quite a lot of space to work!"
|
||||
})),
|
||||
createDay(() => ({
|
||||
|
|
BIN
src/data/symbols/coal.png
Normal file
BIN
src/data/symbols/coal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
BIN
src/data/symbols/elf.png
Normal file
BIN
src/data/symbols/elf.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.4 KiB |
BIN
src/data/symbols/sws.png
Normal file
BIN
src/data/symbols/sws.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
BIN
src/data/symbols/tree.png
Normal file
BIN
src/data/symbols/tree.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.8 KiB |
Loading…
Reference in a new issue