summaryrefslogtreecommitdiff
path: root/templates/default
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2013-02-15 12:34:32 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2013-02-15 12:34:32 +0100
commit933a93e4a71591e867182999a7daf8ae3bad5596 (patch)
treeb2969a0ccd0d050a8288ffc72756be2c94975de5 /templates/default
parent2dfc64f9f3137cd7522b32a55e6cbcaa672492f6 (diff)
downloadplay-933a93e4a71591e867182999a7daf8ae3bad5596.tar.gz
play-933a93e4a71591e867182999a7daf8ae3bad5596.tar.bz2
play-933a93e4a71591e867182999a7daf8ae3bad5596.zip
Major overhaul: Support non-wine games
* Moved wine support to own template * Added xpad template * Added no-x template for games that don't support being started on another X. * Improved ways template functions work together: - EXPORT now appends - OVERRIDE replaces all the others - in game: command 'super' to call the phases of the templates - super supports "-r tpl" to remove the phase function of tpl
Diffstat (limited to 'templates/default')
-rw-r--r--templates/default15
1 files changed, 10 insertions, 5 deletions
diff --git a/templates/default b/templates/default
index 2f62395..0d1c0ea 100644
--- a/templates/default
+++ b/templates/default
@@ -4,16 +4,21 @@ default_setupX () {
play_setupX
}
+default_setenv () {
+ if loaded wine; then
+ EENV[WINEPREFIX]='{ [[ -z $NO_WINEINSTS ]] && echo $HOME/.wineinsts/$PREFIX; } || echo $PREFIX'
+ fi
+
+ play_setenv
+}
+
default_prepare () {
- play_prepare
}
default_cleanup () {
- play_cleanup
}
-EENV[WINEPREFIX]='{ [[ -z $NO_WINEINSTS ]] && echo $HOME/.wineinsts/$PREFIX; } || echo $PREFIX'
-
-EXPORT setupX prepare cleanup
+EXPORT prepare cleanup
+OVERRIDE setenv setupX
# vim:ft=sh