make positional stats use Database.py
This commit is contained in:
parent
ceaedebcd9
commit
0fecdfb2d7
|
@ -111,6 +111,9 @@ class Database:
|
||||||
def commit(self):
|
def commit(self):
|
||||||
self.fdb.db.commit()
|
self.fdb.db.commit()
|
||||||
|
|
||||||
|
def rollback(self):
|
||||||
|
self.fdb.db.rollback()
|
||||||
|
|
||||||
def close_connection(self):
|
def close_connection(self):
|
||||||
self.connection.close()
|
self.connection.close()
|
||||||
|
|
||||||
|
|
|
@ -911,657 +911,6 @@ class FpdbSQLQueries:
|
||||||
GROUP BY h.handStart, hp.handId, hp.totalProfit
|
GROUP BY h.handStart, hp.handId, hp.totalProfit
|
||||||
ORDER BY h.handStart"""
|
ORDER BY h.handStart"""
|
||||||
|
|
||||||
if self.dbname in ['MySQL InnoDB']:
|
|
||||||
self.query['playerDetailedStats'] = """
|
|
||||||
select <hgameTypeId> AS hgametypeid
|
|
||||||
,gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType) AS limittype
|
|
||||||
,s.name
|
|
||||||
,min(gt.bigBlind) AS minbigblind
|
|
||||||
,max(gt.bigBlind) AS maxbigblind
|
|
||||||
/*,<hcgametypeId> AS gtid*/
|
|
||||||
,<position> AS plposition
|
|
||||||
,count(1) AS n
|
|
||||||
,100.0*sum(cast(hp.street0VPI as <signed>integer))/count(1) AS vpip
|
|
||||||
,100.0*sum(cast(hp.street0Aggr as <signed>integer))/count(1) AS pfr
|
|
||||||
,case when sum(cast(hp.street0_3Bchance as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street0_3Bdone as <signed>integer))/sum(cast(hp.street0_3Bchance as <signed>integer))
|
|
||||||
end AS pf3
|
|
||||||
,case when sum(cast(hp.stealattemptchance as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.stealattempted as <signed>integer))/sum(cast(hp.stealattemptchance as <signed>integer))
|
|
||||||
end AS steals
|
|
||||||
,100.0*sum(cast(hp.street1Seen as <signed>integer))/count(1) AS saw_f
|
|
||||||
,100.0*sum(cast(hp.sawShowdown as <signed>integer))/count(1) AS sawsd
|
|
||||||
,case when sum(cast(hp.street1Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.sawShowdown as <signed>integer))/sum(cast(hp.street1Seen as <signed>integer))
|
|
||||||
end AS wtsdwsf
|
|
||||||
,case when sum(cast(hp.sawShowdown as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.wonAtSD as <signed>integer))/sum(cast(hp.sawShowdown as <signed>integer))
|
|
||||||
end AS wmsd
|
|
||||||
,case when sum(cast(hp.street1Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street1Aggr as <signed>integer))/sum(cast(hp.street1Seen as <signed>integer))
|
|
||||||
end AS flafq
|
|
||||||
,case when sum(cast(hp.street2Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street2Aggr as <signed>integer))/sum(cast(hp.street2Seen as <signed>integer))
|
|
||||||
end AS tuafq
|
|
||||||
,case when sum(cast(hp.street3Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street3Aggr as <signed>integer))/sum(cast(hp.street3Seen as <signed>integer))
|
|
||||||
end AS rvafq
|
|
||||||
,case when sum(cast(hp.street1Seen as <signed>integer))+sum(cast(hp.street2Seen as <signed>integer))+sum(cast(hp.street3Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*(sum(cast(hp.street1Aggr as <signed>integer))+sum(cast(hp.street2Aggr as <signed>integer))+sum(cast(hp.street3Aggr as <signed>integer)))
|
|
||||||
/(sum(cast(hp.street1Seen as <signed>integer))+sum(cast(hp.street2Seen as <signed>integer))+sum(cast(hp.street3Seen as <signed>integer)))
|
|
||||||
end AS pofafq
|
|
||||||
,sum(hp.totalProfit)/100.0 AS net
|
|
||||||
,sum(hp.rake)/100.0 AS rake
|
|
||||||
,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100
|
|
||||||
,avg(hp.totalProfit)/100.0 AS profitperhand
|
|
||||||
,100.0*avg((hp.totalProfit+hp.rake)/(gt.bigBlind+0.0)) AS bb100xr
|
|
||||||
,avg((hp.totalProfit+hp.rake)/100.0) AS profhndxr
|
|
||||||
,avg(h.seats+0.0) AS avgseats
|
|
||||||
,variance(hp.totalProfit/100.0) AS variance
|
|
||||||
from HandsPlayers hp
|
|
||||||
inner join Hands h on (h.id = hp.handId)
|
|
||||||
inner join Gametypes gt on (gt.Id = h.gameTypeId)
|
|
||||||
inner join Sites s on (s.Id = gt.siteId)
|
|
||||||
where hp.playerId in <player_test>
|
|
||||||
and hp.tourneysPlayersId IS NULL
|
|
||||||
and h.seats <seats_test>
|
|
||||||
<flagtest>
|
|
||||||
<gtbigBlind_test>
|
|
||||||
and date_format(h.handStart, '%Y-%m-%d') <datestest>
|
|
||||||
group by hgameTypeId
|
|
||||||
,hp.playerId
|
|
||||||
,gt.base
|
|
||||||
,gt.category
|
|
||||||
<groupbyseats>
|
|
||||||
,plposition
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
order by hp.playerId
|
|
||||||
,gt.base
|
|
||||||
,gt.category
|
|
||||||
<orderbyseats>
|
|
||||||
,case <position> when 'B' then 'B'
|
|
||||||
when 'S' then 'S'
|
|
||||||
else concat('Z', <position>)
|
|
||||||
end
|
|
||||||
<orderbyhgameTypeId>
|
|
||||||
,maxbigblind desc
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
"""
|
|
||||||
elif self.dbname in ['PostgreSQL']:
|
|
||||||
self.query['playerDetailedStats'] = """
|
|
||||||
select <hgameTypeId> AS hgametypeid
|
|
||||||
,gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType) AS limittype
|
|
||||||
,s.name
|
|
||||||
,min(gt.bigBlind) AS minbigblind
|
|
||||||
,max(gt.bigBlind) AS maxbigblind
|
|
||||||
/*,<hcgametypeId> AS gtid*/
|
|
||||||
,<position> AS plposition
|
|
||||||
,count(1) AS n
|
|
||||||
,100.0*sum(cast(hp.street0VPI as <signed>integer))/count(1) AS vpip
|
|
||||||
,100.0*sum(cast(hp.street0Aggr as <signed>integer))/count(1) AS pfr
|
|
||||||
,case when sum(cast(hp.street0_3Bchance as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street0_3Bdone as <signed>integer))/sum(cast(hp.street0_3Bchance as <signed>integer))
|
|
||||||
end AS pf3
|
|
||||||
,case when sum(cast(hp.stealattemptchance as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.stealattempted as <signed>integer))/sum(cast(hp.stealattemptchance as <signed>integer))
|
|
||||||
end AS steals
|
|
||||||
,100.0*sum(cast(hp.street1Seen as <signed>integer))/count(1) AS saw_f
|
|
||||||
,100.0*sum(cast(hp.sawShowdown as <signed>integer))/count(1) AS sawsd
|
|
||||||
,case when sum(cast(hp.street1Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.sawShowdown as <signed>integer))/sum(cast(hp.street1Seen as <signed>integer))
|
|
||||||
end AS wtsdwsf
|
|
||||||
,case when sum(cast(hp.sawShowdown as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.wonAtSD as <signed>integer))/sum(cast(hp.sawShowdown as <signed>integer))
|
|
||||||
end AS wmsd
|
|
||||||
,case when sum(cast(hp.street1Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street1Aggr as <signed>integer))/sum(cast(hp.street1Seen as <signed>integer))
|
|
||||||
end AS flafq
|
|
||||||
,case when sum(cast(hp.street2Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street2Aggr as <signed>integer))/sum(cast(hp.street2Seen as <signed>integer))
|
|
||||||
end AS tuafq
|
|
||||||
,case when sum(cast(hp.street3Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*sum(cast(hp.street3Aggr as <signed>integer))/sum(cast(hp.street3Seen as <signed>integer))
|
|
||||||
end AS rvafq
|
|
||||||
,case when sum(cast(hp.street1Seen as <signed>integer))+sum(cast(hp.street2Seen as <signed>integer))+sum(cast(hp.street3Seen as <signed>integer)) = 0 then -999
|
|
||||||
else 100.0*(sum(cast(hp.street1Aggr as <signed>integer))+sum(cast(hp.street2Aggr as <signed>integer))+sum(cast(hp.street3Aggr as <signed>integer)))
|
|
||||||
/(sum(cast(hp.street1Seen as <signed>integer))+sum(cast(hp.street2Seen as <signed>integer))+sum(cast(hp.street3Seen as <signed>integer)))
|
|
||||||
end AS pofafq
|
|
||||||
,sum(hp.totalProfit)/100.0 AS net
|
|
||||||
,sum(hp.rake)/100.0 AS rake
|
|
||||||
,100.0*avg(hp.totalProfit/(gt.bigBlind+0.0)) AS bbper100
|
|
||||||
,avg(hp.totalProfit)/100.0 AS profitperhand
|
|
||||||
,100.0*avg((hp.totalProfit+hp.rake)/(gt.bigBlind+0.0)) AS bb100xr
|
|
||||||
,avg((hp.totalProfit+hp.rake)/100.0) AS profhndxr
|
|
||||||
,avg(h.seats+0.0) AS avgseats
|
|
||||||
,variance(hp.totalProfit/100.0) AS variance
|
|
||||||
from HandsPlayers hp
|
|
||||||
inner join Hands h on (h.id = hp.handId)
|
|
||||||
inner join Gametypes gt on (gt.Id = h.gameTypeId)
|
|
||||||
inner join Sites s on (s.Id = gt.siteId)
|
|
||||||
where hp.playerId in <player_test>
|
|
||||||
and hp.tourneysPlayersId IS NULL
|
|
||||||
and h.seats <seats_test>
|
|
||||||
<flagtest>
|
|
||||||
<gtbigBlind_test>
|
|
||||||
and to_char(h.handStart, 'YYYY-MM-DD') <datestest>
|
|
||||||
group by hgameTypeId
|
|
||||||
,hp.playerId
|
|
||||||
,gt.base
|
|
||||||
,gt.category
|
|
||||||
<groupbyseats>
|
|
||||||
,plposition
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
order by hp.playerId
|
|
||||||
,gt.base
|
|
||||||
,gt.category
|
|
||||||
<orderbyseats>
|
|
||||||
,case <position> when 'B' then 'B'
|
|
||||||
when 'S' then 'S'
|
|
||||||
when '0' then 'Y'
|
|
||||||
else 'Z'||<position>
|
|
||||||
end
|
|
||||||
<orderbyhgameTypeId>
|
|
||||||
,maxbigblind desc
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
"""
|
|
||||||
elif(self.dbname == 'SQLite'):
|
|
||||||
self.query['playerDetailedStats'] = """ """
|
|
||||||
|
|
||||||
if(self.dbname == 'MySQL InnoDB'):
|
|
||||||
self.query['playerStats'] = """
|
|
||||||
SELECT
|
|
||||||
concat(upper(stats.limitType), ' '
|
|
||||||
,concat(upper(substring(stats.category,1,1)),substring(stats.category,2) ), ' '
|
|
||||||
,stats.name, ' '
|
|
||||||
,cast(stats.bigBlindDesc as char)
|
|
||||||
) AS Game
|
|
||||||
,stats.n
|
|
||||||
,stats.vpip
|
|
||||||
,stats.pfr
|
|
||||||
,stats.pf3
|
|
||||||
,stats.steals
|
|
||||||
,stats.saw_f
|
|
||||||
,stats.sawsd
|
|
||||||
,stats.wtsdwsf
|
|
||||||
,stats.wmsd
|
|
||||||
,stats.FlAFq
|
|
||||||
,stats.TuAFq
|
|
||||||
,stats.RvAFq
|
|
||||||
,stats.PoFAFq
|
|
||||||
,stats.Net
|
|
||||||
,stats.BBper100
|
|
||||||
,stats.Profitperhand
|
|
||||||
,case when hprof2.variance = -999 then '-'
|
|
||||||
else format(hprof2.variance, 2)
|
|
||||||
end AS Variance
|
|
||||||
,stats.AvgSeats
|
|
||||||
FROM
|
|
||||||
(select /* stats from hudcache */
|
|
||||||
gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType) as limitType
|
|
||||||
,s.name
|
|
||||||
,<selectgt.bigBlind> AS bigBlindDesc
|
|
||||||
,<hcgametypeId> AS gtId
|
|
||||||
,sum(HDs) AS n
|
|
||||||
,format(100.0*sum(street0VPI)/sum(HDs),1) AS vpip
|
|
||||||
,format(100.0*sum(street0Aggr)/sum(HDs),1) AS pfr
|
|
||||||
,case when sum(street0_3Bchance) = 0 then '0'
|
|
||||||
else format(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),1)
|
|
||||||
end AS pf3
|
|
||||||
,case when sum(stealattemptchance) = 0 then '-'
|
|
||||||
else format(100.0*sum(stealattempted)/sum(stealattemptchance),1)
|
|
||||||
end AS steals
|
|
||||||
,format(100.0*sum(street1Seen)/sum(HDs),1) AS saw_f
|
|
||||||
,format(100.0*sum(sawShowdown)/sum(HDs),1) AS sawsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(sawShowdown)/sum(street1Seen),1)
|
|
||||||
end AS wtsdwsf
|
|
||||||
,case when sum(sawShowdown) = 0 then '-'
|
|
||||||
else format(100.0*sum(wonAtSD)/sum(sawShowdown),1)
|
|
||||||
end AS wmsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(street1Aggr)/sum(street1Seen),1)
|
|
||||||
end AS FlAFq
|
|
||||||
,case when sum(street2Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(street2Aggr)/sum(street2Seen),1)
|
|
||||||
end AS TuAFq
|
|
||||||
,case when sum(street3Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(street3Aggr)/sum(street3Seen),1)
|
|
||||||
end AS RvAFq
|
|
||||||
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
|
||||||
else format(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
|
||||||
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen)),1)
|
|
||||||
end AS PoFAFq
|
|
||||||
,format(sum(totalProfit)/100.0,2) AS Net
|
|
||||||
,format((sum(totalProfit/(gt.bigBlind+0.0))) / (sum(HDs)/100.0),2)
|
|
||||||
AS BBper100
|
|
||||||
,format( (sum(totalProfit)/100.0) / sum(HDs), 4) AS Profitperhand
|
|
||||||
,format( sum(activeSeats*HDs)/(sum(HDs)+0.0), 2) AS AvgSeats
|
|
||||||
from Gametypes gt
|
|
||||||
inner join Sites s on s.Id = gt.siteId
|
|
||||||
inner join HudCache hc on hc.gameTypeId = gt.Id
|
|
||||||
where hc.playerId in <player_test>
|
|
||||||
and <gtbigBlind_test>
|
|
||||||
and hc.activeSeats <seats_test>
|
|
||||||
and concat( '20', substring(hc.styleKey,2,2), '-', substring(hc.styleKey,4,2), '-'
|
|
||||||
, substring(hc.styleKey,6,2) ) <datestest>
|
|
||||||
group by gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
<groupbygt.bigBlind>
|
|
||||||
,gtId
|
|
||||||
) stats
|
|
||||||
inner join
|
|
||||||
( select # profit from handsplayers/handsactions
|
|
||||||
hprof.gtId, sum(hprof.profit) sum_profit,
|
|
||||||
avg(hprof.profit/100.0) profitperhand,
|
|
||||||
case when hprof.gtId = -1 then -999
|
|
||||||
else variance(hprof.profit/100.0)
|
|
||||||
end as variance
|
|
||||||
from
|
|
||||||
(select hp.handId, <hgameTypeId> as gtId, hp.totalProfit as profit
|
|
||||||
from HandsPlayers hp
|
|
||||||
inner join Hands h ON h.id = hp.handId
|
|
||||||
where hp.playerId in <player_test>
|
|
||||||
and hp.tourneysPlayersId IS NULL
|
|
||||||
and date_format(h.handStart, '%Y-%m-%d') <datestest>
|
|
||||||
group by hp.handId, gtId, hp.totalProfit
|
|
||||||
) hprof
|
|
||||||
group by hprof.gtId
|
|
||||||
) hprof2
|
|
||||||
on hprof2.gtId = stats.gtId
|
|
||||||
order by stats.category, stats.limittype, stats.bigBlindDesc desc <orderbyseats>"""
|
|
||||||
elif(self.dbname == 'PostgreSQL'):
|
|
||||||
self.query['playerStats'] = """
|
|
||||||
SELECT upper(stats.limitType) || ' '
|
|
||||||
|| initcap(stats.category) || ' '
|
|
||||||
|| stats.name || ' '
|
|
||||||
|| stats.bigBlindDesc AS Game
|
|
||||||
,stats.n
|
|
||||||
,stats.vpip
|
|
||||||
,stats.pfr
|
|
||||||
,stats.pf3
|
|
||||||
,stats.steals
|
|
||||||
,stats.saw_f
|
|
||||||
,stats.sawsd
|
|
||||||
,stats.wtsdwsf
|
|
||||||
,stats.wmsd
|
|
||||||
,stats.FlAFq
|
|
||||||
,stats.TuAFq
|
|
||||||
,stats.RvAFq
|
|
||||||
,stats.PoFAFq
|
|
||||||
,stats.Net
|
|
||||||
,stats.BBper100
|
|
||||||
,stats.Profitperhand
|
|
||||||
,case when hprof2.variance = -999 then '-'
|
|
||||||
else to_char(hprof2.variance, '0D00')
|
|
||||||
end AS Variance
|
|
||||||
,AvgSeats
|
|
||||||
FROM
|
|
||||||
(select gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType) AS limitType
|
|
||||||
,s.name
|
|
||||||
,<selectgt.bigBlind> AS bigBlindDesc
|
|
||||||
,<hcgametypeId> AS gtId
|
|
||||||
,sum(HDs) as n
|
|
||||||
,to_char(100.0*sum(street0VPI)/sum(HDs),'990D0') AS vpip
|
|
||||||
,to_char(100.0*sum(street0Aggr)/sum(HDs),'90D0') AS pfr
|
|
||||||
,case when sum(street0_3Bchance) = 0 then '0'
|
|
||||||
else to_char(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),'90D0')
|
|
||||||
end AS pf3
|
|
||||||
,case when sum(stealattemptchance) = 0 then '-'
|
|
||||||
else to_char(100.0*sum(stealattempted)/sum(stealattemptchance),'90D0')
|
|
||||||
end AS steals
|
|
||||||
,to_char(100.0*sum(street1Seen)/sum(HDs),'90D0') AS saw_f
|
|
||||||
,to_char(100.0*sum(sawShowdown)/sum(HDs),'90D0') AS sawsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else to_char(100.0*sum(sawShowdown)/sum(street1Seen),'90D0')
|
|
||||||
end AS wtsdwsf
|
|
||||||
,case when sum(sawShowdown) = 0 then '-'
|
|
||||||
else to_char(100.0*sum(wonAtSD)/sum(sawShowdown),'90D0')
|
|
||||||
end AS wmsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else to_char(100.0*sum(street1Aggr)/sum(street1Seen),'90D0')
|
|
||||||
end AS FlAFq
|
|
||||||
,case when sum(street2Seen) = 0 then '-'
|
|
||||||
else to_char(100.0*sum(street2Aggr)/sum(street2Seen),'90D0')
|
|
||||||
end AS TuAFq
|
|
||||||
,case when sum(street3Seen) = 0 then '-'
|
|
||||||
else to_char(100.0*sum(street3Aggr)/sum(street3Seen),'90D0')
|
|
||||||
end AS RvAFq
|
|
||||||
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
|
||||||
else to_char(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
|
||||||
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen)),'90D0')
|
|
||||||
end AS PoFAFq
|
|
||||||
,round(sum(totalProfit)/100.0,2) AS Net
|
|
||||||
,to_char((sum(totalProfit/(gt.bigBlind+0.0))) / (sum(HDs)/100.0), '990D00')
|
|
||||||
AS BBper100
|
|
||||||
,to_char(sum(totalProfit/100.0) / (sum(HDs)+0.0), '990D0000') AS Profitperhand
|
|
||||||
,to_char(sum(activeSeats*HDs)/(sum(HDs)+0.0),'90D00') AS AvgSeats
|
|
||||||
from Gametypes gt
|
|
||||||
inner join Sites s on s.Id = gt.siteId
|
|
||||||
inner join HudCache hc on hc.gameTypeId = gt.Id
|
|
||||||
where hc.playerId in <player_test>
|
|
||||||
and <gtbigBlind_test>
|
|
||||||
and hc.activeSeats <seats_test>
|
|
||||||
and '20' || SUBSTR(hc.styleKey,2,2) || '-' || SUBSTR(hc.styleKey,4,2) || '-'
|
|
||||||
|| SUBSTR(hc.styleKey,6,2) <datestest>
|
|
||||||
group by gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
<groupbygt.bigBlind>
|
|
||||||
,gtId
|
|
||||||
) stats
|
|
||||||
inner join
|
|
||||||
( select
|
|
||||||
hprof.gtId, sum(hprof.profit) AS sum_profit,
|
|
||||||
avg(hprof.profit/100.0) AS profitperhand,
|
|
||||||
case when hprof.gtId = -1 then -999
|
|
||||||
else variance(hprof.profit/100.0)
|
|
||||||
end as variance
|
|
||||||
from
|
|
||||||
(select hp.handId, <hgameTypeId> as gtId, hp.totalProfit as profit
|
|
||||||
from HandsPlayers hp
|
|
||||||
inner join Hands h ON (h.id = hp.handId)
|
|
||||||
where hp.playerId in <player_test>
|
|
||||||
and hp.tourneysPlayersId IS NULL
|
|
||||||
and to_char(h.handStart, 'YYYY-MM-DD') <datestest>
|
|
||||||
group by hp.handId, gtId, hp.totalProfit
|
|
||||||
) hprof
|
|
||||||
group by hprof.gtId
|
|
||||||
) hprof2
|
|
||||||
on hprof2.gtId = stats.gtId
|
|
||||||
order by stats.base, stats.limittype, stats.bigBlindDesc desc <orderbyseats>"""
|
|
||||||
elif(self.dbname == 'SQLite'):
|
|
||||||
self.query['playerStats'] = """ """
|
|
||||||
|
|
||||||
if(self.dbname == 'MySQL InnoDB'):
|
|
||||||
self.query['playerStatsByPosition'] = """
|
|
||||||
SELECT
|
|
||||||
concat(upper(stats.limitType), ' '
|
|
||||||
,concat(upper(substring(stats.category,1,1)),substring(stats.category,2) ), ' '
|
|
||||||
,stats.name, ' '
|
|
||||||
,cast(stats.bigBlindDesc as char)
|
|
||||||
) AS Game
|
|
||||||
,case when stats.PlPosition = -2 then 'BB'
|
|
||||||
when stats.PlPosition = -1 then 'SB'
|
|
||||||
when stats.PlPosition = 0 then 'Btn'
|
|
||||||
when stats.PlPosition = 1 then 'CO'
|
|
||||||
when stats.PlPosition = 2 then 'MP'
|
|
||||||
when stats.PlPosition = 5 then 'EP'
|
|
||||||
else '??'
|
|
||||||
end AS PlPosition
|
|
||||||
,stats.n
|
|
||||||
,stats.vpip
|
|
||||||
,stats.pfr
|
|
||||||
,stats.pf3
|
|
||||||
,stats.steals
|
|
||||||
,stats.saw_f
|
|
||||||
,stats.sawsd
|
|
||||||
,stats.wtsdwsf
|
|
||||||
,stats.wmsd
|
|
||||||
,stats.FlAFq
|
|
||||||
,stats.TuAFq
|
|
||||||
,stats.RvAFq
|
|
||||||
,stats.PoFAFq
|
|
||||||
,stats.Net
|
|
||||||
,stats.BBper100
|
|
||||||
,stats.Profitperhand
|
|
||||||
,case when hprof2.variance = -999 then '-'
|
|
||||||
else format(hprof2.variance, 2)
|
|
||||||
end AS Variance
|
|
||||||
,stats.AvgSeats
|
|
||||||
FROM
|
|
||||||
(select /* stats from hudcache */
|
|
||||||
gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType) AS limitType
|
|
||||||
,s.name
|
|
||||||
,<selectgt.bigBlind> AS bigBlindDesc
|
|
||||||
,<hcgametypeId> AS gtId
|
|
||||||
,case when hc.position = 'B' then -2
|
|
||||||
when hc.position = 'S' then -1
|
|
||||||
when hc.position = 'D' then 0
|
|
||||||
when hc.position = 'C' then 1
|
|
||||||
when hc.position = 'M' then 2
|
|
||||||
when hc.position = 'E' then 5
|
|
||||||
else 9
|
|
||||||
end as PlPosition
|
|
||||||
,sum(HDs) AS n
|
|
||||||
,format(100.0*sum(street0VPI)/sum(HDs),1) AS vpip
|
|
||||||
,format(100.0*sum(street0Aggr)/sum(HDs),1) AS pfr
|
|
||||||
,case when sum(street0_3Bchance) = 0 then '0'
|
|
||||||
else format(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),1)
|
|
||||||
end AS pf3
|
|
||||||
,case when sum(stealattemptchance) = 0 then '-'
|
|
||||||
else format(100.0*sum(stealattempted)/sum(stealattemptchance),1)
|
|
||||||
end AS steals
|
|
||||||
,format(100.0*sum(street1Seen)/sum(HDs),1) AS saw_f
|
|
||||||
,format(100.0*sum(sawShowdown)/sum(HDs),1) AS sawsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(sawShowdown)/sum(street1Seen),1)
|
|
||||||
end AS wtsdwsf
|
|
||||||
,case when sum(sawShowdown) = 0 then '-'
|
|
||||||
else format(100.0*sum(wonAtSD)/sum(sawShowdown),1)
|
|
||||||
end AS wmsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(street1Aggr)/sum(street1Seen),1)
|
|
||||||
end AS FlAFq
|
|
||||||
,case when sum(street2Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(street2Aggr)/sum(street2Seen),1)
|
|
||||||
end AS TuAFq
|
|
||||||
,case when sum(street3Seen) = 0 then '-'
|
|
||||||
else format(100.0*sum(street3Aggr)/sum(street3Seen),1)
|
|
||||||
end AS RvAFq
|
|
||||||
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
|
||||||
else format(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
|
||||||
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen)),1)
|
|
||||||
end AS PoFAFq
|
|
||||||
,format(sum(totalProfit)/100.0,2) AS Net
|
|
||||||
,format((sum(totalProfit/(gt.bigBlind+0.0))) / (sum(HDs)/100.0),2)
|
|
||||||
AS BBper100
|
|
||||||
,format( (sum(totalProfit)/100.0) / sum(HDs), 4) AS Profitperhand
|
|
||||||
,format( sum(activeSeats*HDs)/(sum(HDs)+0.0), 2) AS AvgSeats
|
|
||||||
from Gametypes gt
|
|
||||||
inner join Sites s on s.Id = gt.siteId
|
|
||||||
inner join HudCache hc on hc.gameTypeId = gt.Id
|
|
||||||
where hc.playerId in <player_test>
|
|
||||||
and <gtbigBlind_test>
|
|
||||||
and hc.activeSeats <seats_test>
|
|
||||||
and concat( '20', substring(hc.styleKey,2,2), '-', substring(hc.styleKey,4,2), '-'
|
|
||||||
, substring(hc.styleKey,6,2) ) <datestest>
|
|
||||||
group by gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
<groupbygt.bigBlind>
|
|
||||||
,gtId
|
|
||||||
<groupbyseats>
|
|
||||||
,PlPosition
|
|
||||||
) stats
|
|
||||||
inner join
|
|
||||||
( select # profit from handsplayers/handsactions
|
|
||||||
hprof.gtId,
|
|
||||||
case when hprof.position = 'B' then -2
|
|
||||||
when hprof.position = 'S' then -1
|
|
||||||
when hprof.position in ('3','4') then 2
|
|
||||||
when hprof.position in ('6','7') then 5
|
|
||||||
else hprof.position
|
|
||||||
end as PlPosition,
|
|
||||||
sum(hprof.profit) as sum_profit,
|
|
||||||
avg(hprof.profit/100.0) as profitperhand,
|
|
||||||
case when hprof.gtId = -1 then -999
|
|
||||||
else variance(hprof.profit/100.0)
|
|
||||||
end as variance
|
|
||||||
from
|
|
||||||
(select hp.handId, <hgameTypeId> as gtId, hp.position
|
|
||||||
, hp.totalProfit as profit
|
|
||||||
from HandsPlayers hp
|
|
||||||
inner join Hands h ON (h.id = hp.handId)
|
|
||||||
where hp.playerId in <player_test>
|
|
||||||
and hp.tourneysPlayersId IS NULL
|
|
||||||
and date_format(h.handStart, '%Y-%m-%d') <datestest>
|
|
||||||
group by hp.handId, gtId, hp.position, hp.totalProfit
|
|
||||||
) hprof
|
|
||||||
group by hprof.gtId, PlPosition
|
|
||||||
) hprof2
|
|
||||||
on ( hprof2.gtId = stats.gtId
|
|
||||||
and hprof2.PlPosition = stats.PlPosition)
|
|
||||||
order by stats.category, stats.limitType, stats.bigBlindDesc desc
|
|
||||||
<orderbyseats>, cast(stats.PlPosition as signed)
|
|
||||||
"""
|
|
||||||
elif(self.dbname == 'PostgreSQL'):
|
|
||||||
self.query['playerStatsByPosition'] = """
|
|
||||||
select /* stats from hudcache */
|
|
||||||
upper(stats.limitType) || ' '
|
|
||||||
|| upper(substr(stats.category,1,1)) || substr(stats.category,2) || ' '
|
|
||||||
|| stats.name || ' '
|
|
||||||
|| stats.bigBlindDesc AS Game
|
|
||||||
,case when stats.PlPosition = -2 then 'BB'
|
|
||||||
when stats.PlPosition = -1 then 'SB'
|
|
||||||
when stats.PlPosition = 0 then 'Btn'
|
|
||||||
when stats.PlPosition = 1 then 'CO'
|
|
||||||
when stats.PlPosition = 2 then 'MP'
|
|
||||||
when stats.PlPosition = 5 then 'EP'
|
|
||||||
else '??'
|
|
||||||
end AS PlPosition
|
|
||||||
,stats.n
|
|
||||||
,stats.vpip
|
|
||||||
,stats.pfr
|
|
||||||
,stats.pf3
|
|
||||||
,stats.steals
|
|
||||||
,stats.saw_f
|
|
||||||
,stats.sawsd
|
|
||||||
,stats.wtsdwsf
|
|
||||||
,stats.wmsd
|
|
||||||
,stats.FlAFq
|
|
||||||
,stats.TuAFq
|
|
||||||
,stats.RvAFq
|
|
||||||
,stats.PoFAFq
|
|
||||||
,stats.Net
|
|
||||||
,stats.BBper100
|
|
||||||
,stats.Profitperhand
|
|
||||||
,case when hprof2.variance = -999 then '-'
|
|
||||||
else to_char(hprof2.variance, '0D00')
|
|
||||||
end AS Variance
|
|
||||||
,stats.AvgSeats
|
|
||||||
FROM
|
|
||||||
(select /* stats from hudcache */
|
|
||||||
gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType) AS limitType
|
|
||||||
,s.name
|
|
||||||
,<selectgt.bigBlind> AS bigBlindDesc
|
|
||||||
,<hcgametypeId> AS gtId
|
|
||||||
,case when hc.position = 'B' then -2
|
|
||||||
when hc.position = 'S' then -1
|
|
||||||
when hc.position = 'D' then 0
|
|
||||||
when hc.position = 'C' then 1
|
|
||||||
when hc.position = 'M' then 2
|
|
||||||
when hc.position = 'E' then 5
|
|
||||||
else 9
|
|
||||||
end AS PlPosition
|
|
||||||
,sum(HDs) AS n
|
|
||||||
,to_char(round(100.0*sum(street0VPI)/sum(HDs)),'990D0') AS vpip
|
|
||||||
,to_char(round(100.0*sum(street0Aggr)/sum(HDs)),'90D0') AS pfr
|
|
||||||
,case when sum(street0_3Bchance) = 0 then '0'
|
|
||||||
else to_char(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),'90D0')
|
|
||||||
end AS pf3
|
|
||||||
,case when sum(stealattemptchance) = 0 then '-'
|
|
||||||
else to_char(100.0*sum(stealattempted)/sum(stealattemptchance),'90D0')
|
|
||||||
end AS steals
|
|
||||||
,to_char(round(100.0*sum(street1Seen)/sum(HDs)),'90D0') AS saw_f
|
|
||||||
,to_char(round(100.0*sum(sawShowdown)/sum(HDs)),'90D0') AS sawsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else to_char(round(100.0*sum(sawShowdown)/sum(street1Seen)),'90D0')
|
|
||||||
end AS wtsdwsf
|
|
||||||
,case when sum(sawShowdown) = 0 then '-'
|
|
||||||
else to_char(round(100.0*sum(wonAtSD)/sum(sawShowdown)),'90D0')
|
|
||||||
end AS wmsd
|
|
||||||
,case when sum(street1Seen) = 0 then '-'
|
|
||||||
else to_char(round(100.0*sum(street1Aggr)/sum(street1Seen)),'90D0')
|
|
||||||
end AS FlAFq
|
|
||||||
,case when sum(street2Seen) = 0 then '-'
|
|
||||||
else to_char(round(100.0*sum(street2Aggr)/sum(street2Seen)),'90D0')
|
|
||||||
end AS TuAFq
|
|
||||||
,case when sum(street3Seen) = 0 then '-'
|
|
||||||
else to_char(round(100.0*sum(street3Aggr)/sum(street3Seen)),'90D0')
|
|
||||||
end AS RvAFq
|
|
||||||
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
|
||||||
else to_char(round(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
|
||||||
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen))),'90D0')
|
|
||||||
end AS PoFAFq
|
|
||||||
,to_char(sum(totalProfit)/100.0,'9G999G990D00') AS Net
|
|
||||||
,case when sum(HDs) = 0 then '0'
|
|
||||||
else to_char(sum(totalProfit/(gt.bigBlind+0.0)) / (sum(HDs)/100.0), '990D00')
|
|
||||||
end AS BBper100
|
|
||||||
,case when sum(HDs) = 0 then '0'
|
|
||||||
else to_char( (sum(totalProfit)/100.0) / sum(HDs), '90D0000')
|
|
||||||
end AS Profitperhand
|
|
||||||
,to_char(sum(activeSeats*HDs)/(sum(HDs)+0.0),'90D00') AS AvgSeats
|
|
||||||
from Gametypes gt
|
|
||||||
inner join Sites s on (s.Id = gt.siteId)
|
|
||||||
inner join HudCache hc on (hc.gameTypeId = gt.Id)
|
|
||||||
where hc.playerId in <player_test>
|
|
||||||
and <gtbigBlind_test>
|
|
||||||
and hc.activeSeats <seats_test>
|
|
||||||
and '20' || SUBSTR(hc.styleKey,2,2) || '-' || SUBSTR(hc.styleKey,4,2) || '-'
|
|
||||||
|| SUBSTR(hc.styleKey,6,2) <datestest>
|
|
||||||
group by gt.base
|
|
||||||
,gt.category
|
|
||||||
,upper(gt.limitType)
|
|
||||||
,s.name
|
|
||||||
<groupbygt.bigBlind>
|
|
||||||
,gtId
|
|
||||||
<groupbyseats>
|
|
||||||
,PlPosition
|
|
||||||
) stats
|
|
||||||
inner join
|
|
||||||
( select /* profit from handsplayers/handsactions */
|
|
||||||
hprof.gtId,
|
|
||||||
case when hprof.position = 'B' then -2
|
|
||||||
when hprof.position = 'S' then -1
|
|
||||||
when hprof.position in ('3','4') then 2
|
|
||||||
when hprof.position in ('6','7') then 5
|
|
||||||
else cast(hprof.position as smallint)
|
|
||||||
end as PlPosition,
|
|
||||||
sum(hprof.profit) as sum_profit,
|
|
||||||
avg(hprof.profit/100.0) as profitperhand,
|
|
||||||
case when hprof.gtId = -1 then -999
|
|
||||||
else variance(hprof.profit/100.0)
|
|
||||||
end as variance
|
|
||||||
from
|
|
||||||
(select hp.handId, <hgameTypeId> as gtId, hp.position
|
|
||||||
, hp.totalProfit as profit
|
|
||||||
from HandsPlayers hp
|
|
||||||
inner join Hands h ON (h.id = hp.handId)
|
|
||||||
where hp.playerId in <player_test>
|
|
||||||
and hp.tourneysPlayersId IS NULL
|
|
||||||
and to_char(h.handStart, 'YYYY-MM-DD') <datestest>
|
|
||||||
group by hp.handId, gameTypeId, hp.position, hp.totalProfit
|
|
||||||
) hprof
|
|
||||||
group by hprof.gtId, PlPosition
|
|
||||||
) hprof2
|
|
||||||
on ( hprof2.gtId = stats.gtId
|
|
||||||
and hprof2.PlPosition = stats.PlPosition)
|
|
||||||
order by stats.category, stats.limitType, stats.bigBlindDesc desc
|
|
||||||
<orderbyseats>, cast(stats.PlPosition as smallint)
|
|
||||||
"""
|
|
||||||
elif(self.dbname == 'SQLite'):
|
|
||||||
self.query['playerStatsByPosition'] = """ """
|
|
||||||
|
|
||||||
if(self.dbname == 'MySQL InnoDB') or (self.dbname == 'PostgreSQL') or (self.dbname == 'SQLite'):
|
if(self.dbname == 'MySQL InnoDB') or (self.dbname == 'PostgreSQL') or (self.dbname == 'SQLite'):
|
||||||
self.query['getGames'] = """SELECT DISTINCT category from Gametypes"""
|
self.query['getGames'] = """SELECT DISTINCT category from Gametypes"""
|
||||||
|
|
||||||
|
|
|
@ -45,10 +45,10 @@ class GuiPlayerStats (threading.Thread):
|
||||||
self.cursor = self.db.cursor
|
self.cursor = self.db.cursor
|
||||||
|
|
||||||
settings = {}
|
settings = {}
|
||||||
settings.update(config.get_db_parameters())
|
settings.update(self.conf.get_db_parameters())
|
||||||
settings.update(config.get_tv_parameters())
|
settings.update(self.conf.get_tv_parameters())
|
||||||
settings.update(config.get_import_parameters())
|
settings.update(self.conf.get_import_parameters())
|
||||||
settings.update(config.get_default_paths())
|
settings.update(self.conf.get_default_paths())
|
||||||
|
|
||||||
# text used on screen stored here so that it can be configured
|
# text used on screen stored here so that it can be configured
|
||||||
self.filterText = {'handhead':'Hand Breakdown for all levels listed above'
|
self.filterText = {'handhead':'Hand Breakdown for all levels listed above'
|
||||||
|
@ -67,7 +67,7 @@ class GuiPlayerStats (threading.Thread):
|
||||||
"Button2" : True
|
"Button2" : True
|
||||||
}
|
}
|
||||||
|
|
||||||
self.filters = Filters.Filters(self.db, config, querylist, display = filters_display)
|
self.filters = Filters.Filters(self.db, self.conf, self.sql, display = filters_display)
|
||||||
self.filters.registerButton1Name("_Filters")
|
self.filters.registerButton1Name("_Filters")
|
||||||
self.filters.registerButton1Callback(self.showDetailFilter)
|
self.filters.registerButton1Callback(self.showDetailFilter)
|
||||||
self.filters.registerButton2Name("_Refresh")
|
self.filters.registerButton2Name("_Refresh")
|
||||||
|
@ -217,7 +217,7 @@ class GuiPlayerStats (threading.Thread):
|
||||||
flags = [True]
|
flags = [True]
|
||||||
self.addTable(vbox1, 'playerDetailedStats', flags, playerids, sitenos, limits, seats, groups, dates)
|
self.addTable(vbox1, 'playerDetailedStats', flags, playerids, sitenos, limits, seats, groups, dates)
|
||||||
|
|
||||||
self.db.commit()
|
self.db.rollback()
|
||||||
print "Stats page displayed in %4.2f seconds" % (time() - starttime)
|
print "Stats page displayed in %4.2f seconds" % (time() - starttime)
|
||||||
#end def fillStatsFrame(self, vbox):
|
#end def fillStatsFrame(self, vbox):
|
||||||
|
|
||||||
|
|
|
@ -23,29 +23,28 @@ import os
|
||||||
from time import time, strftime
|
from time import time, strftime
|
||||||
|
|
||||||
import fpdb_import
|
import fpdb_import
|
||||||
import fpdb_db
|
import Database
|
||||||
import Filters
|
import Filters
|
||||||
import FpdbSQLQueries
|
import FpdbSQLQueries
|
||||||
|
|
||||||
class GuiPositionalStats (threading.Thread):
|
class GuiPositionalStats (threading.Thread):
|
||||||
def __init__(self, config, querylist, debug=True):
|
def __init__(self, config, querylist, debug=True):
|
||||||
self.debug=debug
|
self.debug = debug
|
||||||
self.conf=config
|
self.conf = config
|
||||||
|
self.sql = querylist
|
||||||
self.MYSQL_INNODB = 2
|
self.MYSQL_INNODB = 2
|
||||||
self.PGSQL = 3
|
self.PGSQL = 3
|
||||||
self.SQLITE = 4
|
self.SQLITE = 4
|
||||||
|
|
||||||
# create new db connection to avoid conflicts with other threads
|
# create new db connection to avoid conflicts with other threads
|
||||||
self.db = fpdb_db.fpdb_db()
|
self.db = Database.Database(self.conf, sql=self.sql)
|
||||||
self.db.do_connect(self.conf)
|
self.cursor = self.db.cursor
|
||||||
self.cursor=self.db.cursor
|
|
||||||
self.sql = querylist
|
|
||||||
|
|
||||||
settings = {}
|
settings = {}
|
||||||
settings.update(config.get_db_parameters())
|
settings.update(self.conf.get_db_parameters())
|
||||||
settings.update(config.get_tv_parameters())
|
settings.update(self.conf.get_tv_parameters())
|
||||||
settings.update(config.get_import_parameters())
|
settings.update(self.conf.get_import_parameters())
|
||||||
settings.update(config.get_default_paths())
|
settings.update(self.conf.get_default_paths())
|
||||||
|
|
||||||
filters_display = { "Heroes" : True,
|
filters_display = { "Heroes" : True,
|
||||||
"Sites" : True,
|
"Sites" : True,
|
||||||
|
@ -59,7 +58,7 @@ class GuiPositionalStats (threading.Thread):
|
||||||
"Button2" : False
|
"Button2" : False
|
||||||
}
|
}
|
||||||
|
|
||||||
self.filters = Filters.Filters(self.db, config, querylist, display = filters_display)
|
self.filters = Filters.Filters(self.db, self.conf, self.sql, display = filters_display)
|
||||||
self.filters.registerButton1Name("Refresh")
|
self.filters.registerButton1Name("Refresh")
|
||||||
self.filters.registerButton1Callback(self.refreshStats)
|
self.filters.registerButton1Callback(self.refreshStats)
|
||||||
|
|
||||||
|
@ -319,7 +318,7 @@ class GuiPositionalStats (threading.Thread):
|
||||||
row = row + 1
|
row = row + 1
|
||||||
vbox.show_all()
|
vbox.show_all()
|
||||||
|
|
||||||
self.db.db.rollback()
|
self.db.rollback()
|
||||||
print "Positional Stats page displayed in %4.2f seconds" % (time() - starttime)
|
print "Positional Stats page displayed in %4.2f seconds" % (time() - starttime)
|
||||||
#end def fillStatsFrame(self, vbox):
|
#end def fillStatsFrame(self, vbox):
|
||||||
|
|
||||||
|
|
487
pyfpdb/SQL.py
487
pyfpdb/SQL.py
|
@ -748,6 +748,493 @@ class Sql:
|
||||||
#elif(self.dbname == 'SQLite'):
|
#elif(self.dbname == 'SQLite'):
|
||||||
# self.query['playerDetailedStats'] = """ """
|
# self.query['playerDetailedStats'] = """ """
|
||||||
|
|
||||||
|
if db_server == 'mysql':
|
||||||
|
self.query['playerStats'] = """
|
||||||
|
SELECT
|
||||||
|
concat(upper(stats.limitType), ' '
|
||||||
|
,concat(upper(substring(stats.category,1,1)),substring(stats.category,2) ), ' '
|
||||||
|
,stats.name, ' '
|
||||||
|
,cast(stats.bigBlindDesc as char)
|
||||||
|
) AS Game
|
||||||
|
,stats.n
|
||||||
|
,stats.vpip
|
||||||
|
,stats.pfr
|
||||||
|
,stats.pf3
|
||||||
|
,stats.steals
|
||||||
|
,stats.saw_f
|
||||||
|
,stats.sawsd
|
||||||
|
,stats.wtsdwsf
|
||||||
|
,stats.wmsd
|
||||||
|
,stats.FlAFq
|
||||||
|
,stats.TuAFq
|
||||||
|
,stats.RvAFq
|
||||||
|
,stats.PoFAFq
|
||||||
|
,stats.Net
|
||||||
|
,stats.BBper100
|
||||||
|
,stats.Profitperhand
|
||||||
|
,case when hprof2.variance = -999 then '-'
|
||||||
|
else format(hprof2.variance, 2)
|
||||||
|
end AS Variance
|
||||||
|
,stats.AvgSeats
|
||||||
|
FROM
|
||||||
|
(select /* stats from hudcache */
|
||||||
|
gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType) as limitType
|
||||||
|
,s.name
|
||||||
|
,<selectgt.bigBlind> AS bigBlindDesc
|
||||||
|
,<hcgametypeId> AS gtId
|
||||||
|
,sum(HDs) AS n
|
||||||
|
,format(100.0*sum(street0VPI)/sum(HDs),1) AS vpip
|
||||||
|
,format(100.0*sum(street0Aggr)/sum(HDs),1) AS pfr
|
||||||
|
,case when sum(street0_3Bchance) = 0 then '0'
|
||||||
|
else format(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),1)
|
||||||
|
end AS pf3
|
||||||
|
,case when sum(stealattemptchance) = 0 then '-'
|
||||||
|
else format(100.0*sum(stealattempted)/sum(stealattemptchance),1)
|
||||||
|
end AS steals
|
||||||
|
,format(100.0*sum(street1Seen)/sum(HDs),1) AS saw_f
|
||||||
|
,format(100.0*sum(sawShowdown)/sum(HDs),1) AS sawsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(sawShowdown)/sum(street1Seen),1)
|
||||||
|
end AS wtsdwsf
|
||||||
|
,case when sum(sawShowdown) = 0 then '-'
|
||||||
|
else format(100.0*sum(wonAtSD)/sum(sawShowdown),1)
|
||||||
|
end AS wmsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(street1Aggr)/sum(street1Seen),1)
|
||||||
|
end AS FlAFq
|
||||||
|
,case when sum(street2Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(street2Aggr)/sum(street2Seen),1)
|
||||||
|
end AS TuAFq
|
||||||
|
,case when sum(street3Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(street3Aggr)/sum(street3Seen),1)
|
||||||
|
end AS RvAFq
|
||||||
|
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
||||||
|
else format(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
||||||
|
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen)),1)
|
||||||
|
end AS PoFAFq
|
||||||
|
,format(sum(totalProfit)/100.0,2) AS Net
|
||||||
|
,format((sum(totalProfit/(gt.bigBlind+0.0))) / (sum(HDs)/100.0),2)
|
||||||
|
AS BBper100
|
||||||
|
,format( (sum(totalProfit)/100.0) / sum(HDs), 4) AS Profitperhand
|
||||||
|
,format( sum(activeSeats*HDs)/(sum(HDs)+0.0), 2) AS AvgSeats
|
||||||
|
from Gametypes gt
|
||||||
|
inner join Sites s on s.Id = gt.siteId
|
||||||
|
inner join HudCache hc on hc.gameTypeId = gt.Id
|
||||||
|
where hc.playerId in <player_test>
|
||||||
|
and <gtbigBlind_test>
|
||||||
|
and hc.activeSeats <seats_test>
|
||||||
|
and concat( '20', substring(hc.styleKey,2,2), '-', substring(hc.styleKey,4,2), '-'
|
||||||
|
, substring(hc.styleKey,6,2) ) <datestest>
|
||||||
|
group by gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType)
|
||||||
|
,s.name
|
||||||
|
<groupbygt.bigBlind>
|
||||||
|
,gtId
|
||||||
|
) stats
|
||||||
|
inner join
|
||||||
|
( select # profit from handsplayers/handsactions
|
||||||
|
hprof.gtId, sum(hprof.profit) sum_profit,
|
||||||
|
avg(hprof.profit/100.0) profitperhand,
|
||||||
|
case when hprof.gtId = -1 then -999
|
||||||
|
else variance(hprof.profit/100.0)
|
||||||
|
end as variance
|
||||||
|
from
|
||||||
|
(select hp.handId, <hgameTypeId> as gtId, hp.totalProfit as profit
|
||||||
|
from HandsPlayers hp
|
||||||
|
inner join Hands h ON h.id = hp.handId
|
||||||
|
where hp.playerId in <player_test>
|
||||||
|
and hp.tourneysPlayersId IS NULL
|
||||||
|
and date_format(h.handStart, '%Y-%m-%d') <datestest>
|
||||||
|
group by hp.handId, gtId, hp.totalProfit
|
||||||
|
) hprof
|
||||||
|
group by hprof.gtId
|
||||||
|
) hprof2
|
||||||
|
on hprof2.gtId = stats.gtId
|
||||||
|
order by stats.category, stats.limittype, stats.bigBlindDesc desc <orderbyseats>"""
|
||||||
|
else: # assume postgres
|
||||||
|
self.query['playerStats'] = """
|
||||||
|
SELECT upper(stats.limitType) || ' '
|
||||||
|
|| initcap(stats.category) || ' '
|
||||||
|
|| stats.name || ' '
|
||||||
|
|| stats.bigBlindDesc AS Game
|
||||||
|
,stats.n
|
||||||
|
,stats.vpip
|
||||||
|
,stats.pfr
|
||||||
|
,stats.pf3
|
||||||
|
,stats.steals
|
||||||
|
,stats.saw_f
|
||||||
|
,stats.sawsd
|
||||||
|
,stats.wtsdwsf
|
||||||
|
,stats.wmsd
|
||||||
|
,stats.FlAFq
|
||||||
|
,stats.TuAFq
|
||||||
|
,stats.RvAFq
|
||||||
|
,stats.PoFAFq
|
||||||
|
,stats.Net
|
||||||
|
,stats.BBper100
|
||||||
|
,stats.Profitperhand
|
||||||
|
,case when hprof2.variance = -999 then '-'
|
||||||
|
else to_char(hprof2.variance, '0D00')
|
||||||
|
end AS Variance
|
||||||
|
,AvgSeats
|
||||||
|
FROM
|
||||||
|
(select gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType) AS limitType
|
||||||
|
,s.name
|
||||||
|
,<selectgt.bigBlind> AS bigBlindDesc
|
||||||
|
,<hcgametypeId> AS gtId
|
||||||
|
,sum(HDs) as n
|
||||||
|
,to_char(100.0*sum(street0VPI)/sum(HDs),'990D0') AS vpip
|
||||||
|
,to_char(100.0*sum(street0Aggr)/sum(HDs),'90D0') AS pfr
|
||||||
|
,case when sum(street0_3Bchance) = 0 then '0'
|
||||||
|
else to_char(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),'90D0')
|
||||||
|
end AS pf3
|
||||||
|
,case when sum(stealattemptchance) = 0 then '-'
|
||||||
|
else to_char(100.0*sum(stealattempted)/sum(stealattemptchance),'90D0')
|
||||||
|
end AS steals
|
||||||
|
,to_char(100.0*sum(street1Seen)/sum(HDs),'90D0') AS saw_f
|
||||||
|
,to_char(100.0*sum(sawShowdown)/sum(HDs),'90D0') AS sawsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else to_char(100.0*sum(sawShowdown)/sum(street1Seen),'90D0')
|
||||||
|
end AS wtsdwsf
|
||||||
|
,case when sum(sawShowdown) = 0 then '-'
|
||||||
|
else to_char(100.0*sum(wonAtSD)/sum(sawShowdown),'90D0')
|
||||||
|
end AS wmsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else to_char(100.0*sum(street1Aggr)/sum(street1Seen),'90D0')
|
||||||
|
end AS FlAFq
|
||||||
|
,case when sum(street2Seen) = 0 then '-'
|
||||||
|
else to_char(100.0*sum(street2Aggr)/sum(street2Seen),'90D0')
|
||||||
|
end AS TuAFq
|
||||||
|
,case when sum(street3Seen) = 0 then '-'
|
||||||
|
else to_char(100.0*sum(street3Aggr)/sum(street3Seen),'90D0')
|
||||||
|
end AS RvAFq
|
||||||
|
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
||||||
|
else to_char(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
||||||
|
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen)),'90D0')
|
||||||
|
end AS PoFAFq
|
||||||
|
,round(sum(totalProfit)/100.0,2) AS Net
|
||||||
|
,to_char((sum(totalProfit/(gt.bigBlind+0.0))) / (sum(HDs)/100.0), '990D00')
|
||||||
|
AS BBper100
|
||||||
|
,to_char(sum(totalProfit/100.0) / (sum(HDs)+0.0), '990D0000') AS Profitperhand
|
||||||
|
,to_char(sum(activeSeats*HDs)/(sum(HDs)+0.0),'90D00') AS AvgSeats
|
||||||
|
from Gametypes gt
|
||||||
|
inner join Sites s on s.Id = gt.siteId
|
||||||
|
inner join HudCache hc on hc.gameTypeId = gt.Id
|
||||||
|
where hc.playerId in <player_test>
|
||||||
|
and <gtbigBlind_test>
|
||||||
|
and hc.activeSeats <seats_test>
|
||||||
|
and '20' || SUBSTR(hc.styleKey,2,2) || '-' || SUBSTR(hc.styleKey,4,2) || '-'
|
||||||
|
|| SUBSTR(hc.styleKey,6,2) <datestest>
|
||||||
|
group by gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType)
|
||||||
|
,s.name
|
||||||
|
<groupbygt.bigBlind>
|
||||||
|
,gtId
|
||||||
|
) stats
|
||||||
|
inner join
|
||||||
|
( select
|
||||||
|
hprof.gtId, sum(hprof.profit) AS sum_profit,
|
||||||
|
avg(hprof.profit/100.0) AS profitperhand,
|
||||||
|
case when hprof.gtId = -1 then -999
|
||||||
|
else variance(hprof.profit/100.0)
|
||||||
|
end as variance
|
||||||
|
from
|
||||||
|
(select hp.handId, <hgameTypeId> as gtId, hp.totalProfit as profit
|
||||||
|
from HandsPlayers hp
|
||||||
|
inner join Hands h ON (h.id = hp.handId)
|
||||||
|
where hp.playerId in <player_test>
|
||||||
|
and hp.tourneysPlayersId IS NULL
|
||||||
|
and to_char(h.handStart, 'YYYY-MM-DD') <datestest>
|
||||||
|
group by hp.handId, gtId, hp.totalProfit
|
||||||
|
) hprof
|
||||||
|
group by hprof.gtId
|
||||||
|
) hprof2
|
||||||
|
on hprof2.gtId = stats.gtId
|
||||||
|
order by stats.base, stats.limittype, stats.bigBlindDesc desc <orderbyseats>"""
|
||||||
|
#elif(self.dbname == 'SQLite'):
|
||||||
|
# self.query['playerStats'] = """ """
|
||||||
|
|
||||||
|
if db_server == 'mysql':
|
||||||
|
self.query['playerStatsByPosition'] = """
|
||||||
|
SELECT
|
||||||
|
concat(upper(stats.limitType), ' '
|
||||||
|
,concat(upper(substring(stats.category,1,1)),substring(stats.category,2) ), ' '
|
||||||
|
,stats.name, ' '
|
||||||
|
,cast(stats.bigBlindDesc as char)
|
||||||
|
) AS Game
|
||||||
|
,case when stats.PlPosition = -2 then 'BB'
|
||||||
|
when stats.PlPosition = -1 then 'SB'
|
||||||
|
when stats.PlPosition = 0 then 'Btn'
|
||||||
|
when stats.PlPosition = 1 then 'CO'
|
||||||
|
when stats.PlPosition = 2 then 'MP'
|
||||||
|
when stats.PlPosition = 5 then 'EP'
|
||||||
|
else '??'
|
||||||
|
end AS PlPosition
|
||||||
|
,stats.n
|
||||||
|
,stats.vpip
|
||||||
|
,stats.pfr
|
||||||
|
,stats.pf3
|
||||||
|
,stats.steals
|
||||||
|
,stats.saw_f
|
||||||
|
,stats.sawsd
|
||||||
|
,stats.wtsdwsf
|
||||||
|
,stats.wmsd
|
||||||
|
,stats.FlAFq
|
||||||
|
,stats.TuAFq
|
||||||
|
,stats.RvAFq
|
||||||
|
,stats.PoFAFq
|
||||||
|
,stats.Net
|
||||||
|
,stats.BBper100
|
||||||
|
,stats.Profitperhand
|
||||||
|
,case when hprof2.variance = -999 then '-'
|
||||||
|
else format(hprof2.variance, 2)
|
||||||
|
end AS Variance
|
||||||
|
,stats.AvgSeats
|
||||||
|
FROM
|
||||||
|
(select /* stats from hudcache */
|
||||||
|
gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType) AS limitType
|
||||||
|
,s.name
|
||||||
|
,<selectgt.bigBlind> AS bigBlindDesc
|
||||||
|
,<hcgametypeId> AS gtId
|
||||||
|
,case when hc.position = 'B' then -2
|
||||||
|
when hc.position = 'S' then -1
|
||||||
|
when hc.position = 'D' then 0
|
||||||
|
when hc.position = 'C' then 1
|
||||||
|
when hc.position = 'M' then 2
|
||||||
|
when hc.position = 'E' then 5
|
||||||
|
else 9
|
||||||
|
end as PlPosition
|
||||||
|
,sum(HDs) AS n
|
||||||
|
,format(100.0*sum(street0VPI)/sum(HDs),1) AS vpip
|
||||||
|
,format(100.0*sum(street0Aggr)/sum(HDs),1) AS pfr
|
||||||
|
,case when sum(street0_3Bchance) = 0 then '0'
|
||||||
|
else format(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),1)
|
||||||
|
end AS pf3
|
||||||
|
,case when sum(stealattemptchance) = 0 then '-'
|
||||||
|
else format(100.0*sum(stealattempted)/sum(stealattemptchance),1)
|
||||||
|
end AS steals
|
||||||
|
,format(100.0*sum(street1Seen)/sum(HDs),1) AS saw_f
|
||||||
|
,format(100.0*sum(sawShowdown)/sum(HDs),1) AS sawsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(sawShowdown)/sum(street1Seen),1)
|
||||||
|
end AS wtsdwsf
|
||||||
|
,case when sum(sawShowdown) = 0 then '-'
|
||||||
|
else format(100.0*sum(wonAtSD)/sum(sawShowdown),1)
|
||||||
|
end AS wmsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(street1Aggr)/sum(street1Seen),1)
|
||||||
|
end AS FlAFq
|
||||||
|
,case when sum(street2Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(street2Aggr)/sum(street2Seen),1)
|
||||||
|
end AS TuAFq
|
||||||
|
,case when sum(street3Seen) = 0 then '-'
|
||||||
|
else format(100.0*sum(street3Aggr)/sum(street3Seen),1)
|
||||||
|
end AS RvAFq
|
||||||
|
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
||||||
|
else format(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
||||||
|
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen)),1)
|
||||||
|
end AS PoFAFq
|
||||||
|
,format(sum(totalProfit)/100.0,2) AS Net
|
||||||
|
,format((sum(totalProfit/(gt.bigBlind+0.0))) / (sum(HDs)/100.0),2)
|
||||||
|
AS BBper100
|
||||||
|
,format( (sum(totalProfit)/100.0) / sum(HDs), 4) AS Profitperhand
|
||||||
|
,format( sum(activeSeats*HDs)/(sum(HDs)+0.0), 2) AS AvgSeats
|
||||||
|
from Gametypes gt
|
||||||
|
inner join Sites s on s.Id = gt.siteId
|
||||||
|
inner join HudCache hc on hc.gameTypeId = gt.Id
|
||||||
|
where hc.playerId in <player_test>
|
||||||
|
and <gtbigBlind_test>
|
||||||
|
and hc.activeSeats <seats_test>
|
||||||
|
and concat( '20', substring(hc.styleKey,2,2), '-', substring(hc.styleKey,4,2), '-'
|
||||||
|
, substring(hc.styleKey,6,2) ) <datestest>
|
||||||
|
group by gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType)
|
||||||
|
,s.name
|
||||||
|
<groupbygt.bigBlind>
|
||||||
|
,gtId
|
||||||
|
<groupbyseats>
|
||||||
|
,PlPosition
|
||||||
|
) stats
|
||||||
|
inner join
|
||||||
|
( select # profit from handsplayers/handsactions
|
||||||
|
hprof.gtId,
|
||||||
|
case when hprof.position = 'B' then -2
|
||||||
|
when hprof.position = 'S' then -1
|
||||||
|
when hprof.position in ('3','4') then 2
|
||||||
|
when hprof.position in ('6','7') then 5
|
||||||
|
else hprof.position
|
||||||
|
end as PlPosition,
|
||||||
|
sum(hprof.profit) as sum_profit,
|
||||||
|
avg(hprof.profit/100.0) as profitperhand,
|
||||||
|
case when hprof.gtId = -1 then -999
|
||||||
|
else variance(hprof.profit/100.0)
|
||||||
|
end as variance
|
||||||
|
from
|
||||||
|
(select hp.handId, <hgameTypeId> as gtId, hp.position
|
||||||
|
, hp.totalProfit as profit
|
||||||
|
from HandsPlayers hp
|
||||||
|
inner join Hands h ON (h.id = hp.handId)
|
||||||
|
where hp.playerId in <player_test>
|
||||||
|
and hp.tourneysPlayersId IS NULL
|
||||||
|
and date_format(h.handStart, '%Y-%m-%d') <datestest>
|
||||||
|
group by hp.handId, gtId, hp.position, hp.totalProfit
|
||||||
|
) hprof
|
||||||
|
group by hprof.gtId, PlPosition
|
||||||
|
) hprof2
|
||||||
|
on ( hprof2.gtId = stats.gtId
|
||||||
|
and hprof2.PlPosition = stats.PlPosition)
|
||||||
|
order by stats.category, stats.limitType, stats.bigBlindDesc desc
|
||||||
|
<orderbyseats>, cast(stats.PlPosition as signed)
|
||||||
|
"""
|
||||||
|
else: # assume postgresql
|
||||||
|
self.query['playerStatsByPosition'] = """
|
||||||
|
select /* stats from hudcache */
|
||||||
|
upper(stats.limitType) || ' '
|
||||||
|
|| upper(substr(stats.category,1,1)) || substr(stats.category,2) || ' '
|
||||||
|
|| stats.name || ' '
|
||||||
|
|| stats.bigBlindDesc AS Game
|
||||||
|
,case when stats.PlPosition = -2 then 'BB'
|
||||||
|
when stats.PlPosition = -1 then 'SB'
|
||||||
|
when stats.PlPosition = 0 then 'Btn'
|
||||||
|
when stats.PlPosition = 1 then 'CO'
|
||||||
|
when stats.PlPosition = 2 then 'MP'
|
||||||
|
when stats.PlPosition = 5 then 'EP'
|
||||||
|
else '??'
|
||||||
|
end AS PlPosition
|
||||||
|
,stats.n
|
||||||
|
,stats.vpip
|
||||||
|
,stats.pfr
|
||||||
|
,stats.pf3
|
||||||
|
,stats.steals
|
||||||
|
,stats.saw_f
|
||||||
|
,stats.sawsd
|
||||||
|
,stats.wtsdwsf
|
||||||
|
,stats.wmsd
|
||||||
|
,stats.FlAFq
|
||||||
|
,stats.TuAFq
|
||||||
|
,stats.RvAFq
|
||||||
|
,stats.PoFAFq
|
||||||
|
,stats.Net
|
||||||
|
,stats.BBper100
|
||||||
|
,stats.Profitperhand
|
||||||
|
,case when hprof2.variance = -999 then '-'
|
||||||
|
else to_char(hprof2.variance, '0D00')
|
||||||
|
end AS Variance
|
||||||
|
,stats.AvgSeats
|
||||||
|
FROM
|
||||||
|
(select /* stats from hudcache */
|
||||||
|
gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType) AS limitType
|
||||||
|
,s.name
|
||||||
|
,<selectgt.bigBlind> AS bigBlindDesc
|
||||||
|
,<hcgametypeId> AS gtId
|
||||||
|
,case when hc.position = 'B' then -2
|
||||||
|
when hc.position = 'S' then -1
|
||||||
|
when hc.position = 'D' then 0
|
||||||
|
when hc.position = 'C' then 1
|
||||||
|
when hc.position = 'M' then 2
|
||||||
|
when hc.position = 'E' then 5
|
||||||
|
else 9
|
||||||
|
end AS PlPosition
|
||||||
|
,sum(HDs) AS n
|
||||||
|
,to_char(round(100.0*sum(street0VPI)/sum(HDs)),'990D0') AS vpip
|
||||||
|
,to_char(round(100.0*sum(street0Aggr)/sum(HDs)),'90D0') AS pfr
|
||||||
|
,case when sum(street0_3Bchance) = 0 then '0'
|
||||||
|
else to_char(100.0*sum(street0_3Bdone)/sum(street0_3Bchance),'90D0')
|
||||||
|
end AS pf3
|
||||||
|
,case when sum(stealattemptchance) = 0 then '-'
|
||||||
|
else to_char(100.0*sum(stealattempted)/sum(stealattemptchance),'90D0')
|
||||||
|
end AS steals
|
||||||
|
,to_char(round(100.0*sum(street1Seen)/sum(HDs)),'90D0') AS saw_f
|
||||||
|
,to_char(round(100.0*sum(sawShowdown)/sum(HDs)),'90D0') AS sawsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else to_char(round(100.0*sum(sawShowdown)/sum(street1Seen)),'90D0')
|
||||||
|
end AS wtsdwsf
|
||||||
|
,case when sum(sawShowdown) = 0 then '-'
|
||||||
|
else to_char(round(100.0*sum(wonAtSD)/sum(sawShowdown)),'90D0')
|
||||||
|
end AS wmsd
|
||||||
|
,case when sum(street1Seen) = 0 then '-'
|
||||||
|
else to_char(round(100.0*sum(street1Aggr)/sum(street1Seen)),'90D0')
|
||||||
|
end AS FlAFq
|
||||||
|
,case when sum(street2Seen) = 0 then '-'
|
||||||
|
else to_char(round(100.0*sum(street2Aggr)/sum(street2Seen)),'90D0')
|
||||||
|
end AS TuAFq
|
||||||
|
,case when sum(street3Seen) = 0 then '-'
|
||||||
|
else to_char(round(100.0*sum(street3Aggr)/sum(street3Seen)),'90D0')
|
||||||
|
end AS RvAFq
|
||||||
|
,case when sum(street1Seen)+sum(street2Seen)+sum(street3Seen) = 0 then '-'
|
||||||
|
else to_char(round(100.0*(sum(street1Aggr)+sum(street2Aggr)+sum(street3Aggr))
|
||||||
|
/(sum(street1Seen)+sum(street2Seen)+sum(street3Seen))),'90D0')
|
||||||
|
end AS PoFAFq
|
||||||
|
,to_char(sum(totalProfit)/100.0,'9G999G990D00') AS Net
|
||||||
|
,case when sum(HDs) = 0 then '0'
|
||||||
|
else to_char(sum(totalProfit/(gt.bigBlind+0.0)) / (sum(HDs)/100.0), '990D00')
|
||||||
|
end AS BBper100
|
||||||
|
,case when sum(HDs) = 0 then '0'
|
||||||
|
else to_char( (sum(totalProfit)/100.0) / sum(HDs), '90D0000')
|
||||||
|
end AS Profitperhand
|
||||||
|
,to_char(sum(activeSeats*HDs)/(sum(HDs)+0.0),'90D00') AS AvgSeats
|
||||||
|
from Gametypes gt
|
||||||
|
inner join Sites s on (s.Id = gt.siteId)
|
||||||
|
inner join HudCache hc on (hc.gameTypeId = gt.Id)
|
||||||
|
where hc.playerId in <player_test>
|
||||||
|
and <gtbigBlind_test>
|
||||||
|
and hc.activeSeats <seats_test>
|
||||||
|
and '20' || SUBSTR(hc.styleKey,2,2) || '-' || SUBSTR(hc.styleKey,4,2) || '-'
|
||||||
|
|| SUBSTR(hc.styleKey,6,2) <datestest>
|
||||||
|
group by gt.base
|
||||||
|
,gt.category
|
||||||
|
,upper(gt.limitType)
|
||||||
|
,s.name
|
||||||
|
<groupbygt.bigBlind>
|
||||||
|
,gtId
|
||||||
|
<groupbyseats>
|
||||||
|
,PlPosition
|
||||||
|
) stats
|
||||||
|
inner join
|
||||||
|
( select /* profit from handsplayers/handsactions */
|
||||||
|
hprof.gtId,
|
||||||
|
case when hprof.position = 'B' then -2
|
||||||
|
when hprof.position = 'S' then -1
|
||||||
|
when hprof.position in ('3','4') then 2
|
||||||
|
when hprof.position in ('6','7') then 5
|
||||||
|
else cast(hprof.position as smallint)
|
||||||
|
end as PlPosition,
|
||||||
|
sum(hprof.profit) as sum_profit,
|
||||||
|
avg(hprof.profit/100.0) as profitperhand,
|
||||||
|
case when hprof.gtId = -1 then -999
|
||||||
|
else variance(hprof.profit/100.0)
|
||||||
|
end as variance
|
||||||
|
from
|
||||||
|
(select hp.handId, <hgameTypeId> as gtId, hp.position
|
||||||
|
, hp.totalProfit as profit
|
||||||
|
from HandsPlayers hp
|
||||||
|
inner join Hands h ON (h.id = hp.handId)
|
||||||
|
where hp.playerId in <player_test>
|
||||||
|
and hp.tourneysPlayersId IS NULL
|
||||||
|
and to_char(h.handStart, 'YYYY-MM-DD') <datestest>
|
||||||
|
group by hp.handId, gameTypeId, hp.position, hp.totalProfit
|
||||||
|
) hprof
|
||||||
|
group by hprof.gtId, PlPosition
|
||||||
|
) hprof2
|
||||||
|
on ( hprof2.gtId = stats.gtId
|
||||||
|
and hprof2.PlPosition = stats.PlPosition)
|
||||||
|
order by stats.category, stats.limitType, stats.bigBlindDesc desc
|
||||||
|
<orderbyseats>, cast(stats.PlPosition as smallint)
|
||||||
|
"""
|
||||||
|
#elif(self.dbname == 'SQLite'):
|
||||||
|
# self.query['playerStatsByPosition'] = """ """
|
||||||
|
|
||||||
if __name__== "__main__":
|
if __name__== "__main__":
|
||||||
# just print the default queries and exit
|
# just print the default queries and exit
|
||||||
s = Sql(game = 'razz', type = 'ptracks')
|
s = Sql(game = 'razz', type = 'ptracks')
|
||||||
|
|
|
@ -470,7 +470,7 @@ class fpdb:
|
||||||
self.add_and_display_tab(ps_tab, "Player Stats")
|
self.add_and_display_tab(ps_tab, "Player Stats")
|
||||||
|
|
||||||
def tab_positional_stats(self, widget, data=None):
|
def tab_positional_stats(self, widget, data=None):
|
||||||
new_ps_thread=GuiPositionalStats.GuiPositionalStats(self.config, self.querydict)
|
new_ps_thread = GuiPositionalStats.GuiPositionalStats(self.config, self.sql)
|
||||||
self.threads.append(new_ps_thread)
|
self.threads.append(new_ps_thread)
|
||||||
ps_tab=new_ps_thread.get_vbox()
|
ps_tab=new_ps_thread.get_vbox()
|
||||||
self.add_and_display_tab(ps_tab, "Positional Stats")
|
self.add_and_display_tab(ps_tab, "Positional Stats")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user