So you know, I wrote code for 15 years and managed software development for another 15years.
Flash is a platform that runs inside browsers. Play Station 4 is a platform that runs in your Family Room. Both need software to run.
Flash needs .swf files to display or animate anything. WGT writes its programs in ActionScript3 (similar to C++) The Adobe AS3 tools generate the .swf files. When you open your game client the server downloads about 120 files to your computer. Many of them are .swf files so the game client can display stuff.
The server can then sit back and wait for you to do something. It occasionally will send a friends list update and every 10 seconds it asks the game client "Are you still there?" During game play (in the game client) the main purpose of the server is to calculate the result of your shot in response to a message from the game client with shot info (what club, what power, how close to the ding, etc.) The server then sends a message to your computer with the shot result. The server has the physics engine to calculate the result. The server also supplies all the images needed to show the course.
Back to the game client. The .swf files (which were downloaded to your computer and saved in your cache) then use the shot result message to animate the shot on your computer screen. Our computers do much more work than the servers.
Try this:
- Close all browser windows but one.
- Clear your browser cache
- Type about:cache in the address bar of your browser (there is a colon between the words about & cache)
-If you have a Firefox browser it will show a summary: at this point I show about a dozen disk entries using only 300kb.
-If you use chrome browser you get a list of the files in your cache. I show a few.
-Now keeping that tab/window with the cache display open, open the game client in a separate window or tab.
-once the game client is loaded log in...then go back to the tab/window with the cache display and refresh it.
-I now see 139 cache files on disk using 9600+ kb! Many .swf files in there too. The game downloaded 126 files!
-I went back to the game client and started a stroke play game on Chambers. After arriving on the 1st tee I went back and refreshed the cache display window.
-I now had 223 cache files on disk using 15931kb and 69 different .swf files
Lots of stuff is downloaded to our computer, many program (.swf) files.
The programs running on the game client do lots of work. Watch your CPU usage with the putting grid on screen. Lots of work to animate all those dots.
garyk49: WGT is a browser based program/software, that requires no download on our part. Without the internet working it will not work. We download nothing, other then cookies. The program is stored on their servers. The game client is just a link to a page within the program stored on a server, not our computer.
That is so wrong Gary.