Texas-Hold-em-Poker:德州扑克服务器Go实现

时间:2024-06-04 22:57:02
【文件属性】:

文件名称:Texas-Hold-em-Poker:德州扑克服务器Go实现

文件大小:2.89MB

文件格式:ZIP

更新时间:2024-06-04 22:57:02

poker texas texas-hold-em-poker Go

德州扑克服务器Go实现 核心算法: type Cards []byte // todo 两对和四张起脚牌的判定 var StraightMask = []uint16{15872, 7936, 3968, 1984, 992, 496, 248, 124, 62, 31} //顺子(Straight,亦称“蛇”) //此牌由五张顺序扑克牌组成。 //平手牌:如果不止一人抓到此牌,则五张牌中点数最大的赢得此局, // 如果所有牌点数都相同,平分彩池。 func (this *Cards) straight() uint32 { var handvalue uint16 for _, v := range (*this) { value := v & 0xF if value == 0xE { handvalue |= 1 } handvalue |= (1 << (


网友评论