return 1;
}
-int write_bmp(d3_lattice *d3_l,int window,u32 x,u32 y,u32 z)
+int write_bmp(d3_lattice *d3_l,int window,u32 x,u32 y,u32 z,int max)
{
- int fd,i,j,size=0,foo=0,end=0;
+ int fd,i,j,size=0,foo=0,k,sum;
int width=0,height=0;
char bmpfile[MAX_CHARS];
char buf[128];
- if(((window==4)||(window==5))&&(d3_l->max_z<FFT_HEIGHT) )
- {
- puts("error: z < FFT_HEIGHT!");
- puts("not writing bmp file ...");
- return -1;
- }
-
- if(window%3==1)
+ if(window==1)
{
sprintf(bmpfile,"x-z_%d.bmp",y);
foo=3*d3_l->max_x;
- if(window==1)
- {
- size=(foo+(4-foo%4))*d3_l->max_z;
- height=d3_l->max_z;
- }
- else
- {
- size=(foo+(4-foo%4))*FFT_HEIGHT;
- end=d3_l->max_z-FFT_HEIGHT;
- height=FFT_HEIGHT;
- }
+ size=(foo+(4-foo%4))*d3_l->max_z;
+ height=d3_l->max_z;
width=d3_l->max_x;
}
- if(window%3==2)
+ if(window==2)
{
sprintf(bmpfile,"y-z_%d.bmp",x);
foo=3*d3_l->max_y;
- if(window==2)
- {
- size=(foo+(4-foo%4))*d3_l->max_z;
- height=d3_l->max_z;
- }
- else
- {
- size=(foo+(4-foo%4))*FFT_HEIGHT;
- end=d3_l->max_z-FFT_HEIGHT;
- height=FFT_HEIGHT;
- }
+ size=(foo+(4-foo%4))*d3_l->max_z;
+ height=d3_l->max_z;
width=d3_l->max_y;
}
if(window==3)
width=d3_l->max_x;
height=d3_l->max_y;
}
+ if(window==4)
+ {
+ sprintf(bmpfile,"x-z_cdistr_%d.bmp",y);
+ foo=3*d3_l->max_x;
+ size=(foo+(4-foo%4))*d3_l->max_z;
+ height=d3_l->max_z;
+ width=d3_l->max_x;
+ }
+ if(window==5)
+ {
+ sprintf(bmpfile,"y-z_cdistr_%d.bmp",x);
+ foo=3*d3_l->max_y;
+ size=(foo+(4-foo%4))*d3_l->max_z;
+ height=d3_l->max_z;
+ width=d3_l->max_y;
+ }
+ if(window==6)
+ {
+ sprintf(bmpfile,"x-y_cdistr_%d.bmp",z);
+ foo=3*d3_l->max_x;
+ size=(foo+(4-foo%4))*d3_l->max_y;
+ width=d3_l->max_x;
+ height=d3_l->max_y;
+ }
if((fd=open(bmpfile,O_WRONLY|O_CREAT))<0)
{
puts("failed writing bmp header");
return -1;
}
- if(window%3==1)
+ if(window==1)
{
- for(j=0;j<d3_l->max_z-end;j++)
+ for(j=0;j<d3_l->max_z;j++)
{
for(i=0;i<d3_l->max_x;i++)
{
- if(*(d3_l->status+i+y*d3_l->max_x+(d3_l->max_z-j-1)*d3_l->max_x*d3_l->max_y)&RED) memset(buf,0xff,3);
- else memset(buf,0,3);
+ sum=0;
+ for(k=-2;k<=2;k++)
+ if(*(d3_l->status+i+(((y+k+d3_l->max_y)%d3_l->max_y)*d3_l->max_x)+(d3_l->max_z-j-1)*d3_l->max_x*d3_l->max_y)&RED) sum+=0xff;
+ sum/=5;
+ memset(buf,(unsigned char)sum,3);
if(write(fd,buf,3)<3)
{
puts("failed writing rgb values to bmp file");
}
}
}
- if(window%3==2)
+ if(window==2)
{
- for(j=0;j<d3_l->max_z-end;j++)
+ for(j=0;j<d3_l->max_z;j++)
{
for(i=0;i<d3_l->max_y;i++)
{
- if(*(d3_l->status+x+i*d3_l->max_x+(d3_l->max_z-j-1)*d3_l->max_x*d3_l->max_y)&RED) memset(buf,0xff,3);
- else memset(buf,0,3);
+ sum=0;
+ for(k=-2;k<=2;k++)
+ if(*(d3_l->status+((x+k+d3_l->max_x)%d3_l->max_x)+i*d3_l->max_x+(d3_l->max_z-j-1)*d3_l->max_x*d3_l->max_y)&RED) sum+=0xff;
+ sum/=5;
+ memset(buf,(unsigned char)sum,3);
if(write(fd,buf,3)<3)
{
puts("failed writing rgb values to bmp file");
}
}
}
+ if(window==4)
+ {
+ for(j=0;j<d3_l->max_z;j++)
+ {
+ for(i=0;i<d3_l->max_x;i++)
+ {
+ sum=*(d3_l->extra+i+y*d3_l->max_x+(d3_l->max_z-j-1)*d3_l->max_x*d3_l->max_y);
+ sum=sum*255/max;
+ memset(buf,(unsigned char)sum,3);
+ if(write(fd,buf,3)<3)
+ {
+ puts("failed writing rgb values to bmp file");
+ return-1;
+ }
+ }
+ if(foo%4)
+ {
+ memset(buf,0,4-foo%4);
+ if(write(fd,buf,4-foo%4)<4-foo%4)
+ {
+ puts("failed writing 4 byte ending");
+ return -1;
+ }
+ }
+ }
+ }
+ if(window==5)
+ {
+ for(j=0;j<d3_l->max_z;j++)
+ {
+ for(i=0;i<d3_l->max_x;i++)
+ {
+ sum=*(d3_l->extra+x+i*d3_l->max_x+(d3_l->max_z-j-1)*d3_l->max_x*d3_l->max_y);
+ sum=sum*255/max;
+ memset(buf,(unsigned char)sum,3);
+ if(write(fd,buf,3)<3)
+ {
+ puts("failed writing rgb values to bmp file");
+ return-1;
+ }
+ }
+ if(foo%4)
+ {
+ memset(buf,0,4-foo%4);
+ if(write(fd,buf,4-foo%4)<4-foo%4)
+ {
+ puts("failed writing 4 byte ending");
+ return -1;
+ }
+ }
+ }
+ }
+ if(window==6)
+ {
+ for(j=0;j<d3_l->max_z;j++)
+ {
+ for(i=0;i<d3_l->max_x;i++)
+ {
+ sum=*(d3_l->extra+i+(d3_l->max_y-j-1)*d3_l->max_x+z*d3_l->max_x*d3_l->max_y);
+ sum=sum*255/max;
+ memset(buf,(unsigned char)sum,3);
+ if(write(fd,buf,3)<3)
+ {
+ puts("failed writing rgb values to bmp file");
+ return-1;
+ }
+ }
+ if(foo%4)
+ {
+ memset(buf,0,4-foo%4);
+ if(write(fd,buf,4-foo%4)<4-foo%4)
+ {
+ puts("failed writing 4 byte ending");
+ return -1;
+ }
+ }
+ }
+ }
close(fd);
return 1;
bmp=0;
ac_distr=0;
scan_event(&d3_l,&x,&y,&z,&quit,&escape,&switchmode,&bmp,&ac_distr);
- if(bmp) write_bmp(&d3_l,bmp,x,y,z);
+ if(bmp) write_bmp(&d3_l,bmp,x,y,z,max_extra);
if(ac_distr) write_ac_distr(&d3_l,ac_distr);
}