TCastleZip and virtual file systems

Oh, I think we already have something you ask for, though it’s not a class :slight_smile:

Namely, you can use global routine RegisterUrlProtocol to register your own URL protocol, with custom callbacks for reading and writing. This way all the engine reading/writing routines will recognize the new URL protocol.

In effect, a virtual filesystem is defined by the callbacks (and you can naturally implement them all by a single class, which is what TCastleZip does). There are 3 callbacks provided to RegisterUrlProtocol now, all optional:

  • asynchronous reader
  • synchronous reader (just return readable TStream for the resource)
  • writer (just return writeable TStream for the resource)

I want to keep extending this API, add additional callbacks to

Possibly, at some point RegisterUrlProtocol will take a record/class with these callbacks, to avoid having a procedure with zillion optional parameters :slight_smile:

I have just reworked our documentation about URLs, loading (downloading) and saving resources so hopefully it nicely documents / links to our capabilities in this regard.

See and run castle-engine/examples/network/custom_url_handler at master · castle-engine/castle-engine · GitHub (without the USE_ZIP_URL_HANDLER symbol defined) for a demo how RegisterUrlProtocol can be used.