p139 - fixed TV and removed old config
This commit is contained in:
		
							parent
							
								
									8908036e66
								
							
						
					
					
						commit
						dd74c29551
					
				|  | @ -1,11 +0,0 @@ | ||||||
| db-backend=2 |  | ||||||
| db-host=localhost |  | ||||||
| db-databaseName=fpdb |  | ||||||
| db-user=fpdb |  | ||||||
| db-password=enterYourPwHere |  | ||||||
| imp-callFpdbHud=True |  | ||||||
| tv-combinedStealFold=True |  | ||||||
| tv-combined2B3B=True |  | ||||||
| tv-combinedPostflop=True |  | ||||||
| bulkImport-defaultPath=default |  | ||||||
| hud-defaultPath=default |  | ||||||
|  | @ -78,21 +78,12 @@ class GuiTableViewer (threading.Thread): | ||||||
| 		if (self.category=="holdem" or self.category=="omahahi" or self.category=="omahahilo"): | 		if (self.category=="holdem" or self.category=="omahahi" or self.category=="omahahilo"): | ||||||
| 			tmp=("Name", "HDs", "VPIP", "PFR", "PF3B4B", "ST") | 			tmp=("Name", "HDs", "VPIP", "PFR", "PF3B4B", "ST") | ||||||
| 			 | 			 | ||||||
| 			if self.settings['tv-combinedStealFold']: |  | ||||||
| 				tmp+=("FSB", ) |  | ||||||
| 			else: |  | ||||||
| 			tmp+=("FS", "FB") | 			tmp+=("FS", "FB") | ||||||
| 			 | 			 | ||||||
| 			tmp+=("CB", ) | 			tmp+=("CB", ) | ||||||
| 			 | 			 | ||||||
| 			if self.settings['tv-combined2B3B']: |  | ||||||
| 				tmp+=("23B", ) |  | ||||||
| 			else: |  | ||||||
| 			tmp+=("2B", "3B") | 			tmp+=("2B", "3B") | ||||||
| 			 | 			 | ||||||
| 			if self.settings['tv-combinedPostflop']: |  | ||||||
| 				tmp+=("Postf A", "Postf F") |  | ||||||
| 			else: |  | ||||||
| 			tmp+=("AF", "FF", "AT", "FT", "AR", "FR") | 			tmp+=("AF", "FF", "AT", "FT", "AR", "FR") | ||||||
| 			 | 			 | ||||||
| 			tmp+=("WtSD", "W$wsF", "W$SD") | 			tmp+=("WtSD", "W$wsF", "W$SD") | ||||||
|  | @ -144,28 +135,14 @@ class GuiTableViewer (threading.Thread): | ||||||
| 			 | 			 | ||||||
| 			tmp.append(self.hudDivide(row[31],row[30])+" ("+str(row[30])+")") #ST | 			tmp.append(self.hudDivide(row[31],row[30])+" ("+str(row[30])+")") #ST | ||||||
| 			 | 			 | ||||||
| 			if self.settings['tv-combinedStealFold']: |  | ||||||
| 				tmp.append(self.hudDivide(row[35]+row[33],row[34]+row[32])+" ("+str(row[34]+row[32])+")") #FSB |  | ||||||
| 			else: |  | ||||||
| 			tmp.append(self.hudDivide(row[35],row[34])+" ("+str(row[34])+")") #FS | 			tmp.append(self.hudDivide(row[35],row[34])+" ("+str(row[34])+")") #FS | ||||||
| 			tmp.append(self.hudDivide(row[33],row[32])+" ("+str(row[32])+")") #FB | 			tmp.append(self.hudDivide(row[33],row[32])+" ("+str(row[32])+")") #FB | ||||||
| 			 | 			 | ||||||
| 			tmp.append(self.hudDivide(row[37],row[36])+" ("+str(row[36])+")") #CB | 			tmp.append(self.hudDivide(row[37],row[36])+" ("+str(row[36])+")") #CB | ||||||
| 			 | 			 | ||||||
| 			if self.settings['tv-combined2B3B']: |  | ||||||
| 				tmp.append(self.hudDivide(row[39]+row[41],row[38]+row[40])+" ("+str(row[38]+row[40])+")") #23B |  | ||||||
| 			else: |  | ||||||
| 			tmp.append(self.hudDivide(row[39],row[38])+" ("+str(row[38])+")") #2B | 			tmp.append(self.hudDivide(row[39],row[38])+" ("+str(row[38])+")") #2B | ||||||
| 			tmp.append(self.hudDivide(row[41],row[40])+" ("+str(row[40])+")") #3B | 			tmp.append(self.hudDivide(row[41],row[40])+" ("+str(row[40])+")") #3B | ||||||
| 			 | 			 | ||||||
| 			if self.settings['tv-combinedPostflop']: |  | ||||||
| 				aggCount=row[16]+row[17]+row[18] |  | ||||||
| 				handCount=row[11]+row[12]+row[13] |  | ||||||
| 				foldCount=row[24]+row[25]+row[26] |  | ||||||
| 				otherRaiseCount=row[20]+row[21]+row[22] |  | ||||||
| 				tmp.append(self.hudDivide(aggCount,handCount)+" ("+str(handCount)+")") #Agg |  | ||||||
| 				tmp.append(self.hudDivide(foldCount,otherRaiseCount)+" ("+str(otherRaiseCount)+")") #FF |  | ||||||
| 			else: |  | ||||||
| 			tmp.append(self.hudDivide(row[16],row[11])+" ("+str(row[11])+")") #AF | 			tmp.append(self.hudDivide(row[16],row[11])+" ("+str(row[11])+")") #AF | ||||||
| 			tmp.append(self.hudDivide(row[24],row[20])+" ("+str(row[20])+")") #FF | 			tmp.append(self.hudDivide(row[24],row[20])+" ("+str(row[20])+")") #FF | ||||||
| 			tmp.append(self.hudDivide(row[17],row[12])+" ("+str(row[12])+")") #AT | 			tmp.append(self.hudDivide(row[17],row[12])+" ("+str(row[12])+")") #AT | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	Block a user