irkan commited on
Commit
9a53105
Β·
verified Β·
1 Parent(s): b36d528

Deploy deathmatch from ac367c2

Browse files
Files changed (1) hide show
  1. mock.py +24 -10
mock.py CHANGED
@@ -36,32 +36,38 @@ MOCK_FIGHTCARD = {
36
  {"id": 1, "title": "The stare-down / entrances",
37
  "action": "Britney moonwalks into the ring under a glitter cannon while Eminem "
38
  "stomps in from the opposite corner, cracking his clay knuckles",
39
- "commentary": "Welcome to Deathmatch! Pop royalty versus the Rap God β€” "
40
- "and the glitter is already in Slim's eyes, Johnny!",
 
 
41
  "video_prompt": "two clay fighters enter a wrestling ring, glitter falling, slow zoom"},
42
  {"id": 2, "title": "First blood",
43
  "action": "Eminem fires off a flurry of word-bullet punches; Britney back-flips "
44
  "away and flicks her ponytail like a whip",
45
- "commentary": "Ohh! Rapid-fire jabs from Eminem β€” but Britney's ponytail "
46
- "snaps back like a bullwhip! That's gotta sting!",
 
47
  "video_prompt": "fast punches, clay fighter dodges with a backflip, motion blur"},
48
  {"id": 3, "title": "Signature move",
49
  "action": "Britney launches the Toxic Spin Kick, a neon-green tornado of legs "
50
  "that sends Eminem bouncing off the ropes",
51
- "commentary": "THE TOXIC SPIN KICK! It's a green tornado of doom, Nick! "
52
- "Slim Shady is ping-ponging off the ropes!",
 
53
  "video_prompt": "spinning kick, green energy tornado, opponent flung into ropes"},
54
  {"id": 4, "title": "Comeback / turning point",
55
  "action": "Eminem shakes it off and unleashes the Rap God Combo β€” fists moving "
56
  "so fast they blur into a clay smear",
57
- "commentary": "But here comes the Rap God Combo! His hands are a BLUR! "
58
- "Britney's tiara just got rearranged!",
 
59
  "video_prompt": "blurred rapid punch combo, clay smear trails, dramatic angle"},
60
  {"id": 5, "title": "Finishing move + KO",
61
  "action": "Britney counters mid-combo, drops the beat AND Eminem with one final "
62
  "spin, then strikes a victory pose on his flattened clay body",
63
- "commentary": "She drops the beat β€” and drops EMINEM! It's all over! "
64
- "Britney Spears wins the Deathmatch!",
 
65
  "video_prompt": "final spin counter, opponent flattened, victory pose, confetti"},
66
  ],
67
  "winner": "A",
@@ -69,6 +75,14 @@ MOCK_FIGHTCARD = {
69
  "finale β€” Eminem never found the off-beat.",
70
  }
71
 
 
 
 
 
 
 
 
 
72
  _PALETTE = [
73
  (210, 60, 70), (240, 160, 48), (64, 160, 200), (120, 90, 200), (60, 170, 110),
74
  ]
 
36
  {"id": 1, "title": "The stare-down / entrances",
37
  "action": "Britney moonwalks into the ring under a glitter cannon while Eminem "
38
  "stomps in from the opposite corner, cracking his clay knuckles",
39
+ "commentary": [
40
+ {"speaker": "JOHNNY", "line": "Pop royalty versus the Rap God β€” "
41
+ "and the glitter cannon is FIRING!"},
42
+ {"speaker": "NICK", "line": "There's confetti in Slim's eyes already, Johnny."}],
43
  "video_prompt": "two clay fighters enter a wrestling ring, glitter falling, slow zoom"},
44
  {"id": 2, "title": "First blood",
45
  "action": "Eminem fires off a flurry of word-bullet punches; Britney back-flips "
46
  "away and flicks her ponytail like a whip",
47
+ "commentary": [
48
+ {"speaker": "JOHNNY", "line": "Rapid-fire jabs from Eminem!"},
49
+ {"speaker": "NICK", "line": "And the ponytail snaps back like a bullwhip. Cute."}],
50
  "video_prompt": "fast punches, clay fighter dodges with a backflip, motion blur"},
51
  {"id": 3, "title": "Signature move",
52
  "action": "Britney launches the Toxic Spin Kick, a neon-green tornado of legs "
53
  "that sends Eminem bouncing off the ropes",
54
+ "commentary": [
55
+ {"speaker": "JOHNNY", "line": "THE TOXIC SPIN KICK! It's a green tornado of doom!"},
56
+ {"speaker": "NICK", "line": "Slim Shady is ping-ponging off the ropes, folks."}],
57
  "video_prompt": "spinning kick, green energy tornado, opponent flung into ropes"},
58
  {"id": 4, "title": "Comeback / turning point",
59
  "action": "Eminem shakes it off and unleashes the Rap God Combo β€” fists moving "
60
  "so fast they blur into a clay smear",
61
+ "commentary": [
62
+ {"speaker": "JOHNNY", "line": "Here comes the Rap God Combo β€” his hands are a BLUR!"},
63
+ {"speaker": "NICK", "line": "Her tiara just got rearranged."}],
64
  "video_prompt": "blurred rapid punch combo, clay smear trails, dramatic angle"},
65
  {"id": 5, "title": "Finishing move + KO",
66
  "action": "Britney counters mid-combo, drops the beat AND Eminem with one final "
67
  "spin, then strikes a victory pose on his flattened clay body",
68
+ "commentary": [
69
+ {"speaker": "JOHNNY", "line": "She drops the beat β€” and drops EMINEM! IT'S OVER!"},
70
+ {"speaker": "NICK", "line": "Britney Spears wins the Deathmatch. Finally."}],
71
  "video_prompt": "final spin counter, opponent flattened, victory pose, confetti"},
72
  ],
73
  "winner": "A",
 
75
  "finale β€” Eminem never found the off-beat.",
76
  }
77
 
78
+ # Mirror the real backend's validated shape: keep the structured two-announcer
79
+ # lines in `commentary_lines`, and expose a flat "SPEAKER: line" caption string in
80
+ # `commentary` (what the UI renders and what burns in as subtitles).
81
+ for _beat in MOCK_FIGHTCARD["beats"]:
82
+ _lines = _beat["commentary"]
83
+ _beat["commentary_lines"] = _lines
84
+ _beat["commentary"] = " ".join(f"{ln['speaker']}: {ln['line']}" for ln in _lines)
85
+
86
  _PALETTE = [
87
  (210, 60, 70), (240, 160, 48), (64, 160, 200), (120, 90, 200), (60, 170, 110),
88
  ]