我一直在研究一个小程序,它将我的3D引擎所需的所有图像放到一个文件中,但是当我尝试使用fstream写入文件时,由于不明原因,它不返回任何错误,但仍然没有写任何东西。
例如,我有一个初始化新文件的简单函数:
void initPAK(fstream& pakfile, image firstImg)
{
PAKheader head;
head.sign[0] = 'P';
head.sign[1] = 'A';
head.sign[2] = 'K';
head.nbdata = 1;
head.index.push_back(sizeof(head.sign)+sizeof(head.nbdata)+sizeof(uint32_t));
if(pakfile.is_open())
{
pakfile.write(head.sign, sizeof(head.sign));
pakfile.write((char*)&head.nbdata, sizeof(head.nbdata));
for(uint32_t n=0; n<head.index.size(); n++)
{
pakfile.write((char*)&head.index[n], sizeof(head.index[n]));
}
pakfile.write((char*)&firstImg.width, sizeof(firstImg.width));
pakfile.write((char*)&firstImg.height, sizeof(firstImg.height));
pakfile.write((char*)&firstImg.channels, sizeof(firstImg.channels));
for(uint32_t n=0; n<firstImg.data.size(); n++)
{
pakfile.write((char*)&firstImg.data[n], sizeof(firstImg.data[n]));
}
}
else
{
cerr << "unable to open" << endl;
}
}
我这样使用它:
fstream fileop;
fileop.open("bin_file", fstream::in | fstream::out | fstream::trunc | fstream::binary);
unsigned char zdata[] = {
255, 0, 0,
0, 255, 0,
0, 0, 255,
};
image zimg;
zimg.width = 3;
zimg.height = 1;
zimg.channels = 3;
for(int i=0; i < 9; i++)
{
zimg.data.push_back(zdata[i]);
}
initPAK(fileop, zimg);
fileop.close();
但文件“bin_file”他永远不会写也不会创建。我在另一个stackoverflow的问题中看到我应该使用flush()但我也没有工作。这个函数用来工作的最奇怪的事情,直到我将fstream替换为fstream我相信。 我做错了什么?
答案 0 :(得分:0)
获得的经验:如果你应该睡觉,不要急于编码,甚至更多。