Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
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
nanahira
ygopro
Commits
01cf7051
Commit
01cf7051
authored
Aug 26, 2021
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'patch-ccg' of github.com:Fluorohydride/ygopro
parents
d21e3fd1
efbaa3ef
Pipeline
#5062
canceled with stages
in 6 minutes and 47 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
gframe/deck_manager.cpp
gframe/deck_manager.cpp
+9
-9
No files found.
gframe/deck_manager.cpp
View file @
01cf7051
...
...
@@ -73,15 +73,15 @@ const std::unordered_map<int, int>* DeckManager::GetLFListContent(int lfhash) {
return
nullptr
;
}
int
DeckManager
::
IsGameRuleDisallowed
(
unsigned
char
hostInfoRule
,
unsigned
int
cardOt
)
{
bool
allow_ocg
=
hostInfoRule
==
0
||
hostInfoRule
==
4
||
hostInfoRule
==
2
;
// OCG can be used in OCG and OT duels
if
(
hostInfoRule
!=
4
)
{
// non-CCG
bool
allow_ocg
=
hostInfoRule
==
0
||
hostInfoRule
==
2
;
// OCG can be used in OCG and OT duels
bool
allow_tcg
=
hostInfoRule
==
1
||
hostInfoRule
==
2
;
// TCG can be used in TCG and OT duels
bool
allow_ccg
=
hostInfoRule
==
0
||
hostInfoRule
==
4
||
hostInfoRule
==
2
;
// CCG can be used in OCG, CCG and OT duels
if
(
!
allow_ocg
&&
((
cardOt
&
0x3
)
==
0x1
))
return
DECKERROR_OCGONLY
;
if
(
!
allow_tcg
&&
((
cardOt
&
0x3
)
==
0x2
))
return
DECKERROR_TCGONLY
;
if
(
hostInfoRule
==
4
&&
!
(
cardOt
&
0x8
)
&&
(
cardOt
&
0x3
))
{
// in CCG duels, cards labeled with ither OCG or TCG, but not CCG, would not be allowed.
if
(
cardOt
&
0x3
==
0x2
)
{
}
else
if
(
(
cardOt
&
0x8
)
&&
(
cardOt
&
0x3
))
{
// in CCG duels, cards labeled with ither OCG or TCG, but not CCG, would not be allowed.
if
(
(
cardOt
&
0x3
)
==
0x2
)
{
return
DECKERROR_TCGONLY
;
}
else
{
return
DECKERROR_OCGONLY
;
...
...
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