Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro-core
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
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
ygopro-core
Commits
df431baf
Commit
df431baf
authored
Mar 04, 2019
by
salix5
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
control-changing contunous effect
Now these effects does not use EFFECT_FLAG_SINGLE_RANGE anymore.
parent
3a099257
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
card.cpp
card.cpp
+2
-1
effect.cpp
effect.cpp
+2
-2
No files found.
card.cpp
View file @
df431baf
...
@@ -2730,6 +2730,7 @@ effect* card::is_affected_by_effect(int32 code, card* target) {
...
@@ -2730,6 +2730,7 @@ effect* card::is_affected_by_effect(int32 code, card* target) {
}
}
return
0
;
return
0
;
}
}
// return the last control-changing continous effect
effect
*
card
::
check_control_effect
()
{
effect
*
card
::
check_control_effect
()
{
effect
*
ret_effect
=
0
;
effect
*
ret_effect
=
0
;
for
(
auto
&
pcard
:
equiping_cards
)
{
for
(
auto
&
pcard
:
equiping_cards
)
{
...
@@ -2753,7 +2754,7 @@ effect* card::check_control_effect() {
...
@@ -2753,7 +2754,7 @@ effect* card::check_control_effect() {
auto
rg
=
single_effect
.
equal_range
(
EFFECT_SET_CONTROL
);
auto
rg
=
single_effect
.
equal_range
(
EFFECT_SET_CONTROL
);
for
(;
rg
.
first
!=
rg
.
second
;
++
rg
.
first
)
{
for
(;
rg
.
first
!=
rg
.
second
;
++
rg
.
first
)
{
effect
*
peffect
=
rg
.
first
->
second
;
effect
*
peffect
=
rg
.
first
->
second
;
if
(
!
peffect
->
is_flag
(
EFFECT_FLAG_
SINGLE_RANG
E
))
if
(
!
peffect
->
is_flag
(
EFFECT_FLAG_
OWNER_RELAT
E
))
continue
;
continue
;
if
(
!
ret_effect
||
peffect
->
id
>
ret_effect
->
id
)
if
(
!
ret_effect
||
peffect
->
id
>
ret_effect
->
id
)
ret_effect
=
peffect
;
ret_effect
=
peffect
;
...
...
effect.cpp
View file @
df431baf
...
@@ -545,7 +545,7 @@ int32 effect::is_chainable(uint8 tp) {
...
@@ -545,7 +545,7 @@ int32 effect::is_chainable(uint8 tp) {
return
TRUE
;
return
TRUE
;
}
}
//return: this can be reset by reset_level or not
//return: this can be reset by reset_level or not
//RESET_CODE can only reset single effects without EFFECT_FLAG_SINGLE_RANGE
//RESET_CODE can only reset single effects without EFFECT_FLAG_SINGLE_RANGE
, EFFECT_FLAG_OWNER_RELATE
//RESET_DISABLE is valid only when owner == handler
//RESET_DISABLE is valid only when owner == handler
int32
effect
::
reset
(
uint32
reset_level
,
uint32
reset_type
)
{
int32
effect
::
reset
(
uint32
reset_level
,
uint32
reset_type
)
{
switch
(
reset_type
)
{
switch
(
reset_type
)
{
...
@@ -578,7 +578,7 @@ int32 effect::reset(uint32 reset_level, uint32 reset_type) {
...
@@ -578,7 +578,7 @@ int32 effect::reset(uint32 reset_level, uint32 reset_type) {
}
}
case
RESET_CODE
:
{
case
RESET_CODE
:
{
return
(
code
==
reset_level
)
&&
(
type
&
EFFECT_TYPE_SINGLE
)
&&
!
(
type
&
EFFECT_TYPE_ACTIONS
)
return
(
code
==
reset_level
)
&&
(
type
&
EFFECT_TYPE_SINGLE
)
&&
!
(
type
&
EFFECT_TYPE_ACTIONS
)
&&
!
is_flag
(
EFFECT_FLAG_SINGLE_RANGE
);
&&
!
is_flag
(
EFFECT_FLAG_SINGLE_RANGE
)
&&
!
is_flag
(
EFFECT_FLAG_OWNER_RELATE
)
;
break
;
break
;
}
}
case
RESET_COPY
:
{
case
RESET_COPY
:
{
...
...
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