X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=mudpy%2Fmenu.py;h=1bdccb02fe27c566a23104ba93deeaf9ddc57b64;hp=a1d18f74b3fe0da478811afd6930e3ce46766509;hb=1e22e0aca6b5804bfcde8eccaafabd46aab8a146;hpb=04f0120c2208fe2335905943f94f66eee8fa74b7 diff --git a/mudpy/menu.py b/mudpy/menu.py index a1d18f7..1bdccb0 100644 --- a/mudpy/menu.py +++ b/mudpy/menu.py @@ -3,3 +3,19 @@ # Copyright (c) 2019 mudpy authors. Permission to use, copy, # modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. + + +def activate_avatar_action(user): + """Activate the selected avatar in the activate_avatar state.""" + return user.activate_avatar_by_index(int(user.choice) - 1) + + +def activate_avatar_action_a(user): + """Abort selection by doing nothing.""" + return True + + +def activate_avatar_create(user): + """List available avatars as choices for the activate_avatar state.""" + return dict( + [(str(x + 1), y) for x, y in enumerate(user.list_avatar_names())])