当前位置: 首页>>代码示例>>C#>>正文


C# IHand.TotalPoints方法代码示例

本文整理汇总了C#中IHand.TotalPoints方法的典型用法代码示例。如果您正苦于以下问题:C# IHand.TotalPoints方法的具体用法?C# IHand.TotalPoints怎么用?C# IHand.TotalPoints使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IHand的用法示例。


在下文中一共展示了IHand.TotalPoints方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: OpenWith13PlusNoNTOpening

        /// <summary>
        /// Opens the with13 plus.
        /// </summary>
        /// <param name="myHand">My hand.</param>
        /// <returns></returns>
        private PlacedBid OpenWith13PlusNoNTOpening(IHand myHand)
        {
            List<List<ICard>> lst = myHand.BySuite.Select(x => x.ToList()).ToList();
            lst.Sort((x, y) => x.Count.CompareTo(y.Count));
            int totalPoints = myHand.TotalPoints();

            if (totalPoints > 21)
            {
                return new PlacedBid(new BidTrumph(TrumphSuite.Clubs, 2), new List<BidMeaning>()
                {
                    new BidMeaning(22, 32, SuiteTells.NoTell)
                });
            }

            if (lst[0].Count >= 7)
            {
                // No suite can match this one, bid it.
                return new PlacedBid(new BidTrumph(lst[0][0].Color.ToTrumpSuite(), 1),
                    new List<BidMeaning>()
                    {
                        new BidMeaning(13, 21, new List<SuiteTells>() { new SuiteTells(lst[0][0].Color, 4, 11) })
                    });
            }

            // 5 or 6 in suite
            if (lst[0].Count >= 5)
            {
                if (lst[1].Count == lst[0].Count)
                {
                    // Equal amount of cards and 6+. Bid highest ranked bidding color.
                    if (lst[1][0].Color.ToTrumpSuite().CompareTo(lst[0][0].Color.ToTrumpSuite()) > 0)
                    {
                        return new PlacedBid(new BidTrumph(lst[1][0].Color.ToTrumpSuite(), 1),
                            new List<BidMeaning>() {
                                new BidMeaning(13, 21,
                                    new List<SuiteTells>() {
                                        new SuiteTells(lst[1][0].Color, 4, 11)
                                    })
                                }
                            );
                    }
                }
                else
                {
                    return new PlacedBid(new BidTrumph(lst[0][0].Color.ToTrumpSuite(), 1),
                        new List<BidMeaning>() {
                                new BidMeaning(13, 21,
                                    new List<SuiteTells>() {
                                        new SuiteTells(lst[0][0].Color, 4, 11)
                                    })
                                }
                        );
                }
            }

            if (lst[0].Count >= 4)
            {
                // Bid hearts if hearts or spades

                // Bid hearts or spades if also having clubs or diamonds

                // Bid best clubs or diamonds
            }

            throw new NotImplementedException("Not fully implemented.");
        }
开发者ID:marcusber,项目名称:Cards,代码行数:71,代码来源:ModernStandardAha.cs


注:本文中的IHand.TotalPoints方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。