Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
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
Main
Synchronet
Commits
a7443880
Commit
a7443880
authored
12 years ago
by
mcmlxxix
Browse files
Options
Downloads
Patches
Plain Diff
center score screen, fix player sync issue
parent
8032fc17
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
xtrn/synchronetris/game.js
+17
-7
17 additions, 7 deletions
xtrn/synchronetris/game.js
xtrn/synchronetris/lobby.js
+1
-1
1 addition, 1 deletion
xtrn/synchronetris/lobby.js
with
18 additions
and
8 deletions
xtrn/synchronetris/game.js
+
17
−
7
View file @
a7443880
...
...
@@ -12,13 +12,13 @@ function playGame(profile,game) {
/* directional constants */
direction
=
{
UP
:
0
,
DOWN
:
1
,
LEFT
:
2
,
RIGHT
:
3
};
client
.
subscribe
(
game_id
,
"
metadata.
"
+
game
.
gameNumber
);
last_update
=
Date
.
now
();
gameFrame
=
new
Frame
(
undefined
,
undefined
,
undefined
,
undefined
,
undefined
,
frame
);
gameFrame
.
open
();
initPlayers
();
pause
=
settings
.
pause
;
queue
=
client
.
read
(
game_id
,
"
metadata.
"
+
game
.
gameNumber
+
"
.queue
"
,
1
);
client
.
subscribe
(
game_id
,
"
metadata.
"
+
game
.
gameNumber
);
drawScore
(
localPlayer
);
}
function
close
()
{
...
...
@@ -192,6 +192,13 @@ function playGame(profile,game) {
players
[
p
].
open
();
index
++
;
}
var
online
=
onlinePlayers
();
for
each
(
var
p
in
online
)
{
if
(
p
.
nick
==
profile
.
name
)
continue
;
if
(
players
[
p
.
nick
])
players
[
p
.
nick
].
ready
=
true
;
}
}
function
getMatrix
(
h
,
w
)
{
var
grid
=
new
Array
(
h
);
...
...
@@ -298,18 +305,16 @@ function playGame(profile,game) {
drawBoard
(
p
);
break
;
default
:
log
(
LOG_WARNING
,
"
Unknown tetris data type received
"
);
log
(
LOG_WARNING
,
"
packet:
"
+
data
.
toSource
());
break
;
}
}
else
if
(
packet
.
oper
==
"
SUBSCRIBE
"
)
{
if
(
players
[
packet
.
nick
])
players
[
packet
.
nick
].
ready
=
true
;
if
(
players
[
packet
.
data
.
nick
])
players
[
packet
.
data
.
nick
].
ready
=
true
;
}
else
if
(
packet
.
oper
==
"
UNSUBSCRIBE
"
)
{
if
(
players
[
packet
.
nick
])
players
[
packet
.
nick
].
ready
=
false
;
if
(
players
[
packet
.
data
.
nick
])
players
[
packet
.
data
.
nick
].
ready
=
false
;
}
}
...
...
@@ -951,6 +956,11 @@ function playGame(profile,game) {
}
/* other shit */
function
onlinePlayers
()
{
var
online
=
client
.
who
(
game_id
,
"
metadata.
"
+
game
.
gameNumber
);
log
(
online
.
toSource
());
return
online
;
}
function
handleExit
()
{
if
(
game
.
status
==
status
.
PLAYING
)
{
var
f
=
showMessage
(
"
\
1c
\
1hQuit game?
\
1n
\
1c[
\
1hN
\
1n
\
1c,
\
1hy
\
1n
\
1c]
"
);
...
...
This diff is collapsed.
Click to expand it.
xtrn/synchronetris/lobby.js
+
1
−
1
View file @
a7443880
...
...
@@ -271,7 +271,7 @@ var lobby=(function() {
/* show rankings */
function
showScores
()
{
var
scoreFrame
=
new
Frame
(
1
6
,
6
,
57
,
14
,
BG_BLUE
+
YELLOW
,
frame
);
var
scoreFrame
=
new
Frame
(
1
2
,
6
,
57
,
14
,
BG_BLUE
+
YELLOW
,
frame
);
var
count
=
0
;
var
scores_per_page
=
10
;
var
list
=
sortScores
(
"
score
"
);
...
...
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