Пример #1
0
        public void MoveTo(Group to, bool lFaceUp, int idx, bool isScriptMove)
        {
            //converts negative indexes to count from the bottom for consistency with python behavior
            if (idx < 0)
            {
                idx = to.Count + 1 + idx;
            }
            //over-large indecies reduced to place cards at end of pile
            if (idx >= to.Count)
            {
                idx = to.Count;
            }
            if (idx < 0)
            {
                idx = 0;
            }
            //move skipped if card already at location specified
            if (to == Group && idx < Group.Count && Group[idx] == this)
            {
                return;
            }
            if (to.Visibility != GroupVisibility.Undefined)
            {
                lFaceUp = FaceUp;
            }
            var cards = new Card[1] {
                this
            };

            Program.Client.Rpc.MoveCardReq(cards.Select(x => x.Id).ToArray(), to, new[] { idx }, new[] { lFaceUp }, isScriptMove);
            new MoveCards(Player.LocalPlayer, cards, to, new[] { idx }, new[] { lFaceUp }, isScriptMove).Do();
            Program.Client.Rpc.CardSwitchTo(Player.LocalPlayer, this, this.Alternate());
        }