-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprefab_confuse_step2.go
108 lines (92 loc) · 2.49 KB
/
prefab_confuse_step2.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package main
import (
"fmt"
"io/ioutil"
"m2utils"
"os"
"path/filepath"
"strings"
)
func main() {
unityFileDir := "../Stages/"
//1. remember all *.unity/*.prefab (YAML format) eg:( m_Script: {fileID: 11500000, guid: e9d0b5f3bbe925a408bd595c79d0bf63, type: 3})
//
//replace all cs files !!!!
fmt.Println(" ========== ")
fmt.Println("done ,next step Open unity and wait for compile ")
guidMap := map[string]string{}
m2utils.GetMapFromFile("panelPrefab.json", &guidMap)
//json.Unmarshal([]byte( string(content)), &info)
//fmt.Println(info)
for oldFileGuid, newClassPath := range guidMap {
fmt.Println(oldFileGuid, newClassPath)
//newClassPath = strings.ReplaceAll(newClassPath, "test2", "Scripts")
newFileGuid := m2utils.GetFileGUID(newClassPath)
if oldFileGuid == "" {
panic("cant get guid " + oldFileGuid)
}
fmt.Println(oldFileGuid, newClassPath, newFileGuid)
guidMap[oldFileGuid] = newFileGuid
}
//replace guid related cs file from *.unity Stages
filepath.Walk(unityFileDir, func(path string, info os.FileInfo, err error) error {
if !info.IsDir() {
if m2utils.GetExtName(info.Name()) != "unity" {
return nil
}
contentByte, err := ioutil.ReadFile(path)
if err != nil {
fmt.Println("eeee" + err.Error())
}
content := string(contentByte)
for oldUid, newUid := range guidMap {
content = strings.ReplaceAll(content, "guid: "+oldUid, "guid: "+newUid)
}
//save
f, err := os.Create(path)
if err != nil {
fmt.Println("err2 " + err.Error())
} else {
defer f.Close()
_, err2 := f.WriteString(content)
if err2 != nil {
fmt.Println("err3 " + err2.Error())
}
}
}
return nil
})
////replace all guid from *.prefab, Prefabs
/*panelsDir := "../Resources/panles/"
filepath.Walk(panelsDir, func(path string, info2 os.FileInfo, err error) error {
fmt.Println(path)
if info2 == nil {
return nil
}
if !info2.IsDir() {
if m2utils.GetExtName(info2.Name()) != "prefab" {
return nil
}
contentByte, err := ioutil.ReadFile(path)
if err != nil {
fmt.Println("fffff" + err.Error())
}
content := string(contentByte)
for oldUid, newUid := range guidMap {
content = strings.ReplaceAll(content, "guid: "+oldUid, "guid: "+newUid)
}
//save
f, err := os.Create(path)
if err != nil {
fmt.Println("err2 " + err.Error())
} else {
defer f.Close()
_, err2 := f.WriteString(content)
if err2 != nil {
fmt.Println("err3 " + err2.Error())
}
}
}
return nil
})*/
}