| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- #############################################################################
- #
- # packpanda - this is a tool that packages up a panda game into a
- # convenient, easily-downloaded windows executable. Packpanda relies on
- # NSIS, the netscape scriptable install system, to do the hard work.
- #
- # This is intentionally a very simplistic game-packer with very
- # limited options. The goal is simplicity, not feature richness.
- # There are dozens of complex, powerful packaging tools already out
- # there. This one is for people who just want to do it quick and
- # easy.
- #
- ##############################################################################
- import sys, os, getopt, string, shutil, py_compile
- OPTIONLIST = [
- ("dir", 1, "Name of directory containing game"),
- ("name", 1, "Human-readable name of the game"),
- ("version", 1, "Version number to add to game name"),
- ("rmdir", 2, "Delete all directories with given name"),
- ("rmext", 2, "Delete all files with given extension"),
- ("fast", 0, "Use fast compression instead of good compression"),
- ("bam", 0, "Generate BAM files, change default-model-extension to BAM"),
- ("pyc", 0, "Generate PYC files"),
- ]
- def ParseFailure():
- print ""
- print "packpanda usage:"
- print ""
- for (opt, hasval, explanation) in OPTIONLIST:
- if (hasval):
- print " --%-10s %s"%(opt+" x", explanation)
- else:
- print " --%-10s %s"%(opt+" ", explanation)
- sys.exit(1)
- def ParseOptions(args):
- try:
- options = {}
- longopts = []
- for (opt, hasval, explanation) in OPTIONLIST:
- if (hasval==2):
- longopts.append(opt+"=")
- options[opt] = []
- elif (hasval==1):
- longopts.append(opt+"=")
- options[opt] = ""
- else:
- longopts.append(opt)
- options[opt] = 0
- opts, extras = getopt.getopt(args, "", longopts)
- for option, value in opts:
- for (opt, hasval, explanation) in OPTIONLIST:
- if (option == "--"+opt):
- if (hasval==2): options[opt].append(value)
- elif (hasval==1): options[opt] = value
- else: options[opt] = 1
- return options
- except: ParseFailure();
- OPTIONS = ParseOptions(sys.argv[1:])
- ##############################################################################
- #
- # Locate the relevant trees.
- #
- ##############################################################################
- PANDA=None
- for dir in sys.path:
- if (dir != "") and os.path.exists(os.path.join(dir,"direct")) and os.path.exists(os.path.join(dir,"pandac")):
- PANDA=os.path.abspath(dir)
- if (PANDA is None):
- sys.exit("Cannot locate the panda root directory in the python path (cannot locate directory containing direct and pandac).")
- print "PANDA located at "+PANDA
- if (os.path.exists(os.path.join(PANDA,"..","makepanda","makepanda.py"))) and (os.path.exists(os.path.join(PANDA,"..","thirdparty","win-nsis","makensis.exe"))):
- PSOURCE=os.path.abspath(os.path.join(PANDA,".."))
- NSIS=os.path.abspath(os.path.join(PANDA,"..","thirdparty","win-nsis"))
- else:
- PSOURCE=PANDA
- NSIS=os.path.join(PANDA,"nsis")
- ##############################################################################
- #
- # Identify the main parts of the game: DIR, NAME, MAIN, ICON, BITMAP, etc
- #
- ##############################################################################
- VER=OPTIONS["version"]
- DIR=OPTIONS["dir"]
- if (DIR==""):
- print "You must specify the --dir option."
- ParseFailure()
- DIR=os.path.abspath(DIR)
- NAME=os.path.basename(DIR)
- if (OPTIONS["name"] != ""):
- NAME=OPTIONS["name"]
- SMDIRECTORY=NAME
- if (VER!=""): SMDIRECTORY=SMDIRECTORY+" "+VER
- ICON=os.path.join(DIR, "icon.ico")
- BITMAP=os.path.join(DIR, "installer.bmp")
- LICENSE=os.path.join(DIR, "license.txt")
- OUTFILE=os.path.basename(DIR)
- if (VER!=""): OUTFILE=OUTFILE+"-"+VER
- OUTFILE=os.path.abspath(OUTFILE+".exe")
- INSTALLDIR='C:\\'+os.path.basename(DIR)
- if (VER!=""): INSTALLDIR=INSTALLDIR+"-"+VER
- COMPRESS="lzma"
- if (OPTIONS["fast"]): COMPRESS="zlib"
- if (OPTIONS["pyc"]): MAIN="main.pyc"
- else: MAIN="main.py"
- def PrintFileStatus(label, file):
- if (os.path.exists(file)):
- print "%-15s: %s"%(label, file)
- else:
- print "%-15s: %s (MISSING)"%(label, file)
- PrintFileStatus("Dir", DIR)
- print "%-15s: %s"%("Name", NAME)
- print "%-15s: %s"%("Start Menu", SMDIRECTORY)
- PrintFileStatus("Main", os.path.join(DIR, MAIN))
- PrintFileStatus("Icon", ICON)
- PrintFileStatus("Bitmap", BITMAP)
- PrintFileStatus("License", LICENSE)
- print "%-15s: %s"%("Output", OUTFILE)
- print "%-15s: %s"%("Install Dir", INSTALLDIR)
- if (os.path.isdir(DIR)==0):
- sys.exit("Difficulty reading "+DIR+". Cannot continue.")
- if (os.path.isfile(os.path.join(DIR, "main.py"))==0):
- sys.exit("Difficulty reading main.py. Cannot continue.")
- if (os.path.isfile(LICENSE)==0):
- LICENSE=os.path.join(PANDA,"LICENSE")
- if (os.path.isfile(BITMAP)==0):
- BITMAP=os.path.join(NSIS,"Contrib","Graphics","Wizard","nsis.bmp")
- if (os.path.isfile(ICON)==0):
- PPICON="bin\\ppython.exe"
- else:
- PPICON="game\\icon.ico"
- ##############################################################################
- #
- # Copy the game to a temporary directory, so we can modify it safely.
- #
- ##############################################################################
- def limitedCopyTree(src, dst, rmdir):
- if (os.path.isdir(src)):
- if (rmdir.has_key(os.path.basename(src))):
- return
- os.mkdir(dst)
- for x in os.listdir(src):
- limitedCopyTree(os.path.join(src,x), os.path.join(dst,x), rmdir)
- else:
- shutil.copyfile(src, dst)
- TMPDIR=os.path.abspath("packpanda-TMP")
- TMPGAME=os.path.join(TMPDIR,"game")
- TMPETC=os.path.join(TMPDIR,"etc")
- print ""
- print "Copying the game to "+TMPDIR+"..."
- if (os.path.exists(TMPDIR)):
- try: shutil.rmtree(TMPDIR)
- except: sys.exit("Cannot delete "+TMPDIR)
- try:
- os.mkdir(TMPDIR)
- rmdir = {}
- for x in OPTIONS["rmdir"]:
- rmdir[x] = 1
- limitedCopyTree(DIR, TMPGAME, rmdir)
- if not os.path.isdir( TMPGAME ):
- os.mkdir(TMPGAME)
- limitedCopyTree(os.path.join(PANDA, "etc"), TMPETC, {})
- if not os.path.isdir( TMPETC ):
- os.mkdir(TMPETC)
- except: sys.exit("Cannot copy game to "+TMPDIR)
- ##############################################################################
- #
- # If --bam requested, change default-model-extension .egg to bam.
- #
- ##############################################################################
- def ReadFile(wfile):
- try:
- srchandle = open(wfile, "rb")
- data = srchandle.read()
- srchandle.close()
- return data
- except: exit("Cannot read "+wfile)
- def WriteFile(wfile,data):
- try:
- dsthandle = open(wfile, "wb")
- dsthandle.write(data)
- dsthandle.close()
- except: exit("Cannot write "+wfile)
- if OPTIONS["bam"]:
- CONF=ReadFile(os.path.join(TMPETC,"Confauto.prc"))
- CONF=CONF.replace("default-model-extension .egg","default-model-extension .bam")
- WriteFile(os.path.join(TMPETC,"Confauto.prc"), CONF)
- ##############################################################################
- #
- # Compile all py files, convert all egg files.
- #
- # We do this as a sanity check, even if the user
- # hasn't requested that his files be compiled.
- #
- ##############################################################################
- EGG2BAM=os.path.join(PANDA,"bin","egg2bam.exe")
- def egg2bam(file):
- bam = file[:-4]+'.bam'
- present = os.path.exists(bam)
- if (present): bam = "packpanda-TMP.bam";
- cmd = 'egg2bam -noabs -ps rel -pd . "'+file+'" -o "'+bam+'"'
- print "Executing: "+cmd
- res = os.spawnl(os.P_WAIT, EGG2BAM, cmd)
- if (res != 0): sys.exit("Problem in egg file: "+file)
- if (present) or (OPTIONS["bam"]==0):
- os.unlink(bam)
- def py2pyc(file):
- print "Compiling python "+file
- pyc = file[:-3]+'.pyc'
- pyo = file[:-3]+'.pyo'
- if (os.path.exists(pyc)): os.unlink(pyc)
- if (os.path.exists(pyo)): os.unlink(pyo)
- try: py_compile.compile(file)
- except: sys.exit("Cannot compile "+file)
- if (OPTIONS["pyc"]==0):
- if (os.path.exists(pyc)):
- os.unlink(pyc)
- if (os.path.exists(pyo)):
- os.unlink(pyo)
- def CompileFiles(file):
- if (os.path.isfile(file)):
- if (string.lower(file[-4:])==".egg"):
- egg2bam(file)
- elif (string.lower(file[-3:])==".py"):
- py2pyc(file)
- else: pass
- elif (os.path.isdir(file)):
- for x in os.listdir(file):
- CompileFiles(os.path.join(file, x))
- def DeleteFiles(file):
- base = string.lower(os.path.basename(file))
- if (os.path.isdir(file)):
- for pattern in OPTIONS["rmdir"]:
- if (string.lower(pattern) == base):
- print "Deleting "+file
- shutil.rmtree(file)
- return
- for x in os.listdir(file):
- DeleteFiles(os.path.join(file, x))
- else:
- for ext in OPTIONS["rmext"]:
- if (base[-(len(ext)+1):] == string.lower("."+ext)):
- print "Deleting "+file
- os.unlink(file)
- return
- print ""
- print "Compiling BAM and PYC files..."
- os.chdir(TMPGAME)
- CompileFiles(".")
- DeleteFiles(".")
- ##############################################################################
- #
- # Run NSIS. Yay!
- #
- ##############################################################################
- CMD=NSIS+"\\makensis.exe /V2 "
- CMD=CMD+'/DCOMPRESSOR="'+COMPRESS+'" '
- CMD=CMD+'/DNAME="'+NAME+'" '
- CMD=CMD+'/DSMDIRECTORY="'+SMDIRECTORY+'" '
- CMD=CMD+'/DINSTALLDIR="'+INSTALLDIR+'" '
- CMD=CMD+'/DOUTFILE="'+OUTFILE+'" '
- CMD=CMD+'/DLICENSE="'+LICENSE+'" '
- CMD=CMD+'/DLANGUAGE="English" '
- CMD=CMD+'/DRUNTEXT="Play '+NAME+'" '
- CMD=CMD+'/DIBITMAP="'+BITMAP+'" '
- CMD=CMD+'/DUBITMAP="'+BITMAP+'" '
- CMD=CMD+'/DPANDA="'+PANDA+'" '
- CMD=CMD+'/DPANDACONF="'+TMPETC+'" '
- CMD=CMD+'/DPSOURCE="'+PSOURCE+'" '
- CMD=CMD+'/DPPGAME="'+TMPGAME+'" '
- CMD=CMD+'/DPPMAIN="'+MAIN+'" '
- CMD=CMD+'/DPPICON="'+PPICON+'" '
- CMD=CMD+'"'+PSOURCE+'\\direct\\src\\directscripts\\packpanda.nsi"'
- print ""
- print CMD
- print "packing..."
- os.system(CMD)
|