1 # Copyright (c) 2004-2016 Jeremy Stanley <fungi@yuggoth.org>. Permission
2 # to use, copy, modify, and distribute this software is granted under
3 # terms 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:
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__':