Created
January 26, 2016 19:19
-
-
Save whutch/d802ea7eba86ca136592 to your computer and use it in GitHub Desktop.
Test game module for Atria
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
"""A test game for prototyping.""" | |
# Part of Atria MUD Server (https://github.com/whutch/atria) | |
# :copyright: (c) 2008 - 2016 Will Hutcheson | |
# :license: MIT (https://github.com/whutch/atria/blob/master/LICENSE.txt) | |
import re | |
from .. import settings | |
from ..core.accounts import Account, AccountMenu, AccountName | |
from ..core.events import EVENTS | |
settings.IDLE_TIME_MAX = 0 # Temporary | |
# Adjust the validation pattern for account names | |
AccountName._valid_chars = re.compile(".+") | |
# We don't need the default connect menu. | |
EVENTS.unhook("session_started") | |
@EVENTS.hook("session_started") | |
def _hook_session_started(session): | |
email = "{}@test.game".format(session.address) | |
account = Account.load(email, default=None) | |
if not account: | |
account = Account() | |
account.email = email | |
account.name = session.address | |
account.options.color = True | |
session.account = account | |
session.menu = AccountMenu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment