예제 #1
0
    def __init__(self, fileDir, platform='iOS'):
        '''
        Constructor
        '''
        self.isOK = True
        self.platform = platform

        self.dir = fileDir
        self.file_count = 0
        self.file_tot_count = 0

        self.work = Work(count=os.cpu_count())

        self.errorFils = []

        if self.dir is None:
            self.isOK = False

        if self.platform == 'iOS':
            self.luaPacker = PackLua(True, True)
            self.imgPacker = PackImage(True)
        else:
            self.luaPacker = PackLua(True, False)
            self.imgPacker = PackImage(False)
예제 #2
0
    def __init__(self, fileDir, platform = 'iOS'):
        '''
        Constructor
        '''
        self.isOK = True
        self.platform = platform
        
        self.dir = fileDir
        self.file_count = 0
        self.file_tot_count = 0
        
        self.work = Work(count=os.cpu_count())
 
        self.errorFils = []        
        
        if self.dir is None :
            self.isOK = False
        
        if self.platform == 'iOS':
            self.luaPacker = PackLua(True, True)
            self.imgPacker = PackImage(True)
        else:
            self.luaPacker = PackLua(True, False)
            self.imgPacker = PackImage(False)
예제 #3
0
class PackRes(object):
    '''
    classdocs
    '''

    def __init__(self, fileDir, platform = 'iOS'):
        '''
        Constructor
        '''
        self.isOK = True
        self.platform = platform
        
        self.dir = fileDir
        self.file_count = 0
        self.file_tot_count = 0
        
        self.work = Work(count=os.cpu_count())
 
        self.errorFils = []        
        
        if self.dir is None :
            self.isOK = False
        
        if self.platform == 'iOS':
            self.luaPacker = PackLua(True, True)
            self.imgPacker = PackImage(True)
        else:
            self.luaPacker = PackLua(True, False)
            self.imgPacker = PackImage(False)
    
    def start(self):
        if self.isOK:
            self.process()
        else:
            Log.printDetailln("路径错误, 请重试...")
    
    def process(self):
        tstart = time.clock()

        if not os.path.isdir(self.dir):
            if self._FileCat(os.path.realpath(self.dir)):
                self.file_tot_count = self.file_tot_count + 1
        else:
            for r, d, fileList in os.walk(self.dir) :
                for file in fileList :
                    absFilePath = os.path.join(r, file)
                    if self._FileCat(absFilePath):
                        self.file_tot_count = self.file_tot_count + 1

        Log.printDetailln("%d Files loaded Completed, Compiling..." % (self.file_tot_count))         
        
        self.work.start(self.file_tot_count)
        self.work.join()
        
        tend = time.clock()

        errs = self.work.errs
        if not errs.empty():
            Log.printDetailln("This files ocurs ERROR:")
            while not errs.empty():
                task = errs.get()
                absFilePath, realpath, *args = task.param
                Log.printDetailln('\t', realpath)

        Log.printDetailln("\n\nCompeleted in %.3fs." % (tend - tstart))
        
        if len(self.imgPacker.passFiles) > 0 :
            Log.printDetailln("Pass Files:")
            for passfile in self.imgPacker.passFiles:
                Log.printDetailln('\t' + passfile)

        return True
        
 
    '''
        文件分类
    '''
    def _FileCat(self, absFilePath):   
        realpath = absFilePath.replace(self.dir, '')
        
        ret = True

        if absFilePath[-4:] == '.lua' :
            self.work.putTask(Task(target=task_compileLuaJit2, args=(absFilePath, realpath, self.luaPacker, self.file_tot_count + 1)))
        elif absFilePath.find(".xml") != -1 :
            self.work.putTask(Task(target=task_XXTeaEncode2, args=(absFilePath, realpath, self.file_tot_count + 1)))
        elif absFilePath.find(".png") != -1 :
            self.work.putTask(Task(target=task_convertImage2, args=(absFilePath, realpath, self.imgPacker, self.file_tot_count + 1)))
        elif absFilePath.find(".jpg") != -1 :
            self.work.putTask(Task(target=task_convertImage2, args=(absFilePath, realpath, self.imgPacker, self.file_tot_count + 1)))
        elif absFilePath.find(".map") != -1 :
            self.work.putTask(Task(target=task_convertMap2, args=(absFilePath, realpath, self.file_tot_count + 1)))
        else:
            ret = False
        return ret
예제 #4
0
class PackRes(object):
    '''
    classdocs
    '''
    def __init__(self, fileDir, platform='iOS'):
        '''
        Constructor
        '''
        self.isOK = True
        self.platform = platform

        self.dir = fileDir
        self.file_count = 0
        self.file_tot_count = 0

        self.work = Work(count=os.cpu_count())

        self.errorFils = []

        if self.dir is None:
            self.isOK = False

        if self.platform == 'iOS':
            self.luaPacker = PackLua(True, True)
            self.imgPacker = PackImage(True)
        else:
            self.luaPacker = PackLua(True, False)
            self.imgPacker = PackImage(False)

    def start(self):
        if self.isOK:
            self.process()
        else:
            Log.printDetailln("路径错误, 请重试...")

    def process(self):
        tstart = time.clock()

        if not os.path.isdir(self.dir):
            if self._FileCat(os.path.realpath(self.dir)):
                self.file_tot_count = self.file_tot_count + 1
        else:
            for r, d, fileList in os.walk(self.dir):
                for file in fileList:
                    absFilePath = os.path.join(r, file)
                    if self._FileCat(absFilePath):
                        self.file_tot_count = self.file_tot_count + 1

        Log.printDetailln("%d Files loaded Completed, Compiling..." %
                          (self.file_tot_count))

        self.work.start(self.file_tot_count)
        self.work.join()

        tend = time.clock()

        errs = self.work.errs
        if not errs.empty():
            Log.printDetailln("This files ocurs ERROR:")
            while not errs.empty():
                task = errs.get()
                absFilePath, realpath, *args = task.param
                Log.printDetailln('\t', realpath)

        Log.printDetailln("\n\nCompeleted in %.3fs." % (tend - tstart))

        if len(self.imgPacker.passFiles) > 0:
            Log.printDetailln("Pass Files:")
            for passfile in self.imgPacker.passFiles:
                Log.printDetailln('\t' + passfile)

        return True

    '''
        文件分类
    '''

    def _FileCat(self, absFilePath):
        realpath = absFilePath.replace(self.dir, '')

        ret = True

        if absFilePath[-4:] == '.lua':
            self.work.putTask(
                Task(target=task_compileLuaJit2,
                     args=(absFilePath, realpath, self.luaPacker,
                           self.file_tot_count + 1)))
        elif absFilePath.find(".xml") != -1:
            self.work.putTask(
                Task(target=task_XXTeaEncode2,
                     args=(absFilePath, realpath, self.file_tot_count + 1)))
        elif absFilePath.find(".png") != -1:
            self.work.putTask(
                Task(target=task_convertImage2,
                     args=(absFilePath, realpath, self.imgPacker,
                           self.file_tot_count + 1)))
        elif absFilePath.find(".jpg") != -1:
            self.work.putTask(
                Task(target=task_convertImage2,
                     args=(absFilePath, realpath, self.imgPacker,
                           self.file_tot_count + 1)))
        elif absFilePath.find(".map") != -1:
            self.work.putTask(
                Task(target=task_convertMap2,
                     args=(absFilePath, realpath, self.file_tot_count + 1)))
        else:
            ret = False
        return ret