Add Tablut

This commit is contained in:
2024-01-12 20:06:34 +01:00
parent 104d7377b2
commit 966ff868c9
5 changed files with 9 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -1,7 +1,8 @@
<template> <template>
<ProjectCard <ProjectCard
title="Tablut" title="Tablut" :image="image"
:links="[ :links="[
{ label: 'Repository', url: 'https://github.com/NotXia/tablut-player' }
]"> ]">
<p class="text-center">{{ $t("unibo_23-24") }}</p> <p class="text-center">{{ $t("unibo_23-24") }}</p>
@ -11,4 +12,5 @@
<script setup lang="ts"> <script setup lang="ts">
import image from "@/assets/images/projects/tablut.png";
</script> </script>

View File

@ -14,7 +14,7 @@ export default {
"tablut.description": "tablut.description":
"Project for the Fundamentals of Artificial Intelligence and Knowledge Representation (module 1) course.\n" + "Project for the Fundamentals of Artificial Intelligence and Knowledge Representation (module 1) course.\n" +
"Agent able to play the Tablut board game.", "Minimax-based agent for the Tablut board game, tuned using a genetic algorithm.",
"bsc_thesis.title": "Bachelor's thesis", "bsc_thesis.title": "Bachelor's thesis",
"bsc_thesis.thesis_title": "Subtopic-oriented biomedical summarization using pretrained language models", "bsc_thesis.thesis_title": "Subtopic-oriented biomedical summarization using pretrained language models",
@ -25,7 +25,7 @@ export default {
"Android application displaying, using a heat-map, the strength of signals (Wi-Fi, Bluetooth, LTE) and noise level.", "Android application displaying, using a heat-map, the strength of signals (Wi-Fi, Bluetooth, LTE) and noise level.",
"wirefilter.description": "wirefilter.description":
"Virtual Distributed Ethernet (VDE) is an open source project that allows the creation of virtual networks through a set of plugins.\n" + "Virtual Distributed Ethernet (VDE) is an open-source project that allows the creation of virtual networks through a set of plugins.\n" +
"Wirefilter is a plugin that allows to manipulate packet flow by changing the parameters of the virtual cable.", "Wirefilter is a plugin that allows to manipulate packet flow by changing the parameters of the virtual cable.",
"tweet_analysis.description": "tweet_analysis.description":
@ -52,8 +52,8 @@ export default {
"Algorithm able to efficiently play a generalized version of tic-tac-toe.", "Algorithm able to efficiently play a generalized version of tic-tac-toe.",
"platform.description": "platform.description":
"Project for the Programmin course.\n" + "Project for the Programming course.\n" +
"Text based platform game with randomly generated levels.", "Text-based platform game with randomly generated levels.",
"pathfinding_visualizer.description": "Visualizer of some graph search algorithms.", "pathfinding_visualizer.description": "Visualizer of some graph search algorithms.",

View File

@ -14,7 +14,7 @@ export default {
"tablut.description": "tablut.description":
"Progetto per il corso di Fundamentals of Artificial Intelligence and Knowledge Representation (modulo 1).\n" + "Progetto per il corso di Fundamentals of Artificial Intelligence and Knowledge Representation (modulo 1).\n" +
"Agent in grado di giocare al gioco da tavolo Tablut.", "Agente implementato con minimax e addestrato con un algoritmo genetico per il gioco da tavolo Tablut.",
"bsc_thesis.title": "Tesi triennale", "bsc_thesis.title": "Tesi triennale",
"bsc_thesis.thesis_title": "Subtopic-oriented biomedical summarization using pretrained language models", "bsc_thesis.thesis_title": "Subtopic-oriented biomedical summarization using pretrained language models",

View File

@ -6,13 +6,13 @@
<h2 class="text-3xl text-center mt-10 mb-3">{{ $t("wip") }}</h2> <h2 class="text-3xl text-center mt-10 mb-3">{{ $t("wip") }}</h2>
<div class="[&>*]:my-14 first:[&>*]:mt-8"> <div class="[&>*]:my-14 first:[&>*]:mt-8">
<TablutPlayer />
<NotXiaGithubio /> <NotXiaGithubio />
</div> </div>
<h2 class="text-3xl text-center mt-10 mb-3">{{ $t("completed") }}</h2> <h2 class="text-3xl text-center mt-10 mb-3">{{ $t("completed") }}</h2>
<div class="[&>*]:my-14 first:[&>*]:mt-8"> <div class="[&>*]:my-14 first:[&>*]:mt-8">
<TablutPlayer />
<BScThesis /> <BScThesis />
<WaveMap /> <WaveMap />
<Wirefilter /> <Wirefilter />