Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
R
rd-ygopro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
苍蓝
rd-ygopro
Commits
e76af71b
Commit
e76af71b
authored
Dec 21, 2015
by
salix5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PHASE_BATTLE_START
parent
60d0cc43
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
gframe/duelclient.cpp
gframe/duelclient.cpp
+1
-1
gframe/single_duel.cpp
gframe/single_duel.cpp
+1
-1
gframe/single_mode.cpp
gframe/single_mode.cpp
+1
-1
gframe/tag_duel.cpp
gframe/tag_duel.cpp
+1
-1
ocgcore
ocgcore
+1
-1
script
script
+1
-1
No files found.
gframe/duelclient.cpp
View file @
e76af71b
...
...
@@ -1848,7 +1848,7 @@ int DuelClient::ClientAnalyze(char * msg, unsigned int len) {
return
true
;
}
case
MSG_NEW_PHASE
:
{
int
phase
=
(
unsigned
char
)
BufferIO
::
ReadInt
8
(
pbuf
);
int
phase
=
(
unsigned
char
)
BufferIO
::
ReadInt
16
(
pbuf
);
mainGame
->
btnDP
->
setVisible
(
false
);
mainGame
->
btnSP
->
setVisible
(
false
);
mainGame
->
btnM1
->
setVisible
(
false
);
...
...
gframe/single_duel.cpp
View file @
e76af71b
...
...
@@ -847,7 +847,7 @@ int SingleDuel::Analyze(char* msgbuffer, unsigned int len) {
break
;
}
case
MSG_NEW_PHASE
:
{
pbuf
+
+
;
pbuf
+
=
2
;
NetServer
::
SendBufferToPlayer
(
players
[
0
],
STOC_GAME_MSG
,
offset
,
pbuf
-
offset
);
NetServer
::
ReSendToPlayer
(
players
[
1
]);
for
(
auto
oit
=
observers
.
begin
();
oit
!=
observers
.
end
();
++
oit
)
...
...
gframe/single_mode.cpp
View file @
e76af71b
...
...
@@ -335,7 +335,7 @@ bool SingleMode::SinglePlayAnalyze(char* msg, unsigned int len) {
break
;
}
case
MSG_NEW_PHASE
:
{
pbuf
+
+
;
pbuf
+
=
2
;
DuelClient
::
ClientAnalyze
(
offset
,
pbuf
-
offset
);
SinglePlayRefresh
();
break
;
...
...
gframe/tag_duel.cpp
View file @
e76af71b
...
...
@@ -808,7 +808,7 @@ int TagDuel::Analyze(char* msgbuffer, unsigned int len) {
break
;
}
case
MSG_NEW_PHASE
:
{
pbuf
+
+
;
pbuf
+
=
2
;
NetServer
::
SendBufferToPlayer
(
players
[
0
],
STOC_GAME_MSG
,
offset
,
pbuf
-
offset
);
NetServer
::
ReSendToPlayer
(
players
[
1
]);
NetServer
::
ReSendToPlayer
(
players
[
2
]);
...
...
ocgcore
@
05481fe5
Subproject commit
e928c4f94a4848fa0b505836f53811683f53c84b
Subproject commit
05481fe59a3e5f508195156c224fd3eba32f23f9
script
@
b84b75a7
Subproject commit
ecb824addcbadba2b0f2c063fa5b635759e527bb
Subproject commit
b84b75a7e0f978bcef785f21e0c95344e6a22ec3
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