~ubuntu-branches/ubuntu/natty/dealer/natty

« back to all changes in this revision

Viewing changes to pointcount.c

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Berg
  • Date: 2005-09-07 23:32:20 UTC
  • Revision ID: james.westby@ubuntu.com-20050907233220-e7bsghnrwg1ncye4
Tags: upstream-0.20040530
ImportĀ upstreamĀ versionĀ 0.20040530

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "pointcount.h"
 
2
 
 
3
int tblPointcount [idxEnd][13] =
 
4
{
 
5
        /* 2  3  4  5  6  7  8  9  T  J  Q  K  A */
 
6
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4}, /* hcp */
 
7
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2}, /* controls */
 
8
        {  0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0}, /* tens */
 
9
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0}, /* jacks */
 
10
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0}, /* queens */
 
11
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0}, /* kings */
 
12
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1}, /* aces */
 
13
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1}, /* top2 */
 
14
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1}, /* top3 */
 
15
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1}, /* top4 */
 
16
        {  0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1}, /* top5 */
 
17
        {  0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 4, 6}  /* c13 */
 
18
} ;
 
19
 
 
20