mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 15:43:16 +02:00
Entities/Objects description
This commit is contained in:
parent
83a44c565d
commit
952888b2aa
9
textual-description/description.out
Normal file
9
textual-description/description.out
Normal file
@ -0,0 +1,9 @@
|
||||
\BOOKMARK [0][-]{chapter.1}{\376\377\000T\000a\000s\000k\000\040\0001\000\040\000-\000\040\000T\000e\000x\000t\000u\000a\000l\000\040\000d\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n\000\040\000o\000f\000\040\000a\000\040\000d\000a\000t\000a\000b\000a\000s\000e}{}% 1
|
||||
\BOOKMARK [1][-]{section.1.1}{\376\377\000A\000i\000m}{chapter.1}% 2
|
||||
\BOOKMARK [1][-]{section.1.2}{\376\377\000O\000b\000j\000e\000c\000t\000s}{chapter.1}% 3
|
||||
\BOOKMARK [1][-]{section.1.3}{\376\377\000R\000e\000q\000u\000i\000r\000e\000m\000e\000n\000t\000s\000\040\000c\000o\000n\000c\000e\000r\000n\000i\000n\000g\000\040\000d\000a\000t\000a}{chapter.1}% 4
|
||||
\BOOKMARK [1][-]{section.1.4}{\376\377\000B\000u\000s\000i\000n\000e\000s\000s\000\040\000A\000c\000t\000i\000v\000i\000t\000i\000e\000s}{chapter.1}% 5
|
||||
\BOOKMARK [0][-]{chapter.2}{\376\377\000T\000a\000s\000k\000\040\0002\000\040\000-\000\040\000E\000R\000D\000\040\000-\000\040\000E\000n\000t\000i\000t\000y\000\040\000R\000e\000l\000a\000t\000i\000o\000n\000s\000h\000i\000p\000\040\000D\000i\000a\000g\000r\000a\000m}{}% 6
|
||||
\BOOKMARK [1][-]{section.2.1}{\376\377\000D\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{chapter.2}% 7
|
||||
\BOOKMARK [2][-]{subsection.2.1.1}{\376\377\000R\000e\000l\000a\000t\000i\000o\000n\000s\000h\000i\000p\000\040\000d\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.2.1}% 8
|
||||
\BOOKMARK [2][-]{subsection.2.1.2}{\376\377\000E\000n\000t\000i\000t\000i\000e\000s\000\040\000a\000n\000d\000\040\000a\000t\000t\000r\000i\000b\000u\000t\000e\000s\000\040\000d\000e\000s\000c\000r\000i\000p\000t\000i\000o\000n}{section.2.1}% 9
|
||||
Binary file not shown.
@ -1,5 +1,6 @@
|
||||
\documentclass{report}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{hyperref}
|
||||
|
||||
\begin{document}
|
||||
\chapter{Task 1 - Textual description of a database}
|
||||
@ -9,7 +10,7 @@ Football manager database in order to be able to simulate football manager game.
|
||||
It needs to reflect realistically status, description, attributes of entities connected with football in order to ensure better simulation. \\
|
||||
|
||||
|
||||
\section{Objects}
|
||||
\section{Objects} \label{Objects Section}
|
||||
We have chosen to make 6 entities \\
|
||||
\begin{itemize}
|
||||
\item Player - Football players who are involved in matches, are signed to clubs, are coached by specific manager, they are the most important entity in the database as they are base for the whole database to function properly. Their behavior needs to be simulated not only during games but also after and before games.\\
|
||||
@ -95,8 +96,9 @@ Match is played between two Clubs.
|
||||
Club may take part in many Matches.
|
||||
|
||||
|
||||
\subsection{Attributes description}
|
||||
\subsection{Entities and attributes description}
|
||||
\paragraph{Stadium}
|
||||
Stadium entity represents Stadium object from \hyperref[Objects Section]{Objects Section}
|
||||
\begin{itemize}
|
||||
\item capacity - maximum number of fans that can attend Match
|
||||
\item reputation - how popular it is
|
||||
@ -108,6 +110,7 @@ Club may take part in many Matches.
|
||||
|
||||
|
||||
\paragraph{Competition}
|
||||
Competition entity represents Competition object from \hyperref[Objects Section]{Objects Section}
|
||||
\begin{itemize}
|
||||
\item prize - Sum of money received by winning Club
|
||||
\item country - Where the Competition is taking place
|
||||
@ -116,6 +119,7 @@ Club may take part in many Matches.
|
||||
|
||||
|
||||
\paragraph{Manager}
|
||||
Manager entity represents Manager object from \hyperref[Objects Section]{Objects Section}
|
||||
\begin{itemize}
|
||||
\item skill - how good the Manager is at managing Club
|
||||
\item reputation - how popular Manager is
|
||||
@ -125,6 +129,7 @@ Club may take part in many Matches.
|
||||
|
||||
|
||||
\paragraph{Club}
|
||||
Club entity represents Club object from \hyperref[Objects Section]{Objects Section}
|
||||
\begin{itemize}
|
||||
\item budget - amount of money it can spend yearly
|
||||
\item training ground quality - how good training grounds are
|
||||
@ -134,6 +139,7 @@ Club may take part in many Matches.
|
||||
|
||||
|
||||
\paragraph{Match}
|
||||
Match entity represents Match object from \hyperref[Objects Section]{Objects Section}
|
||||
\begin{itemize}
|
||||
\item score - current Match score
|
||||
\item rating - how enjoyable was the game
|
||||
@ -146,6 +152,7 @@ Club may take part in many Matches.
|
||||
|
||||
|
||||
\paragraph{Player}
|
||||
Player entity represents Player object from \hyperref[Objects Section]{Objects Section}
|
||||
\begin{itemize}
|
||||
\item skill - how good the Player is
|
||||
\item position - position the Player is the best at
|
||||
|
||||
Loading…
Reference in New Issue
Block a user