Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
1
142GameCenter
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nelson Phillips
142GameCenter
Commits
26772a20
Commit
26772a20
authored
Mar 11, 2019
by
Kyle Malaguit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
autosave
parent
97b8f0e2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
45 deletions
+33
-45
Testings/Kyle's Folder/2048Data.txt
Testings/Kyle's Folder/2048Data.txt
+7
-6
Testings/Kyle's Folder/SLSnake.cpp
Testings/Kyle's Folder/SLSnake.cpp
+1
-1
Testings/Kyle's Folder/main.cpp
Testings/Kyle's Folder/main.cpp
+19
-32
Testings/Kyle's Folder/snakedata.txt
Testings/Kyle's Folder/snakedata.txt
+6
-6
No files found.
Testings/Kyle's Folder/2048Data.txt
View file @
26772a20
NAME SCORE DATE
Kyle2 10000 2/23/19
kyle4 2334 2/26/19
Kyle3 2000 2/24/19
Kyle1 1000 2/22/19
Kyle 100 2/22/19
\ No newline at end of file
NAME SCORE
Mal 54234
BVB 9240
BND 6564
CDS 6544
NKV 5453
KAL 2434
Testings/Kyle's Folder/SLSnake.cpp
View file @
26772a20
...
...
@@ -32,7 +32,7 @@ void SLSnake::updateFile(){
//delete date in snake data file
fout
.
open
(
"snakedata.txt"
,
ofstream
::
out
|
ofstream
::
trunc
);
//update
file
//update
fout
<<
"NAME"
<<
"
\t
"
<<
"SCORE"
<<
"
\t
"
<<
"DATE
\n
"
;
for
(
auto
scoresFull
:
scores
){
fout
<<
scoresFull
.
getName
()
<<
"
\t
"
<<
scoresFull
.
getScore
()
<<
"
\t
"
<<
scoresFull
.
getDate
()
<<
endl
;
...
...
Testings/Kyle's Folder/main.cpp
View file @
26772a20
...
...
@@ -14,39 +14,26 @@ int main(){
SLSnake
second
;
second
.
LoadContainers
();
while
(
userName
!=
"quit"
){
cout
<<
"Enter a username with a length of 3 characters
\n
"
;
while
(
strlen
(
userName
)
!=
3
){
try
{
cin
>>
userName
;
if
(
strlen
(
userName
)
!=
3
){
throw
runtime_error
(
"Invalid Input. Username must be 3 characters long
\n
"
);
}
}
catch
(
runtime_error
&
except
){
cout
<<
except
.
what
();
}
}
//here is a temporary score input system
//in the final project the score will be taken automatically from the system.
int
score
;
cin
>>
score
;
cout
<<
endl
;
//enter date
char
date
[
8
];
cout
<<
"Enter date in --/--/-- format.
\n
ie. 3/9/19
\n
"
;
cin
>>
date
;
Scores
score1
(
userName
,
score
,
date
);
second
.
pushBackNewScoreAndSort
(
score1
);
second
.
updateFile
();
second
.
displayScores
();
cout
<<
"Enter a username with a length of 3 characters
\n
"
;
cin
>>
userName
;
//here is a temporary score input system
//in the final project the score will be taken automatically from the system.
int
score
;
cout
<<
"Enter a score: "
;
cin
>>
score
;
cout
<<
endl
;
//enter date
char
date
[
8
];
cout
<<
"Enter date in --/--/-- format.
\n
ie. 3/9/19
\n
"
;
cin
>>
date
;
Scores
score1
(
userName
,
score
,
date
);
second
.
pushBackNewScoreAndSort
(
score1
);
second
.
updateFile
();
second
.
displayScores
();
}
return
0
;
...
...
Testings/Kyle's Folder/snakedata.txt
View file @
26772a20
NAME SCORE DATE
Mal 54234 3/11/19
BVB 9240 3/9
/19
BND 6564 3/9
/19
CDS 6544 3/9
/19
NKV 5453 3/9
/19
KAL 2434 3/10
/19
cdn 2147483647 ðR
@
nge 654346 3/10
/19
vfd 45365 4/6
/19
vfd 4636 4/12
/19
DVS 3423 3/12
/19
dew 343 4/5
/19
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment