Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/user.py
blob: 09318e88f3155b97b29d0f0e7dfb2dc98fe28a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
class User:
	def __init__(self, bag):
		''' Initialize the Computer class.
			
			@param bag: the bag with letters.
		'''
		self.__letters = bag.remove_letters()
				
	
	def get_letters(self):
		''' Return the list of Letters.
			
			@return: the list of elements.
		'''		
		return self.__letters
		
	def letters_length(self):
		''' Return the length of the list of Letters.
			
			@return: the number of elements.
		'''
		return len(self.__letters)
	
	def get_letter_at(self, index):
		''' Get the letter at the specified index of the list.
			
			@param index: the index
			@return: the Letter
		'''		
		return self.__letter[index]
	
	def add_letter(self, letter):
		''' Add a new Letter to the list of Letters.
			
			@param letter: the new Letter.
		'''
		self.__letters.append(letter)
	
		
	def add_letter_from_bag(self, bag, amount = 0):
		''' Add  new Letters to the list of Letters.
			
			@param bag: the bag which contains the Letters.
			@amount: the amount.
		'''
		new_letters = bag.remove_letters(amount)
		for letter in new_letters:
			self.add_letter(letter)
	
	
	def return_letters_to_bag(self, bag, amount = 0):
		''' Return Letters to the bag.
			
			@param bag: the bag which contains the Letters.
			@amount: the amount.
		'''
		# implementar...