-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.txt
62 lines (47 loc) · 1.52 KB
/
info.txt
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
Socket Events:
--------------
###### Contestant side:<br/>
question: to receive the current question
curr_timer: to receive the current time left for the question
locked_answer: to receive the current locked answer
answer: to receive the current answer(right/wrong)<br>
{is_answered_correctly: False, correct_option: A, amount_won: 100}
lifelines: to receive the list of lifelines
###### Host side:<br/>
set_question: to set the current question
set_timer: to send current timer update
set_locked_answer: to set the current locked answer
set_answer: to receive the current answer(right/wrong)<br>
{is_answered_correctly: False, correct_option: A, amount_won: 100}
set_lifelines: to receive the list of lifelines <br>
{
"lines": [
{
"used": "False",
"name": "Life Line 1"
},
{
"used": "True",
"name": "Life Line 2"
},
{
"used": "True",
"name": "Life Line 3"
}
],
"show_life_lines": "False"
}
Todo:
-[] first show placeholder after 0.5 sec show question
-[] count down starts as soon as option appears.
-[] after question read complete, load options
-[] after answer reveal, no celebration music, it's audience claps music.
-[] question placeholder slowly fades and then wining amount shown.
-[] once audience poll activated, show chart and show options(lifeline hide).
-[] lifeline mark as used(x), hide animation.
Zipping:
--------
Generate zip file out of branch:
git archive --format zip --output emk.zip dev
Unzip to a directory:
unzip <file_name>.zip -d <folder_name>