Skip to content

talkl/Pymon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to PYmon

PYmon is an online multiplayer version of the famous Hasbro game simon

simon sketch

The game flow:

  1. Players click on an "open" game (open for players to join)
  2. As long as the game status is open other players can join.
  3. Clicking the "play" button will play the sequence once
  4. After all players listened to the sequence the game status changes to "on" (from now other players can join as viewers)
  5. The first player who joined the game will get the turn
  6. On each turn the player should click the next color of the sequence (one guess per turn)
  7. If you failed, you are out.
  8. If you are correct the turn goes to the next player
  9. If the sequence is finished all remaining players are considered winners

Built With

Authors

Getting Started

First, visit The Demo (hopefully it will be awake) Clone the project and make sure you have all of the tools below installed.

Prerequisites

Installing

  1. Create a new "pymon" folder under your dev folder.
  2. cd into the folder.
  3. clone this repository
    git clone https://gitlab.com/itc-bootcamp/assignment12-pymon.git
    
  4. run pip and install the required libraries
    pip install -r requirements.txt
    
  5. cd into "/frontend" folder, run npm and install the required libraries
    cd frontend
    npm install
    
  6. run webpack to build the react files into the dist folder. webpack is configured to watch fie changes, so this cmd window should remain open.
    npm run build
    
  7. create a local MYSQL DB on your machine for now follow the instruction on this section Update your credentials in the dbutils.py file!!!!

Installing the DB

Update your credentials in the dbutils.py file!!!!

connection = pymysql.connect(host='db4free.net',
                             user='<your user>',
                             password='<your password>',
                             db='<your db>',
                             charset='utf8',
                             autocommit=True,
                             cursorclass=pymysql.cursors.DictCursor)

And run the following commands on your MySql workbench

CREATE DATABASE pymon;
use pymon;
CREATE TABLE `game` (
  `id` int(11) NOT NULL,
  `name` varchar(30) NOT NULL,
  `status` varchar(30) DEFAULT 'open',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `sequence` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL,
  `creator` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT 'anonymous',
  `step` int(11) NOT NULL DEFAULT '0'
) ;


CREATE TABLE `player` (
  `id` varchar(30) NOT NULL,
  `avatar` varchar(100) NOT NULL DEFAULT 'anonymous',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ;


CREATE TABLE `playergame` (
  `game` int(11) NOT NULL,
  `player` varchar(30) NOT NULL,
  `status` varchar(30) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NOT NULL DEFAULT 'new',
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ;

ALTER TABLE `game`
  ADD PRIMARY KEY (`id`);

ALTER TABLE `player`
  ADD PRIMARY KEY (`id`);

ALTER TABLE `playergame`
  ADD KEY `game` (`game`),
  ADD KEY `player` (`player`);

ALTER TABLE `game`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=51;

ALTER TABLE `playergame`
  ADD CONSTRAINT `game` FOREIGN KEY (`game`) REFERENCES `game` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
  ADD CONSTRAINT `player` FOREIGN KEY (`player`) REFERENCES `player` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT;
COMMIT;

Deployment

The project is "Heroku Deploy Ready"

In order for the project to work online you will have to use a remote MySql DB one option is to use the following service

  1. Set a DB onine (following this step again, this time online)

  2. Don't forget to update the dbutils.py credentials

  3. Create a new Heroku app

  4. Git push heroku master

License

This project is licensed under the MIT License

TODO:

Split into groups of up to 10 people :) AND GET THE JOB DONE!

  • LIOR - Implement the filters on /games page
    • description: (should allow users to filter games according to status)
    • design: A selected filter should be css "brown" color ("OPEN" should be selected on load)
    • constraints: frontend implementation (HTML/CSS/JS)
  • SHEINA - Implement a back button in /game page.
    • description: allow users to go back to the /games page
    • design: total freedom
    • constraints: Add React component "BackBtn"
  • HILLA - Fix Bug - player can press more than one button per turn
    • description: This is against the rules, we need to somehow block the user from being able to do that
    • constraints: use media queries
  • Implement a more impressive "Game Over"/"Game Won" prompt
    • description: currently there are none, try to make something nice...
    • design: total freedom
    • constraints: total freedom (follow application structure)
  • ORI - Implement highscores page - DONE
    • description: A standalone page showing the top 10 users with the heighest score (most games won) descending order.
    • design: total freedom (follow application design)
    • constraints: total freedom (follow application structure)
  • SAM - Implement the ability for a player to select one of 5 avatars
    • description: On the /start page add the ability to select an avatar (the DB already contains that field) The avatar should be shown in the "players" component next to the players name
    • design: total freedom
    • constraints: total freedom (follow application structure)
  • SHEINA - Update project to Python 3.x - DONE
    • description: currently the project runs Pyhton 2.7.x update the project and make sure all third party libraries works. Also verify deploying to Heroku is not borken.
  • TAL - Limit the number of players per game to be less than the number of steps in the sequence
    • DONE
    • implementation: if len(players) == len(sequence) than change the status to waiting. then joinButton is disabled through Gilad's React code (conditional rendering)
    • description: If there are more players than steps in the sequence the last players to join will win without playing. don't allow a player to join a "full" game
    • constraints: total freedom (follow application structure)
  • ORI - Implement delete button for game in the /games page
    • description: users should be able to delete old games
    • design: show the delete button only for games the user can delete
    • constraints: only the game creator should be able to delete a game (follow application structure)
  • Fix responsiveness on mobile
    • description: The simon itself is quite responsive but we need to fix side menu somehow
    • design: total freedom
    • constraints: use media queries
  • Serve mp3s from a CDN
    • description: Currently the mp3 serving is not reliable, find a (free) CDN upload the files and serve from there
  • Add comments to the entire project (ALL OVER!)
  • Find and fix any bug
  • Add some missing features of your own

Enjoy!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published