Open Side Menu Go to the Top
Register
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013

06-12-2010 , 08:46 PM
From previous post, I've learned that you can't get rid of the fpdb menu. However you can shorten the text to make it look smaller.

Is there anyway to move the menu to a different part of the table? I can't seem to find the x,y for the menu display in hud.config.

Thanks
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-13-2010 , 01:26 AM
Quote:
Originally Posted by arsenal6
From previous post, I've learned that you can't get rid of the fpdb menu. However you can shorten the text to make it look smaller.

Is there anyway to move the menu to a different part of the table? I can't seem to find the x,y for the menu display in hud.config.

Thanks
I shortened the word to just "Menu" and relocated it over the chip tray in my no images mod. It is located in the "hud.py" file, about two-thirds of the way down the page (I think it appears twice in that file, it's the second one way down on the page. The first one appears early.... here's my change

self.main_window.move(x + 275, y - 25)


I believe before the change it says "self.main_window.move(x,y) I had to use the "-" key to locate it in the bar above the table. Start with this and play with it from there.

Dog
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-13-2010 , 04:41 AM
Quote:
Originally Posted by arsenal6
From previous post, I've learned that you can't get rid of the fpdb menu. However you can shorten the text to make it look smaller.

Is there anyway to move the menu to a different part of the table? I can't seem to find the x,y for the menu display in hud.config.

Thanks
only way right now, is if you have the source code version, to follow what dog said. I spent some time long ago trying to get it to save the position of the "menu box" as seat 0 on a table, but the existing position saving code was having none of that business. We're all a lot more experienced with both the language and the code now, so maybe that would be a lot easier to do...
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-13-2010 , 11:58 AM
Quote:
Originally Posted by ekdikeo
only way right now, is if you have the source code version, to follow what dog said. I spent some time long ago trying to get it to save the position of the "menu box" as seat 0 on a table, but the existing position saving code was having none of that business. We're all a lot more experienced with both the language and the code now, so maybe that would be a lot easier to do...


hmm, i don't think im using the source code version. Is exe. version the source code version?

What's the main difference between the source code version and the exe. version?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-13-2010 , 09:29 PM
Quote:
Originally Posted by arsenal6
hmm, i don't think im using the source code version. Is exe. version the source code version?

What's the main difference between the source code version and the exe. version?
You can edit the source code to change the location of the menu. The exe version is already compiled and cannot be directly edited.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 12:55 AM
Quote:
Originally Posted by Cardvark
You can edit the source code to change the location of the menu. The exe version is already compiled and cannot be directly edited.
Which one is the source code version?

http://****************/projects/fpdb...e&sortdir=desc


Also. I noticed that the latest exe. version is dated 12th of this month. The exe. version im running right now is from march(20100307).

Is the latest one an update or something? If so. what's been updated?
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 02:21 AM
Quote:
Originally Posted by arsenal6
Which one is the source code version?

http://****************/projects/fpdb...e&sortdir=desc


Also. I noticed that the latest exe. version is dated 12th of this month. The exe. version im running right now is from march(20100307).

Is the latest one an update or something? If so. what's been updated?
Source code versions don't end in .exe and are a bit harder to install, but offer more flexibility when there are small changes to just one file, or when you want to make a change to a file. If you're not familiar with editing files you might want to stick with the "exe" versions. You should download and install the June exe version. There's been a lot of changes since March.

Dog
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 02:22 AM
so, I just got a brand new macbook pro a couple months, ago, my first mac. throughout the day I downloaded everything it said to, installed and configured everything according to the guide.

I got to the final step:
Quote:
5. Run fpdb

Now start your X windows client, open a shell, find the pyfpdb/fpdb.py file and run

pythonw path_to/fpdb.py &
I have X11, so I know what that is. I'm guessing "open a shell" means to run the terminal. I tried entering both strings, but I only received errors.

I also tried to open the fpdb.py file through finder, with several programs. The only response I could note was when I ran it through whatever the default is, and IDLE was jumping around on the app bar, until I force quit it.

Could someone give me an idiot's guide to how to run the program?

thanks
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 05:57 AM
as an aside, after being semi retired from poker for the last several months, I transferred in some monies on everleaf, downloaded the exe version, ran it, and it picked up exactly where I left off, using an ancient config file and everything. Very happy making.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 06:06 AM
Quote:
Originally Posted by Ben Young
I tried entering both strings, but I only received errors.
I'm not sure what you mean with "both strings". Anyway, you should enter this:

Code:
pythonw path_to/fpdb.pyw &
Please substitute "path_to" with the actual path to the fpdb.pyw file. Or you run pythonw right out of the fpdb folder. There was also apparently a very recent change. So the correct file to run is not fpdb.py but fpdb.pyw (with a "w" at the end). I don't think this has been documented yet.

I hope this helps.

Good luck,
CV
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 08:54 AM
Quote:
Originally Posted by Cardvark
I'm not sure what you mean with "both strings". Anyway, you should enter this:

Code:
pythonw path_to/fpdb.pyw &
Please substitute "path_to" with the actual path to the fpdb.pyw file. Or you run pythonw right out of the fpdb folder. There was also apparently a very recent change. So the correct file to run is not fpdb.py but fpdb.pyw (with a "w" at the end). I don't think this has been documented yet.

I hope this helps.

Good luck,
CV
By "both strings" I meant "pyfpdb/fpdb.py" and "pythonw path_to/fpdb.py &'

I looked through the pyfpdb folder, and searched all of the program files and found no .pyw file, and the only file with 'pythonw' in the name was PyrhonWSource.icns, which is just an image
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 09:27 AM
Quote:
Originally Posted by arsenal6
Which one is the source code version?

http://****************/projects/fpdb...e&sortdir=desc


Also. I noticed that the latest exe. version is dated 12th of this month. The exe. version im running right now is from march(20100307).

Is the latest one an update or something? If so. what's been updated?
a new version is being prepared by the devs (there is some discussion on the fpdb-main mailing list). as far as I know, this snapshot will include most if not all of the fixes and improvements available in the current GIT souce code downloads.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 10:41 AM
Quote:
Originally Posted by Ben Young
By "both strings" I meant "pyfpdb/fpdb.py" and "pythonw path_to/fpdb.py &'

I looked through the pyfpdb folder, and searched all of the program files and found no .pyw file, and the only file with 'pythonw' in the name was PyrhonWSource.icns, which is just an image
Hm, as a caveat I have to say that I don't know much about Macs and I also don't know in how far my Windows version is different from yours. So a developer might be able to help you better. But I'll give it a try anyway. In the folder of your Python installation there should be a program called "pythonw" (not in the folder of your FPDB installation). This is the Python interpreter which will execute the source code of the FPDB program. In my (Windows) installation it is called "pythonw.exe" but I also have another one called "python.exe" which also seems to work. So you run the Python interpreter with the FPDB source code as parameter, like in the above mentioned string. If your pyfpdb folder does not contain fpdb.pyw then you probably have not upgraded to the very latest version of the program yet (which I was told is only a few days old). Then you should use fpdb.py instead.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 10:13 PM
This is embarrassing, as I feel like I'm missing something REALLY obvious, but here goes:

Brand new user, first time installation. Downloaded the extraction file (fpdb-20100612-exe.exe), extracted the folder to my desktop.

Opened the folder, ran the .bat file, and I get this error:

"There is an error in your config file
C:\Documents and Settings\MYNAME\Desktop\fpdb-20100612-exe\pyfpdb\HUD_config.xml

Error is: not well-formed (invalid token): line 5, column 36"


Did I miss a preparation step or something? I've installed Python 2.6, that's the only preparation step I've performed thus far.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 11:17 PM
Oops, to clarify, I'm using Windows XP. Gonna try it on ubuntu as well for kicks.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 11:19 PM
Quote:
Originally Posted by arsenal6
The hud caches didn't improve my auto importing. Any other suggestions sorrow?

Thanks for helping me out
Quote:
Originally Posted by keshaldra
Oops, to clarify, I'm using Windows XP. Gonna try it on ubuntu as well for kicks.
Really quick response - there is now a new exe version up which fixes your issue with the default config. (we hope)

Sorrow
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-14-2010 , 11:33 PM
Quote:
Originally Posted by sorrow
Really quick response - there is now a new exe version up which fixes your issue with the default config. (we hope)

Sorrow
downloaded the new exe (614); still have the same issue, same error.

Ubuntu, however, is going swimmingly so far. I'll post any updates on both as I come across them.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 12:40 AM
Quote:
Originally Posted by keshaldra
downloaded the new exe (614); still have the same issue, same error.

Ubuntu, however, is going swimmingly so far. I'll post any updates on both as I come across them.
I think you may need to delete the config created by the last release first.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 01:02 AM
Quote:
Originally Posted by sorrow
I think you may need to delete the config created by the last release first.
I figured it had to be something local; my buddy just tried it and it worked fine.

Deleted the fpdb file in Application Data and re-extracted....looks to be working now. Thanks! More updates as I go.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 05:15 AM
Quote:
Originally Posted by arsenal6
hmm, i don't think im using the source code version. Is exe. version the source code version?

What's the main difference between the source code version and the exe. version?
The .exe version is the easy setup version. The sacrifice for easy setup is that its inflexible - if there is a bug, its going to be a while before a new release fixes the problem.

Quote:
Originally Posted by arsenal6
Is the latest one an update or something? If so. what's been updated?
Short version is bug fixes, stat fixes and not that much more. The last 3 months of development have been pretty quiet - initially due to stabilising for a release.
Quote:
Originally Posted by Ben Young
so, I just got a brand new macbook pro a couple months, ago, my first mac

...

Could someone give me an idiot's guide to how to run the program?
On the Mac there is no such thing as an idiots guide unfortunately. I would almost consider any attempts to get this working on a Mac to be developer only.

Sorrow
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 10:58 AM
Hi, everyone. I have installed fpdb and had an error:
config : ERROR Error parsing C:\Documents and Settings\Compaq_Owner\Application Data\fpdb\HUD_config.xml. See error log file.
Traceback (most recent call last):
File "Configuration.pyc", line 517, in __init__
File "xml\dom\minidom.pyc", line 1913, in parse
File "xml\dom\expatbuilder.pyc", line 924, in parse
File "xml\dom\expatbuilder.pyc", line 207, in parseFile
ExpatError: not well-formed (invalid token): line 6, column 34
Traceback (most recent call last):
File "fpdb.pyw", line 1067, in <module>
File "fpdb.pyw", line 940, in __init__
File "fpdb.pyw", line 745, in load_profile
File "Database.pyc", line 257, in __init__
File "Database.pyc", line 307, in do_connect
File "Database.pyc", line 398, in connect
File "ntpath.pyc", line 102, in join
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 26-27: invalid data


Could somebody say what to do?
p.s I use Windows XP
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 04:43 PM
Here's an example of "All In Pre-Flop, NLHE, Full Tilt.

The names have been changed to protect the imbecile.
Code:
Full Tilt Poker Game #19505996411: $2 + $0.25 Sit & Go (148860619), Table 1 - 300/600 - Limit Hold'em - 18:58:46 ET - 2010/03/23
Seat 2: Player2 (7,723)
Seat 5: Player5 (3,409)
Seat 6: Player6 (50)
Seat 8: Player8 (818)
Player6 posts the small blind of 50, and is all in
Player8 posts the big blind of 300
The button is in seat #5
*** HOLE CARDS ***
Dealt to Player5 [2h 9h]
Player2 has 15 seconds left to act
Player2 calls 300
Player5 folds
Player8 checks
*** FLOP *** [2d 7s Qc]
Player8 checks
Player2 checks
*** TURN *** [2d 7s Qc] [8s]
Player8 checks
Player2 checks
*** RIVER *** [2d 7s Qc 8s] [5c]
Player8 checks
Player2 checks
*** SHOW DOWN ***
Player8 shows [Ts 4c] Queen Ten high
Player2 shows [2c As] a pair of Twos
Player2 wins the side pot (500) with a pair of Twos
Player6 shows [7c 5s] two pair, Sevens and Fives
Player6 wins the main pot (150) with two pair, Sevens and Fives
*** SUMMARY ***
Total pot 650 Main pot 150. Side pot 500. | Rake 0
Board: [2d 7s Qc 8s 5c]
Seat 2: Player2 showed [2c As] and won (500) with a pair of Twos
Seat 5: Player5 (button) didn't bet (folded)
Seat 6: Player6 (small blind) showed [7c 5s] and won (150) with two pair, Sevens and Fives
Seat 8: Player8 (big blind) showed [Ts 4c] and lost with Queen Ten high
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 05:28 PM
Quote:
Originally Posted by dontsoff
Hi, everyone. I have installed fpdb and had an error:
Could somebody say what to do?
p.s I use Windows XP

Hello dontsoff

If you installed fpdb for the first time in the last few days, then there was a small problem in the configuration file for totally new installations. This has been fixed, so please try the steps below:

IMPORTANT - if you have previously had fpdb working normally (i.e. importing hands) do not carry out these instructions, something else is wrong.

1. rename the fpdb application data folder C:\Documents and Settings\Compaq_Owner\Application Data\fpdb to something like C:\Documents and Settings\Compaq_Owner\Application Data\fpdbold

Note: you will probably need to set the file explorer to show "hidden files".

2. Download the very latest .exe version from the fpdb site (fpdb-20100614-exe.exe)

3. Install and run fpdb from the new download - everything should work as expected.
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 05:42 PM
Is the newest release based on GMT time? It appears to be, just wanted to confirm. I saw all my HUD stats change at 5pm local PDT. But if I run graphs, which have been working great, it won't recognize the new day, even with hh's past the time change. It appears to wait until midnight local time... Do I need a dual time zone watch?

Dog
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote
06-15-2010 , 06:14 PM
Quote:
Originally Posted by arsenal6
Is the latest one an update or something? If so. what's been updated?
As Sorrow says, fpdb-20100614-exe is mainly a snapshot with the handful of bugfixes since March. A few notable highlights for the .exe users are:

Fixes
  • XP Pro - the install now works correctly
  • Graphs are now working
  • Selecting game types in graphs now works
  • The continuation bet issue is fixed

New stuff
  • fpdb will no longer create a taskbar item for the batch file
  • The "fold street" stats have been added
  • The screen position of the fpdb HUD menu is now configurable ( 2 new variables "xshift" and "yshift" have to be added to existing xml config files, see the example config in the .exe package)

A known issue for .exe users

There is a known issue when closing the HUD. Please do not click "X" to close the "HUD main window"- if you do this, you may lose control of the poker window until the next hud update or until you stop FPDB, and may also mean that the HUD sub-process has to be manually stopped from the task manager. This issue only affects the .exe version and does not affect systems running the source code.

To close down the HUD, please use the "stop autoimport" button from the main FPDB application.

Regards
Gimik
Free, open source poker tracking software: FPDB - (Version 0.40.5) - Nov 14, 2013 Quote

      
m