Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOProUnity_V2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
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
MyCard
YGOProUnity_V2
Commits
5165fc04
Commit
5165fc04
authored
Apr 05, 2019
by
nanahira
Committed by
mercury233
Apr 05, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improve reconnecting (
#1
)
parent
a1cebbd1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
5 deletions
+12
-5
Assets/SibylSystem/Ocgcore/Ocgcore.cs
Assets/SibylSystem/Ocgcore/Ocgcore.cs
+6
-4
Assets/SibylSystem/Room/Room.cs
Assets/SibylSystem/Room/Room.cs
+6
-1
No files found.
Assets/SibylSystem/Ocgcore/Ocgcore.cs
View file @
5165fc04
...
...
@@ -1302,6 +1302,7 @@ public class Ocgcore : ServantWithCardDescription
logicalClearChain
();
surrended
=
false
;
Program
.
I
().
room
.
duelEnded
=
false
;
Program
.
I
().
room
.
joinWithReconnect
=
false
;
turns
=
0
;
deckReserved
=
false
;
keys
.
Insert
(
0
,
currentMessageIndex
);
...
...
@@ -1366,7 +1367,7 @@ public class Ocgcore : ServantWithCardDescription
gameField
.
currentPhase
=
GameField
.
ph
.
dp
;
result
=
duelResult
.
disLink
;
deckReserved
=
false
;
isFirst
=
true
;
//
isFirst = true;
gameInfo
.
swaped
=
false
;
logicalClearChain
();
surrended
=
false
;
...
...
@@ -3441,10 +3442,10 @@ public class Ocgcore : ServantWithCardDescription
if
(
finishable
)
{
gameInfo
.
addHashedButton
(
"sendSelected"
,
0
,
superButtonType
.
yes
,
InterString
.
Get
(
"完成选择@ui"
));
}
}
realizeCardsForSelect
();
cardsSelected
.
Clear
();
if
(
ES_selectHint
!=
""
)
if
(
ES_selectHint
!=
""
)
ES_selectUnselectHint
=
ES_selectHint
;
if
(
ES_selectUnselectHint
!=
""
)
{
...
...
@@ -8816,8 +8817,9 @@ public class Ocgcore : ServantWithCardDescription
public
Dictionary
<
int
,
int
>
sideReference
=
new
Dictionary
<
int
,
int
>();
void
onDuelResultConfirmed
()
public
void
onDuelResultConfirmed
()
{
Program
.
I
().
room
.
joinWithReconnect
=
false
;
if
(
Program
.
I
().
room
.
duelEnded
==
true
||
surrended
||
TcpHelper
.
tcpClient
==
null
||
TcpHelper
.
tcpClient
.
Connected
==
false
)
{
...
...
Assets/SibylSystem/Room/Room.cs
View file @
5165fc04
...
...
@@ -308,6 +308,7 @@ public class Room : WindowServantSP
Program
.
I
().
ocgcore
.
returnServant
=
Program
.
I
().
selectServer
;
needSide
=
false
;
joinWithReconnect
=
true
;
if
(
Program
.
I
().
deckManager
.
isShowed
)
{
Program
.
I
().
deckManager
.
hide
();
...
...
@@ -384,12 +385,16 @@ public class Room : WindowServantSP
public
bool
needSide
=
false
;
public
bool
joinWithReconnect
=
false
;
public
void
StocMessage_ChangeSide
(
BinaryReader
r
)
{
Program
.
I
().
ocgcore
.
surrended
=
false
;
Program
.
I
().
ocgcore
.
returnServant
=
Program
.
I
().
deckManager
;
needSide
=
true
;
if
(
Program
.
I
().
ocgcore
.
condition
!=
Ocgcore
.
Condition
.
duel
||
joinWithReconnect
)
{
//Change side when reconnect
Program
.
I
().
ocgcore
.
onDuelResultConfirmed
();
}
}
GameObject
handres
=
null
;
...
...
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