Пример #1
0
        // Gets tables information to oData
        public void getTableData(ref TableData oData, PokerTable table)
        {
            iData = new TableData();
            table.readFromWindow(iData);

            parseGame(oData);
        }
Пример #2
0
 public TableFinder(PokerTable ireader)
 {
     reader = ireader;
     iData = new TableData();
     tableNames = new String[8];            
     tableHwnd = new IntPtr(-1);
     
     TableName2Hwnd = new Hashtable();
     BlindStruct = ireader.blindStruct;
     foundtables = new SortedDictionary<string,SortedDictionary<Int64,PokerTable>>();
     foundtables[partystr] = new SortedDictionary<Int64,PokerTable>();
     foundtables[starsstr] = new SortedDictionary<Int64,PokerTable>();
     foundtables[fulltiltstr] = new SortedDictionary<Int64, PokerTable>();
     iCasinoBlinds = new Dictionary<string,List<BlindInfo>>();
 }
Пример #3
0
        public TableFinder(PokerTable ireader)
        {
            reader     = ireader;
            iData      = new TableData();
            tableNames = new String[8];
            tableHwnd  = new IntPtr(-1);

            TableName2Hwnd           = new Hashtable();
            BlindStruct              = ireader.blindStruct;
            foundtables              = new SortedDictionary <string, SortedDictionary <Int64, PokerTable> >();
            foundtables[partystr]    = new SortedDictionary <Int64, PokerTable>();
            foundtables[starsstr]    = new SortedDictionary <Int64, PokerTable>();
            foundtables[fulltiltstr] = new SortedDictionary <Int64, PokerTable>();
            iCasinoBlinds            = new Dictionary <string, List <BlindInfo> >();
        }
Пример #4
0
        // Gets tables information to oData         
        public void getTableData(ref TableData oData, PokerTable table)
        {

            iData = new TableData();
            table.readFromWindow(iData);
  
            parseGame(oData);
        }