modify generate-template-files

This commit is contained in:
chuanweizhang2013 2014-03-12 17:20:15 +08:00
parent e457e9d84f
commit 884229e898
2 changed files with 16 additions and 7 deletions

View File

@ -109,4 +109,4 @@ tags
#include
!/tools/cocos2d-console/console/bin/
!/plugin-x/plugin-x_ios.xcworkspace/
!/cocos/2d/platform/android/java/res/

View File

@ -27,6 +27,7 @@ THE SOFTWARE.
import os
import sys
import re
import json
class CocosFileList:
"""
@ -39,7 +40,10 @@ class CocosFileList:
self.excludeConfig=[]
self.inludeConfig=[]
self.rootDir = ""
self.fileList=[]
self.fileList_com=[]
self.fileList_lua=[]
self.luaPath ="cocos/scripting/lua-bindings"
def readIngoreFile(self, fileName):
"""
@ -84,7 +88,10 @@ class CocosFileList:
self.__bInclude(item) or
self.__bInclude("%s/" %item)
):
self.fileList.append("%s/" %relativePath)
if relativePath.upper().find(self.luaPath.upper())==0:
self.fileList_lua.append("%s/" %relativePath)
else:
self.fileList_com.append("%s/" %relativePath)
continue
if (
self.__bExclude("/%s" %relativePath) or
@ -105,7 +112,10 @@ class CocosFileList:
):
continue
# print(relativePath)
self.fileList.append(relativePath)
if relativePath.upper().find(self.luaPath.upper())==0:
self.fileList_lua.append(relativePath)
else:
self.fileList_com.append(relativePath)
def __bExclude(self, item):
bexclude = False
@ -128,9 +138,8 @@ class CocosFileList:
Save content to file with json format.
"""
f = open(fileName,"w")
self.fileList.sort()
content = "[\n\"%s\"\n]" % ("\",\n\"".join(self.fileList))
f.write(content)
content ={'common':self.fileList_com,'lua':self.fileList_lua}
json.dump(content,f,sort_keys=True,indent=4)
f.close()
return True