Added program that is checking for all 4 tests at once
[wrffire.git] / wrfv2_fire / tools / gen_mod_state_descr.c
blobb3d94a6d25ccf844f3c13ea39fb60fbf3d790e0b
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #ifdef _WIN32
5 #define rindex(X,Y) strrchr(X,Y)
6 #define index(X,Y) strchr(X,Y)
7 #else
8 # include <strings.h>
9 #endif
11 #include "protos.h"
12 #include "registry.h"
13 #include "data.h"
15 int
16 gen_module_state_description ( char * dirname )
18 FILE * fp ;
19 char fname[NAMELEN] ;
20 char * fn = "module_state_description.F" ;
22 strcpy( fname, fn ) ;
23 if ( strlen(dirname) > 0 ) { sprintf(fname,"%s/%s",dirname,fn) ; }
24 if ((fp = fopen( fname , "w" )) == NULL ) return(1) ;
25 print_warning(fp,fname) ;
26 gen_module_state_description1 ( fp , &Domain ) ;
27 close_the_file( fp ) ;
28 return(0) ;
31 int
32 gen_module_state_description1 ( FILE * fp , node_t * node )
34 node_t * p, * q ;
35 char * x ;
37 if ( node == NULL ) return(1) ;
39 fprintf(fp,"MODULE module_state_description\n") ;
41 fprintf(fp," ! package constants\n") ;
42 for ( p = Packages ; p != NULL ; p = p->next )
44 x=index(p->pkg_assoc,'=') ; x+=2 ;
45 fprintf(fp," INTEGER, PARAMETER :: %s = %s\n",p->name,x) ;
47 fprintf(fp," ! 4D array constants\n") ;
48 for ( p = FourD ; p != NULL ; p=p->next4d )
50 int c1 ;
51 for( q = p->members, c1=0 ; q != NULL ; q=q->next, c1++ )
53 if ( strcmp(q->name,"-" ) )
55 fprintf(fp," INTEGER, PARAMETER :: PARAM_%s = %d\n",q->name,c1) ;
56 fprintf(fp," INTEGER :: P_%s = 1\n",q->name) ;
57 fprintf(fp," LOGICAL :: F_%s = .FALSE.\n",q->name) ;
60 fprintf(fp," INTEGER, PARAMETER :: PARAM_NUM_%s = %d\n",p->name,c1) ;
61 fprintf(fp," INTEGER :: NUM_%s = 1\n",p->name) ;
63 fprintf(fp," INTEGER, PARAMETER :: %-30s = %d\n", "P_XSB",1 ) ;
64 fprintf(fp," INTEGER, PARAMETER :: %-30s = %d\n", "P_XEB",2 ) ;
65 fprintf(fp," INTEGER, PARAMETER :: %-30s = %d\n", "P_YSB",3 ) ;
66 fprintf(fp," INTEGER, PARAMETER :: %-30s = %d\n", "P_YEB",4 ) ;
68 fprintf(fp," INTEGER, PARAMETER :: NUM_TIME_LEVELS = %d\n", max_time_level ) ;
69 fprintf(fp," INTEGER , PARAMETER :: PARAM_FIRST_SCALAR = 2\n" ) ;
71 fprintf(fp,"CONTAINS\n" ) ;
72 fprintf(fp,"SUBROUTINE init_module_state_description\n" ) ;
73 fprintf(fp,"END SUBROUTINE init_module_state_description\n" ) ;
74 fprintf(fp,"END MODULE module_state_description\n") ;
76 return(0) ;