Open Side Menu Go to the Top
Register
Flop Free - Online Range Analysis Tool Flop Free - Online Range Analysis Tool

03-06-2016 , 04:30 PM
I would like to introduce an online range analysis tool that I am developing. It is on an initial version, but it is already able to show the probability of hitting each hand based on a range and a flop chosen by the user.

It works on any browser that supports WebGL, except mobile. If you are interested, just click the link below and wait for the application to load (sometimes it can take about 70 seconds to load for the first time, depending on the server).

http://flopfree.com


Flop Free - Online Range Analysis Tool Quote
03-14-2016 , 04:04 PM
Thanks for sharing. Nice job! I was actually planning on programming the same with some more features. However, I'm a real beginner with programiming. In which language did you make this? Could you give me some tipps, what is the best way of creating that kind of a grid of hands? I'm using Visual Studio.
Flop Free - Online Range Analysis Tool Quote
03-14-2016 , 08:44 PM
Hi roopemcankka,

I used Unity3D / C# and exported to WebGL. It is not recommended to use a game engine to develop an app, but since I was a game developer and I know Unity very well, I decided to use it. Also, It can export to almost anything if needed, including mobile. I intend to add more features in the future when I have free time.

I created the grid by code. Basically, you need to have the model for the card button (it is called a prefab in Unity3D). Then, you instantiate these prefabs and position them accordingly. Below is a pseudo-code for this:

Code:
for (int i = 0; i < 13; i++)
{
    for (int j = 0; j < 13; j++)
    {
        Card card = CreateCard();
        card.position.x = SIZE * j;
        card.position.y = SIZE * i;
    }
}
Flop Free - Online Range Analysis Tool Quote
08-24-2016 , 07:27 AM
great software! just a few suggestions. can you make it so you can determine how a range will hit prior to selecting flop cards?

also, different types of hand textures will be awesome too!
Flop Free - Online Range Analysis Tool Quote
08-24-2016 , 08:14 PM
Hi tombrady,

I am glad you liked it. I was planing to implement the feature you have requested, but unfortunately I am too busy at my job and don't have more free time to work on this project, but I hope to continue the development some day.
Flop Free - Online Range Analysis Tool Quote
09-05-2016 , 01:46 PM
Cool tool.... good work with it.
Flop Free - Online Range Analysis Tool Quote
01-15-2017 , 10:36 AM
Hey really cool! How many hours did you that take you to build?
Flop Free - Online Range Analysis Tool Quote
02-15-2017 , 06:25 AM
Gotta give you props, mad props brah, mad props. A really good tool
Flop Free - Online Range Analysis Tool Quote
07-10-2017 , 09:08 PM
I've been working on this project on my free time and I really don't know how much time I've spent in the project.
Flop Free - Online Range Analysis Tool Quote
07-10-2017 , 09:20 PM
Version 0.2 is released with some cool new features:
  • The app can now generate a URL with the current analysis that can be shared with anyone, so it is really easy to show your analysis to other people.
  • Evaluation of hands for unspecified flops (generating all flop combinations to compute the probabilities).
  • Weights included.
  • Turn card included.

For the complete list of changes, please check:

http://flopfree.com/changelog.html

I hope you enjoy the update.
Flop Free - Online Range Analysis Tool Quote

      
m