Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
W
windbot
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
alstroemeria-silentlove
windbot
Commits
b56e66dc
Commit
b56e66dc
authored
Apr 26, 2019
by
mercury233
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move GetMatchingCards, add GetMatchingCardsCount
parent
c2a94e8e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
16 deletions
+26
-16
Game/AI/AIUtil.cs
Game/AI/AIUtil.cs
+0
-5
Game/AI/CardContainer.cs
Game/AI/CardContainer.cs
+15
-0
Game/AI/Decks/RainbowExecutor.cs
Game/AI/Decks/RainbowExecutor.cs
+11
-11
No files found.
Game/AI/AIUtil.cs
View file @
b56e66dc
...
@@ -219,11 +219,6 @@ namespace WindBot.Game.AI
...
@@ -219,11 +219,6 @@ namespace WindBot.Game.AI
return
null
;
return
null
;
}
}
public
IList
<
ClientCard
>
GetMatchingCards
(
IList
<
ClientCard
>
cards
,
Func
<
ClientCard
,
bool
>
filter
)
{
return
cards
.
Where
(
card
=>
card
!=
null
&&
filter
(
card
)).
ToList
();
}
public
ClientCard
GetPZone
(
int
player
,
int
id
)
public
ClientCard
GetPZone
(
int
player
,
int
id
)
{
{
if
(
Duel
.
IsNewRule
)
if
(
Duel
.
IsNewRule
)
...
...
Game/AI/CardContainer.cs
View file @
b56e66dc
...
@@ -116,6 +116,21 @@ namespace WindBot.Game.AI
...
@@ -116,6 +116,21 @@ namespace WindBot.Game.AI
return
cards
.
FirstOrDefault
(
card
=>
card
?.
Data
!=
null
&&
card
.
IsFaceup
()
&&
filter
.
Invoke
(
card
));
return
cards
.
FirstOrDefault
(
card
=>
card
?.
Data
!=
null
&&
card
.
IsFaceup
()
&&
filter
.
Invoke
(
card
));
}
}
public
static
IList
<
ClientCard
>
GetMatchingCards
(
this
IEnumerable
<
ClientCard
>
cards
,
Func
<
ClientCard
,
bool
>
filter
)
{
return
cards
.
Where
(
card
=>
card
?.
Data
!=
null
&&
filter
.
Invoke
(
card
)).
ToList
();
}
public
static
int
GetMatchingCardsCount
(
this
IEnumerable
<
ClientCard
>
cards
,
Func
<
ClientCard
,
bool
>
filter
)
{
return
cards
.
Count
(
card
=>
card
?.
Data
!=
null
&&
filter
.
Invoke
(
card
));
}
public
static
bool
IsExistingMatchingCard
(
this
IEnumerable
<
ClientCard
>
cards
,
Func
<
ClientCard
,
bool
>
filter
,
int
count
=
1
)
{
return
cards
.
GetMatchingCardsCount
(
filter
)
>=
count
;
}
public
static
ClientCard
GetShouldBeDisabledBeforeItUseEffectMonster
(
this
IEnumerable
<
ClientCard
>
cards
,
bool
canBeTarget
=
true
)
public
static
ClientCard
GetShouldBeDisabledBeforeItUseEffectMonster
(
this
IEnumerable
<
ClientCard
>
cards
,
bool
canBeTarget
=
true
)
{
{
return
cards
.
FirstOrDefault
(
card
=>
card
?.
Data
!=
null
&&
card
.
IsMonsterShouldBeDisabledBeforeItUseEffect
()
&&
card
.
IsFaceup
()
&&
(!
canBeTarget
||
!
card
.
IsShouldNotBeTarget
()));
return
cards
.
FirstOrDefault
(
card
=>
card
?.
Data
!=
null
&&
card
.
IsMonsterShouldBeDisabledBeforeItUseEffect
()
&&
card
.
IsFaceup
()
&&
(!
canBeTarget
||
!
card
.
IsShouldNotBeTarget
()));
...
...
Game/AI/Decks/RainbowExecutor.cs
View file @
b56e66dc
...
@@ -211,8 +211,8 @@ namespace WindBot.Game.AI.Decks
...
@@ -211,8 +211,8 @@ namespace WindBot.Game.AI.Decks
private
bool
RescueRabbitSummon
()
private
bool
RescueRabbitSummon
()
{
{
return
Util
.
GetBotAvailZonesFromExtraDeck
()
>
0
return
Util
.
GetBotAvailZonesFromExtraDeck
()
>
0
||
Util
.
GetMatchingCards
(
Enemy
.
MonsterZone
,
card
=>
card
.
GetDefensePower
()
>=
1900
).
Count
==
0
||
!
Enemy
.
MonsterZone
.
IsExistingMatchingCard
(
card
=>
card
.
GetDefensePower
()
>=
1900
)
||
Util
.
GetMatchingCards
(
Enemy
.
MonsterZone
,
card
=>
card
.
GetDefensePower
()
<
1900
).
Count
>
Util
.
GetMatchingCards
(
Bot
.
MonsterZone
,
card
=>
card
.
Attack
>=
1900
).
Count
;
||
Enemy
.
MonsterZone
.
GetMatchingCardsCount
(
card
=>
card
.
GetDefensePower
()
<
1900
)
>
Bot
.
MonsterZone
.
GetMatchingCardsCount
(
card
=>
card
.
Attack
>=
1900
);
}
}
private
bool
RescueRabbitEffect
()
private
bool
RescueRabbitEffect
()
...
...
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