gheb / tamagotchi
Self learning tamagotchi
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 2
Forks: 1
Open Issues: 0
Type:project
Requires
- php: >=7.1.0
- doctrine/doctrine-bundle: ^1.6
- doctrine/doctrine-cache-bundle: ^1.2
- doctrine/doctrine-fixtures-bundle: ^2.3
- doctrine/orm: ^2.5
- gheb/neat-bundle: ^1.0@dev
- incenteev/composer-parameter-handler: ^2.0
- mybuilder/phpunit-accelerator: ^1.1
- sensio/distribution-bundle: ^5.0
- sensio/framework-extra-bundle: ^3.0.2
- stof/doctrine-extensions-bundle: ^1.2
- symfony/assetic-bundle: ^2.8
- symfony/monolog-bundle: ^2.8
- symfony/swiftmailer-bundle: ^2.3
- symfony/symfony: 3.2.*
Requires (Dev)
- covex-nn/phpcb: 1.0.4.1
- pdepend/pdepend: ^2.2
- phpmd/phpmd: ^2.3
- phpunit/phpunit: ^5.1
- sebastian/phpcpd: ^2.0
- sensio/generator-bundle: ^3.0
- squizlabs/php_codesniffer: ^2.4
- symfony/phpunit-bridge: 2.7.x@beta
- symfony/var-dumper: ^4.0
This package is auto-updated.
Last update: 2024-10-28 01:55:38 UTC
README
A colleague of mine once came with a fish at work. At first I thought, waow, I need one too ! And then I thought of every single day I won't be able to feed him :( This is when I decided as a side project to build a Tamagotchi Like project, and use an AI to decide what's to do next.
The tamagotchi has need such as hunger, sleepiness and sometimes wants to play. Each has an influence on it's health. If you do not take care of feeding him, put it to bed or play with it, the tamagotchi will eventually die faster.
Since my skills in animations/drawing are bellow zero, I used some free spritesheets.
I could have used tensorflow or phpml but I wanted to use this project to learn how it works. And this project is the result with the idea of reuse it later for other projects.
There is many things I would change, or not do the same way I did, but this is an experimental project. Maybe I'll code a better one later :)
The Front is designed to be displayed on a 800x480 raspberry screen but should works on any screen that respect the ratio.
Play
Clone the project or install it with composer:
$ composer create-project gheb/tamagotchi
This project comes with a docker file for the database. and a dev compose file with adminer to navigate through the db while debugging.
$ docker-compose up -d
with adminer
$ docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d
then
$ docker/console doctrine:schema:create $ docker/start
and when you are done
$ docker/stop $ docker-compose stop
If you do not use docker, clone this project. You'll need yarn, composer, mysql, php7.1. And then execute the commands:
$ composer install $ php bin/console doctrine:schema:create $ cd web && yarn install && yarn run build
Then you need to train the AI. I encourage you to read how NEAT (Neuro Evolution of Augmented Topology) GĂ©netic Algorithm works. To create a bunch of population and let the neat-bundle evaluate each genome to learn, run:
$ docker/console gheb:neat:generate $ php bin/console gheb:neat:generate
It's an infinite loop that'll try it's best to evolve a neural network and smash the score !
In order to get the best genome and play it's network upon the inputs, run:
$ docker/console gheb:neat:evaluate $ php bin/console gheb:neat:evaluate
If you don't use docker, you can run a webserver and the websocket by using the start script.
$ php bin/console server:start localhost -p 8000 $ php bin/console gos:web:ser --env=prod
you can now launch your navigator and open the http://localhost:8000
$ chromium-browser --start-fullscreen --start-maximized --no-default-browser-check --incognito http://localhost:8000 &>/dev/null &
to run the all thing in the background you'll need supervisor
$ sudo apt install supervisor
Create a configuration file for the program
# /etc/supervisor/conf.d/tamagotchi.conf [program:tamagotchi] # change this with your username user=gregoire # change according to your path command=/home/gregoire/TRAVAUX/PERSO/tamagotchi/start # uncomment these lines to launch this at start #autostart=true #autorestart=true # change according to your path stdout_logfile=/home/gregoire/TRAVAUX/PERSO/tamagotchi/var/logs/supervisor_stdout.log stderr_logfile=/home/gregoire/TRAVAUX/PERSO/tamagotchi/var/logs/supervisor_stderr.log
Then you must tell supervisor to get and load this new config.
$ supervisorctl reread $ supervisorctl update $ supervisorctl tamagotchi STOPPED Jan 14 02:33 PM supervisor> #Now, we can start, stop and restart the tamagotchi: supervisor> stop tamagotchi tamagotchi: stopped supervisor> start tamagotchi tamagotchi: started supervisor> restart tamagotchi tamagotchi: stopped tamagotchi: started # You may also view the most recent entries from stdout and stderr logs using tail command: supervisor> tail tamagotchi [OK] Web server listening on http://127.0.0.1:8000 supervisor> tail tamagotchi stderr [2018-01-14 15:34:43] websocket.INFO: Launching Ratchet on 127.0.0.1:1337 PID: 6305 [2018-01-14 15:35:16] websocket.WARNING: User firewall is not configured, we have set ws_firewall by default [2018-01-14 15:35:16] websocket.INFO: anon-9760925065a5b6aa49679d118520908 connected {"connection_id":482,"session_id":"9760925065a5b6aa49679d118520908","storage_id":482} [2018-01-14 15:35:16] websocket.INFO: anon-9760925065a5b6aa49679d118520908 subscribe to output/application [2018-01-14 15:35:18] websocket.INFO: anon-9760925065a5b6aa49679d118520908 disconnected {"connection_id":482,"session_id":"9760925065a5b6aa49679d118520908","storage_id":482,"username":"anon-9760925065a5b6aa49679d118520908"} # Checking program status after making changes is easy as well: supervisor> status tamagotchi RUNNING pid 26039, uptime 0:00:24
TROUBLESHOUTING
error: <class 'socket.error'>, [Errno 13] Permission denied: file: /usr/lib/python2.7/socket.py line: 228
if you got this message when lauching supervisorctl
command,
update /etc/supervisor/supervisor.conf
and change the unix_http_server
chmod to 766
Todo
- Define the rythm to call a new evaluation and provide a way to use crontab or something else.
- for demonstration purposes, display a graph of the network.