Write a function analyze_scores that receives a list of integer scores from a sports game. It must return a 4‑tuple:
- The total sum of all scores.
- The average score as a float (0.0 for an empty list).
- How many scores are greater than or equal to 10.
- The highest score (0 for an empty list).
Examples
analyze_scores([5, 12, 7, 20]) # → (44, 11.0, 2, 20)
analyze_scores([]) # → (0, 0.0, 0, 0)