2010-11-26 19:50:08 +00:00
|
|
|
import sys, traceback, platform, re, commands, platform, subprocess
|
2007-09-30 19:39:29 +00:00
|
|
|
|
|
|
|
if __name__ != '__main__':
|
|
|
|
from SCons.Script import *
|
|
|
|
|
2012-07-15 15:39:47 +00:00
|
|
|
import utils, urllib2, zipfile, shutil, pprint, subprocess, re
|
2007-09-30 19:39:29 +00:00
|
|
|
|
|
|
|
# config = debug release
|
|
|
|
# aliases are going to be very needed here
|
|
|
|
# we have dependency situations too
|
2008-03-04 17:01:45 +00:00
|
|
|
# target =
|
2007-09-30 19:39:29 +00:00
|
|
|
|
|
|
|
class Config:
|
|
|
|
# not used atm, but useful to keep a list in mind
|
|
|
|
# may use them eventually for the 'all' and other aliases expansions?
|
2008-04-05 21:38:49 +00:00
|
|
|
target_choices = utils.Enum( 'radiant', 'q3map2', 'setup' )
|
2007-09-30 19:39:29 +00:00
|
|
|
config_choices = utils.Enum( 'debug', 'release' )
|
|
|
|
|
|
|
|
# aliases
|
|
|
|
# 'all' -> for each choices
|
|
|
|
# 'gamecode' for the targets, 'game' 'cgame' 'ui'
|
2008-03-04 17:01:45 +00:00
|
|
|
|
2007-09-30 19:39:29 +00:00
|
|
|
def __init__( self ):
|
|
|
|
# initialize defaults
|
2008-01-02 04:47:59 +00:00
|
|
|
self.target_selected = [ 'radiant', 'q3map2' ]
|
2007-09-30 19:39:29 +00:00
|
|
|
self.config_selected = [ 'release' ]
|
|
|
|
# those are global to each config
|
2007-11-03 15:00:38 +00:00
|
|
|
self.platform = platform.system()
|
2008-04-05 19:52:13 +00:00
|
|
|
self.cc = 'gcc'
|
|
|
|
self.cxx = 'g++'
|
|
|
|
self.install_directory = 'install'
|
2008-04-08 16:58:37 +00:00
|
|
|
|
2008-04-05 21:38:49 +00:00
|
|
|
# platforms for which to assemble a setup
|
|
|
|
self.setup_platforms = [ 'local', 'x86', 'x64', 'win32' ]
|
|
|
|
# paks to assemble in the setup
|
2012-07-04 15:24:09 +00:00
|
|
|
self.setup_packs = [ 'Q3Pack', 'UrTPack', 'ETPack', 'QLPack' ] # 'UFOAIPack', 'Q2WPack', 'ReactionPack' ]
|
2007-09-30 19:39:29 +00:00
|
|
|
|
|
|
|
def __repr__( self ):
|
|
|
|
return 'config: target=%s config=%s' % ( self.target_selected, self.config_selected )
|
|
|
|
|
|
|
|
def _processTarget( self, ops ):
|
|
|
|
self.target_selected = ops
|
|
|
|
|
|
|
|
def _processConfig( self, ops ):
|
|
|
|
self.config_selected = ops
|
|
|
|
|
|
|
|
def _processCC( self, ops ):
|
|
|
|
self.cc = ops
|
|
|
|
|
|
|
|
def _processCXX( self, ops ):
|
|
|
|
self.cxx = ops
|
|
|
|
|
2008-04-05 19:52:13 +00:00
|
|
|
def _processInstallDir( self, ops ):
|
|
|
|
self.install_directory = os.path.normpath( os.path.expanduser( ops[0] ) )
|
2008-01-02 04:47:59 +00:00
|
|
|
|
2008-04-05 21:38:49 +00:00
|
|
|
def _processSetupPlatforms( self, ops ):
|
|
|
|
self.setup_platforms = ops
|
|
|
|
|
|
|
|
def _processSetupPacks( self, ops ):
|
|
|
|
self.setup_packs = ops
|
|
|
|
|
2007-09-30 19:39:29 +00:00
|
|
|
def setupParser( self, operators ):
|
|
|
|
operators['target'] = self._processTarget
|
|
|
|
operators['config'] = self._processConfig
|
|
|
|
operators['cc'] = self._processCC
|
|
|
|
operators['cxx'] = self._processCXX
|
2008-04-05 19:52:13 +00:00
|
|
|
operators['install_directory'] = self._processInstallDir
|
2008-04-05 21:38:49 +00:00
|
|
|
operators['setup_platforms'] = self._processSetupPlatforms
|
|
|
|
operators['setup_packs'] = self._processSetupPacks
|
2008-01-02 04:47:59 +00:00
|
|
|
|
|
|
|
def emit_radiant( self ):
|
2007-09-30 19:39:29 +00:00
|
|
|
settings = self
|
2007-10-24 04:00:48 +00:00
|
|
|
for config_name in self.config_selected:
|
|
|
|
config = {}
|
|
|
|
config['name'] = config_name
|
|
|
|
config['shared'] = False
|
2007-09-30 19:39:29 +00:00
|
|
|
Export( 'utils', 'settings', 'config' )
|
2008-01-02 04:47:59 +00:00
|
|
|
build_dir = os.path.join( 'build', config_name, 'radiant' )
|
2011-03-05 20:06:42 +00:00
|
|
|
VariantDir( build_dir, '.', duplicate = 0 )
|
2007-09-30 19:39:29 +00:00
|
|
|
lib_objects = []
|
2011-02-22 04:48:05 +00:00
|
|
|
for project in [ 'libs/synapse/synapse.vcproj', 'libs/cmdlib/cmdlib.vcproj', 'libs/mathlib/mathlib.vcproj', 'libs/l_net/l_net.vcproj' ]:
|
2007-09-30 19:39:29 +00:00
|
|
|
Export( 'project' )
|
|
|
|
lib_objects += SConscript( os.path.join( build_dir, 'SConscript.lib' ) )
|
|
|
|
Export( 'lib_objects' )
|
2007-10-24 04:00:48 +00:00
|
|
|
radiant = SConscript( os.path.join( build_dir, 'SConscript.radiant' ) )
|
2008-04-05 19:52:13 +00:00
|
|
|
Default( InstallAs( os.path.join( self.install_directory, 'radiant.bin' ), radiant ) )
|
2007-10-24 04:00:48 +00:00
|
|
|
|
|
|
|
# PIC versions of the libs for the modules
|
|
|
|
shlib_objects_extra = {}
|
2011-02-22 04:48:05 +00:00
|
|
|
for project in [ 'libs/synapse/synapse.vcproj', 'libs/mathlib/mathlib.vcproj', 'libs/picomodel/picomodel.vcproj', 'libs/cmdlib/cmdlib.vcproj', 'libs/splines/splines.vcproj' ]:
|
2007-10-24 04:00:48 +00:00
|
|
|
( libpath, libname ) = os.path.split( project )
|
|
|
|
libname = os.path.splitext( libname )[0]
|
|
|
|
config['shared'] = True
|
|
|
|
Export( 'project', 'config' )
|
|
|
|
build_dir = os.path.join( 'build', config_name, 'shobjs' )
|
2011-03-05 20:06:42 +00:00
|
|
|
VariantDir( build_dir, '.', duplicate = 0 )
|
2007-10-24 04:00:48 +00:00
|
|
|
shlib_objects_extra[libname] = SConscript( os.path.join( build_dir, 'SConscript.lib' ) )
|
|
|
|
|
2012-06-20 22:45:29 +00:00
|
|
|
for project in [ 'plugins/vfsqlpk3/vfsqlpk3.vcproj',
|
|
|
|
'plugins/vfspk3/vfspk3.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'plugins/vfspak/vfspak.vcproj',
|
|
|
|
'plugins/vfswad/vfswad.vcproj',
|
|
|
|
'plugins/eclassfgd/fgd.vcproj',
|
2007-10-24 04:00:48 +00:00
|
|
|
'plugins/entity/entity.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'plugins/image/image.vcproj',
|
2008-03-04 17:01:45 +00:00
|
|
|
'plugins/model/model.vcproj',
|
2008-03-19 07:20:06 +00:00
|
|
|
'plugins/imagepng/imagepng.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'plugins/imagewal/imagewal.vcproj',
|
2011-03-03 15:51:44 +00:00
|
|
|
'plugins/imagehl/imagehl.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'plugins/imagem8/imagem8.vcproj',
|
|
|
|
'plugins/spritemodel/spritemodel.vcproj',
|
2011-02-22 04:48:05 +00:00
|
|
|
'plugins/textool/textool.vcproj',
|
2007-10-24 04:00:48 +00:00
|
|
|
'plugins/map/map.vcproj',
|
|
|
|
'plugins/mapxml/mapxml.vcproj',
|
|
|
|
'plugins/shaders/shaders.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'plugins/surface/surface.vcproj',
|
2008-03-04 17:01:45 +00:00
|
|
|
'plugins/surface_ufoai/surface_ufoai.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'plugins/surface_quake2/surface_quake2.vcproj',
|
|
|
|
'plugins/surface_heretic2/surface_heretic2.vcproj',
|
2011-02-22 04:48:05 +00:00
|
|
|
'contrib/camera/camera.vcproj',
|
|
|
|
'contrib/prtview/prtview.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'contrib/hydratoolz/hydratoolz.vcproj',
|
2011-02-22 04:48:05 +00:00
|
|
|
'contrib/bobtoolz/bobtoolz.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'contrib/gtkgensurf/gtkgensurf.vcproj',
|
2008-03-16 19:12:41 +00:00
|
|
|
'contrib/ufoai/ufoai.vcproj',
|
2008-02-18 20:54:58 +00:00
|
|
|
'contrib/bkgrnd2d/bkgrnd2d.vcproj'
|
|
|
|
]:
|
2007-10-24 04:00:48 +00:00
|
|
|
( libpath, libname ) = os.path.split( project )
|
|
|
|
libname = os.path.splitext( libname )[0]
|
2011-02-22 04:48:05 +00:00
|
|
|
# The old code assigned shlib_objects to shlib_objects_extra['synapse'],
|
|
|
|
# and this resulted in a non-copy. Stuff is added to shlib_objects below.
|
|
|
|
# So we need the explicit copy so we don't modify shlib_objects_extra['synapse'].
|
|
|
|
shlib_objects = shlib_objects_extra['synapse'][:]
|
|
|
|
if ( libname == 'camera' ):
|
|
|
|
shlib_objects += shlib_objects_extra['splines']
|
|
|
|
elif ( libname == 'entity' ):
|
2007-10-24 04:00:48 +00:00
|
|
|
shlib_objects += shlib_objects_extra['mathlib']
|
2011-02-22 04:48:05 +00:00
|
|
|
elif ( libname == 'map' ):
|
|
|
|
shlib_objects += shlib_objects_extra['cmdlib']
|
2008-03-04 17:01:45 +00:00
|
|
|
elif ( libname == 'model' ):
|
|
|
|
shlib_objects += shlib_objects_extra['picomodel']
|
2011-02-22 04:48:05 +00:00
|
|
|
shlib_objects += shlib_objects_extra['mathlib']
|
|
|
|
elif ( libname == 'spritemodel' ):
|
|
|
|
shlib_objects += shlib_objects_extra['mathlib']
|
|
|
|
elif ( libname == 'textool' ):
|
|
|
|
shlib_objects += shlib_objects_extra['mathlib']
|
|
|
|
elif ( libname == 'bobtoolz' ):
|
|
|
|
shlib_objects += shlib_objects_extra['mathlib']
|
2007-10-24 04:00:48 +00:00
|
|
|
shlib_objects += shlib_objects_extra['cmdlib']
|
|
|
|
Export( 'project', 'shlib_objects' )
|
|
|
|
module = SConscript( os.path.join( build_dir, 'SConscript.module' ) )
|
2008-04-05 19:52:13 +00:00
|
|
|
Default( InstallAs( os.path.join( self.install_directory, 'modules/%s.so' % libname ), module ) )
|
2008-01-02 04:47:59 +00:00
|
|
|
|
2012-06-09 18:49:40 +00:00
|
|
|
def emit_q3map2( self, urt = False ):
|
|
|
|
if ( urt ):
|
2012-07-07 22:39:27 +00:00
|
|
|
compiler_name = 'q3map2_urt'
|
2012-06-09 18:49:40 +00:00
|
|
|
sconscript_name = 'SConscript.q3map2.urt'
|
|
|
|
else:
|
|
|
|
compiler_name = 'q3map2'
|
|
|
|
sconscript_name = 'SConscript.q3map2'
|
2008-01-02 04:47:59 +00:00
|
|
|
settings = self
|
|
|
|
for config_name in self.config_selected:
|
|
|
|
config = {}
|
|
|
|
config['name'] = config_name
|
|
|
|
config['shared'] = False
|
2012-06-09 18:49:40 +00:00
|
|
|
Export( 'utils', 'settings', 'config' )
|
|
|
|
build_dir = os.path.join( 'build', config_name, compiler_name )
|
2011-03-05 20:06:42 +00:00
|
|
|
VariantDir( build_dir, '.', duplicate = 0 )
|
2008-01-02 04:47:59 +00:00
|
|
|
lib_objects = []
|
2011-02-22 04:48:05 +00:00
|
|
|
for project in [ 'tools/quake3/common/quake3-common.vcproj', 'libs/mathlib/mathlib.vcproj', 'libs/l_net/l_net.vcproj', 'libs/ddslib/ddslib.vcproj', 'libs/picomodel/picomodel.vcproj', 'libs/md5lib/md5lib.vcproj' ]:
|
2008-01-02 04:47:59 +00:00
|
|
|
Export( 'project' )
|
|
|
|
lib_objects += SConscript( os.path.join( build_dir, 'SConscript.lib' ) )
|
|
|
|
Export( 'lib_objects' )
|
2012-05-28 03:26:10 +00:00
|
|
|
|
2012-06-09 18:49:40 +00:00
|
|
|
q3map2 = SConscript( os.path.join( build_dir, sconscript_name ) )
|
|
|
|
Default( InstallAs( os.path.join( self.install_directory, compiler_name ), q3map2 ) )
|
2008-03-04 17:01:45 +00:00
|
|
|
|
2008-01-02 04:47:59 +00:00
|
|
|
|
|
|
|
def emit( self ):
|
2012-06-09 18:49:40 +00:00
|
|
|
if 'radiant' in self.target_selected:
|
|
|
|
self.emit_radiant()
|
|
|
|
if 'q3map2' in self.target_selected:
|
|
|
|
self.emit_q3map2( urt = False )
|
|
|
|
self.emit_q3map2( urt = True )
|
|
|
|
if 'setup' in self.target_selected:
|
|
|
|
self.Setup()
|
2008-04-05 21:38:49 +00:00
|
|
|
|
2012-07-15 15:39:47 +00:00
|
|
|
finish_command = Command( 'finish', [], self.FinishBuild )
|
|
|
|
Depends( finish_command, DEFAULT_TARGETS )
|
|
|
|
Default( finish_command )
|
|
|
|
|
2008-03-19 07:20:06 +00:00
|
|
|
def SetupEnvironment( self, env, config, useGtk = False, useGtkGL = False, useJPEG = False, useZ = False, usePNG = False ):
|
2007-09-30 19:39:29 +00:00
|
|
|
env['CC'] = self.cc
|
|
|
|
env['CXX'] = self.cxx
|
|
|
|
( ret, xml2 ) = commands.getstatusoutput( 'xml2-config --cflags' )
|
|
|
|
if ( ret != 0 ):
|
|
|
|
print 'xml2-config failed'
|
|
|
|
assert( False )
|
|
|
|
xml2libs = commands.getoutput( 'xml2-config --libs' )
|
|
|
|
env.Append( LINKFLAGS = xml2libs.split( ' ' ) )
|
2007-10-24 04:00:48 +00:00
|
|
|
baseflags = [ '-pipe', '-Wall', '-fmessage-length=0', '-fvisibility=hidden', xml2.split( ' ' ) ]
|
2007-11-03 15:00:38 +00:00
|
|
|
|
|
|
|
if ( self.platform == 'Darwin' ):
|
|
|
|
env.Append( CPPPATH = [ '/Developer/SDKs/MacOSX10.4u.sdk/usr/X11R6/include' ] )
|
|
|
|
|
2007-09-30 19:39:29 +00:00
|
|
|
if ( useGtk ):
|
|
|
|
( ret, gtk2 ) = commands.getstatusoutput( 'pkg-config gtk+-2.0 --cflags' )
|
|
|
|
if ( ret != 0 ):
|
|
|
|
print 'pkg-config gtk+-2.0 failed'
|
|
|
|
assert( False )
|
|
|
|
baseflags += gtk2.split( ' ' )
|
|
|
|
gtk2libs = commands.getoutput( 'pkg-config gtk+-2.0 --libs' )
|
|
|
|
env.Append( LINKFLAGS = gtk2libs.split( ' ' ) )
|
|
|
|
else:
|
2007-10-24 04:00:48 +00:00
|
|
|
# always setup at least glib
|
2007-09-30 19:39:29 +00:00
|
|
|
( ret, glib ) = commands.getstatusoutput( 'pkg-config glib-2.0 --cflags' )
|
|
|
|
if ( ret != 0 ):
|
|
|
|
print 'pkg-config glib-2.0 failed'
|
|
|
|
assert( False )
|
|
|
|
baseflags += glib.split( ' ' )
|
2007-10-24 04:00:48 +00:00
|
|
|
gliblibs = commands.getoutput( 'pkg-config glib-2.0 --libs' )
|
|
|
|
env.Append( LINKFLAGS = gliblibs.split( ' ' ) )
|
2007-11-03 15:00:38 +00:00
|
|
|
|
2007-09-30 19:39:29 +00:00
|
|
|
if ( useGtkGL ):
|
|
|
|
( ret, gtkgl ) = commands.getstatusoutput( 'pkg-config gtkglext-1.0 --cflags' )
|
|
|
|
if ( ret != 0 ):
|
|
|
|
print 'pkg-config gtkglext-1.0 failed'
|
|
|
|
assert( False )
|
|
|
|
baseflags += gtkgl.split( ' ' )
|
|
|
|
gtkgllibs = commands.getoutput( 'pkg-config gtkglext-1.0 --libs' )
|
|
|
|
env.Append( LINKFLAGS = gtkgllibs.split( ' ' ) )
|
2007-10-24 04:00:48 +00:00
|
|
|
if ( useJPEG ):
|
|
|
|
env.Append( LIBS = 'jpeg' )
|
2008-03-19 07:20:06 +00:00
|
|
|
if ( usePNG ):
|
|
|
|
pnglibs = 'png z'
|
|
|
|
env.Append( LIBS = pnglibs.split( ' ' ) )
|
2008-03-19 07:15:04 +00:00
|
|
|
if ( useZ ):
|
|
|
|
env.Append( LIBS = 'z' )
|
2008-03-04 17:01:45 +00:00
|
|
|
|
* divVerent's patch for the brush primitives surface dialog (fixed segfault due to NULL pointer)
* Quote http://zerowing.idsoftware.com/pipermail/gtkradiant/2008-July/011094.html : Attached to this message is a patch for a "somewhat working" brush
primitives surface dialog. It is an ugly hack, as it converts between
fake texdef notations and brush primitives whenever values are needed.
Had to fix an accuracy bug: the surface dialog rounded all rotation
values to integer angles, which SEVERELY broke things for me (changed
the Gtk spin object to use 4 digits, which is enough for me).
Also, I changed the fake texdef / brush primitives conversions to use
long double internally, as float's roundoff errors were quite visible to
me when testing.
Hope the remaining roundoff errors from converting back and forth won't
kill me, but it worked for a simple map example.
Also, I had to separate out "Snap to grid" and "Don't clamp" into two
separare options. They now mean:
- Snap to grid: snaps drag/etc. actions to the grid
- Don't clamp: disable brush point snapping during many operations, like
merely shifting brushes, editing texturing parameters, map loading,
etc.
The reason is that I do need the grid, but I don't want to get my
objects messed up by the snapping in my map. As I am using free
rotations, this DOES change quite much.
The config.py change is needed for compilation on Debian stable;
Debian's scons does not use the CFLAGS variable, but just CCFLAGS and
CXXFLAGS. In newer scons versions, CFLAGS is _shared_ flags for C and
C++, so if you want to require these, you don't need to include the
CFLAGS in CXXFLAGS too.
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@301 8a3a26a2-13c4-0310-b231-cf6edde360e5
2008-07-10 08:30:47 +00:00
|
|
|
env.Append( CCFLAGS = baseflags )
|
2007-09-30 19:39:29 +00:00
|
|
|
env.Append( CXXFLAGS = baseflags + [ '-fpermissive', '-fvisibility-inlines-hidden' ] )
|
|
|
|
env.Append( CPPPATH = [ 'include', 'libs' ] )
|
|
|
|
env.Append( CPPDEFINES = [ 'Q_NO_STLPORT' ] )
|
|
|
|
if ( config == 'debug' ):
|
|
|
|
env.Append( CFLAGS = [ '-g' ] )
|
2007-12-25 00:10:45 +00:00
|
|
|
env.Append( CXXFLAGS = [ '-g' ] )
|
2008-03-04 17:01:45 +00:00
|
|
|
env.Append( CPPDEFINES = [ '_DEBUG' ] )
|
2007-09-30 19:39:29 +00:00
|
|
|
else:
|
2012-03-17 15:13:32 +00:00
|
|
|
env.Append( CFLAGS = [ '-O2', '-fno-strict-aliasing' ] )
|
|
|
|
env.Append( CXXFLAGS = [ '-O2', '-fno-strict-aliasing' ] )
|
2007-10-24 04:00:48 +00:00
|
|
|
|
2012-07-15 15:39:47 +00:00
|
|
|
# this lets us catch libjpg and libpng libraries that we put in the same directory as radiant.bin
|
|
|
|
env.Append( LINKFLAGS = '-Wl,-rpath,.' )
|
|
|
|
|
2008-04-05 21:38:49 +00:00
|
|
|
def CheckoutOrUpdate( self, svnurl, path ):
|
|
|
|
if ( os.path.exists( path ) ):
|
2010-11-26 19:50:08 +00:00
|
|
|
cmd = [ 'svn', 'update', path ]
|
2008-04-05 21:38:49 +00:00
|
|
|
else:
|
2010-11-26 19:50:08 +00:00
|
|
|
cmd = [ 'svn', 'checkout', svnurl, path ]
|
|
|
|
print( repr( cmd ) )
|
|
|
|
subprocess.check_call( cmd )
|
2008-04-08 16:58:37 +00:00
|
|
|
|
2008-04-05 21:38:49 +00:00
|
|
|
|
|
|
|
def FetchGamePaks( self, path ):
|
|
|
|
for pak in self.setup_packs:
|
2012-04-15 16:24:08 +00:00
|
|
|
svnurl = 'svn://svn.icculus.org/gtkradiant-gamepacks/%s/trunk' % pak
|
|
|
|
self.CheckoutOrUpdate( svnurl, os.path.join( path, 'installs', pak ) )
|
2008-04-05 21:38:49 +00:00
|
|
|
|
2012-03-25 22:26:04 +00:00
|
|
|
def CopyTree( self, src, dst):
|
|
|
|
for root, dirs, files in os.walk( src ):
|
|
|
|
target_dir = os.path.join( dst, root[root.find( '/' )+1:] )
|
|
|
|
print ( target_dir )
|
|
|
|
if ( not os.path.exists( target_dir ) ):
|
|
|
|
os.mkdir( target_dir )
|
|
|
|
|
|
|
|
for file in files:
|
|
|
|
shutil.copy( os.path.join( root, file ), os.path.join( target_dir, file ) )
|
|
|
|
|
2008-04-05 21:38:49 +00:00
|
|
|
def Setup( self ):
|
2008-09-13 16:12:55 +00:00
|
|
|
try:
|
|
|
|
self.setup_platforms.index( 'local' )
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
else:
|
2008-09-06 08:35:17 +00:00
|
|
|
# special case, fetch external paks under the local install directory
|
|
|
|
self.FetchGamePaks( self.install_directory )
|
2008-09-01 17:34:10 +00:00
|
|
|
# NOTE: unrelated to self.setup_platforms - grab support files and binaries and install them
|
|
|
|
if ( self.platform == 'Windows' ):
|
2011-02-21 14:37:49 +00:00
|
|
|
backup_cwd = os.getcwd()
|
|
|
|
for lib_archive in [
|
2011-02-22 04:48:05 +00:00
|
|
|
'gtk+-bundle-2.16.6-20100912-3-win32.zip',
|
2011-02-21 14:37:49 +00:00
|
|
|
'gtkglext-1.2.0-3-win32.zip',
|
|
|
|
'libxml2-2.7.3-2-win32.zip',
|
|
|
|
'jpeg-8c-4-win32.zip',
|
|
|
|
'STLport-5.2.1-4.zip'
|
|
|
|
]:
|
|
|
|
if ( not os.path.exists( lib_archive ) ):
|
2012-03-25 22:26:04 +00:00
|
|
|
print( 'downloading %s' % lib_archive )
|
|
|
|
archive_web_request = urllib2.urlopen( 'http://icculus.org/gtkradiant/files/1.6.2/%s' % lib_archive )
|
|
|
|
archive_File = open( lib_archive, 'wb' )
|
|
|
|
while True:
|
|
|
|
data = archive_web_request.read( 1048576 ) #read 1mb at a time
|
|
|
|
if not data:
|
|
|
|
break
|
|
|
|
archive_File.write( data )
|
|
|
|
|
|
|
|
archive_web_request.close()
|
|
|
|
archive_File.close()
|
|
|
|
|
|
|
|
print( 'unpacking %s' % lib_archive )
|
2011-02-21 14:37:49 +00:00
|
|
|
lib_archive_path = os.path.abspath( lib_archive )
|
|
|
|
os.chdir( os.path.dirname( backup_cwd ) )
|
2012-03-25 22:26:04 +00:00
|
|
|
|
|
|
|
archive_Zip = zipfile.ZipFile( lib_archive_path, 'r' )
|
|
|
|
archive_Zip.extractall()
|
|
|
|
archive_Zip.close()
|
|
|
|
|
2011-02-21 14:37:49 +00:00
|
|
|
os.chdir( backup_cwd )
|
|
|
|
|
|
|
|
# copy all the dependent runtime data to the install directory
|
|
|
|
srcdir = os.path.dirname( backup_cwd )
|
|
|
|
for dll in [
|
|
|
|
'gtk-2.16.6/bin/freetype6.dll',
|
|
|
|
'gtk-2.16.6/bin/intl.dll',
|
|
|
|
'gtk-2.16.6/bin/libasprintf-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libatk-1.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libcairo-2.dll',
|
|
|
|
'gtk-2.16.6/bin/libexpat-1.dll',
|
|
|
|
'gtk-2.16.6/bin/libfontconfig-1.dll',
|
|
|
|
'gtk-2.16.6/bin/libgailutil-18.dll',
|
|
|
|
'gtk-2.16.6/bin/libgcc_s_dw2-1.dll',
|
|
|
|
'gtk-2.16.6/bin/libgdk-win32-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libgdk_pixbuf-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libgio-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libglib-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libgmodule-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libgobject-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libgthread-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libgtk-win32-2.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libpango-1.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libpangocairo-1.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libpangoft2-1.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libpangowin32-1.0-0.dll',
|
|
|
|
'gtk-2.16.6/bin/libpng14-14.dll',
|
|
|
|
'gtk-2.16.6/bin/zlib1.dll',
|
|
|
|
'gtk-2.16.6/lib/GNU.Gettext.dll',
|
|
|
|
'gtk-2.16.6/lib/gtk-2.0/2.10.0/engines/libpixmap.dll',
|
|
|
|
'gtk-2.16.6/lib/gtk-2.0/2.10.0/engines/libwimp.dll',
|
|
|
|
'gtk-2.16.6/lib/gtk-2.0/modules/libgail.dll',
|
|
|
|
'gtkglext-1.2.0/bin/libgdkglext-win32-1.0-0.dll',
|
|
|
|
'gtkglext-1.2.0/bin/libgtkglext-win32-1.0-0.dll',
|
|
|
|
'libxml2-2.7.3/bin/libxml2-2.dll'
|
|
|
|
]:
|
2012-03-25 22:26:04 +00:00
|
|
|
shutil.copy( os.path.join( srcdir, dll ), 'install' )
|
|
|
|
|
2011-02-21 14:37:49 +00:00
|
|
|
for extra in [
|
|
|
|
'gtk-2.16.6/etc',
|
|
|
|
'gtk-2.16.6/share',
|
|
|
|
'gtkglext-1.2.0/share',
|
|
|
|
'libxml2-2.7.3/share'
|
|
|
|
]:
|
2012-03-25 22:26:04 +00:00
|
|
|
self.CopyTree( os.path.join( srcdir, extra ), 'install' )
|
2007-09-30 19:39:29 +00:00
|
|
|
|
2012-07-15 15:39:47 +00:00
|
|
|
def FinishBuild( self, target, source, env ):
|
|
|
|
print( 'Lookup and bundle the PNG and JPEG libraries' )
|
|
|
|
# radiant.bin doesn't link to jpeg lib directly, grab that from a module
|
|
|
|
module_ldd = subprocess.check_output( 'ldd -r install/modules/image.so', shell = True )
|
|
|
|
print( module_ldd )
|
|
|
|
|
|
|
|
def find_library( output, libname ):
|
|
|
|
match = filter( lambda l : l.find( libname ) != -1, output.split( '\n' ) )[0]
|
|
|
|
return re.split( '.*=> (.*) .*', match )[1]
|
|
|
|
|
|
|
|
jpeg_path = find_library( module_ldd, 'libjpeg' )
|
|
|
|
print( 'JPEG library: %s' % repr( jpeg_path ) )
|
|
|
|
png_path = find_library( module_ldd, 'libpng' )
|
|
|
|
print( 'PNG library: %s' % repr( png_path ) )
|
|
|
|
|
|
|
|
shutil.copy( jpeg_path, 'install' )
|
|
|
|
shutil.copy( png_path, 'install' )
|
|
|
|
|
2007-09-30 19:39:29 +00:00
|
|
|
# parse the config statement line to produce/update an existing config list
|
2008-03-04 17:01:45 +00:00
|
|
|
# the configs expose a list of keywords and accepted values, which the engine parses out
|
2007-09-30 19:39:29 +00:00
|
|
|
class ConfigParser:
|
|
|
|
def __init__( self ):
|
|
|
|
self.operators = {}
|
|
|
|
|
|
|
|
def _processOp( self, ops ):
|
|
|
|
assert( len( ops ) == 1 )
|
|
|
|
op = ops.pop()
|
|
|
|
if ( op == 'clear' ):
|
|
|
|
self.configs = []
|
|
|
|
self.current_config = None
|
|
|
|
elif ( op == 'pop' ):
|
|
|
|
self.configs.pop()
|
|
|
|
self.current_config = None
|
|
|
|
elif ( op == 'push' ):
|
|
|
|
self.configs.append( self.current_config )
|
|
|
|
self.current_config = Config()
|
|
|
|
self._setupParser( self.current_config )
|
|
|
|
|
|
|
|
def _setupParser( self, c ):
|
|
|
|
self.operators = { 'op' : self._processOp }
|
|
|
|
c.setupParser( self.operators )
|
|
|
|
|
|
|
|
def _parseStatement( self, s ):
|
|
|
|
statement_re = re.compile( '(.*)=(.*)' )
|
|
|
|
value_list_re = re.compile( '([^,]*),?' )
|
|
|
|
if ( not statement_re.match( s ) ):
|
|
|
|
print 'syntax error (statement match): %s' % repr( s )
|
|
|
|
return
|
|
|
|
statement_split = statement_re.split( s )
|
|
|
|
if ( len( statement_split ) != 4 ):
|
|
|
|
print 'syntax error (statement split): %s' % repr( s )
|
|
|
|
return
|
|
|
|
( foo, name, value, bar ) = statement_split
|
|
|
|
value_split = value_list_re.split( value )
|
|
|
|
if ( len( value_split ) < 2 or len( value_split ) % 2 != 1 ):
|
|
|
|
print 'syntax error (value split): %s' % ( repr( value_split ) )
|
|
|
|
return
|
|
|
|
try:
|
|
|
|
value_array = []
|
|
|
|
value_split.reverse()
|
|
|
|
value_split.pop()
|
|
|
|
while ( len( value_split ) != 0 ):
|
|
|
|
value_array.append( value_split.pop() )
|
2008-03-04 17:01:45 +00:00
|
|
|
value_split.pop()
|
2007-09-30 19:39:29 +00:00
|
|
|
except:
|
|
|
|
print traceback.print_exception( sys.exc_type, sys.exc_value, sys.exc_traceback )
|
|
|
|
print 'syntax error (value to array): %s' % ( repr( value_split ) )
|
|
|
|
return
|
|
|
|
|
2008-03-04 17:01:45 +00:00
|
|
|
return ( name, value_array )
|
|
|
|
|
2007-09-30 19:39:29 +00:00
|
|
|
def parseStatements( self, _configs, statements ):
|
|
|
|
self.current_config = None
|
|
|
|
self.configs = _configs
|
|
|
|
if ( self.configs is None ):
|
|
|
|
self.configs = []
|
|
|
|
for s in statements:
|
|
|
|
|
|
|
|
if ( self.current_config is None ):
|
|
|
|
# use a provided config, or create a default one
|
|
|
|
if ( len( self.configs ) > 0 ):
|
|
|
|
self.current_config = self.configs.pop()
|
|
|
|
else:
|
|
|
|
self.current_config = Config()
|
|
|
|
# setup the operator table for this config
|
|
|
|
# NOTE: have that in self._processOp too
|
|
|
|
self._setupParser( self.current_config )
|
2008-03-04 17:01:45 +00:00
|
|
|
|
2007-09-30 19:39:29 +00:00
|
|
|
ret = self._parseStatement( s )
|
|
|
|
if ( ret is None ):
|
|
|
|
print 'stop statement parse at %s' % repr( s )
|
|
|
|
break
|
|
|
|
( name, value_array ) = ret
|
|
|
|
try:
|
|
|
|
processor = self.operators[name]
|
|
|
|
except:
|
|
|
|
print 'unknown operator %s - stop statement parse at %s' % ( repr( name ), repr( s ) )
|
|
|
|
break
|
|
|
|
processor( value_array )
|
|
|
|
|
|
|
|
if ( not self.current_config is None ):
|
|
|
|
self.configs.append( self.current_config )
|
|
|
|
# make sure there is at least one config
|
|
|
|
if ( len( self.configs ) == 0 ):
|
|
|
|
print 'pushing a default config'
|
|
|
|
self.configs.append( Config() )
|
|
|
|
return self.configs
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
class TestConfigParse( unittest.TestCase ):
|
|
|
|
|
|
|
|
def setUp( self ):
|
|
|
|
self.parser = ConfigParser()
|
|
|
|
|
|
|
|
def testBasicParse( self ):
|
|
|
|
# test basic config parsing
|
|
|
|
# needs to cleanly stop at the first config statement that is not recognized
|
|
|
|
configs = self.parser.parseStatements( None, [ 'game=missionpack', 'config=qvm', 'foobar' ] )
|
|
|
|
print repr( configs )
|
|
|
|
|
|
|
|
def testMultiParse( self ):
|
|
|
|
# multiple configs seperated by commas
|
|
|
|
configs = self.parser.parseStatements( None, [ 'target=server,game,cgame' ] )
|
|
|
|
print repr( configs )
|
|
|
|
|
|
|
|
def testOp( self ):
|
|
|
|
# test the operator for multiple configs
|
|
|
|
configs = self.parser.parseStatements( None, [ 'target=core', 'config=release', 'op=push', 'target=game,cgame,ui', 'config=debug' ] )
|
|
|
|
print repr( configs )
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|