Panda3D
|
Classes | |
class | ExcludeFilename |
class | HostEntry |
class | Package |
class | PackageEntry |
class | PackFile |
Public Member Functions | |
__init__ (self, platform=None) | |
addAltHost (self, keyword, altHost, origHost=None, downloadUrl=None, descriptiveName=None, hostDir=None, mirrors=None) | |
addHost (self, host, downloadUrl=None, descriptiveName=None, hostDir=None, mirrors=None) | |
addModule (self, moduleNames, newName=None, filename=None, required=False) | |
addPosixSearchPath (self, searchPath, varname) | |
addWindowsSearchPath (self, searchPath, varname) | |
beginPackage (self, packageName, p3dApplication=False, solo=False) | |
buildPatches (self, packages) | |
close (self) | |
do_config (self, **kw) | |
do_excludeModule (self, *args) | |
do_main (self, filename) | |
do_mainModule (self, moduleName, newName=None, filename=None) | |
do_module (self, *args, **kw) | |
do_require (self, *args, **kw) | |
do_setupPanda3D (self, p3dpythonName=None, p3dpythonwName=None) | |
do_setVer (self, value) | |
do_sign (self, certificate, chain=None, pkey=None, password=None) | |
endPackage (self) | |
findPackage (self, packageName, platform=None, version=None, host=None, requires=None) | |
loadLdconfigCache (self) | |
readPackageDef (self, packageDef, packageNames=None) | |
requirePackage (self, package) | |
requirePackagesNamed (self, names, version=None, host=None) | |
resolveLibrary (self, filename) | |
setHost (self, host, downloadUrl=None, descriptiveName=None, hostDir=None, mirrors=None) | |
setPlatform (self, platform=None) | |
setup (self) | |
Static Public Attributes | |
notify = directNotify.newCategory("Packager") | |
Protected Member Functions | |
_ensureExtensions (self) | |
__init__ | ( | self, | |
platform = None ) |
|
protected |
addAltHost | ( | self, | |
keyword, | |||
altHost, | |||
origHost = None, | |||
downloadUrl = None, | |||
descriptiveName = None, | |||
hostDir = None, | |||
mirrors = None ) |
Adds an alternate host to any already-known host. This defines an alternate server that may be contacted, if specified on the HTML page, which hosts a different version of the server's contents. (This is different from a mirror, which hosts an identical version of the server's contents.)
addHost | ( | self, | |
host, | |||
downloadUrl = None, | |||
descriptiveName = None, | |||
hostDir = None, | |||
mirrors = None ) |
Adds a host to the list of known download hosts. This information will be written into any p3d files that reference this host; this can be used to pre-define the possible mirrors for a given host, for instance. Returns the newly-created HostEntry object.
addModule | ( | self, | |
moduleNames, | |||
newName = None, | |||
filename = None, | |||
required = False ) |
addPosixSearchPath | ( | self, | |
searchPath, | |||
varname ) |
Expands $varname, interpreting as a Posix-style search path, and adds its contents to the indicated DSearchPath.
addWindowsSearchPath | ( | self, | |
searchPath, | |||
varname ) |
Expands $varname, interpreting as a Windows-style search path, and adds its contents to the indicated DSearchPath.
beginPackage | ( | self, | |
packageName, | |||
p3dApplication = False, | |||
solo = False ) |
Begins a new package specification. packageName is the basename of the package. Follow this with a number of calls to file() etc., and close the package with endPackage().
buildPatches | ( | self, | |
packages ) |
Call this after calling close(), to build patches for the indicated packages.
close | ( | self | ) |
Called after reading all of the package def files, this performs any final cleanup appropriate.
do_config | ( | self, | |
** | kw ) |
Called with any number of keyword parameters. For each keyword parameter, sets the corresponding p3d config variable to the given value. This will be written into the p3d_info.xml file at the top of the application, or to the package desc file for a package file.
do_excludeModule | ( | self, | |
* | args ) |
Marks the indicated Python module as not to be included.
do_main | ( | self, | |
filename ) |
Includes the indicated file as __main__ module of the application. Also updates mainModule to point to this module.
do_mainModule | ( | self, | |
moduleName, | |||
newName = None, | |||
filename = None ) |
Names the indicated module as the "main" module of the application or exe. In most cases, you will want to use main() instead.
do_module | ( | self, | |
* | args, | ||
** | kw ) |
Adds the indicated Python module(s) to the current package.
do_require | ( | self, | |
* | args, | ||
** | kw ) |
Indicates a dependency on the named package(s), supplied as a name. Attempts to install this package will implicitly install the named package also. Files already included in the named package will be omitted from this one when building it.
do_setupPanda3D | ( | self, | |
p3dpythonName = None, | |||
p3dpythonwName = None ) |
A special convenience command that adds the minimum startup modules for a panda3d package, intended for developers producing their own custom panda3d for download. Should be called before any other Python modules are named.
do_setVer | ( | self, | |
value ) |
Sets an explicit set_ver number for the package, as a tuple of integers, or as a string of dot-separated integers.
do_sign | ( | self, | |
certificate, | |||
chain = None, | |||
pkey = None, | |||
password = None ) |
Signs the resulting p3d file (or package multifile) with the indicated certificate. If needed, the chain file should contain the list of additional certificate authorities needed to validate the signing certificate. The pkey file should contain the private key. It is also legal for the certificate file to contain the chain and private key embedded within it. If the private key is encrypted, the password should be supplied.
endPackage | ( | self | ) |
Closes the current package specification. This actually generates the package file. Returns the finished package, or None if the package failed to close (e.g. missing files).
findPackage | ( | self, | |
packageName, | |||
platform = None, | |||
version = None, | |||
host = None, | |||
requires = None ) |
Searches for the named package from a previous publish operation along the install search path. If requires is not None, it is a list of Package objects that are already required. The new Package object must be compatible with the existing Packages, or an error is returned. This is also useful for determining the appropriate package version to choose when a version is not specified. Returns the Package object, or None if the package cannot be located.
loadLdconfigCache | ( | self | ) |
On GNU/Linux, runs ldconfig -p to find out where all the libraries on the system are located. Assumes that the platform has already been set.
readPackageDef | ( | self, | |
packageDef, | |||
packageNames = None ) |
Reads the named .pdef file and constructs the named packages, or all packages if packageNames is None. Raises an exception if the pdef file is invalid. Returns the list of packages constructed.
requirePackage | ( | self, | |
package ) |
Indicates a dependency on the indicated package, supplied as a Package object. Attempts to install this package will implicitly install the named package also. Files already included in the named package will be omitted from this one.
requirePackagesNamed | ( | self, | |
names, | |||
version = None, | |||
host = None ) |
Indicates a dependency on the named package(s), supplied as a name. Attempts to install this package will implicitly install the named package also. Files already included in the named package will be omitted from this one when building it.
resolveLibrary | ( | self, | |
filename ) |
Resolves the given shared library filename along the executable path, or by cross-referencing it with the library cache.
setHost | ( | self, | |
host, | |||
downloadUrl = None, | |||
descriptiveName = None, | |||
hostDir = None, | |||
mirrors = None ) |
Specifies the URL that will ultimately host these contents.
setPlatform | ( | self, | |
platform = None ) |
Sets the platform that this Packager will compute for. On OSX, this can be used to specify the particular architecture we are building; on other platforms, it is probably a mistake to set this. You should call this before doing anything else with the Packager. It's even better to pass the platform string to the constructor.
setup | ( | self | ) |
Call this method to initialize the class after filling in some of the values in the constructor.
allowPackages |
allowPythonDev |
arch |
binaryExtensions |
caseSensitive |
contents |
contentsSeq |
currentPackage |
dcClientSuffixes |
encryptionKey |
excludeSystemFiles |
excludeSystemGlobs |
executableExtensions |
executablePath |
extractExtensions |
host |
hosts |
http |
ignoreSetHost |
imageExtensions |
installDir |
installSearch |
knownExtensions |
libraryCache |
loader |
loaderOptions |
manifestExtensions |
maxAge |
modelExtensions |
musicManager |
nonuniqueExtensions |
|
static |
p3dInstallDir |
p3dSuffix |
packageList |
packages |
platform |
platformSpecificExtensions |
prcEncryptionKey |
prcSignCommand |
remapExtensions |
sfxManagerList |
signParams |
storePythonSource |
suppressWarningForExtensions |
systemRoot |
textExtensions |
uncompressibleExtensions |
unprocessedExtensions |
verbosePrint |