Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ehasa-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
WIMMA Lab 2019
Overflow
ehasa-backend
Commits
1d21c6ef
Commit
1d21c6ef
authored
5 years ago
by
L4168
Browse files
Options
Downloads
Patches
Plain Diff
playerdata returns username&role
parent
375c01f0
No related branches found
Branches containing commit
No related tags found
3 merge requests
!59
Development to master
,
!54
Development to testing
,
!49
Replay update
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/replay/replay.service.ts
+17
-14
17 additions, 14 deletions
src/replay/replay.service.ts
with
17 additions
and
14 deletions
src/replay/replay.service.ts
+
17
−
14
View file @
1d21c6ef
...
@@ -54,16 +54,19 @@ export class ReplayService {
...
@@ -54,16 +54,19 @@ export class ReplayService {
async
getPlayers
(
gameId
)
{
async
getPlayers
(
gameId
)
{
let
playerdata
=
await
this
.
trackingRepository
.
find
({
let
playerdata
=
await
this
.
trackingRepository
.
find
({
where
:
{
game
:
gameId
},
where
:
{
game
:
gameId
},
relations
:
[
'
faction
'
,
'
gamepersonId
'
],
relations
:
[
'
faction
'
,
'
gamepersonId
'
,
'
gamepersonId.person
'
],
});
});
// parse data
// parse data
const
currentdata
=
await
Promise
.
all
(
const
currentdata
=
await
Promise
.
all
(
playerdata
.
map
(
async
player
=>
{
playerdata
.
map
(
async
player
=>
{
player
[
'
data
'
][
0
][
'
info
'
]
=
[
player
.
data
.
map
(
async
data
=>
{
{
key
:
'
icon
'
,
value
:
player
.
icon
},
data
[
'
info
'
]
=
[
{
key
:
'
colour
'
,
value
:
player
.
faction
.
colour
},
{
key
:
'
icon
'
,
value
:
player
.
icon
},
];
{
key
:
'
colour
'
,
value
:
player
.
faction
.
colour
},
{
key
:
'
name
'
,
value
:
player
.
gamepersonId
.
person
.
name
},
{
key
:
'
role
'
,
value
:
player
.
gamepersonId
.
role
},
];
});
return
player
[
'
data
'
];
return
player
[
'
data
'
];
}),
}),
);
);
...
@@ -79,11 +82,11 @@ export class ReplayService {
...
@@ -79,11 +82,11 @@ export class ReplayService {
relations
:
[
'
factions
'
],
relations
:
[
'
factions
'
],
});
});
const
groups
=
await
this
.
factionService
.
showGroups
(
const
groups
=
await
this
.
factionService
.
showGroups
(
game
.
factions
[
0
].
factionId
,
game
.
factions
[
1
].
factionId
,
);
);
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
let
res
=
await
this
.
userService
.
register
({
let
res
=
await
this
.
userService
.
register
({
name
:
'
asdf
'
+
i
,
name
:
'
asdf
asa
'
+
i
,
password
:
'
asd
'
,
password
:
'
asd
'
,
});
});
let
user
=
await
jwt
.
verify
(
res
.
token
,
process
.
env
.
SECRET
);
let
user
=
await
jwt
.
verify
(
res
.
token
,
process
.
env
.
SECRET
);
...
@@ -98,8 +101,8 @@ export class ReplayService {
...
@@ -98,8 +101,8 @@ export class ReplayService {
game: gameId,
game: gameId,
}); */
}); */
let
gameperson
=
await
this
.
factionService
.
joinFaction
(
user
[
'
id
'
],
{
let
gameperson
=
await
this
.
factionService
.
joinFaction
(
user
[
'
id
'
],
{
factionId
:
game
.
factions
[
0
].
factionId
,
factionId
:
game
.
factions
[
1
].
factionId
,
factionPassword
:
game
.
factions
[
0
].
factionPassword
,
factionPassword
:
game
.
factions
[
1
].
factionPassword
,
game
:
gameId
,
game
:
gameId
,
});
});
await
this
.
factionService
.
joinGroup
(
gameperson
,
{
await
this
.
factionService
.
joinGroup
(
gameperson
,
{
...
@@ -109,9 +112,9 @@ export class ReplayService {
...
@@ -109,9 +112,9 @@ export class ReplayService {
}
}
let
date
:
number
=
Date
.
now
();
let
date
:
number
=
Date
.
now
();
let
y1
=
25.7
;
let
y1
=
25.7
;
let
x1
=
62.
3
;
let
x1
=
62.
0
;
let
y2
=
25.75
;
let
y2
=
25.75
;
let
x2
=
62.
3
5
;
let
x2
=
62.
0
5
;
for
(
let
i
=
1
;
i
<
6
;
i
++
)
{
for
(
let
i
=
1
;
i
<
6
;
i
++
)
{
let
x
=
0
;
let
x
=
0
;
date
+=
10000
;
date
+=
10000
;
...
@@ -120,11 +123,11 @@ export class ReplayService {
...
@@ -120,11 +123,11 @@ export class ReplayService {
x
++
;
x
++
;
let
dataObject
=
{
let
dataObject
=
{
lat
:
lat
:
x
<
1
0
x
<
5
0
?
x1
+
((
i
+
Math
.
random
())
*
5
)
/
2000
?
x1
+
((
i
+
Math
.
random
())
*
5
)
/
2000
:
x2
-
((
i
+
Math
.
random
())
*
5
)
/
2000
,
:
x2
-
((
i
+
Math
.
random
())
*
5
)
/
2000
,
lng
:
lng
:
x
<
1
0
x
<
5
0
?
y1
+
((
i
+
Math
.
random
())
*
5
)
/
2000
?
y1
+
((
i
+
Math
.
random
())
*
5
)
/
2000
:
y2
-
((
i
+
Math
.
random
())
*
5
)
/
2000
,
:
y2
-
((
i
+
Math
.
random
())
*
5
)
/
2000
,
time
:
date
,
time
:
date
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment