X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fmorpheus.git;a=blobdiff_plain;f=main.c;h=b7ce8674d05f41d9e24a2aaea0c6e7809e883874;hp=cf2a703cc57bc0f31581ebb2477daf6cf15526a8;hb=a41ec558b235239b4a544297456369d818660543;hpb=f463ab26135aa2850eee73b75f11103dd5f52a40 diff --git a/main.c b/main.c index cf2a703..b7ce867 100644 --- a/main.c +++ b/main.c @@ -13,35 +13,77 @@ #include #include +#include +#include +#include + #include "defines.h" /* global variables */ -int sum_z_segments; +u32 sum_z_cells; +int random_fd; /* /dev/urandom file descriptor */ int usage() { puts("usage:"); puts("-h: help"); - puts("-a \t slope of C concentration with depth (default 1)"); - puts("-c \t concentration 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("-a \t slope of nuclear energy loss (default 1)"); + puts("-c \t nuclear enery loss at depths 0 (default 0)"); + 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 25)"); + puts("-Y \t display area intercept point y (default 25)"); + puts("-Z \t display area intercept point z (default 50)"); + puts("-d \t refresh every loops (default 100)"); return -23; } -int main(int argc,char **argv) { - int x_seg,y_seg,z_seg; /* amount of segments */ - int x,y,z; /* segments */ +int make_amorph(u32 *cell) +{ + *cell=*cell|AMORPH; + return 23; +} + +int make_cryst(u32 *cell) +{ + *cell=*cell&(~AMORPH); + return 23; +} + +/* look at cell ... */ +int process_cell(u32 *cell) +{ + /* tag it ... testing! */ + make_amorph(cell); + + return 23; +} + +int main(int argc,char **argv) +{ + u32 x_cell,y_cell,z_cell; /* amount of segments */ + u32 x,y,z; /* cells */ int i; /* for counting */ - int slope_cc,start_cc; /* C concentration: slope, c(0) */ + int slope_nel,start_nel; /* nuclear energy loss: slope, constant */ + int steps; /* # steps */ + void *cell_p; + struct __display display; + u32 display_x,display_y,display_z; /* intercept point of diplayed areas */ + u32 display_refresh_rate; /* refresh rate for display */ /* default values */ - x_seg=DEFAULT_X_SEG-1; - y_seg=DEFAULT_Y_SEG-1; - z_seg=DEFAULT_Z_SEG-1; - slope_cc=DEFAULT_SLOPE_CC; - start_cc=DEFAULT_START_CC; + x_cell=DEFAULT_X_SEG; + y_cell=DEFAULT_Y_SEG; + z_cell=DEFAULT_Z_SEG; + slope_nel=DEFAULT_SLOPE_NEL; + start_nel=DEFAULT_START_NEL; + steps=DEFAULT_STEPS; + display_x=DEFAULT_DISPLAY_X-1; + display_y=DEFAULT_DISPLAY_Y-1; + display_z=DEFAULT_DISPLAY_Z-1; + display_refresh_rate=DEFAULT_DISPLAY_REF_RATE; /* parse command args */ for(i=1;i %d\n",sum_z_segments); + /* open random fd */ + if((random_fd=open("/dev/urandom",O_RDONLY))<0) + { + puts("cannot open /dev/urandom\n"); + return -23; + } + + /* 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 ... */ - for(i=0;i<100;i++) + /* 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) { - x=rand_get(x_seg); - y=rand_get(y_seg); - z=rand_get_lgp(slope_cc,start_cc); - printf ("x=%d y=%d z=%d\n",x,y,z); + puts("failed allocating memory for cells\n"); + return -23; } + 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