# Released under the MIT License. See LICENSE for details.#"""Functionality related to cloud based assets."""from__future__importannotationsfromdataclassesimportdataclass,fieldfromtypingimportTYPE_CHECKING,AnnotatedfromenumimportEnumfromefro.dataclassioimportioprepped,IOAttrsifTYPE_CHECKING:pass
[docs]classAssetPackageFlavor(Enum):"""Flavors for asset package outputs for different platforms/etc."""# DXT3/DXT5 texturesDESKTOP='desktop'# ASTC texturesMOBILE='mobile'
[docs]classAssetType(Enum):"""Types for individual assets within a package."""TEXTURE='texture'CUBE_TEXTURE='cube_texture'SOUND='sound'DATA='data'MESH='mesh'COLLISION_MESH='collision_mesh'
[docs]@ioprepped@dataclassclassAssetPackageFlavorManifest:"""A manifest of asset info for a specific flavor of an asset package."""cloudfiles:dict[str,str]=field(default_factory=dict)
[docs]@ioprepped@dataclassclassAssetPackageBuildState:"""Contains info about an in-progress asset cloud build."""# Asset names still being built.in_progress_builds:list[str]=field(default_factory=list)# The initial number of assets needing to be built.initial_build_count:int=0# Build error string. If this is present, it should be presented# to the user and they should required to explicitly restart the build# in some way if desired.error:str|None=None
# Docs-generation hack; import some stuff that we likely only forward-declared# in our actual source code so that docs tools can find it.fromtypingimport(Coroutine,Any,Literal,Callable,Generator,Awaitable,Sequence,Self)importasynciofromconcurrent.futuresimportFuture