-
Notifications
You must be signed in to change notification settings - Fork 0
/
bth-thesis.tex
367 lines (304 loc) · 11.6 KB
/
bth-thesis.tex
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
\documentclass[a4paper,twoside]{bth}
% BTH THESIS TEMPLATE
%--------------------
% Template version 4.1 -- November 16, 2023
% Update also the Word template. Keep the version numbers in both formats in sync.
%--------------------
% Please change the data below appropriately to fit your thesis.
% The data will be used to generate text in various places on the
% thesis front and inner pages.
%--------------------
% DEGREE NAME. The degree name you are submitting your thesis for.
% This must be one of the following:
% Bachelor programmes:
% Bachelor of Science in Computer Science
% Bachelor of Science in Digital Game Development
% Bachelor of Science in Software Engineering
% Master programmes:
% Master of Science in Computer Science
% Master of Science in Software Engineering
% Master of Science in Telecommunication Systems
% Civilingenjör programmes:
% Master of Science in Engineering: AI and Machine Learning
% Master of Science in Engineering: Computer Security
% Master of Science in Engineering: Game and Software Engineering
% Master of Science in Engineering: Marine Engineering
% Master of Science in Engineering: Software Engineering
% Master of Science in Industrial Management and Engineering
% Master of Science in Mechanical Engineering
\newcommand{\thesisDegree}{Bachelor of Science in Software Engineering}
% DATE. The month year when your final report was submitted.
\newcommand{\thesisMonth}{May}
\newcommand{\thesisYear}{2024}
% FACULTY.
% Must be either Computing or Engineering.
\newcommand{\faculty}{Engineering}
% COURSE TIME. Course time in weeks.
% For a 15 credits course this should be 10 and
% for a 30 credits course, this should be 20 weeks.
% Note that the week figure is the same whether you work alone or in a pair.
\newcommand{\thesisWeeks}{20}
% TITLE.
\newcommand{\thesisTitle}{Highlights in Counter-strike 2}
% SUBTITLE.
% If you do not have a subtitle, please delete the line below.
\newcommand{\thesisSubtitle}{Creating a new algorithm to find highlights}
% AUTHORS.
% Please replace with your first name(s) and last name(s). There can be several of each.
\newcommand{\authorFirst}{Linus Jansson}
\newcommand{\authorFirstMail}{[email protected]}
% If there is no second author, please delete the texts in the last parentheses.
\newcommand{\authorSecond}{Max Dahlgren}
\newcommand{\authorSecondMail}{[email protected]}
% SUPERVISOR.
% Please replace with title, first and last names of your academic supervisor.
\newcommand{\super}{Dr. Henry Edison}
% Please replace with the name of the department of your academic supervisor, e.g.,
% Computer Science, Mechanical Engineering, etc.
\newcommand{\superAffiliation}{Computer Science}
% PACKAGES AND COMMANDS START
%----------------------------
% please do not delete or change anything before the END of this section
\usepackage{float}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{mathenv}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{pgf-pie}
\usepackage{colortbl}
\usepackage[normalem]{ulem}
\useunder{\uline}{\ul}{}
\usepackage{textcomp}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{booktabs}
\usepackage{caption}
\usepackage{pifont}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{changepage}
\usepackage{listings}
\usepackage{nameref}
\usepackage{hyperref}
\usepackage{xspace}
\usepackage{xtab}
\usepackage{enumitem}
\usepackage{glossaries}
\graphicspath{{Images/}}
%\usepackage[sort&compress,numbers,square,comma]{natbib} % natbib interferes with the style; use \cite instead (see below)
\usepackage{cite} % works only with numeric citations; comment out when using author-year styles
\usepackage[color=blue!10,textsize=footnotesize,textwidth=200mm,disable]{todonotes}
\DeclareGraphicsExtensions{.pdf}
\newtheorem{lem}{\textsc{Lemma}}[chapter]
\newtheorem{thm}{\textsc{Theorem}}[chapter]
\newtheorem{prop}{\textsc{Proposition}}[chapter]
\newtheorem{post}{Postulate}[chapter]
\newtheorem{corr}{\textsc{Corollary}}[chapter]
\newtheorem{defs}{\textsc{Definition}}[chapter]
\newtheorem{cons}{\textsc{Constraint}}[chapter]
\newtheorem{ex}{\textbf{Example}}[chapter]
\newtheorem{qu}{\textbf{Question}}[chapter]
% -------------------------
% PACKAGES AND COMMANDS END
\makeglossaries
\loadglsentries{glossaries}
% DOCUMENT BEGINS HERE
\begin{document}
\pagestyle{plain}
\pagenumbering{roman}
% THESIS FRONT PAGE (please do not change)
% ----------------------------------------
{\pagestyle{empty}
\changepage{3cm}{1cm}{-0.5cm}{-0.5cm}{}{-1.5cm}{}{}{}
\noindent
\begin{tabular}{@{}p{0.75\textwidth} p{0.25\textwidth}}
\thesisDegree & \hfill\multirow{3}{*}{\bthcsnotextlogo{3cm}} \\
\thesisMonth \ \thesisYear & \\
\end{tabular}
%\begin{center}
\center
\vspace {7.5cm}
{\Huge\textbf{\thesisTitle}}
\vspace {0.5cm}
{\Large\textbf{\thesisSubtitle}}
\vspace{2cm}
{\Large\textbf{\authorFirst}}
\vspace{0.3cm}
{\Large\textbf{\authorSecond}}
\vspace*{\fill}
\noindent\makebox[\linewidth]{\rule{\textwidth}{1pt}}
Faculty of \faculty, Blekinge Institute of Technology, 371 79 Karlskrona, Sweden
%\end{center}
\clearpage
} % Back to \pagestyle{plain}
% ----------------------------------------
% THESIS INNER PAGE (please do not change)
% ----------------------------------------
{\pagestyle{empty}
\changepage{3cm}{1cm}{-0.5cm}{-0.5cm}{}{-1.5cm}{}{}{}
{\small
\noindent
This thesis is submitted to the Faculty of \faculty\ at Blekinge Institute
of Technology in partial fulfillment of the requirements for the degree of
\thesisDegree. The thesis is equivalent to \thesisWeeks\ weeks of full-time studies.
\vspace{1cm}
\noindent
The authors declare that they are the sole authors of this thesis and that they have
not used any sources other than those listed in the bibliography and identified as references.
They further declare that they have not submitted this thesis at any other institution to
obtain a degree.
}
\vspace{10cm}
\noindent
\textbf{Contact Information:} \\
Author(s): \\
\authorFirst \\
E-mail: \authorFirstMail \\
\\
\authorSecond \\
E-mail: \authorSecondMail
\vspace{2cm}
\noindent
University advisor: \\
\super \\
Department of \superAffiliation
\vspace*{\fill}
\noindent
\begin{tabular}{@{}p{0.5\textwidth} l c l}
Faculty of \faculty & Internet & : & www.bth.se \\
Blekinge Institute of Technology & Phone & : & +46 455 38 50 00 \\
SE--371 79 Karlskrona, Sweden & Fax & : & +46 455 38 50 57 \\
\end{tabular}
\clearpage
} % Back to \pagestyle{plain}
% ----------------------------------------
\setcounter{page}{1}
%%%%%%%%%%%%%%%%%%%%%%%%
% YOUR TEXTS START HERE
%%%%%%%%%%%%%%%%%%%%%%%%
% ABSTRACT IN ENGLISH
% -------------------
\abstract
Highlights are often the things people remember from sporting events and are memorable even years after the event has taken place. In the world of e-sport, games such as Counter-Strike 2 the statement also stands true. In this study, we use a proof of concept and mixed-methods approach with surveys and interviews to compare our algorithm with an existing highlight tool, and present a new algorithm for creating highlights that take into account many different metrics to calculate the better moments of a game of Counter-Strike 2. We will also look into metrics, how important they are, how players with different knowledge of the game rate them, and how an algorithm can be created to find highlights in Counter-Strike 2. The findings that we uncovered were an alternative algorithm with a slight edge of preference over the existing highlight tool and an unanswered question about preference when it comes to highlights between novice and experienced players.
\\\\
\noindent
\vspace{1cm}
% You can list up to 5 keywords, at most 2 appearing in the title;
% starts 1 line below the abstract.
\noindent
\textbf{Keywords:}
Counter-Strike, Highlight, Algorithm
\cleardoublepage
% -------------------
% ACKNOWLEDGEMENTS
% -------------------
\acknowledgments % Optional, comment out this part if not needed
\noindent
We would like to thank our supervisor \super \space for great support and motivation all through this project
\\\\
We would also like to thank the developer of the parsing library we used, LaihoE, for quick responses to any questions or issues that came up with the parsing of Demo files
\cleardoublepage
% -------------------
% TABLE OF CONTENTS PAGES (generated by LaTeX using the command(s) below)
\setcounter{secnumdepth}{3} % only include sections down to level 3
\tableofcontents
% You should uncomment the commands you need.
\listoffigures % in case you have them
%\listoftables % in case you have them
%\listofalgorithms % in case you have them
\cleardoublepage
\pagestyle{headings}
\pagenumbering{arabic}
\printglossaries
\todo{this needs updating}
%------------------------------
% THE ACTUAL THESIS STARTS HERE
% The chapters below are just suggestions and need to be adapted to your topic.
\include{Chapters/Intoduction}
\include{Chapters/RelatedWorks}
\include{Chapters/Method}
\include{Chapters/Result}
\include{Chapters/Disccussion}
\include{Chapters/Conclusions}
% All references are in a separate file: thesis-refs.bib
\bibliography{thesis-refs}
\bibliographystyle{IEEEtranS}
\appendix
\chapter{Supplemental Information}
\chapter{Highlights}
\begin{table}[]
\begin{tabular}{|l|l|l|}
\hline
& Video A & Video B \\
\hline
Match 1 & \url{https://youtu.be/zmpZS9_SW-c} & \url{https://youtu.be/LUA0e6gtYg0} \\
\hline
Match 2 & \url{https://youtu.be/yvH2JjY5rIk} & \url{https://youtu.be/u9V1NFJhSeM} \\
\hline
Match 3 & \url{https://youtu.be/U39TTOzABAU} & \url{https://youtu.be/t39tntUUexc} \\
\hline
Match 4 & \url{https://youtu.be/ENDgZIIAuvA} & \url{https://youtu.be/1ddl6gxCe0o} \\
\hline
Match 5 & \url{https://youtu.be/ZizA7FQoPo0} & \url{https://youtu.be/Ji-iPLwFqWg} \\
\hline
Match 6 & \url{https://youtu.be/TtVvfJuzz-E} & \url{https://youtu.be/wAGsiR5alYk} \\
\hline
Match 7 & \url{https://youtu.be/6ZU_P21xE4c} & \url{https://youtu.be/QOiW2eAv-00} \\
\hline
Match 8 & \url{https://youtu.be/BjAwMkbuS6U} & \url{https://youtu.be/Xls3RdYjtKk} \\
\hline
Match 9 & \url{https://youtu.be/UStwxeWtSug} & \url{https://youtu.be/HEwJZEkGQ1Q} \\
\hline
\end{tabular}
\end{table}
\chapter{Questions from interviews:}
\normalsize
\begin{itemize}
\item What is the most memorable highlight in Counter-Strike history according to you?
\begin{itemize}
\item What makes it memorable?
\end{itemize}
\item What is your experience with highlights in FPS games?
\item What makes a good highlight?
\item What metrics are important for a highlight?
\item Rate these metrics from 1 to 10:
\begin{itemize}
\item Amount of kills
\item if the player died
\item Weapon used
\item Time between each kill
\item Bullets fired
\item Team side
\item Player position (Distance)
\item Airborne
\item Headshot
\item Damage given
\item HP of the player
\item No scope with scoped weapons
\item Wall banging
\end{itemize}
\item Do you use any highlight tool?
\begin{itemize}
\item What highlight tool?
\item What do you do with the highlights?
\end{itemize}
\end{itemize}
% DO NOT CHANGE BELOW
% This part makes sure that the last page is even with BTH-logo.
% -------------------
\cleardoublepage
\thispagestyle{empty}
\vspace*{\fill}
\clearpage{\thispagestyle{empty}}
\changepage{3cm}{1cm}{-0.5cm}{-0.5cm}{}{-1.5cm}{}{}{}
\vspace*{\fill}
\center
{\bthcsnotextlogo{3cm}}
\\
\noindent\makebox[\linewidth]{\rule{\textwidth}{1pt}}
Faculty of \faculty, Blekinge Institute of Technology, 371 79 Karlskrona, Sweden
% -------------------
\end{document}