在linux / MSVC 2012中管道不稳定的行为

时间:2013-03-26 19:20:56

标签: c++ gnuplot

我有一个粒子系统,我基本上跟踪坐标。到目前为止,我输出了文件中的所有坐标,然后使用gnuplot脚本绘制它们,并使用ffmpeg从PNG中创建视频。要跳过所有文件I / O,我首先尝试使用OpenGL无效,所以我想设置一个管道到gnuplot。

我在MSVC 2012中这样做:

FILE *gnuplotpipe = _popen(GNUPLOT_NAME, "w");
setvbuf(gnuplotpipe, NULL, _IONBF, NULL);
//setbuf(gnuplotpipe, NULL);
fprintf(gnuplotpipe,"set term png\n");
fprintf(gnuplotpipe,"set size 720, 480\n");
fprintf(gnuplotpipe,"set size ratio -1\n");
fprintf(gnuplotpipe,"unset key\n");
fprintf(gnuplotpipe,"set xrange [-%d:%d]\n", RANGE+100,RANGE+100);
fprintf(gnuplotpipe,"set yrange [-%d:%d]\n", RANGE+100,RANGE+100);
for(time-steps)
    //do stuff
    fprintf(gnuplotpipe,"plot '-'\n");
    for(all particles)
          // calculate coordinates
          fprintf(gnuplotpipe,"%f %f\n", particle[i]->x, particle[i]->y);
    end for
    fprintf(gnuplotpipe, "e\n");
    //fflush(gnuplotpipe);
end for
_pcloce(gnuplotpipe);

因此在linux中使用gnuplot -persist代替pgnuplot -persistpopenpclose以及setbuf而不是setvbuf。这已经有很多试验和错误。

在linux中它非常一致。我可以在控制台中看到每个时间步骤的plot '-'命令,然后是难以理解的文本。什么都没打开。在Windows中它是惊人的,因为有时它会工作,我会看到gnuplot“MS Windows”窗口上的数据流(我的意思是不是控制台输出,这本身就很神奇,因为我没有使用wgnuplot_pipes.exe)。没有绘制任何东西。窗户关闭。其他时间会有几个时间步骤,但会在每个时间步的不同窗口中进行绘制。有时候,它会崩溃或者它会起作用但发送难以理解的文本。

我大部分时间都在使用100粒子。我可以有多达10,000个时间步。我不知道这是不是很多。虽然我正在将缓冲区设置为NULL,但我怀疑是在窗口中切断了什么。我在Win7 x64中使用MSVC,在VirtualBox中使用Linux Mint x64中的Qt。我正在使用gnuplot 4.7(win)和4.6.0.8(linux)。我在SO中看得非常广泛,我发现的唯一问题是-persist并没有真正存在于Windows中。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

只是这样的问题没有得到解答..这是你的程序的python版本, 使用x11终端。它建立了一个带有愚蠢动画的窗口。

但请注意,如果其他一些司机试图为每个框架打开一个窗口,我不会感到惊讶

import subprocess
f=subprocess.Popen(['/usr/bin/gnuplot','-persist'],
                      stdin=subprocess.PIPE,shell=False)
f.stdin.write('set term x11 \n')
f.stdin.write('set yrange [-2:2]\n')
import math
i=0
d=1
count=0
while count<1000 :
 count+=1
 if abs(i)==50 : d *= -1
 i+=d 
 f.stdin.write('plot \'-\' with linespoints pt 4 ps 2 \n')
 for j in range(0,500):
  f.stdin.write('%f %f\n'%(float(j),math.sin(float(j)/float(abs(i)+1))))
 f.stdin.write('e\n')