About News Download Docs Bugs Contact

Spell/Files/PRE_SUB_DEPENDS

Information

Tools

Resources

PRE_SUB_DEPENDS

Part of the sub-depends specification is that spells must have a PRE_SUB_DEPENDS file, which tells Sorcery whether or not the sub-dependee is providing the given sub-depends or not. If the spell isn't providing the sub-dependency, or the file doesn't exist, sorcery must cast the sub-dependee. Unnecessary casts can be avoided with a proper PRE_SUB_DEPENDS file, this is regardless of prior dependency or sub-dependency history.

Some rules are applied to this file:

Example usage in spells

case $THIS_SUB_DEPENDS in
  FONT)    is_depends_enabled $SPELL sdl_ttf   && return 0;;
  IMAGE)   is_depends_enabled $SPELL sdl_image && return 0;;
  MIXER)   is_depends_enabled $SPELL sdl_mixer && return 0;;
  SMPEG)   is_depends_enabled $SPELL smpeg     && return 0;;
  NUMERIC) is_depends_enabled $SPELL numeric   && return 0;;
esac
return 1
case $THIS_SUB_DEPENDS in
  fxscintilla) if is_depends_enabled $SPELL fxscintilla; then return 0; fi;;
            *) return 1 ;;
esac
case $THIS_SUB_DEPENDS in
    SSL) if is_depends_enabled $SPELL $(get_spell_provider $SPELL SSL) || is_depends_enabled $SPELL gnutls; then
         return 0
         fi
         ;;
      *) echo "unknown sub_depends!" ;;
esac
return 1