This commit is contained in:
cuu
2019-06-26 23:20:32 +08:00
parent 6980b93262
commit 1a790ae4d4
4 changed files with 22 additions and 15 deletions

View File

@@ -57,7 +57,7 @@ func (self *Widget) NewCoord(x,y int) {
func Init() {
font.Init()
skinpath := "skin/"+sysgo.SKIN+"/truetype"
skinpath := sysgo.SKIN+"/truetype"
Fonts = make(map[string]*ttf.Font)

View File

@@ -44,23 +44,28 @@ func Abs(n int) int {
func SkinMap(orig_file_or_dir string) string {
DefaultSkin := "default"
DefaultSkin := "skin/default"
ret := ""
skin_dir_prefix:= "skin/"
if strings.HasPrefix(orig_file_or_dir, "..") {
ret = strings.Replace(orig_file_or_dir,"..",skin_dir_prefix + sysgo.SKIN,-1)
lastpad := ""
if string(orig_file_or_dir[len(orig_file_or_dir)-1]) == "/" {
lastpad = string(orig_file_or_dir[len(orig_file_or_dir)-1])
}
if strings.HasPrefix(orig_file_or_dir, "/home/cpi/apps/Menu") {
ret = strings.Replace(orig_file_or_dir,"/home/cpi/apps/Menu/", filepath.Join(sysgo.SKIN,"/Menu/GameShell/"),-1)
if FileExists(ret) == false {
ret = filepath.Join(DefaultSkin,orig_file_or_dir)
}
}else { // there is no need to add insert "sysgo" in the middle
ret = filepath.Join(sysgo.SKIN,orig_file_or_dir)
if FileExists(ret) == false {
ret = strings.Replace(orig_file_or_dir,"..", skin_dir_prefix + DefaultSkin,-1)
}
}else {
ret = skin_dir_prefix+sysgo.SKIN+"/"+orig_file_or_dir
if FileExists(ret) == false {
ret = skin_dir_prefix+DefaultSkin+"/"+orig_file_or_dir
ret = filepath.Join(DefaultSkin,orig_file_or_dir)
}
}
if FileExists(ret) {
return ret
return ret+lastpad
}else { // if not existed both in default or custom skin ,return where it is
return orig_file_or_dir
}