Merge commit 'upstream/4.6.1'
[debian/atlc] / src / create_bmp_for_rect_cen_in_rect.c
diff --git a/src/create_bmp_for_rect_cen_in_rect.c b/src/create_bmp_for_rect_cen_in_rect.c
new file mode 100644 (file)
index 0000000..e8e58af
--- /dev/null
@@ -0,0 +1,106 @@
+/* atlc - arbitrary transmission line calculator, for the analysis of
+transmission lines are directional couplers. 
+
+Copyright (C) 2002. Dr. David Kirkby, PhD (G8WRB).
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either package_version 2
+of the License, or (at your option) any later package_version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
+USA.
+
+Dr. David Kirkby, e-mail drkirkby at gmail.com 
+
+*/
+
+/* The program create_bmp_for_rect_in_rect is a pre-processor for atlc. It produces bitmaps of rectangular
+inner and rectangular outer */
+#include "config.h"
+
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif  
+
+#include "definitions.h"
+#include "exit_codes.h" 
+
+#ifdef WINDOWS
+#pragma hrdstop
+#include <condefs.h>
+#endif
+
+double WW, HH, aa, bb, cc, dd, ww, hh, Er1, Er2;
+int W, H, a, b, c, d, w, h, D;
+/* The following are only needed, so I can link in two  
+convert_circ_in_circ_dimensions_to_integers.c
+and
+convert_create_bmp_for_rect_in_rect_dimensions_to_integers.c
+*/
+
+int verbose=FALSE;
+int lowest=2500, highest=10000;
+int fileflag=FALSE;
+
+extern int main(int argc, char **argv) /* Read parameters from command line here   */
+{
+   int  bmp_size=DEFAULT_BMP_SIZE;
+   int q;
+   FILE *image_data_fp;
+   struct transmission_line_properties not_used;
+
+   /* The following line is just to keep SGI's compiler happy. */
+   not_used.W=1;
+
+   while((q=get_options(argc,argv,"b:f:v")) != -1)
+   switch (q) 
+   {
+      case 'b':
+      bmp_size=atol(my_optarg); 
+      break;
+      case 'v':
+      verbose=TRUE; 
+      break;
+      case '?':
+      printf("read a ? exiting\n");
+   }
+   if(argc-my_optind ==6)
+   {
+      WW=atof(argv[my_optind]);
+      HH=atof(argv[my_optind+1]);
+      ww=atof(argv[my_optind+2]);
+      cc=atof(argv[my_optind+3]);
+      Er1=atof(argv[my_optind+4]);
+      if((image_data_fp=fopen(argv[my_optind+5],"wb"))==NULL)
+      {
+        fprintf(stderr,"Can't write to %s. Exiting ...\n",my_optarg);
+        exit_with_msg_and_exit_code("",CANT_OPEN_FOR_WRITING);
+      }
+
+      /* To make the program easier to write, rect_cen_in_rect uses 
+      the same variables as create_bmp_for_rect_in_rect. We just calculate the 
+      values not given (a, b, d, h and Er1 from those given
+      (W, H, c and w) */
+
+      aa=(WW-ww)/2.0;
+      bb=(WW-ww)/2.0;
+      dd=ww;
+      hh=(HH-cc)/2.0;
+      Er2=Er1;
+      check_parameters_of_create_bmp_for_rect_in_rect();
+      convert_create_bmp_for_rect_in_rect_dimensions_to_integers(bmp_size);
+      write_bitmap(image_data_fp, not_used);
+   }
+   else
+      usage_create_bmp_for_rect_cen_in_rect();
+   return(OKAY);
+}