Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / fill_image_vector_for_create_bmp_for_microstrip_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 void fill_image_vector_with_data(unsigned char *image_vector, int colour_Er1, int colour_Er2, struct transmission_line_properties pcb)
41 {
42    int i, j, red=0, green=0, blue=0, vector_original=0;
43    int right_edge_of_LH_GP;
44    for(j=0;j<pcb.H;++j)
45    {
46       for(i=0;i<pcb.W; ++i)
47       {
48
49          red=colour_Er1/(256*256); /* Fill whole region with Er1 (normally vacuum/air)*/
50          green=colour_Er1/256;
51          blue=colour_Er1%256;
52
53          /* Put a small border in green. Only one pixel is needed, but
54          I'll put a few more. */
55          if( (i<BORDER) || (i>pcb.W-BORDER-1) || (j<BORDER) || (j>pcb.H-BORDER-1))
56          {
57             red=0x00;
58             green=0xff;
59             blue=0x00;
60          }
61
62          /* Put the dielectric for the PCB in */
63          if((i >= BORDER) && (i <pcb.W-BORDER ) && (j >= BORDER) && (j < pcb.h+BORDER))
64          {
65            red=colour_Er2/(256*256); /* Fill in areas with Er2 (normally PCB substrate)*/
66            green=colour_Er2/256;
67            blue=colour_Er2%256;
68          }
69
70          /* Put the metal top LH surface of the PCB groundplane */
71          right_edge_of_LH_GP=(pcb.W/2-pcb.s/2-pcb.w-pcb.g)-BORDER;
72          if((i >= BORDER) && (i <=right_edge_of_LH_GP ) && (j >= pcb.h+BORDER) && (j < pcb.h+pcb.t+BORDER))
73          {
74            red=0; /* Fill in left hand groundplane on top of pcb */ 
75            green=255;
76            blue=0;
77          }
78          /* Left hand coupler, could be +1 V or -1 V it does not matter, as long as right one is opposite */
79          if( (i > right_edge_of_LH_GP + pcb.g ) && (i <= right_edge_of_LH_GP + pcb.g+pcb.w) && (j >= pcb.h+BORDER) && (j < pcb.h+pcb.t+BORDER))
80          {
81            red=0xff;  /* Left hand coupler made to be +1 V */
82            green=0;
83            blue=0;
84          }
85          /* Right and coupler, set to -1 V */
86          if( (i > right_edge_of_LH_GP + pcb.g +pcb.w+pcb.s) && (i <= right_edge_of_LH_GP + pcb.g+pcb.w+pcb.s+pcb.w) && (j >= pcb.h+BORDER) && (j < pcb.h+pcb.t+BORDER))
87          {
88            red=0;  /* Right hand coupler made to be -1 V */
89            green=0;
90            blue=0xff;
91          }
92          if( (i > right_edge_of_LH_GP + pcb.g+pcb.w+pcb.s+pcb.w+pcb.g) && (i <= pcb.W-BORDER) && (j >= pcb.h+BORDER) && (j < pcb.h+pcb.t+BORDER))
93          {
94            red=0;  /* Right hand ground plane in place */
95            green=0xff;
96            blue=0;
97          }
98          image_vector[vector_original]=blue;
99          image_vector[vector_original+1]=green;
100          image_vector[vector_original+2]=red;
101          vector_original+=3;
102       }
103    }
104 }