Bug 4701 - [patch] native game/ui code not loaded from all fs_searchpaths
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: GIT MASTER
Hardware: All All
: P3 normal
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2010-08-13 14:31 EDT by Simon McVittie
Modified: 2011-02-08 14:36:36 EST
1 user (show)

See Also:


Attachments
FS_FindDll: new function to go through the search path looking for a DLL (1.67 KB, patch)
2010-08-13 14:32 EDT, Simon McVittie
Sys_LoadDll: use FS_FindDll (2.32 KB, patch)
2010-08-13 14:33 EDT, Simon McVittie

Description Simon McVittie 2010-08-13 14:31:26 EDT
Sys_LoadDll says:

      // TODO: use fs_searchpaths from files.c

I have a pair of patches to do so, by adding and using a new function FS_FindDll; this means that DLLs will be loaded from all the same places we'd look for PK3s.

I realise the normal recommendation is to use QVM bytecode, and this is indeed the easiest way to run games that have QVMs, but compiling those requires q3lcc, whose license doesn't meet distributions' free software license policies. The distribution I'm personally interested in is Debian, but Ubuntu, Fedora and Mandriva have very similar policies.

In the case of OpenArena, we had to choose between to dropping OpenArena from Debian, or compiling the game logic to native code; we chose to use native code.

As a side benefit, when native code is enabled, this patch avoids issuing a Com_Printf warning saying "no such file or directory" for each search-path location that *doesn't* contain a DLL.
Comment 1 Simon McVittie 2010-08-13 14:32:46 EDT
Created attachment 2399 [details]
FS_FindDll: new function to go through the search path looking for a DLL
Comment 2 Simon McVittie 2010-08-13 14:33:07 EDT
Created attachment 2400 [details]
Sys_LoadDll: use FS_FindDll
Comment 3 Thilo Schulz 2011-02-04 12:47:19 EST
You're practically castrating openarena and condemning your users to sv_pure 0 servers if you don't distribute QVMs.
However, your patches are reasonably clean and they seem to improve the library loading so I'll commit it. Thanks.
Comment 4 Simon McVittie 2011-02-04 13:58:50 EST
(In reply to comment #3)
> You're practically castrating openarena and condemning your users to sv_pure 0
> servers if you don't distribute QVMs.

We do have additional patches to remain network-compatible with pure servers, which I haven't upstreamed yet (partly in the hope that I can think of a better way to do it). OpenArena relies on pure servers, because 0.8.5 broke network compatibility with earlier versions, making impure OA servers a really bad idea.
Comment 5 Thilo Schulz 2011-02-08 14:35:21 EST
Please keep in mind that we will never accept patches that make it possible for users to run native code on pure servers.
Comment 6 Thilo Schulz 2011-02-08 14:36:36 EST
I should have phrased that differently:

We will never accept patches that make it possible for users to run native code on pure servers that is not contained in pk3 files that also reside on the pure server.