Boost, that is so very true about putting stuff online and the security of the server and such. Understand completely.
The idea of a setup .csv is a very cool idea. So I am interested in helping with conditions if needed.
I still like the idea of a tournament being 4 scores (rounds). I played Links 2003 in online tournaments for about 10 years (sometimes even on courses I designed) and am now playing Perfect Golf tournaments online for about the last 3 months. I often played practice rounds previous to my tournament rounds to get a feel for the course and conditions. We could still use the World Tour or even the Play Golf option (even thought there are fewer courses, this difference between TC and AAP surprised me a bit) to practice prior to playing our tournament rounds.
But mostly, I look forward to participating and competing with a fun community of players that brought such enhanced enjoyment beyond what I ever expected from my new arcade game.
Helping with setup would be great. These tournaments are not for me to dictate what everyone plays. It's for you guys to tell me what you want and then I make it happen. So I'm not sure if you are familiar with .csv files but they are really simple. You can use excel if you want or do it with a text editor like notepad, emacs, vi, whatever. But here is how the format needs to be:
Each course obviously has 18 holes. The game requires 60 days worth of condition information per hole. That's going to be 1080 lines of information. Each line will be in the order of (Pin Index, Wind Direction, Wind Speed, Rain, Fog). The pin index is a number between 0 and 24 which denotes which location on the green the pin is at. You won't know what the location is without looking at a course file. My advise would be to make it a random number and then you can choose if it's the same per day or what.
Wind direction is in degrees (0 - 359), speed is in MPH, Rain and Fog are 0 or 1. 0 = no, 1 = yes
Starting with hole 1 a new line equals one day. So Hole 1/Day 1= line 1, Hole 2/Day 1 = line 61, etc. Each piece of info needs to be separated by a comma. So here are a few example lines:
13, 128, 7, 0, 0
13, 246, 2, 0, 1
13, 14, 19, 1, 0
First line is Hole 1, Day 1, pin index 13, wind blowing towards 128 degrees at 7 mph, no rain, no fog
Second line is Hole 1, Day 2, pin index 13, wind blowing towards 246 degrees at 2 mph, no rain, yes fog
Third line is Hole 1, Day 3, pin index 13, wind blowing towards 14 degrees, 19 mph, yes rain, no fog
Need 1080 of these bad boys. You can name the file the name of the course. You are not obligated to do this. If it is a big pain after seeing all of this it is no problem at all. If it's not and you want to continue, awesome! Once I get a file from you I'll verify it and modify the tournament tool to read it in.
I'll setup the next tournament tonight when I get home.