1 # Copyright (c) 2004-2018 mudpy authors. Permission to use, copy,
2 # modify, and distribute this software is granted under terms
3 # provided in the LICENSE file distributed with this software.
5 # core objects for the mudpy engine
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
20 mudpy.misc.universe.userlist):
22 # the world was flagged for a reload of all code/data
23 if mudpy.misc.universe.reload_flag:
24 importlib.reload(mudpy)
25 mudpy.misc.reload_data()
26 mudpy.misc.universe.reload_flag = False
28 # do what needs to be done on each pulse
35 if __name__ == '__main__':