2 # -*- coding: utf-8 -*-
3 u"""Skeletal executable for the mudpy engine."""
5 # Copyright (c) 2004-2009 Jeremy Stanley <fungi@yuggoth.org>. Permission
6 # to use, copy, modify, and distribute this software is granted under
7 # terms provided in the LICENSE file distributed with this software.
9 # core objects for the mudpy engine
11 sys.path.append( os.path.realpath(u"lib") )
17 # loop indefinitely while the world is not flagged for termination or
18 # there are still connected users
19 while not mudpy.misc.universe.terminate_flag or mudpy.misc.universe.userlist:
21 # the world was flagged for a reload of all code/data
22 if mudpy.misc.universe.reload_flag:
24 mudpy.misc.reload_data()
25 mudpy.misc.universe.reload_flag = False
27 # do what needs to be done on each pulse