mirror of
https://github.com/YouHaveTrouble/DiscipleOfLand.git
synced 2026-05-12 06:26:56 +00:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c828496d1a | |||
| 9e5580836c | |||
| ea74bbea90 | |||
| bc0e866956 | |||
| 6beca6a8ea | |||
| fe8e7eb098 | |||
| 98008ca288 | |||
| 1db76089bc | |||
| 001a8bab3b |
Generated
+701
-372
File diff suppressed because it is too large
Load Diff
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "discipleofland",
|
"name": "discipleofland",
|
||||||
"version": "0.0.10",
|
"version": "0.1.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"@vue/eslint-config-typescript": "^12.0.0",
|
"@vue/eslint-config-typescript": "^12.0.0",
|
||||||
"eslint": "^8.51.0",
|
"eslint": "^8.51.0",
|
||||||
"eslint-plugin-vue": "^9.17.0",
|
"eslint-plugin-vue": "^9.17.0",
|
||||||
"vite": "6.2.6",
|
"vite": "^5.4.18",
|
||||||
"vue-eslint-parser": "^9.3.2",
|
"vue-eslint-parser": "^9.3.2",
|
||||||
"vite-plugin-eslint": "^1.8.1"
|
"vite-plugin-eslint": "^1.8.1"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -249,7 +249,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"job": "botanist",
|
"job": "miner",
|
||||||
"type": "unspoiled",
|
"type": "unspoiled",
|
||||||
"position": {
|
"position": {
|
||||||
"zone": "kozamauka",
|
"zone": "kozamauka",
|
||||||
|
|||||||
+1
-1
@@ -91,7 +91,7 @@ export default defineComponent({
|
|||||||
this.eorzeaTime = new EorzeaTime();
|
this.eorzeaTime = new EorzeaTime();
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
this.eorzeaTime = new EorzeaTime();
|
this.eorzeaTime = new EorzeaTime();
|
||||||
}, 500);
|
}, 1000);
|
||||||
|
|
||||||
const itemData: Response | null = await fetch("/data/items.json")
|
const itemData: Response | null = await fetch("/data/items.json")
|
||||||
.catch((): null => {
|
.catch((): null => {
|
||||||
|
|||||||
@@ -3,10 +3,26 @@
|
|||||||
class="node"
|
class="node"
|
||||||
:class="{active: gatheringNode.isActive(eorzeaTime)}"
|
:class="{active: gatheringNode.isActive(eorzeaTime)}"
|
||||||
>
|
>
|
||||||
<div class="timer">
|
<div
|
||||||
{{
|
v-if="!gatheringNode.isActive(eorzeaTime)"
|
||||||
gatheringNode.isActive(eorzeaTime) ? 'Active' : prettyTimer(gatheringNode.getSecondsToNextActiveTime(eorzeaTime))
|
>
|
||||||
}}
|
<div class="timer">
|
||||||
|
{{
|
||||||
|
prettyTimer(secondsToNextActiveTime)
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-else
|
||||||
|
>
|
||||||
|
<div class="timer">
|
||||||
|
Active
|
||||||
|
<div class="countdown">
|
||||||
|
{{
|
||||||
|
prettyTimer(secondsToNextInactiveTime)
|
||||||
|
}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="job">
|
<div class="job">
|
||||||
<div class="icon">
|
<div class="icon">
|
||||||
@@ -29,7 +45,9 @@
|
|||||||
<div class="info">
|
<div class="info">
|
||||||
<span>{{ zones[gatheringNode.nearestAetheryte.position.zone]?.name?.en }}</span>
|
<span>{{ zones[gatheringNode.nearestAetheryte.position.zone]?.name?.en }}</span>
|
||||||
<span>{{ gatheringNode.nearestAetheryte.name.en }}</span>
|
<span>{{ gatheringNode.nearestAetheryte.name.en }}</span>
|
||||||
<span>{{ gatheringNode.nearestAetheryte.position.x.toFixed(1) }}, {{ gatheringNode.nearestAetheryte.position.y.toFixed(1) }}</span>
|
<span>{{
|
||||||
|
gatheringNode.nearestAetheryte.position.x.toFixed(1)
|
||||||
|
}}, {{ gatheringNode.nearestAetheryte.position.y.toFixed(1) }}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="items">
|
<div class="items">
|
||||||
@@ -51,6 +69,12 @@ import Zone from "@/entities/Zone";
|
|||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: "GatheringNode",
|
name: "GatheringNode",
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
secondsToNextInactiveTime: 0 as number,
|
||||||
|
secondsToNextActiveTime: 0 as number,
|
||||||
|
};
|
||||||
|
},
|
||||||
props: {
|
props: {
|
||||||
gatheringNode: {
|
gatheringNode: {
|
||||||
type: Object as PropType<Node>,
|
type: Object as PropType<Node>,
|
||||||
@@ -65,22 +89,42 @@ export default defineComponent({
|
|||||||
required: true
|
required: true
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
eorzeaTime: {
|
||||||
|
handler() {
|
||||||
|
this.calculateTimers()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
prettyTimer(seconds: number): string {
|
prettyTimer(seconds: number): string {
|
||||||
const minutes = Math.floor(seconds / 60);
|
const minutes = Math.floor(seconds / 60);
|
||||||
const remainingSeconds = seconds % 60;
|
const remainingSeconds = seconds % 60;
|
||||||
return `${minutes}:${remainingSeconds < 10 ? '0' : ''}${remainingSeconds}`;
|
return `${minutes}:${remainingSeconds < 10 ? '0' : ''}${remainingSeconds}`;
|
||||||
|
},
|
||||||
|
calculateTimers() {
|
||||||
|
this.secondsToNextInactiveTime = this.gatheringNode.getSecondsToNextInactiveTime(this.eorzeaTime);
|
||||||
|
this.secondsToNextActiveTime = this.gatheringNode.getSecondsToNextActiveTime(this.eorzeaTime);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
this.calculateTimers();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<style scoped lang="scss">
|
||||||
|
|
||||||
@keyframes pulsing {
|
@keyframes pulsing {
|
||||||
0% {background-color: rgba(255,255,255, 0.05);}
|
0% {
|
||||||
50% {background-color: rgba(255,255,255, 0.075);}
|
background-color: rgba(255, 255, 255, 0.05);
|
||||||
100% {background-color: rgba(255,255,255, 0.05);}
|
}
|
||||||
|
50% {
|
||||||
|
background-color: rgba(255, 255, 255, 0.075);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
background-color: rgba(255, 255, 255, 0.05);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.node {
|
.node {
|
||||||
@@ -93,6 +137,7 @@ export default defineComponent({
|
|||||||
border: 1px solid #fff;
|
border: 1px solid #fff;
|
||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
border-radius: 0.25rem;
|
border-radius: 0.25rem;
|
||||||
|
content-visibility: auto;
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
animation: infinite pulsing 6s;
|
animation: infinite pulsing 6s;
|
||||||
@@ -102,6 +147,8 @@ export default defineComponent({
|
|||||||
min-width: 7rem;
|
min-width: 7rem;
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,9 +49,7 @@ export default defineComponent(
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
eorzeaTime: {
|
eorzeaTime: {
|
||||||
handler(newValue, oldValue) {
|
handler() {
|
||||||
if (oldValue === undefined) return;
|
|
||||||
if (newValue?.getMinutes() === oldValue?.getMinutes()) return;
|
|
||||||
this.sortListByTime();
|
this.sortListByTime();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -47,6 +47,15 @@ export default class Node {
|
|||||||
return countdown;
|
return countdown;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getCountdownToInactive(eorzeaTime: EorzeaTime): number {
|
||||||
|
let countdown: number = Infinity;
|
||||||
|
for (const timeRange of this.times) {
|
||||||
|
const endTimeFrame: number = timeRange.getEndTimeFrame(eorzeaTime);
|
||||||
|
if (endTimeFrame < countdown) countdown = endTimeFrame;
|
||||||
|
}
|
||||||
|
return countdown;
|
||||||
|
}
|
||||||
|
|
||||||
getNextActiveTime(eorzeaTime: EorzeaTime): EorzeaTime {
|
getNextActiveTime(eorzeaTime: EorzeaTime): EorzeaTime {
|
||||||
let countdownTimeStamp: number = Infinity;
|
let countdownTimeStamp: number = Infinity;
|
||||||
for (const timeRange of this.times) {
|
for (const timeRange of this.times) {
|
||||||
@@ -56,8 +65,21 @@ export default class Node {
|
|||||||
return EorzeaTime.fromEorzeaTime(new Date(this.getCountdownToActive(eorzeaTime)));
|
return EorzeaTime.fromEorzeaTime(new Date(this.getCountdownToActive(eorzeaTime)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getNextInactiveTime(eorzeaTime: EorzeaTime): EorzeaTime {
|
||||||
|
let countdownTimeStamp: number = Infinity;
|
||||||
|
for (const timeRange of this.times) {
|
||||||
|
const endTimeFrame: number = timeRange.getEndTimeFrame(eorzeaTime);
|
||||||
|
if (endTimeFrame < countdownTimeStamp) countdownTimeStamp = endTimeFrame;
|
||||||
|
}
|
||||||
|
return EorzeaTime.fromEorzeaTime(new Date(this.getCountdownToInactive(eorzeaTime)));
|
||||||
|
}
|
||||||
|
|
||||||
getSecondsToNextActiveTime(eorzeaTime: EorzeaTime): number {
|
getSecondsToNextActiveTime(eorzeaTime: EorzeaTime): number {
|
||||||
return Math.floor((this.getNextActiveTime(eorzeaTime).realDate.getTime() - eorzeaTime.realDate.getTime()) / 1000);
|
return Math.floor((this.getNextActiveTime(eorzeaTime).realDate.getTime() - eorzeaTime.realDate.getTime()) / 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getSecondsToNextInactiveTime(eorzeaTime: EorzeaTime): number {
|
||||||
|
return Math.floor((this.getNextInactiveTime(eorzeaTime).realDate.getTime() - eorzeaTime.realDate.getTime()) / 1000);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ export default class TimeRange {
|
|||||||
public isWithinTimeFrame(hour: number, minute: number): boolean {
|
public isWithinTimeFrame(hour: number, minute: number): boolean {
|
||||||
return (
|
return (
|
||||||
this.from[0] < hour || this.from[0] == hour && this.from[1] <= minute)
|
this.from[0] < hour || this.from[0] == hour && this.from[1] <= minute)
|
||||||
&& (hour < this.to[0] || hour == this.to[0] && minute <= this.to[1]
|
&& (hour < this.to[0] || hour == this.to[0] && minute < this.to[1]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -29,4 +29,17 @@ export default class TimeRange {
|
|||||||
return targetDate.getTime();
|
return targetDate.getTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the timestamp when the current time range will end
|
||||||
|
* @param eorzeaTimeFrom
|
||||||
|
*/
|
||||||
|
public getEndTimeFrame(eorzeaTimeFrom: EorzeaTime): number {
|
||||||
|
const targetDate = new Date(eorzeaTimeFrom.eorzeaDate.getTime());
|
||||||
|
targetDate.setUTCHours(this.to[0], 0, 0, 0);
|
||||||
|
if (eorzeaTimeFrom.getHours() >= this.to[0]) {
|
||||||
|
targetDate.setUTCHours(this.to[0] + 24);
|
||||||
|
}
|
||||||
|
return targetDate.getTime();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user