-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp_info.txt
68 lines (45 loc) · 1.79 KB
/
app_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
63
64
65
66
67
68
# app for basketball tracking
problem: create an application to organize basketball tournament(s) (solve team inbalances)
obstacle: requirement gathering (necessary data), data modeling (what data to collect)
1. record stats of players, to show their overall skill level (average)
2. create teams generated on best > worse players
3. track stats over the entire duration (8 weeks)
4. at the end of the 8 weeks, it will create new teams based on overall player stats
stats tracked: point average, assist, blocks, rebounds, penaltys / fouls, steals, time played, games played
tournament:
a tournament is a collection of match / games.
has rankings
has duration
has referees
has sponsors
has teams
team:
team is a collection of players
has coaches
has team name
has manager
has mascot
has sponsors
has HR
has a home court
player:
- height
- ape factor
court:
a ground which is divided into two seperate halves (TODO: come back to this)
location:
basic terminology:
dribble: any time the ball is bounced on the ground
shot: when the ball is thrown towards the hoop to try and score points
foul: any time a player breaks a rule of the game
penalty: a time in which the game is halted due to a player fouling and a team is allowed to take free shots as conpensation
pass: when one play throws the ball to a team mate
assist: any time a pass to another player directly helps them score
blocks: when a player stops the other teams shot with their hand from scoring
rebounds: when a player collects the ball after a failed shot
steal: when a player legally takes possession of the ball from another player
person:
- height
- weight
- sponsors
(optional) weekly reports of mvp, and most improved stat over the week.