Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sejong25
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Tear of Sejong
sejong25
Commits
54451891
Commit
54451891
authored
Aug 22, 2019
by
18손재민
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'server'
parents
6243e03f
bc9e654c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
15 deletions
+11
-15
GameServer.js
GameServer.js
+2
-3
Client.js
js/Client.js
+1
-1
server.js
server.js
+8
-11
No files found.
GameServer.js
View file @
54451891
...
...
@@ -82,7 +82,7 @@ class GameRoom
{
this
.
roomId
=
GameServer
.
getRoomNumber
();
this
.
roomIndex
=
-
1
;
this
.
startCount
=
5
;
this
.
startCount
=
2
;
this
.
maxPlayer
=
100
;
this
.
nextRank
=
100
;
...
...
@@ -143,7 +143,7 @@ class GameRoom
{
if
(
this
.
currentPhase
===
GameServer
.
Phase
.
READY
)
{
this
.
endTime
=
Date
.
now
()
+
3
0000
;
// 방 대기 시간
this
.
endTime
=
Date
.
now
()
+
1
0000
;
// 방 대기 시간
this
.
announceToRoom
(
'
setRoomCount
'
,
{
isEnable
:
true
,
endTime
:
this
.
endTime
,
playerCount
:
this
.
currentPlayer
.
length
,
...
...
@@ -190,7 +190,6 @@ class GameRoom
isEnter
:
false
,
player
:
this
.
currentPlayer
[
i
]
});
this
.
currentPhase
=
GameServer
.
Phase
.
READY
;
this
.
refreshRoom
();
}
else
this
.
announceToRoom
(
'
setRoomCount
'
,
{
...
...
js/Client.js
View file @
54451891
...
...
@@ -85,7 +85,7 @@ socket.on('setRoomCount', function(msg)
}
ScenesData
.
roomScene
.
players
.
push
(
playerSet
);
}
else
// remove character
else
if
(
msg
.
id
!=
-
1
)
// remove character
{
let
idx
=
ScenesData
.
roomScene
.
players
.
findIndex
(
function
(
element
)
{
...
...
server.js
View file @
54451891
...
...
@@ -110,6 +110,7 @@ io.on('connection', function(socket)
socket
.
playerData
.
currentRoom
.
aliveCount
--
;
//console.log('counted, ' + socket.playerData.currentRoom.aliveCount);
socket
.
playerData
.
playingData
.
isAlive
=
true
;
if
(
socket
.
playerData
.
currentRoom
.
currentPhase
!=
GameServer
.
Phase
.
COUNT
)
socket
.
disconnect
();
if
(
socket
.
playerData
.
currentRoom
.
aliveCount
===
0
&&
socket
.
playerData
.
currentRoom
.
currentPlayer
.
length
>=
socket
.
playerData
.
currentRoom
.
startCount
)
{
socket
.
playerData
.
currentRoom
.
startRoom
();
...
...
@@ -121,25 +122,21 @@ io.on('connection', function(socket)
room
.
startTimer
=
setTimeout
(
function
()
{
let
deads
=
room
.
currentPlayer
.
filter
(
element
=>
!
element
.
isAlive
);
if
(
room
.
aliveCount
!=
0
&&
room
.
currentPlayer
.
length
-
deads
.
length
>=
room
.
startCount
)
deads
.
forEach
(
function
(
element
)
{
room
.
currentSocket
[
element
.
index
].
disconnect
();
room
.
exitRoom
(
element
.
id
);
});
if
(
room
.
aliveCount
!=
0
&&
room
.
currentPlayer
.
length
>=
room
.
startCount
)
{
console
.
error
(
new
Date
().
toLocaleTimeString
(
'
ko-KR
'
)
+
'
[ROOM#
'
+
room
.
roomId
+
'
] FORCE START!!!
'
);
room
.
startRoom
();
deads
.
forEach
(
function
(
element
)
{
element
.
defeat
();
});
clearTimeout
(
room
.
startTimer
);
}
else
if
(
deads
.
length
>
0
)
{
deads
.
forEach
(
function
(
element
)
{
room
.
currentSocket
[
element
.
index
].
disconnect
();
room
.
exitRoom
(
element
.
id
);
});
room
.
refreshRoom
();
}
clearTimeout
(
room
.
startTimer
);
},
2000
);
}
});
...
...
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