Commit 0f69a628 authored by mercury233's avatar mercury233

Merge branch 'master' of https://github.com/IceYGO/windbot

parents d5059f0b 34dd165e
#created by ...
#main
51522296
51522296
62849088
69680031
69680031
95679145
72270339
60303688
60303688
60303688
14558127
14558127
14558127
23434538
23434538
23434538
10158145
10158145
10158145
1984618
1984618
1984618
31002402
60921537
16240772
24224830
24224830
65681983
80845034
80845034
80845034
35569555
35569555
35569555
10045474
10045474
10045474
82956214
82956214
82956214
#extra
24915933
41373230
11765832
11765832
80532587
80532587
80532587
53971455
53971455
74586817
79606837
93039339
2220237
24842059
60303245
!side
\ No newline at end of file
{
"welcome": [
"这里就是大灵峰吗?"
"这里就是大灵峰吗?",
"这里是教导龙国。"
],
"deckerror": [
"{0}被冰水咒缚了!"
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -113,6 +113,11 @@ namespace WindBot.Game.AI
// Some AI need do something on draw
}
public virtual void OnMove(int cardId, int previousControler, int previousLocation, int currentControler, int currentLocation)
{
// Some AI need do something on card's moving
}
public virtual IList<ClientCard> OnSelectCard(IList<ClientCard> cards, int min, int max, int hint, bool cancelable)
{
// For overriding
......
......@@ -119,6 +119,11 @@ namespace WindBot.Game
Executor.OnNewPhase();
}
public void OnMove(int cardId, int previousControler, int previousLocation, int currentControler, int currentLocation)
{
Executor.OnMove(cardId, previousControler, previousLocation, currentControler, currentLocation);
}
/// <summary>
/// Called when the AI got attack directly.
/// </summary>
......
......@@ -94,7 +94,7 @@ namespace WindBot.Game
_messages.Add(GameMessage.ShuffleHand, OnShuffleHand);
_messages.Add(GameMessage.ShuffleExtra, OnShuffleExtra);
_messages.Add(GameMessage.ShuffleSetCard, OnShuffleSetCard);
_messages.Add(GameMessage.SwapGraveDeck, OnSwapGraveDeck);
_messages.Add(GameMessage.SwapGraveDeck, OnSwapGraveDeck);
_messages.Add(GameMessage.TagSwap, OnTagSwap);
_messages.Add(GameMessage.NewTurn, OnNewTurn);
_messages.Add(GameMessage.NewPhase, OnNewPhase);
......@@ -144,6 +144,7 @@ namespace WindBot.Game
_messages.Add(GameMessage.SpSummoned, OnSpSummoned);
_messages.Add(GameMessage.FlipSummoning, OnSummoning);
_messages.Add(GameMessage.FlipSummoned, OnSummoned);
_messages.Add(GameMessage.ConfirmCards, OnConfirmCards);
}
private void OnJoinGame(BinaryReader packet)
......@@ -634,6 +635,8 @@ namespace WindBot.Game
(CardLocation)previousLocation + " move to " + (CardLocation)currentLocation + ")");
}
}
_ai.OnMove(cardId, previousControler, previousLocation, currentControler, currentLocation);
}
private void OnSwap(BinaryReader packet)
......@@ -955,7 +958,10 @@ namespace WindBot.Game
if (((int)loc & (int)CardLocation.Overlay) != 0)
card = new ClientCard(id, CardLocation.Overlay, -1);
else
{
card = _duel.GetCard(player, loc, seq);
card.Controller = player;
}
if (card == null) continue;
if (card.Id == 0)
card.SetId(id);
......@@ -1891,5 +1897,22 @@ namespace WindBot.Game
}
_duel.SummoningCards.Clear();
}
private void OnConfirmCards(BinaryReader packet)
{
/*int playerid = */packet.ReadByte();
int count = packet.ReadByte();
for (int i = 0; i < count; ++ i)
{
int cardId = packet.ReadInt32();
int player = GetLocalPlayer(packet.ReadByte());
int loc = packet.ReadByte();
int seq = packet.ReadByte();
ClientCard card = _duel.GetCard(player, (CardLocation)loc, seq);
if (cardId > 0) card.SetId(cardId);
if (_debug)
Logger.WriteLine("(Confirm " + player.ToString() + "'s " + (CardLocation)loc + " card: " + (card.Name ?? "UnKnowCard") + ")");
}
}
}
}
......@@ -83,6 +83,7 @@
<Compile Include="Game\AI\Decks\SalamangreatExecutor.cs" />
<Compile Include="Game\AI\Decks\CyberDragonExecutor.cs" />
<Compile Include="Game\AI\Decks\DarkMagicianExecutor.cs" />
<Compile Include="Game\AI\Decks\DogmatikaExecutor.cs" />
<Compile Include="Game\AI\Decks\OrcustExecutor.cs" />
<Compile Include="Game\AI\Decks\SkyStrikerExecutor.cs" />
<Compile Include="Game\AI\Decks\MokeyMokeyKingExecutor.cs" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment