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
d8087eec
Commit
d8087eec
authored
Aug 22, 2019
by
18신대성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
대기실 카운트 문제 해결
parent
746de906
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
GameServer.js
GameServer.js
+6
-4
Client.js
js/Client.js
+1
-1
No files found.
GameServer.js
View file @
d8087eec
...
...
@@ -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,8 @@ class GameRoom
{
if
(
this
.
currentPhase
===
GameServer
.
Phase
.
READY
)
{
this
.
endTime
=
Date
.
now
()
+
30000
;
// 방 대기 시간
this
.
countStartTime
=
Date
.
now
();
this
.
endTime
=
10000
;
// 방 대기 시간
this
.
announceToRoom
(
'
setRoomCount
'
,
{
isEnable
:
true
,
endTime
:
this
.
endTime
,
playerCount
:
this
.
currentPlayer
.
length
,
...
...
@@ -153,6 +154,7 @@ class GameRoom
}
else
if
(
this
.
currentPhase
===
GameServer
.
Phase
.
COUNT
)
{
this
.
endTime
=
this
.
endTime
-
(
Time
.
now
()
-
this
.
countStartTime
);
this
.
announceToRoom
(
'
setRoomCount
'
,
{
isEnable
:
true
,
endTime
:
this
.
endTime
,
playerCount
:
this
.
currentPlayer
.
length
,
...
...
@@ -266,8 +268,8 @@ class GameRoom
this
.
startTime
=
Date
.
now
();
setTimeout
(
function
()
{
checkPhase
(
Date
.
now
());
},
6000
);
this
.
checkPhase
(
Date
.
now
());
}
.
bind
(
this
)
,
6000
);
}
checkPhase
(
checkTime
)
...
...
js/Client.js
View file @
d8087eec
...
...
@@ -70,7 +70,7 @@ socket.on('setRoomCount', function(msg)
setTimeout
(
function
()
{
ScenesData
.
roomScene
.
isCounting
=
msg
.
isEnable
;
ScenesData
.
roomScene
.
endTime
=
msg
.
endTime
;
ScenesData
.
roomScene
.
endTime
=
Date
.
now
()
+
msg
.
endTime
;
ScenesData
.
roomScene
.
peopleCount
=
msg
.
playerCount
;
if
(
msg
.
isEnter
)
// generate character
...
...
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