View Single Post
06/29/14, 07:32 AM   #1
zgrssd
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 280
Some data about the clients inner workings & patching both clients for cost of 1

The gameclients are of course rather large, as was to be expected. If you want to use NA and EU client, here are some test I made on how to speed up the patch/install process by just copying files from one client folder to the other.

At least as far back as 1.1.5, almost every file in both clients is identical on binary level. Only a handfull of really small files seem to actually identify the client to the launcher/patcher/repair processes.

When not started the 1.2.3 EU client folder with English Vioceovers measures 37.137.759.041 bytes.
Of those 36.245.544.062 bytes are contained in the .dat files.
6.029.064.792 bytes are the English Voice Files (they are put in a seperate directory from the other gamefiles; mostly a handfull large .dat files).
The bulk of the .dat files is under 400 MiB in size, propably to aid effective patching via difference. Only the voiceover .dat files are big with 1.4 GiB each. It is also noticeable that the Voiceover files are downloaded in a completely seperate step from the other game files (meaning another progress bar is used) and that when switching game language the old version is kept around.

In theory it should be possible to jsut copy the .dat files between clients to avoid having to download them again. Earlier versions of the client (up to about launch) had the built in ability to just copy some identical files from other clients instead of re-downloading them.
In practice the client will completely ignore the .dat files as it seems not aware of thier existance at first.
The trick is to simply cancel the download and order a repair scan on the client you copied the files too. That way the patcher learns of the existing files and only missing/older files have to be downloaded.
The non-dat files only make about 800 MiB download size.


I would strongly advise not to copy non-dat files along. Those seem to be what clearly identfies the client to the launcher. Having the wrong onces in place can lead to the game being unable to patch and even make a repair scan.

The easiest way to copy files on that scale on a windows is the robocopy command (or any other dedicated folder synching tool).
I used
Code:
robocopy "The Elder Scrolls Online EU" "The Elder Scrolls Online" /E *.dat
in a console from the directory I installed eso too, to quickly copy the .dat files.
While it does normally skip all files that have not changed, it does so by looking at change date and filesize. And the changedate of both clients are usually different by about a day.
If it would be possible to force it to ignore changedate and only go by filesize to determine difference (or use a tool that allows such finely graiend options), patching the EU client by just copying the .dat files from a already patched NA server client could speed up even content patches a lot.

I have no idea about copy/folder synching tools on a MAC, nor do I know if the structure is anywhere identical (but it is to be asumed that at least the .dat struture is the same).

Last edited by zgrssd : 06/29/14 at 08:34 AM.
  Reply With Quote