Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enzo-demeulenaere/labyrinth
https://github.com/enzo-demeulenaere/labyrinth
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/enzo-demeulenaere/labyrinth
- Owner: Enzo-Demeulenaere
- Created: 2024-03-25T15:23:55.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-07-10T15:22:57.000Z (6 months ago)
- Last Synced: 2024-07-10T17:07:33.661Z (6 months ago)
- Language: Smalltalk
- Size: 8.03 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Labyrinth
This project is an implementation of the labyrinth board game in Pharo using Bloc for the visuals.
This was at first a personnal project that became a side project during my apprenticeship at Evref team at Inria Lille, this project was then aimed to be presented at ESUG 2024
## Loading the project
you can load the project executing this snippet in pharo 11/12:
```st
Author fullName: 'No'.
Metacello new
repository: 'github://Enzo-Demeulenaere/Labyrinth/src';
baseline: 'Labyrinth';
onConflictUseLoaded;
load.
```In order to play, you then have to execute
```st
LGame nbPlayers: n
````n` being the number of players you want to play with going from 2 to 4
## State of the project
The project is currently in a first stable version playable from 2 to 4 local players on the same computer.
A future iteration might take the project to another level by implementing a server and making the game playable online by hosting a server for friends to play.