The non-qc code might also make it more unlikely for anyone to "fix" Nehahra.
Announcement
Collapse
No announcement yet.
This is how it begins ...
Collapse
X
-
Compatibility
Please respect darkplaces compatibility.
For example the discussion of web download urls - darkplaces already has a solution.
On the server:
sv_curl_defaulturl http://whatever/ - put your base path for URL downloads here
sv_curl_serverpackages test.txt - this lists a set of space separated filenames that must be present to play on this server (NOT the names of paks to download, but the files inside them).
The server checks on each level load which paks it loaded the current map and all the serverpackages content from, and issues a series of commands of this form to the client:
curl --clear-autodownload
curl --pak --forthismap --as blah.pk3 --for maps/blah.bsp http://whatever/blah.pk3
curl --pak --forthismap --as test.pk3 --for test.txt http://whatever/test.pk3
The map is automatically requested (maps/blah.bsp in this case, found in blah.pk3), and then the serverpackages are requested (test.txt in this example was loaded from test.pk3).
An internal function called FS_WhichPack is used to find which pack contains each of these requested files.
When the client executes these commands, it checks if it has the file in the --for option, and if not it loads the pak specified in the -as option (if it can find it in dlcache/) or retrieves the pak at the url and stores it with that name.
This is just one of many instances where I've seen people trying to reinvent the wheel...
Comment
-
Originally posted by LordHavoc View PostPlease respect darkplaces compatibility.
.
.
.
This is just one of many instances where I've seen people trying to reinvent the wheel...
More at Inside3D as this progresses ...Quakeone.com - Being exactly one-half good and one-half evil has advantages. When a portal opens to the antimatter universe, my opposite is just me with a goatee.
So while you guys all have to fight your anti-matter counterparts, me and my evil twin will be drinking a beer laughing at you guys ...
Comment
Comment