X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=config.py;h=e91e9f1f2e62843509e2799dcd6f9722d6ad7d50;hb=428c32dd98495aae93cd4e78e85f1db091446ff0;hp=3256686e27927b75c5ad02b274069b8596348168;hpb=af5522eae42983ffb513d89c565b17abe9462775;p=xonotic%2Fnetradiant.git diff --git a/config.py b/config.py index 3256686e..e91e9f1f 100644 --- a/config.py +++ b/config.py @@ -1,4 +1,4 @@ -import sys, traceback, platform, re, commands, platform +import sys, traceback, platform, re, commands, platform, subprocess if __name__ != '__main__': from SCons.Script import * @@ -13,7 +13,7 @@ import utils class Config: # not used atm, but useful to keep a list in mind # may use them eventually for the 'all' and other aliases expansions? - target_choices = utils.Enum( 'radiant', 'q3map2' ) + target_choices = utils.Enum( 'radiant', 'q3map2', 'setup' ) config_choices = utils.Enum( 'debug', 'release' ) # aliases @@ -26,13 +26,14 @@ class Config: self.config_selected = [ 'release' ] # those are global to each config self.platform = platform.system() - if ( self.platform == 'Darwin' ): - self.cc = 'gcc' - self.cxx = 'g++' - else: - self.cc = 'gcc-4.1' - self.cxx = 'g++-4.1' - self.install = True + self.cc = 'gcc' + self.cxx = 'g++' + self.install_directory = 'install' + + # platforms for which to assemble a setup + self.setup_platforms = [ 'local', 'x86', 'x64', 'win32' ] + # paks to assemble in the setup + self.setup_packs = [ 'Q3Pack', 'UrTPack', 'UFOAIPack', 'Q2WPack', 'JAPack' ] def __repr__( self ): return 'config: target=%s config=%s' % ( self.target_selected, self.config_selected ) @@ -49,26 +50,23 @@ class Config: def _processCXX( self, ops ): self.cxx = ops - def _processInstall( self, ops ): - ops = ops[0] - if ( ops == 'yes' or ops == 'true' or ops == 'True' or ops == '1' or ops == True ): - self.install = True - return - self.install = False + def _processInstallDir( self, ops ): + self.install_directory = os.path.normpath( os.path.expanduser( ops[0] ) ) + + def _processSetupPlatforms( self, ops ): + self.setup_platforms = ops + + def _processSetupPacks( self, ops ): + self.setup_packs = ops def setupParser( self, operators ): operators['target'] = self._processTarget operators['config'] = self._processConfig operators['cc'] = self._processCC operators['cxx'] = self._processCXX - operators['install'] = self._processInstall - - def InstallAs( self, target, source ): - if ( self.install ): - iret = InstallAs( target, source ) - Default( iret ) - else: - Default( source ) + operators['install_directory'] = self._processInstallDir + operators['setup_platforms'] = self._processSetupPlatforms + operators['setup_packs'] = self._processSetupPacks def emit_radiant( self ): settings = self @@ -86,7 +84,7 @@ class Config: lib_objects += SConscript( os.path.join( build_dir, 'SConscript.lib' ) ) Export( 'lib_objects' ) radiant = SConscript( os.path.join( build_dir, 'SConscript.radiant' ) ) - self.InstallAs( 'install/radiant.bin', radiant ) + Default( InstallAs( os.path.join( self.install_directory, 'radiant.bin' ), radiant ) ) # PIC versions of the libs for the modules shlib_objects_extra = {} @@ -106,8 +104,7 @@ class Config: 'plugins/entity/entity.vcproj', 'plugins/image/image.vcproj', 'plugins/model/model.vcproj', - # FIXME: Fix linker flags - xml2, z - # 'plugins/imagepng/imagepng.vcproj', + 'plugins/imagepng/imagepng.vcproj', 'plugins/imagewal/imagewal.vcproj', 'plugins/imagem8/imagem8.vcproj', 'plugins/spritemodel/spritemodel.vcproj', @@ -127,11 +124,11 @@ class Config: # 'contrib/patches/patches.vcproj', # 'plugins/archivewad/archivewad.vcproj', - # FIXME Doesn't compile cleanly - # 'contrib/prtview/PrtView.vcproj', + 'contrib/prtview/PrtView.vcproj', 'contrib/hydratoolz/hydratoolz.vcproj', 'contrib/bobtoolz/bobToolz_gtk.vcproj', 'contrib/gtkgensurf/gtkgensurf.vcproj', + 'contrib/ufoai/ufoai.vcproj', 'contrib/bkgrnd2d/bkgrnd2d.vcproj' ]: ( libpath, libname ) = os.path.split( project ) @@ -149,7 +146,7 @@ class Config: shlib_objects += shlib_objects_extra['cmdlib'] Export( 'project', 'shlib_objects' ) module = SConscript( os.path.join( build_dir, 'SConscript.module' ) ) - self.InstallAs( 'install/modules/%s.so' % libname, module ) + Default( InstallAs( os.path.join( self.install_directory, 'modules/%s.so' % libname ), module ) ) def emit_q3map2( self ): settings = self @@ -161,12 +158,12 @@ class Config: build_dir = os.path.join( 'build', config_name, 'q3map2' ) BuildDir( build_dir, '.', duplicate = 0 ) lib_objects = [] - for project in [ 'libs/cmdlib/cmdlib.vcproj', 'libs/mathlib/mathlib.vcproj', 'libs/l_net/l_net.vcproj', 'libs/ddslib/ddslib.vcproj', 'libs/picomodel/picomodel.vcproj', 'libs/md5lib/md5lib.vcproj' ]: + for project in [ 'libs/cmdlib/cmdlib.vcproj', 'libs/mathlib/mathlib.vcproj', 'libs/l_net/l_net.vcproj', 'libs/ddslib/ddslib.vcproj', 'libs/picomodel/picomodel.vcproj', 'libs/md5lib/md5lib_VC9.vcproj' ]: Export( 'project' ) lib_objects += SConscript( os.path.join( build_dir, 'SConscript.lib' ) ) Export( 'lib_objects' ) q3map2 = SConscript( os.path.join( build_dir, 'SConscript.q3map2' ) ) - self.InstallAs( 'install/q3map2', q3map2 ) + Default( InstallAs( os.path.join( self.install_directory, 'q3map2' ), q3map2 ) ) def emit( self ): @@ -183,7 +180,14 @@ class Config: else: self.emit_q3map2() - def SetupEnvironment( self, env, config, useGtk = False, useGtkGL = False, useJPEG = False ): + try: + self.target_selected.index( 'setup' ) + except: + pass + else: + self.Setup() + + def SetupEnvironment( self, env, config, useGtk = False, useGtkGL = False, useJPEG = False, useZ = False, usePNG = False ): env['CC'] = self.cc env['CXX'] = self.cxx ( ret, xml2 ) = commands.getstatusoutput( 'xml2-config --cflags' ) @@ -226,8 +230,13 @@ class Config: env.Append( LINKFLAGS = gtkgllibs.split( ' ' ) ) if ( useJPEG ): env.Append( LIBS = 'jpeg' ) + if ( usePNG ): + pnglibs = 'png z' + env.Append( LIBS = pnglibs.split( ' ' ) ) + if ( useZ ): + env.Append( LIBS = 'z' ) - env.Append( CFLAGS = baseflags ) + env.Append( CCFLAGS = baseflags ) env.Append( CXXFLAGS = baseflags + [ '-fpermissive', '-fvisibility-inlines-hidden' ] ) env.Append( CPPPATH = [ 'include', 'libs' ] ) env.Append( CPPDEFINES = [ 'Q_NO_STLPORT' ] ) @@ -238,9 +247,86 @@ class Config: else: env.Append( CFLAGS = [ '-O3', '-Winline', '-ffast-math', '-fno-unsafe-math-optimizations', '-fno-strict-aliasing' ] ) env.Append( CXXFLAGS = [ '-O3', '-Winline', '-ffast-math', '-fno-unsafe-math-optimizations','-fno-strict-aliasing' ] ) - #env.Append( CFLAGS = [ '-march=pentium3' ] ) -# env.Append( LINKFLAGS = [ '-m32' ] ) + def CheckoutOrUpdate( self, svnurl, path ): + if ( os.path.exists( path ) ): + cmd = [ 'svn', 'update', path ] + else: + cmd = [ 'svn', 'checkout', svnurl, path ] + print( repr( cmd ) ) + subprocess.check_call( cmd ) + + + def FetchGamePaks( self, path ): + for pak in self.setup_packs: + if ( pak == 'Q3Pack' or pak == 'UrTPack' or pak == 'UFOAIPack' or pak == 'Q2WPack' or pak == 'JAPack' ): + svnurl = 'https://zerowing.idsoftware.com/svn/radiant.gamepacks/%s/trunk' % pak + self.CheckoutOrUpdate( svnurl, os.path.join( path, 'installs', pak ) ) + + def Setup( self ): + try: + self.setup_platforms.index( 'local' ) + except: + pass + else: + # special case, fetch external paks under the local install directory + self.FetchGamePaks( self.install_directory ) + # NOTE: unrelated to self.setup_platforms - grab support files and binaries and install them + if ( self.platform == 'Windows' ): + depsfile = 'GtkR-deps-1.6-4.zip' + if ( not os.path.exists( depsfile ) ): + cmd = [ 'wget', '-N', 'http://zerowing.idsoftware.com/files/radiant/developer/1.6.1/%s' % depsfile ] + print( repr( cmd ) ) + subprocess.check_call( cmd ) + + # extract one directoy above + f = os.path.abspath( depsfile ) + backup_cwd = os.getcwd() + os.chdir( os.path.dirname( backup_cwd ) ) + cmd = [ 'unzip', '-o', f ] + print( repr( cmd ) ) + subprocess.check_call( cmd ) + os.chdir( backup_cwd ) + + # copy all the dependent runtime data to the install directory + srcdir = os.path.dirname( backup_cwd ) + for f in [ + 'libxml2/bin/libxml2.dll', + 'gtk2/bin/libglib-2.0-0.dll', + 'gtk2/bin/libgobject-2.0-0.dll', + 'gtk2/bin/libgdk-win32-2.0-0.dll', + 'gtk2/bin/libgtk-win32-2.0-0.dll', + 'gtk2/bin/intl.dll', + 'gtk2/bin/libatk-1.0-0.dll', + 'gtk2/bin/libcairo-2.dll', + 'gtk2/bin/libgdk_pixbuf-2.0-0.dll', + 'gtk2/bin/libgmodule-2.0-0.dll', + 'gtk2/bin/libpng13.dll', + 'gtk2/bin/libpango-1.0-0.dll', + 'gtk2/bin/libpangoft2-1.0-0.dll', + 'gtk2/bin/libpangocairo-1.0-0.dll', + 'gtk2/bin/libpangowin32-1.0-0.dll', + 'gtk2/lib/libgtkglext-win32-1.0-0.dll', + 'gtk2/lib/libgdkglext-win32-1.0-0.dll', + 'gtk2/lib/iconv.dll', + 'gtk2/zlib1.dll', + 'freetype-dev_2.4.2-1_win32/bin/freetype6.dll', + 'fontconfig-dev_2.8.0-2_win32/bin/libfontconfig-1.dll', + 'expat_2.0.1-1_win32/bin/libexpat-1.dll', + ]: + cmd = [ 'cp', '-v', os.path.join( srcdir, f ), 'install' ] + print( repr( cmd ) ) + subprocess.check_call( cmd ) + for d in [ + 'gtk2/etc', + 'gtk2/share', + 'fontconfig-dev_2.8.0-2_win32/etc', + 'fontconfig-dev_2.8.0-2_win32/share', + 'freetype-dev_2.4.2-1_win32/share', + ]: + cmd = [ 'cp', '-r', '-v', os.path.join( srcdir, d ), 'install' ] + print( repr( cmd ) ) + subprocess.check_call( cmd ) # parse the config statement line to produce/update an existing config list # the configs expose a list of keywords and accepted values, which the engine parses out