Compare commits
2 commits
9e00a5f744
...
a492a0bb6a
Author | SHA1 | Date | |
---|---|---|---|
a492a0bb6a | |||
7955c6cd46 |
4 changed files with 62 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
.idea/
|
||||||
|
|
|
@ -2,3 +2,23 @@ CARDS = {
|
||||||
"fibonacci": [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, "?"],
|
"fibonacci": [0.5, 1, 2, 3, 5, 8, 13, 21, 34, 55, "?"],
|
||||||
"tshirt": ["XS", "S", "M", "L", "XL", "XXL", "XXXL", "?"],
|
"tshirt": ["XS", "S", "M", "L", "XL", "XXL", "XXXL", "?"],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class Cards:
|
||||||
|
"""
|
||||||
|
Cards class object
|
||||||
|
"""
|
||||||
|
def __init__(self, card_type = "fibonacci"):
|
||||||
|
self.card_type = card_type
|
||||||
|
self.cards = []
|
||||||
|
self.create()
|
||||||
|
|
||||||
|
|
||||||
|
def create(self):
|
||||||
|
"""
|
||||||
|
Method to create a deck of cards
|
||||||
|
"""
|
||||||
|
if self.card_type in CARDS.keys():
|
||||||
|
self.cards = CARDS[self.card_type]
|
||||||
|
return self
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import uuid
|
||||||
|
|
||||||
class Person:
|
class Person:
|
||||||
"""
|
"""
|
||||||
Person entity
|
Person entity
|
||||||
|
@ -8,3 +10,12 @@ class Person:
|
||||||
Person entity initializer
|
Person entity initializer
|
||||||
"""
|
"""
|
||||||
self.name = name
|
self.name = name
|
||||||
|
self.uuid = None
|
||||||
|
self.create()
|
||||||
|
|
||||||
|
|
||||||
|
def create(self):
|
||||||
|
if not self.uuid:
|
||||||
|
self.uuid = uuid.uuid1()
|
||||||
|
|
||||||
|
return self
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import uuid
|
||||||
|
|
||||||
class Room:
|
class Room:
|
||||||
"""
|
"""
|
||||||
Room entity
|
Room entity
|
||||||
|
@ -8,3 +10,31 @@ class Room:
|
||||||
Room entity initializer
|
Room entity initializer
|
||||||
"""
|
"""
|
||||||
self.name = name
|
self.name = name
|
||||||
|
self.uuid = None
|
||||||
|
self.attendant = []
|
||||||
|
self.create()
|
||||||
|
|
||||||
|
|
||||||
|
def create(self):
|
||||||
|
"""
|
||||||
|
Method to create a new room object
|
||||||
|
"""
|
||||||
|
if not self.uuid:
|
||||||
|
self.uuid = uuid.uuid1()
|
||||||
|
|
||||||
|
return self
|
||||||
|
|
||||||
|
|
||||||
|
def add_person(self, person: uuid.UUID):
|
||||||
|
"""
|
||||||
|
Method to add a person to a room
|
||||||
|
"""
|
||||||
|
if person not in self.attendant:
|
||||||
|
self.attendant.append(person)
|
||||||
|
|
||||||
|
def remove_person(self, person: uuid.UUID):
|
||||||
|
"""
|
||||||
|
Method to remove a person from a room
|
||||||
|
"""
|
||||||
|
if person in self.attendant:
|
||||||
|
self.attendant.remove(person)
|
||||||
|
|
Loading…
Reference in a new issue