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
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
perfectdicky
YGOProUnity_V2
Commits
7eb139ce
Commit
7eb139ce
authored
Apr 08, 2019
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update RockPaperScissors (thanks to edo9300)
parent
9ecc9e8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
12 deletions
+41
-12
Assets/SibylSystem/Ocgcore/Ocgcore.cs
Assets/SibylSystem/Ocgcore/Ocgcore.cs
+41
-12
No files found.
Assets/SibylSystem/Ocgcore/Ocgcore.cs
View file @
7eb139ce
...
@@ -1793,17 +1793,21 @@ public class Ocgcore : ServantWithCardDescription
...
@@ -1793,17 +1793,21 @@ public class Ocgcore : ServantWithCardDescription
break;
break;
case GameMessage.HandResult:
case GameMessage.HandResult:
data = r.ReadByte();
data = r.ReadByte();
int
data1
=
data
&
0x3
;
int res1 = (data & 0x3) - 1;
int
data2
=
(
data
>>
2
)
&
0x3
;
int res2 = ((data >> 2) & 0x3) - 1;
string
scissors
=
InterString
.
Get
(
"剪刀"
);
string
rock
=
InterString
.
Get
(
"石头"
);
string
paper
=
InterString
.
Get
(
"布"
);
string
res1
=
(
data1
==
1
?
scissors
:
(
data1
==
2
?
paper
:
rock
));
string
res2
=
(
data2
==
1
?
scissors
:
(
data2
==
2
?
paper
:
rock
));
if (isFirst)
if (isFirst)
printDuelLog
(
InterString
.
Get
(
"猜拳结果:你好像出了"
)
+
res2
+
InterString
.
Get
(
",对方好像出了"
)
+
res1
);
{
Program.I().new_ui_handShower.GetComponent<handShower>().me = res1;
Program.I().new_ui_handShower.GetComponent<handShower>().op = res2;
}
else
else
printDuelLog
(
InterString
.
Get
(
"猜拳结果:你好像出了"
)
+
res1
+
InterString
.
Get
(
",对方好像出了"
)
+
res2
);
{
Program.I().new_ui_handShower.GetComponent<handShower>().me = res2;
Program.I().new_ui_handShower.GetComponent<handShower>().op = res1;
}
GameObject handres = create(Program.I().new_ui_handShower, Vector3.zero, Vector3.zero, false, Program.ui_main_2d);
destroy(handres, 10f);
Sleep(60);
break;
break;
case GameMessage.Attack:
case GameMessage.Attack:
game_card = GCS_cardGet(r.ReadGPS(), false);
game_card = GCS_cardGet(r.ReadGPS(), false);
...
@@ -4168,9 +4172,20 @@ public class Ocgcore : ServantWithCardDescription
...
@@ -4168,9 +4172,20 @@ public class Ocgcore : ServantWithCardDescription
}
}
break;
break;
case GameMessage.RockPaperScissors:
case GameMessage.RockPaperScissors:
binaryMaster
=
new
BinaryMaster
();
if (inIgnoranceReplay() || inTheWorld())
binaryMaster
.
writer
.
Write
(
UnityEngine
.
Random
.
Range
(
0
,
2
));
{
sendReturn
(
binaryMaster
.
get
());
break;
}
if (condition == Condition.record)
{
Sleep(60);
}
destroy(waitObject, 0, false, true);
player = localPlayer(r.ReadByte());
RMSshow_tp("RockPaperScissors"
, new messageSystemValue { hint = "jiandao", value = "1" }
, new messageSystemValue { hint = "shitou", value = "2" }
, new messageSystemValue { hint = "bu", value = "3" });
break;
break;
case GameMessage.ConfirmDecktop:
case GameMessage.ConfirmDecktop:
player = localPlayer(r.ReadByte());
player = localPlayer(r.ReadByte());
...
@@ -8803,6 +8818,20 @@ public class Ocgcore : ServantWithCardDescription
...
@@ -8803,6 +8818,20 @@ public class Ocgcore : ServantWithCardDescription
}
}
}
}
break;
break;
case "RockPaperScissors":
{
try
{
binaryMaster = new BinaryMaster();
binaryMaster.writer.Write(Int32.Parse(result[0].value));
sendReturn(binaryMaster.get());
}
catch (Exception e)
{
Debug.Log(e);
}
}
break;
}
}
}
}
...
...
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