-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain_area_view.py
116 lines (100 loc) · 3.98 KB
/
main_area_view.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
# view.py
#
# The view for Jep board
from PyQt6.QtWidgets import QLabel, QStackedWidget
from PyQt6.QtCore import Qt
from PyQt6.QtGui import QPixmap
from board_view import BoardView
from clue_view import ClueView
from final_jep_view import FinalJepView, WinnerView
class MainArea(QStackedWidget):
def __init__(self, root, state):
super().__init__()
self.root = root
self.game_state = state
self.curr_view = "jeopardy-card"
self.stack_idx = {
"board": 0,
"clue": 1,
"final-jep": 2,
"winner": 3,
"jeopardy-card": 4,
"double-jeopardy-card": 5,
"daily-double-card": 6,
"final-jeopardy-card": 7
}
self.initUI()
def initUI(self):
self.board_view = BoardView(self, self.game_state)
self.clue_view = ClueView(self, self.game_state)
self.final_jep_view = FinalJepView(self, self.game_state)
self.winner_view = WinnerView(self, self.game_state)
card_images = ["./resources/img/jeopardy.jpg",
"./resources/img/double-jeopardy.png",
"./resources/img/daily-double.png",
"./resources/img/final-jeopardy.jpg"]
self.addWidget(self.board_view)
self.addWidget(self.clue_view)
self.addWidget(self.final_jep_view)
self.addWidget(self.winner_view)
for img in card_images:
widget = self.init_image_card(img)
self.addWidget(widget)
self.setStyleSheet("background-color: black;")
self.setCurrentIndex(self.stack_idx[self.curr_view])
self.game_state.play_sound('opening')
self.show()
def init_image_card(self, image_path):
image_card = QLabel(self)
image_card.setPixmap(QPixmap(image_path))
image_card.setAlignment(Qt.AlignmentFlag.AlignCenter)
image_card.setScaledContents(True)
image_card.resize(self.width(), self.height())
return image_card
def show_board(self):
self.curr_view = "board"
self.setCurrentIndex(self.stack_idx[self.curr_view])
def show_clue(self, category, clue):
clue_data = self.game_state.get_clue_data(category, clue)
self.clue_view.set_clue(category, clue, clue_data)
if clue_data.daily_double:
self.game_state.play_sound('daily_double')
self.curr_view = "daily-double-card"
self.setCurrentIndex(self.stack_idx[self.curr_view])
self.root.player_wager()
else:
self.curr_view = "clue"
self.setCurrentIndex(self.stack_idx[self.curr_view])
self.root.set_clue_value(clue_data.value)
def show_final_jep(self):
self.game_state.play_sound('final_jep')
self.curr_view = "final-jep"
self.root.all_wager()
self.setCurrentIndex(self.stack_idx[self.curr_view])
def show_winner(self):
self.curr_view = "winner"
self.setCurrentIndex(self.stack_idx[self.curr_view])
def show_card(self, card):
self.curr_view = card
self.setCurrentIndex(self.stack_idx[self.curr_view])
def update(self, is_next_round):
if is_next_round:
if self.game_state.curr_round == 1:
self.show_card("double-jeopardy-card")
elif self.game_state.curr_round == 2:
self.show_card("final-jeopardy-card")
self.board_view.update()
self.clue_view.update()
self.final_jep_view.update()
self.winner_view.update()
def update_root(self):
self.root.update()
def mousePressEvent(self, event):
if (self.curr_view == "jeopardy-card" or
self.curr_view == "double-jeopardy-card"):
self.show_board()
elif self.curr_view == "daily-double-card":
self.curr_view = "clue"
elif self.curr_view == "final-jeopardy-card":
self.show_final_jep()
self.setCurrentIndex(self.stack_idx[self.curr_view])