Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / fill_make_coupler.c
1 /* atlc - arbitrary transmission line calculator, for the analysis of
2 transmission lines are directional couplers. 
3
4 Copyright (C) 2002. Dr. David Kirkby, PhD (G8WRB).
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either package_version 2
9 of the License, or (at your option) any later package_version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
19 USA.
20
21 Dr. David Kirkby, e-mail drkirkby at ntlworld.com 
22
23 */
24 #include "config.h"
25
26 #ifdef HAVE_STRING_H
27 #include <string.h>
28 #endif
29
30 #ifdef HAVE_STRINGS_H
31 #include <strings.h>
32 #endif
33
34 #ifdef HAVE_STDLIB_H
35 #include <stdlib.h>
36 #endif
37
38 #include "definitions.h"
39
40 extern int W, H, w,  s, verbose;
41
42 void fill_image_vector_with_data(unsigned char *image_vector, int colour_Er1, int colour_Er2, struct transmission_line_properties data) 
43 {
44    int i, j, vector_original=0;
45    unsigned char red, green, blue;
46    int left_edge_blue;
47    int left_edge_red;
48    left_edge_red=W/2 - w -s/2;
49    left_edge_blue=(W+s)/2;
50    if(verbose >=2)
51      printf("\nw=%d s=%d W=%d H=%d Er1=%x Er2=%x in fill..data for couplers\n", w, s, W, H,colour_Er1, colour_Er2);
52    for(j=0;j<H;++j)
53    {
54       for(i=0;i<W; ++i)
55       {
56          red=colour_Er1/(256*256); /* Fill in areas with Er1 */
57          green=colour_Er1/256;
58          blue=colour_Er1%256;
59
60          /* Put a small border in green. Only one pixel is needed, but
61          I'll put a few more. */
62
63          if( (j<BORDER) || (j>=H-BORDER))
64          {
65             red=0x00;
66             green=0xff;
67             blue=0x00;
68          }
69          if( (i>=left_edge_blue) && (i<left_edge_blue+w) && j==(H/2)) /* conductor */
70          {
71             red=0x00;
72             green=0x00;
73             blue=0xff;
74          }
75          if( (i>=left_edge_red) && (i<left_edge_red+w) && j==(H/2)) /* conductor */
76          {
77             red=0xff;
78             green=0x00;
79             blue=0x00;
80          }
81          image_vector[vector_original]=blue;
82          image_vector[vector_original+1]=green;
83          image_vector[vector_original+2]=red;
84          vector_original+=3;
85       }
86    }
87 }