define-assets-from
define-assets-from
1 Generating Docs
doc-asset
earth
doc-all
earth
question-mark
2 Asset Modules and Asset Doc Modules
also-for-asset-docs
logo
earth
logo
8.13.0.2

define-assets-from🔗ℹ

thoughtstem

 (require define-assets-from) package: define-assets-from

This module makes it easy to turn PNG files in a directory into provided identifiers that correspond to image? values.

More importantly, it makes it easier to accompany those Racket values with meta-data about where those assets came from – for example, to credit the artists. Meta-data can (if you use the tools documented on this page) follow those Racket values even as they pass through other modules, become renamed, modified, etc.

It eases the burden of creating and maintaining Racket packages that involve providing image assets whose license may require certain care to be taken with regard to crediting the original artist.

syntax

(define-assets-from path [id extra-meta-data] ...)

 
  path : path-string?
Looks in the relative path for any PNG files. For any found, it:

For example, in some file, try:

#lang racket
(require define-assets-from)
 
(define-assets-from "assets")

Put some a PNG file in a folder called assets.

You can add extra documentation for individual assets by passing in tuples after the folder name:

#lang racket
(require define-assets-from)
 
(define-assets-from "assets"
                     (for-all-assets
                       (para "Please credit Thomas Edison."))
                     (earth
                       (para "Additionally credit Thomas Edison's cat.")))

The for-all-assets is a special value, which will cause the provided scribble to be displayed whenever that asset is documented. Adding such text to individual assets (like earth) can be accomplished by listing its identifier along with some associated scribble.

1 Generating Docs🔗ℹ

Using define-assets-from in a module creates a submodule that is its Asset Doc Module. In other words, the main module supplies the assets; but the sub Asset Doc Module has associated documentation. By default the documentation just contains the original image and its name, but it can (for example) also describe how that asset looks, its type, its creator, its license, links to the artist’s homepage, etc. These must be values that are suitable for inclusion in a Scribble document, and can be converted to a defthing by using doc-asset or doc-all.

syntax

(doc-asset id)

The id should be something that comes from a asset-docs submodule (which, remember, is created for you automatically if you used define-assets-from)

(require define-assets-from)
(require (submod define-assets-from/demo/assets asset-docs))
 
(doc-asset earth)

This gives:

value

earth : image?

Earth Image
This asset was created by Stephen R. Foster and is in the public domain

syntax

(doc-all asset-doc-module)

If you want to include all the assets in an Asset Doc Module without knowing their names, you can use doc-all and pass in a module path to any Asset Doc Module. Usually, this will be a submodule automatically created by define-assets-from. But it doesn’t technically have to be.

The code will usually look something like this (yes, you should require the Asset Doc Module first):

(require (submod define-assets-from/demo/assets asset-docs))
(doc-all (submod define-assets-from/demo/assets asset-docs))

This gives us:

value

earth : image?

Earth Image
This asset was created by Stephen R. Foster and is in the public domain

value

question-mark : image?

Question Mark Image
This asset was created by Stephen R. Foster and is in the public domain
Additional meta data added via (define-assets-from ...)

2 Asset Modules and Asset Doc Modules🔗ℹ

If all you want to do turn a folder full of images into Racket identifiers with documentation, you don’t even need to keep reading. Just use the above tools.

But often, you may want to make higher-level Asset Modules that are composed from other Asset Modules using Racket’s Module System. If you use regular require and provide for that, you may lose track of the associated Asset Doc Modules.

Let’s call an Asset Module with an Asset Doc Module in a submodule called asset-docs a Canonical Asset Module iff the image ids in the main module match 1-to-1 with documentation ids in the Asset Doc Module.

That might sound complicated, but remember that this is exactly what define-assets-from creates for you. Any module whose identifiers are created thusly is automatically canonical.

If you want to combine two such modules you must take care to combine their two Asset Doc Modules in isomorphic ways inside a single Asset Doc Module called asset-docs.

This would be the long way, just to illustrate the point:
(provide
  (all-from-out define-assets-from/demo/assets)
  (all-from-out define-assets-from/demo/assets2))
 
(require (only-in define-assets-from/demo/assets earth)
         (only-in define-assets-from/demo/assets2 logo))
 
(module asset-docs racket
  (provide (all-from-out
             (submod define-assets-from/demo/assets asset-docs)
             (submod define-assets-from/demo/assets2 asset-docs)))
 
  (require
     (only-in (submod define-assets-from/demo/assets asset-docs) earth)
     (only-in (submod define-assets-from/demo/assets2 asset-docs) logo)))

Now this file is also a Canonical Asset Module because the ids in the main module still match 1-to-1 with their intended documentation, and the Asset Doc Module is called asset-docs. In other words, all implied links to meta-data have been preserved.

To make that easier for most use-cases, wrap all your require and provide code in also-for-asset-docs to will ensure that whatever you do to the main module’s identifiers, you also do for the Asset Doc Module. The names must match in order for the links to documentation to be preserved.

syntax

(also-for-asset-docs #:asset-modules (module ...) require-and-provide-code ...)

Each module given should be a canonical asset module. The given require-and-provide-code is passed through as given to the main module. But it is also pushed into a asset-docs submodule with the various module being replaced by (submod module asset-docs).

This helps ensure that the modules that require and provide canonical asset modules are themselves canonical.

#lang racket
(require define-asset-docs)
 
 
(also-for-asset-docs
  #:asset-modules (define-assets-from/demo/assets
                   define-assets-from/demo/assets2)
 
  (provide
    (all-from-out define-assets-from/demo/assets)
    (all-from-out define-assets-from/demo/assets2))
 
  (require (only-in define-assets-from/demo/assets earth)
           (only-in define-assets-from/demo/assets2 logo)))

Now demo2/assets provides logo, which originally game from demo/assets2. Because we used also-for-asset-docs, the documentation has been passed along.

We can use doc-asset and doc-all as if demo2/assets was the original source of logo.

(require (submod define-assets-from/demo2/assets asset-docs))
(doc-asset logo)

This gives:

value

logo : image?

Logo Image

And to doc all:

(require (submod define-assets-from/demo2/assets asset-docs))
(doc-all (submod define-assets-from/demo2/assets asset-docs))

This gives:

value

earth : image?

Earth Image
This asset was created by Stephen R. Foster and is in the public domain

value

logo : image?

Logo Image

And of course, if you just want the logo image? asset, you don’t need to worry about asset-docs or documentation.

(require define-assets-from/demo2/assets)
logo

This gives the image:

Logo Image