刚刚写的小程序
2 q; R' i4 W6 E4 A测试的时候用比较好吧(因为不知道该替换哪个字库就全换了)
. h* y: o; d A" p3 _! W或许可以写个.bat先把文件夹里的东西备份一下 2 o; Q+ G! |: x/ }+ l3 P
( g- v; K* C+ f9 d A用法很简单,把做好的字体改名为sourcefile.mvec
* V4 a6 P8 i$ f! a8 K和replace.exe放到fonts文件夹里运行,+ y" k- a& m O! q+ E* x
应该就能把里面所有的文件都换成sourcefile.mvec的字体了$ Y- }$ D, D& d( [# y3 k
j4 H! ^! T; J, |7 Y- i. o0 |* X只拿了鬼船测试了一下通过,另外个游戏要打包的,没成功,可能是打包过程中出了些故障吧,欢迎大家使用& j% J; L3 [& X! p+ L; h7 ?9 N+ ^
' y8 ?: I2 D( X% F- L; H附源码- #include <iostream>
- #include <fstream>
- #include <dirent.h>
- using namespace std;
- int overwrite(char* srcfile,char* destfile)
- {
- fstream infile;
- fstream outfile;
- int size;
- if (strcmp(srcfile,destfile)==0) return -1; //same file
- infile.open(srcfile,ios::binary|ios::in);
- if (!infile.is_open()) printf("%s failed to open\n",srcfile);
- outfile.open(destfile,ios::binary|ios::out);
- if (!outfile.is_open()) printf("%s failed to open\n",destfile);
- infile.seekg(0,ios::end);
- size = infile.tellg();
- infile.seekg(0,ios::beg);
- char* buffer;
- buffer = new char[size];
- infile.read(buffer,size);
- outfile.write(buffer,size);
- infile.close();
- outfile.close();
- }
- int main()
- {
- DIR *dp;
- if ((dp = opendir(".")) == NULL)
- {cout <<"Error opening directory\n";}
- struct dirent *dirp;
- char outname[255];
- char *temp;
- while ((dirp = readdir(dp)) != NULL) {
- printf("%s file \n",dirp->d_name);
- overwrite("sourcefile.mvec",dirp->d_name);
- }
复制代码 |