Changeset 1592
- Timestamp:
- 06/22/08 10:12:18 (4 months ago)
- Files:
-
- branches/games/minionsofmirth/v1/testing/mud/gamesettings.py (modified) (1 diff)
- branches/games/minionsofmirth/v1/testing/mud/gmtool/gmmind.py (modified) (1 diff)
- branches/games/minionsofmirth/v1/testing/mud/gmtool/gmtool.py (modified) (2 diffs)
- branches/games/minionsofmirth/v1/testing/packaging/gmtool2app.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/games/minionsofmirth/v1/testing/mud/gamesettings.py
r1345 r1592 13 13 #GAMEROOT = "starter.mmo" 14 14 15 #MASTERIP = "minions.prairiegames.com" 15 16 MASTERIP = 'test.prairiegames.com' 16 17 MASTERPORT = 2002 branches/games/minionsofmirth/v1/testing/mud/gmtool/gmmind.py
r1197 r1592 7 7 import traceback 8 8 from md5 import md5 9 from mud.gamesettings import *9 from mud.gamesettings import GMSERVER_IP,GMSERVER_PORT 10 10 11 11 branches/games/minionsofmirth/v1/testing/mud/gmtool/gmtool.py
r1197 r1592 16 16 17 17 18 VERSION = "v1. 0"18 VERSION = "v1.1" 19 19 20 20 USERNAME = "" … … 247 247 def DoExit(self, event): 248 248 global GMCONNECTION 249 GMCONNECTION.disconnect() 249 if GMCONNECTION: 250 GMCONNECTION.disconnect() 250 251 GMCONNECTION = None 251 252 reactor.stop() branches/games/minionsofmirth/v1/testing/packaging/gmtool2app.py
r410 r1592 2 2 # Please see LICENSE.TXT for details 3 3 4 from distutils.core import setup 5 import py2app 4 from setuptools import setup 6 5 import os 7 import string8 6 import shutil 9 import findertools7 import sys 10 8 11 OUTPUT_FOLDER = "gmtool"12 9 13 if os.path.exists('./dist'): 14 shutil.rmtree('./dist') 10 OUTPUT_FOLDER = './GMTool' 11 12 13 if os.path.exists(OUTPUT_FOLDER): 14 shutil.rmtree(OUTPUT_FOLDER) 15 15 16 16 17 if os.path.exists('./build'): 17 18 shutil.rmtree('./build') 18 19 19 setup( 20 app=['./mud/gmtool/gmtool.py'],options = dict (py2app = {"iconfile":"./packaging/MinionsOfMirth.icns","excludes":["genesis"],"packages":["encodings"]}) 21 ) 20 21 sys.path.append(os.getcwd()) 22 22 23 23 24 24 setup( 25 app = ['./mud/gmtool/gmtool.py'], 26 options = {'py2app' : { 27 'iconfile' : './packaging/MinionsOfMirth.icns', 28 'includes' : ['mud.gamesettings'], 29 'packages' : ['encodings'], 30 'compressed' : True, 31 'argv_emulation' : True, 32 'dist_dir' : OUTPUT_FOLDER, 33 }}, 34 setup_requires = ['py2app'], 35 )

