X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=main.c;h=d508e7db44a938dbe0ce0b275506a3accf8f4008;hb=cdf203b95bccd0e7e01e83800ad8435f4a2da8c3;hp=49be0ef95050c2626479a8cee0c18e60221a7af3;hpb=3ec676caee02b75707e472b0294e8be51aab4c42;p=physik%2Fmorpheus.git diff --git a/main.c b/main.c index 49be0ef..d508e7d 100644 --- a/main.c +++ b/main.c @@ -13,14 +13,20 @@ #include #include +#include #include #include #include +/* important defines */ #include "defines.h" +/* function prototypes */ +#include "random.h" +#include "display.h" + /* global variables */ -u32 sum_z_segments; +u32 sum_z_cells; int random_fd; /* /dev/urandom file descriptor */ int usage() @@ -29,44 +35,94 @@ int usage() puts("-h: help"); puts("-a \t slope of nuclear energy loss (default 1)"); puts("-c \t nuclear enery loss at depths 0 (default 0)"); - puts("-x \t # x segments (default 50)"); - puts("-y \t # y segments (default 50)"); - puts("-z \t # z segments (default 100)"); - puts("-s \t # steps to calculate (default 5000"); + puts("-x \t # x cells (default 50)"); + puts("-y \t # y cells (default 50)"); + puts("-z \t # z cells (default 100)"); + puts("-s \t # steps to calculate (default 5000)"); + puts("-X \t display area intercept point x (default # x celss / 2)"); + puts("-Y \t display area intercept point y (default # y cells / 2)"); + puts("-Z \t display area intercept point z (default # z cells / 2)"); + puts("-d \t refresh every loops (default 100)"); + puts("-r \t pressure range from amorphous SiCx (default 2)"); + puts("-f \t faktor for pressure from amorphous SiCx (default 1)"); return -23; } -int make_amorph(u32 *segment) +int make_amorph(u32 *cell) { - *segment=*segment|AMORPH + *cell|=AMORPH; return 23; } -/* look at segment ... */ -int process_segment(u32 *segment) +int make_cryst(u32 *cell) { - /* tag it ... testing! */ - make_amorph(segment); - + *cell&=~AMORPH; + return 23; +} + +/* look at cell ... */ +int process_cell(void *cell_p,u32 x,u32 y,u32 z,u32 x_max,u32 y_max,u32 z_max,int range,int faktor) +{ + /* is amorph? */ + u32 *cell; + int i,j,k; + float count; + cell=(u32 *)(cell_p+x+y*(x_max-1)+z*(x_max-1)*(y_max-1)); + count=0; + for(i=-range;i<=range;i++) + for(j=-range;j<=range;j++) + for(k=-range;k<=range;k++) + if(!(i==0 && j==0 && k==0) && (x>=range && x=range && y=range && z %d\n",sum_z_segments); + /* calculate sum_z_cells one time! */ + sum_z_cells=0; + for(i=1;i<=z_cell;i++) sum_z_cells+=(start_nel+i*slope_nel); + printfd("debug: sum z cells -> %d\n",sum_z_cells); /* testing ... */ - /* allocate segments */ - if((segments_p=malloc(x_seg*y_seg*z_seg*sizeof(u32)))==NULL) + /* allocate cells */ + printf("malloc will free %d bytes now ...\n",x_cell*y_cell*z_cell*sizeof(u32)); + if((cell_p=malloc(x_cell*y_cell*z_cell*sizeof(u32)))==NULL) { - puts("failed allocating memory for segments\n"); + puts("failed allocating memory for cells\n"); return -23; } - memset(segments_p,0,x_seg*y_seg*z_seg*sizeof(u32)); + memset(cell_p,0,x_cell*y_cell*z_cell*sizeof(u32)); + + /* init display */ + display_init(x_cell,y_cell,z_cell,&display,cell_p,&argc,argv); /* main routine */ for(i=0;i