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
f9b2e98e
Commit
f9b2e98e
authored
5 years ago
by
Samuli Virtapohja
Browse files
Options
Downloads
Patches
Plain Diff
add get players
parent
4b1e2eee
No related branches found
No related tags found
3 merge requests
!59
Development to master
,
!36
Development
,
!34
Get player location
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/faction/faction.controller.ts
+1
-1
1 addition, 1 deletion
src/faction/faction.controller.ts
src/tracking/tracking.service.ts
+24
-7
24 additions, 7 deletions
src/tracking/tracking.service.ts
with
25 additions
and
8 deletions
src/faction/faction.controller.ts
+
1
−
1
View file @
f9b2e98e
...
@@ -79,7 +79,7 @@ export class FactionController {
...
@@ -79,7 +79,7 @@ export class FactionController {
// :id is the id of the game, and is needed for GameStates to check the state of the game
// :id is the id of the game, and is needed for GameStates to check the state of the game
@
Put
(
'
join-faction/:id
'
)
@
Put
(
'
join-faction/:id
'
)
@
UseGuards
(
new
AuthGuard
())
@
UseGuards
(
new
AuthGuard
())
@
GameStates
(
'
CREATED
'
)
@
GameStates
(
'
CREATED
'
,
'
STARTED
'
)
@
UsePipes
(
new
ValidationPipe
())
@
UsePipes
(
new
ValidationPipe
())
joinFaction
(
joinFaction
(
@
User
(
'
id
'
)
person
,
@
User
(
'
id
'
)
person
,
...
...
This diff is collapsed.
Click to expand it.
src/tracking/tracking.service.ts
+
24
−
7
View file @
f9b2e98e
...
@@ -19,8 +19,8 @@ export class TrackingService {
...
@@ -19,8 +19,8 @@ export class TrackingService {
async
trackLocation
(
personId
,
gameId
,
trackdata
:
TrackingDTO
)
{
async
trackLocation
(
personId
,
gameId
,
trackdata
:
TrackingDTO
)
{
// find player
// find player
let
gameperson
=
await
this
.
gamepersonrepository
.
findOne
({
let
gameperson
=
await
this
.
gamepersonrepository
.
findOne
({
game
:
gameId
,
where
:
{
game
:
gameId
,
person
:
personId
},
pers
on
:
personId
,
relati
on
s
:
[
'
faction
'
]
,
});
});
if
(
!
gameperson
)
{
if
(
!
gameperson
)
{
throw
new
HttpException
(
throw
new
HttpException
(
...
@@ -51,6 +51,8 @@ export class TrackingService {
...
@@ -51,6 +51,8 @@ export class TrackingService {
// initialize timestamp
// initialize timestamp
trackdata
.
data
[
'
geometry
'
][
'
properties
'
][
'
time
'
]
=
[];
trackdata
.
data
[
'
geometry
'
][
'
properties
'
][
'
time
'
]
=
[];
trackedperson
=
await
this
.
trackingrepository
.
create
(
trackdata
);
trackedperson
=
await
this
.
trackingrepository
.
create
(
trackdata
);
trackedperson
.
faction
=
gameperson
.
faction
;
trackedperson
.
game
=
gameId
;
trackedperson
.
gamepersonId
=
gameperson
;
trackedperson
.
gamepersonId
=
gameperson
;
return
await
this
.
trackingrepository
.
save
(
trackedperson
);
return
await
this
.
trackingrepository
.
save
(
trackedperson
);
}
}
...
@@ -64,18 +66,33 @@ export class TrackingService {
...
@@ -64,18 +66,33 @@ export class TrackingService {
relations
:
[
'
faction
'
],
relations
:
[
'
faction
'
],
});
});
// if user , user is factionleader
let
playerdata
;
// get playerdata
if
(
gameperson
.
faction
)
{
if
(
gameperson
.
faction
)
{
const
playerdata
=
await
this
.
trackingrepository
.
find
({
playerdata
=
await
this
.
trackingrepository
.
find
({
where
:
{
faction
:
gameperson
.
faction
},
where
:
{
faction
:
gameperson
.
faction
},
relations
:
[
'
faction
'
,
'
gamepersonId
'
],
});
});
return
playerdata
;
}
else
{
}
else
{
const
playerdata
=
await
this
.
trackingrepository
.
find
({
playerdata
=
await
this
.
trackingrepository
.
find
({
where
:
{
game
:
gameId
},
where
:
{
game
:
gameId
},
relations
:
[
'
faction
'
,
'
gamepersonId
'
],
});
});
return
'
admin
'
;
}
}
// parse data
const
currentdata
=
await
Promise
.
all
(
playerdata
.
map
(
async
player
=>
{
return
{
gamepersonId
:
player
[
'
gamepersonId
'
][
'
gamepersonId
'
],
gamepersonRole
:
player
[
'
gamepersonId
'
][
'
role
'
],
factionId
:
player
[
'
faction
'
][
'
factionId
'
],
coordinates
:
player
[
'
data
'
][
'
geometry
'
][
'
coordinates
'
].
pop
(),
};
}),
);
return
currentdata
;
}
}
private
async
mapFunction
(
data
):
Promise
<
Number
>
{
private
async
mapFunction
(
data
):
Promise
<
Number
>
{
...
...
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