-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrender_class.py
464 lines (275 loc) · 15.3 KB
/
render_class.py
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Sun Feb 21 11:39:53 2021
@author: robertblack
"""
from os import name, system, path
class Render:
def __init__(self):
self.__m_renderMatrix = self.createRenderMatrix()
self.__m_playersCoords = self.getPlayerCoords()
self.__m_cardDeckCords = self.getCardDeckCoords()
self.__m_tableCoords = self.getTableCoords()
self.__m_tableSpoonCoords = self.getTableSpoonsCoords()
#Getters
def getRenderMatrix(self):
return self.__m_renderMatrix
def createRenderMatrix(self):
renderMatrix = []
for row in range(40):
rowList = []
for cols in range(90):
rowList.append(' ')
renderMatrix.append(rowList)
return renderMatrix
def initRenderMatrix(self):
#ResetTheRenderMatrix.
self.__m_renderMatrix = self.createRenderMatrix()
#Add the table.
xCoord = self.__m_tableCoords[0]
yCoord = self.__m_tableCoords[1]
xDim = xCoord + 11
yDim = yCoord + 7
for y in range(yCoord, yDim, 1):
for x in range(xCoord, xDim, 1):
#Add the corners.
if x == xCoord or x == (xDim - 1):
if y == yCoord or y == (yDim - 1):
self.__m_renderMatrix[y][x] = '+'
#Add top and bottom edges.
if x > xCoord and x < (xDim - 1):
if y == yCoord or y == (yDim - 1):
self.__m_renderMatrix[y][x] = '-'
#Add the left and right table edges.
if x == xCoord or x == (xDim - 1):
if y > yCoord and y < (yDim - 1):
self.__m_renderMatrix[y][x] = '|'
#Add the card decks
leftX_Coords = self.__m_cardDeckCords[0][0]
leftY_Coords = self.__m_cardDeckCords[0][1]
leftX_Dim = leftX_Coords + 7
leftY_Dim = leftY_Coords + 6
rightX_Corrds = self.__m_cardDeckCords[1][0]
rightY_Coords = self.__m_cardDeckCords[1][1]
rightX_Dim = rightX_Corrds + 7
rightY_Dim = rightY_Coords + 6
defaultLeftRightCardCount = "00"
leftTopTitle = "Left"
rightTopTitle = "Right"
leftAndRightBottomTitle = "Deck"
for y in range(leftY_Coords, leftY_Dim + 1, 1):
for x in range(leftX_Coords, rightX_Dim, 1):
#Add the corners.
if x == leftX_Coords or x == ((leftX_Dim - 1) - 2) or x == (
rightX_Corrds + 2) or x == (rightX_Dim - 1):
if y == (leftY_Coords + 1) or y == (leftY_Dim - 1):
self.__m_renderMatrix[y][x] = '+'
#Add top and bottom edges.
if (x > leftX_Coords and x < ((leftX_Dim - 1) - 2)) or (x > (
rightX_Corrds + 2) and x < (rightX_Dim - 1)):
if y == (rightY_Coords + 1) or y == (rightY_Dim - 1):
self.__m_renderMatrix[y][x] = '-'
#Add the left and right table edges.
if x == leftX_Coords or x == ((leftX_Dim - 1) - 2) or x == (
rightX_Corrds + 2) or x == (rightX_Dim - 1):
if y > (rightY_Coords + 1) and y < (rightY_Dim - 1):
self.__m_renderMatrix[y][x] = '|'
#Add the filling.
if x > leftX_Coords and x < ((leftX_Dim - 1) - 2) or x > (
rightX_Corrds + 2) and x < (rightX_Dim - 1):
if y > (rightY_Coords + 1) and y < (rightY_Dim - 1):
self.__m_renderMatrix[y][x] = 'X'
#Add the top left title.
if y == leftY_Coords and x - leftX_Coords >= 0 and (
x - leftX_Coords) < len(leftTopTitle):
self.__m_renderMatrix[y][x] = leftTopTitle[x - leftX_Coords]
#Add the top right title.
if y == rightY_Coords and x - (rightX_Corrds + 2) >= 0 and (
x - (rightX_Corrds + 2)) < len(rightTopTitle):
self.__m_renderMatrix[y][x] = rightTopTitle[
x - (rightX_Corrds + 2)]
#Add the bottom left title.
if y == leftY_Dim and x - leftX_Coords >= 0 and (
x - leftX_Coords) < len(leftAndRightBottomTitle):
self.__m_renderMatrix[y][x] = leftAndRightBottomTitle[
x - leftX_Coords]
#Add the bottom right title.
if y == rightY_Dim and x - (rightX_Corrds + 2) >= 0 and x - (
rightX_Corrds + 2) < len(leftAndRightBottomTitle):
self.__m_renderMatrix[y][x] = leftAndRightBottomTitle[
x - (rightX_Corrds + 2)]
#Add default left card counter.
if y == (leftY_Coords + 3) and (x - (leftX_Dim - 2)) >= 0 and (
x - (leftX_Dim - 2)) < len(defaultLeftRightCardCount):
self.__m_renderMatrix[y][x] = defaultLeftRightCardCount[
x - (leftX_Dim - 2)]
#Add default right card counter.
if y == (rightY_Coords + 3) and (x - rightX_Corrds) >= 0 and (
x - rightX_Corrds) < len(defaultLeftRightCardCount):
self.__m_renderMatrix[y][x] = defaultLeftRightCardCount[
x - rightX_Corrds]
def updateLeftCardCounter(self, amount):
amt = amount
amountStr = str(amt)
if len(amountStr) < 2:
s = "0" + amountStr
amountStr = s
leftX_Coords = self.__m_cardDeckCords[0][0]
leftY_Coords = self.__m_cardDeckCords[0][1]
leftX_Dim = leftX_Coords + 7
leftY_Dim = leftY_Coords + 6
for y in range(leftY_Coords, leftY_Dim + 1, 1):
for x in range(leftX_Coords, leftX_Dim, 1):
#Update left card counter.
if y == (leftY_Coords + 3) and (x - (leftX_Dim - 2)) >= 0 and (
x - (leftX_Dim - 2)) < len(amountStr):
self.__m_renderMatrix[y][x] = amountStr[x - (
leftX_Dim - 2)]
def updateRightCardCounter(self, amount):
amt = amount
amountStr = str(amt)
if len(amountStr) < 2:
s = "0" + amountStr
amountStr = s
rightX_Corrds = self.__m_cardDeckCords[1][0]
rightY_Coords = self.__m_cardDeckCords[1][1]
rightX_Dim = rightX_Corrds + 7
rightY_Dim = rightY_Coords + 6
for y in range(rightY_Coords, rightY_Dim + 1, 1):
for x in range(rightX_Corrds, rightX_Dim, 1):
#Update right card counter.
if y == (rightY_Coords + 3) and (x - rightX_Corrds) >= 0 and (
x - rightX_Corrds) < len(amountStr):
self.__m_renderMatrix[y][x] = amountStr[x - rightX_Corrds]
def addPartisipants(self, participants):
for i in range(len(participants)):
titleStr = ""
if i == 0:
titleStr += "Dealer - " + participants[i].getName()
else:
titleStr += "Player " + str(
i + 1) + " - " + participants[i].getName()
if participants[i].isCurrentPlayer():
titleStr += " #"
xCoord = self.__m_playersCoords[i][0]
yCoord = self.__m_playersCoords[i][1]
xDim = xCoord + 24
yDim = yCoord + 7
for y in range(yCoord, yDim + 1, 1):
for x in range(xCoord, xDim + 1, 1):
#Add the title.
if y == yCoord and x - xCoord >= 0 and (x - xCoord) < len(titleStr):
self.__m_renderMatrix[y][x] = titleStr[x - xCoord]
#Add card information
cards = participants[i].getCards()
for z in range(len(cards)):
#Add card info.
cardStr = ""
if participants[i].isCurrentPlayer():
cardStr = str(z + 1) + " - " + str(cards[z])
else:
cardStr = str(z + 1) + " - #Playing Card#"
if y == ((yCoord + 2) + z) and x - xCoord >= 0 and (x - xCoord) < len(cardStr):
self.__m_renderMatrix[y][x] = cardStr[x - xCoord]
#add the spoon
if y == (yCoord + 2) and x == (xCoord + 22):
self.__m_renderMatrix[y][x] = "O"
if y == (yCoord + 3) and x == (xCoord + 22):
self.__m_renderMatrix[y][x] = "|"
if y == (yCoord + 4) and x == (xCoord + 22):
self.__m_renderMatrix[y][x] = "|"
#Add spoon number.
numOfSpoons = participants[i].getNumberOfSpoons()
numSpoonStr = str(numOfSpoons)
if y == (yCoord + 4) and x == (xCoord + 23):
self.__m_renderMatrix[y][x] = numSpoonStr
def setNumberOfTableSpoons(self, numberOfSpoons):
xCoord = self.__m_tableSpoonCoords[0]
yCoord = self.__m_tableSpoonCoords[1]
xDim = xCoord + 7
yDim = yCoord + 3
for i in range(numberOfSpoons):
for y in range(yCoord, yDim + 1, 1):
for x in range(xCoord, xDim + 1, 1):
#add the spoon
if y == yCoord and x == (xCoord + i):
self.__m_renderMatrix[y][x] = "O"
if y == (yCoord + 1) and x == (xCoord + i):
self.__m_renderMatrix[y][x] = "|"
if y == (yCoord + 2) and x == (xCoord + i):
self.__m_renderMatrix[y][x] = "|"
def getPlayerCoords(self):
#Dealer = 0, Player 2 - 8 = (1 - 7)
playerCoordsList = [
[27, 32],
[27, 5],
[1, 7],
[53, 7],
[1, 16],
[53, 16],
[1,25],
[53, 25]]
return playerCoordsList
def getCardDeckCoords(self):
#Left = 0 to Right = 1
cardDeckCoordsList = [
[27, 24],
[41, 24]]
return cardDeckCoordsList
def getTableCoords(self):
tablekCoordsList = [32, 15]
return tablekCoordsList
def getTableSpoonsCoords(self):
tablekSpoonsCoordsList = [34, 17]
return tablekSpoonsCoordsList
def renderGame(self):
for y in range(40):
for x in range(75):
if x == (75 - 1):
print(self.__m_renderMatrix[y][x])
else:
print(self.__m_renderMatrix[y][x], end = "")
#Function to lear the console.
#Numlines is an optional argument used only as a fall-back.
def clearScreen(self, numlines=100):
if name == "posix":
# Unix/Linux/MacOS/BSD/etc
system('clear')
elif name in ("nt", "dos", "ce"):
# DOS/Windows
system('CLS')
else:
# Fallback for other operating systems.
print('\n' * numlines)
def showRules(self):
#Find the path to the words text file appropriate to the
#current operating system.
absPathToFile = path.dirname(path.abspath( __file__ ))
absPathToFile += path.sep
absPathToFile += "rules_of_spoons.txt"
showRules = True
while showRules:
try:
#Open the file and the game rules.
rulesFile = open(absPathToFile, "r")
self.clearScreen()
for line in rulesFile:
print(line)
rulesFile.close()
except IOError:
self.clearScreen()
closeRules = input("Can not open the rules file at the " +
"moment, sorry for any inconvenience.\n" +
"Please type '--resume' to continue with " +
"the game.")
while True:
closeRules = input("Please type '--resume' to continue with the " +
"game: ")
if closeRules.strip() == "--resume":
showRules = False
break
else:
self.clearScreen()
print("\nI did not understand your input, please try again.\n")
self.clearScreen()